diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2011-05-23 15:42:18 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-25 15:50:55 +0100 |
commit | d236f9c7d479c173e69e0cf6b7a204df9c37da0f (patch) | |
tree | 5b8b7add513b9f273906006ac9e3781bf76070af /meta/recipes-devtools/python/python-pygobject_2.27.91.bb | |
parent | b0214810a3458978f7ce3a8488832d07bfcfb7e5 (diff) | |
download | poky-d236f9c7d479c173e69e0cf6b7a204df9c37da0f.tar.gz |
python-pygpbject: upgrade from 2.27 to 2.27.91
(From OE-Core rev: 30afae80a5a1a069f94b40659e0cf309cd3ba230)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python-pygobject_2.27.91.bb')
-rw-r--r-- | meta/recipes-devtools/python/python-pygobject_2.27.91.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb new file mode 100644 index 0000000000..d35f672f66 --- /dev/null +++ b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | DESCRIPTION = "Python GObject bindings" | ||
2 | SECTION = "devel/python" | ||
3 | LICENSE = "LGPLv2.1" | ||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" | ||
5 | DEPENDS = "python-pygobject-native-${PV} glib-2.0" | ||
6 | DEPENDS_virtclass-native = "glib-2.0-native" | ||
7 | RDEPENDS_virtclass-native = "" | ||
8 | PR = "r0" | ||
9 | |||
10 | MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" | ||
11 | |||
12 | SRC_URI = "${GNOME_MIRROR}/pygobject/${MAJ_VER}/pygobject-${PV}.tar.bz2" | ||
13 | |||
14 | SRC_URI[md5sum] = "2b11a3050264721aac83188224b093a8" | ||
15 | SRC_URI[sha256sum] = "a1dffbe2a8e0d490594554ed8d06f0ee4a371acb6c210e7f35158e9ae77e0df4" | ||
16 | S = "${WORKDIR}/pygobject-${PV}" | ||
17 | |||
18 | FILESPATH = "${FILE_DIRNAME}/python-pygobject:${FILE_DIRNAME}/files" | ||
19 | EXTRA_OECONF += "--disable-introspection" | ||
20 | |||
21 | inherit autotools distutils-base pkgconfig | ||
22 | |||
23 | # necessary to let the call for python-config succeed | ||
24 | export BUILD_SYS | ||
25 | export HOST_SYS | ||
26 | export STAGING_INCDIR | ||
27 | export STAGING_LIBDIR | ||
28 | |||
29 | PACKAGES += "${PN}-lib" | ||
30 | |||
31 | RDEPENDS_${PN} += "python-textutils" | ||
32 | |||
33 | FILES_${PN} = "${libdir}/python*" | ||
34 | FILES_${PN}-lib = "${libdir}/lib*.so.*" | ||
35 | FILES_${PN}-dev += "${bindir} ${datadir}" | ||
36 | FILES_${PN}-dbg += "${libdir}/.debug" | ||
37 | |||
38 | BBCLASSEXTEND = "native" | ||