diff options
author | Niko Mauno <niko.mauno@iki.fi> | 2018-12-01 19:57:10 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2018-12-02 11:05:02 -0800 |
commit | 7b47fbc02ec8e8fe85d51695e13ee0aa271b753f (patch) | |
tree | e8197dfa89336c6157be745b0900dd8f81687dd4 /meta-oe/recipes-devtools/python/python-pygobject | |
parent | 1204dd2d0b2c785a7cac0ec810c51a4a79fd4181 (diff) | |
download | meta-openembedded-7b47fbc02ec8e8fe85d51695e13ee0aa271b753f.tar.gz |
python-pygobject: Drop redundant dependencies
Simplify recipe by reflecting following changes introduced to Pythonv3
variant of this recipe in commits
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=b663374cf41465c6dc94001d6fa73a5523542fb6
http://git.yoctoproject.org/cgit/cgit.cgi/poky/commit/meta?id=521ea98b2c622f5ae7e6d18849a0379fa7ed4e90
in which the gnome-common dependency was left out due to pygobject
moving to autoconf-archive, and remaining configure.ac patch file
was also deemed unnecessary.
Signed-off-by: Niko Mauno <niko.mauno@iki.fi>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/python/python-pygobject')
-rw-r--r-- | meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch b/meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch deleted file mode 100644 index 9a11442f1..000000000 --- a/meta-oe/recipes-devtools/python/python-pygobject/0001-configure.ac-add-sysroot-path-to-GI_DATADIR-don-t-se.patch +++ /dev/null | |||
@@ -1,28 +0,0 @@ | |||
1 | From 5e5350d730f85957a42c6d846d347d080e7dd996 Mon Sep 17 00:00:00 2001 | ||
2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | ||
3 | Date: Fri, 23 Oct 2015 12:40:34 +0300 | ||
4 | Subject: [PATCH] configure.ac: add sysroot path to GI_DATADIR; don't set | ||
5 | introspection scanner and compiler paths | ||
6 | |||
7 | Upstream-Status: Pending [review on oe-core maillist] | ||
8 | Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | ||
9 | --- | ||
10 | configure.ac | 8 +------- | ||
11 | 1 file changed, 1 insertion(+), 7 deletions(-) | ||
12 | |||
13 | diff --git a/configure.ac b/configure.ac | ||
14 | index 2c0cfbd..cfcb3bf 100644 | ||
15 | --- a/configure.ac | ||
16 | +++ b/configure.ac | ||
17 | @@ -155,7 +155,7 @@ PKG_CHECK_MODULES(GI, | ||
18 | |||
19 | GOBJECT_INTROSPECTION_CHECK(introspection_required_version) | ||
20 | |||
21 | -GI_DATADIR=$($PKG_CONFIG --variable=gidatadir gobject-introspection-1.0) | ||
22 | +GI_DATADIR=$PKG_CONFIG_SYSROOT_DIR$($PKG_CONFIG --variable=gidatadir gobject-introspection-1.0) | ||
23 | AC_SUBST(GI_DATADIR) | ||
24 | |||
25 | if test "$enable_cairo" != no; then | ||
26 | -- | ||
27 | 2.1.4 | ||
28 | |||