Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/4] Misc fixes, July 19
@ 2011-07-19 15:34 Tom Rini
  2011-07-19 15:34 ` [PATCH 1/4] metacity: Add gnome-doc-utils to DEPENDS Tom Rini
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Tom Rini @ 2011-07-19 15:34 UTC (permalink / raw)
  To: openembedded-core

Hey all,

As part of doing some "fix builds in very long paths" builds of world I've
hit a few DEPENDS problems.  The following series is mostly adding DEPENDS
where they're missing today.  While I was fixing up gnome-doc-utils-native
I noticed it has the installed but not packaged QA problem so I fixed that
while in here.

The following changes since commit e66c2999afa2b3efbce8bb46c89f9db5e15f35c7:
  Saul Wold (1):
        libx11: ensure nativesdk uses correct DEPENDS and XCB flags

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib trini/misc-fixes-19july
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=trini/misc-fixes-19july

Tom Rini (4):
  metacity: Add gnome-doc-utils to DEPENDS
  gnome-doc-utils: Package up python site packages, bump PR
  iptuils: Add sgmlspl-native to DEPENDS
  btrfs-tools: Add util-linux to DEPENDS

 .../btrfs-tools/btrfs-tools_git.bb                 |    3 ++-
 meta/recipes-extended/iputils/iputils_s20101006.bb |    4 ++--
 meta/recipes-gnome/gnome/gnome-doc-utils.inc       |    4 ++--
 meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb |    2 +-
 meta/recipes-gnome/gnome/metacity_2.30.3.bb        |    4 ++--
 5 files changed, 9 insertions(+), 8 deletions(-)




^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 1/4] metacity: Add gnome-doc-utils to DEPENDS
  2011-07-19 15:34 [PATCH 0/4] Misc fixes, July 19 Tom Rini
@ 2011-07-19 15:34 ` Tom Rini
  2011-07-19 15:34 ` [PATCH 2/4] gnome-doc-utils: Package up python site packages, bump PR Tom Rini
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2011-07-19 15:34 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
 meta/recipes-gnome/gnome/metacity_2.30.3.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-gnome/gnome/metacity_2.30.3.bb b/meta/recipes-gnome/gnome/metacity_2.30.3.bb
index 44e21c9..92ddd68 100644
--- a/meta/recipes-gnome/gnome/metacity_2.30.3.bb
+++ b/meta/recipes-gnome/gnome/metacity_2.30.3.bb
@@ -4,8 +4,8 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
                     file://src/include/main.h;endline=24;md5=c2242df552c880280315989bab626b90"
 
-DEPENDS = "startup-notification gtk+ gconf gdk-pixbuf-native libcanberra"
-PR = "r1"
+DEPENDS = "startup-notification gtk+ gconf gdk-pixbuf-native libcanberra gnome-doc-utils"
+PR = "r2"
 
 inherit gnome update-alternatives
 
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 2/4] gnome-doc-utils: Package up python site packages, bump PR
  2011-07-19 15:34 [PATCH 0/4] Misc fixes, July 19 Tom Rini
  2011-07-19 15:34 ` [PATCH 1/4] metacity: Add gnome-doc-utils to DEPENDS Tom Rini
@ 2011-07-19 15:34 ` Tom Rini
  2011-07-19 15:34 ` [PATCH 3/4] iptuils: Add sgmlspl-native to DEPENDS Tom Rini
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2011-07-19 15:34 UTC (permalink / raw)
  To: openembedded-core

Add python-dir to the inherits list so we can grab the python site packages
files as well.  This fixes a 'installed but not packaged' QA problem with
the python site package files.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
 meta/recipes-gnome/gnome/gnome-doc-utils.inc       |    4 ++--
 meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
index 7f1ab83..bd7c615 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
@@ -2,7 +2,7 @@ LICENSE = "GPL & LGPL"
 DEPENDS = "libxml2 libxslt libxslt-native gnome-doc-utils-native"
 DEPENDS_virtclass-native = "libxml2-native libxslt-native intltool-native"
 
-inherit gnome gettext
+inherit gnome gettext python-dir
 
 EXTRA_OECONF = "--disable-scrollkeeper"
 
@@ -13,7 +13,7 @@ do_install_append() {
 	chown -R root:root ${D}
 }
 
-FILES_${PN} += "${datadir}/xml*"
+FILES_${PN} += "${datadir}/xml* ${PYTHON_SITEPACKAGES_DIR}/*"
 
 RDEPENDS_${PN} = "bash"
 
diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb b/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb
index 0019f45..4554122 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb
@@ -1,7 +1,7 @@
 require gnome-doc-utils.inc
 LIC_FILES_CHKSUM = "file://COPYING.GPL;md5=eb723b61539feef013de476e68b5c50a \
 		    file://COPYING.LGPL;md5=a6f89e2100d9b6cdffcea4f398e37343"
-PR = "r2"
+PR = "r3"
 
 SRC_URI += "file://xsltproc_nonet.patch"
 
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 3/4] iptuils: Add sgmlspl-native to DEPENDS
  2011-07-19 15:34 [PATCH 0/4] Misc fixes, July 19 Tom Rini
  2011-07-19 15:34 ` [PATCH 1/4] metacity: Add gnome-doc-utils to DEPENDS Tom Rini
  2011-07-19 15:34 ` [PATCH 2/4] gnome-doc-utils: Package up python site packages, bump PR Tom Rini
@ 2011-07-19 15:34 ` Tom Rini
  2011-07-19 15:34 ` [PATCH 4/4] btrfs-tools: Add util-linux " Tom Rini
  2011-07-20 16:56 ` [PATCH 0/4] Misc fixes, July 19 Saul Wold
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2011-07-19 15:34 UTC (permalink / raw)
  To: openembedded-core

This is 4fc7d465d684d4952c52adafc1e7032b63039e53 in oe.dev.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
 meta/recipes-extended/iputils/iputils_s20101006.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-extended/iputils/iputils_s20101006.bb b/meta/recipes-extended/iputils/iputils_s20101006.bb
index a7ef40c..c97fce7 100644
--- a/meta/recipes-extended/iputils/iputils_s20101006.bb
+++ b/meta/recipes-extended/iputils/iputils_s20101006.bb
@@ -11,9 +11,9 @@ LIC_FILES_CHKSUM = "file://ping.c;beginline=1;endline=35;md5=f9ceb201733e9a6cf8f
                     file://arping.c;beginline=1;endline=10;md5=ada2a6d06acc90f943bddf40d15e0541 \
                     file://tftpd.c;beginline=1;endline=32;md5=28834bf8a91a5b8a92755dbee709ef96 "
 
-DEPENDS = "sysfsutils openssl docbook-utils-native"
+DEPENDS = "sysfsutils openssl docbook-utils-native sgmlspl-native"
 
-PR = "r0"
+PR = "r1"
 
 SRC_URI = "http://www.skbuff.net/iputils/${BPN}-${PV}.tar.bz2 \
            file://debian/fix-dead-host-ping-stats.diff \
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [PATCH 4/4] btrfs-tools: Add util-linux to DEPENDS
  2011-07-19 15:34 [PATCH 0/4] Misc fixes, July 19 Tom Rini
                   ` (2 preceding siblings ...)
  2011-07-19 15:34 ` [PATCH 3/4] iptuils: Add sgmlspl-native to DEPENDS Tom Rini
@ 2011-07-19 15:34 ` Tom Rini
  2011-07-20 16:56 ` [PATCH 0/4] Misc fixes, July 19 Saul Wold
  4 siblings, 0 replies; 6+ messages in thread
From: Tom Rini @ 2011-07-19 15:34 UTC (permalink / raw)
  To: openembedded-core

This needs libuuid bits in order to build.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
 .../btrfs-tools/btrfs-tools_git.bb                 |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
index a5c556d..9b5a17a 100644
--- a/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
+++ b/meta/recipes-devtools/btrfs-tools/btrfs-tools_git.bb
@@ -10,12 +10,13 @@ HOMEPAGE = "https://btrfs.wiki.kernel.org"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=fcb02dc552a041dee27e4b85c7396067"
 SECTION = "base"
+DEPENDS = "util-linux"
 
 SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-progs-unstable.git;protocol=git;tag=1b444cd2e6ab8dcafdd47dbaeaae369dd1517c17;branch=master"
 
 S = "${WORKDIR}/git"
 
-PR = "r1"
+PR = "r2"
 
 SRC_URI += "file://upstream-tmp/0001-Btrfs-progs-add-a-btrfs-select-super-command-to-over.patch \
 	    file://upstream-tmp/0002-Btrfs-progs-use-safe-string-manipulation-functions.patch \
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH 0/4] Misc fixes, July 19
  2011-07-19 15:34 [PATCH 0/4] Misc fixes, July 19 Tom Rini
                   ` (3 preceding siblings ...)
  2011-07-19 15:34 ` [PATCH 4/4] btrfs-tools: Add util-linux " Tom Rini
@ 2011-07-20 16:56 ` Saul Wold
  4 siblings, 0 replies; 6+ messages in thread
From: Saul Wold @ 2011-07-20 16:56 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 07/19/2011 08:34 AM, Tom Rini wrote:
> Hey all,
>
> As part of doing some "fix builds in very long paths" builds of world I've
> hit a few DEPENDS problems.  The following series is mostly adding DEPENDS
> where they're missing today.  While I was fixing up gnome-doc-utils-native
> I noticed it has the installed but not packaged QA problem so I fixed that
> while in here.
>
> The following changes since commit e66c2999afa2b3efbce8bb46c89f9db5e15f35c7:
>    Saul Wold (1):
>          libx11: ensure nativesdk uses correct DEPENDS and XCB flags
>
> are available in the git repository at:
>
>    git://git.openembedded.org/openembedded-core-contrib trini/misc-fixes-19july
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=trini/misc-fixes-19july
>
> Tom Rini (4):
>    metacity: Add gnome-doc-utils to DEPENDS
>    gnome-doc-utils: Package up python site packages, bump PR
>    iptuils: Add sgmlspl-native to DEPENDS
>    btrfs-tools: Add util-linux to DEPENDS
>
>   .../btrfs-tools/btrfs-tools_git.bb                 |    3 ++-
>   meta/recipes-extended/iputils/iputils_s20101006.bb |    4 ++--
>   meta/recipes-gnome/gnome/gnome-doc-utils.inc       |    4 ++--
>   meta/recipes-gnome/gnome/gnome-doc-utils_0.20.6.bb |    2 +-
>   meta/recipes-gnome/gnome/metacity_2.30.3.bb        |    4 ++--
>   5 files changed, 9 insertions(+), 8 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

Merged into OE-Core

Thanks
	Sau!



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-07-20 17:00 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-19 15:34 [PATCH 0/4] Misc fixes, July 19 Tom Rini
2011-07-19 15:34 ` [PATCH 1/4] metacity: Add gnome-doc-utils to DEPENDS Tom Rini
2011-07-19 15:34 ` [PATCH 2/4] gnome-doc-utils: Package up python site packages, bump PR Tom Rini
2011-07-19 15:34 ` [PATCH 3/4] iptuils: Add sgmlspl-native to DEPENDS Tom Rini
2011-07-19 15:34 ` [PATCH 4/4] btrfs-tools: Add util-linux " Tom Rini
2011-07-20 16:56 ` [PATCH 0/4] Misc fixes, July 19 Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox