* [PATCH 0/3] fix lighttpd pciutils and apt
@ 2016-09-07 8:28 Robert Yang
2016-09-07 8:28 ` [PATCH 1/3] lighttpd: without-memcache -> without-memcached Robert Yang
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Robert Yang @ 2016-09-07 8:28 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 55bb6816aca39bfa25d4f7e2158a57a5f0ac1cca:
oeqa.buildperf: correct globalres time format (2016-09-06 10:24:00 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/3fixes
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/3fixes
Robert Yang (3):
lighttpd: without-memcache -> without-memcached
apt: add PACKAGECONFIG for lz4
pciutils: fix PACKAGECONFIG
meta/recipes-bsp/pciutils/pciutils_3.5.1.bb | 6 +++---
meta/recipes-devtools/apt/apt_1.2.12.bb | 1 +
meta/recipes-extended/lighttpd/lighttpd_1.4.41.bb | 2 +-
3 files changed, 5 insertions(+), 4 deletions(-)
--
2.9.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/3] lighttpd: without-memcache -> without-memcached
2016-09-07 8:28 [PATCH 0/3] fix lighttpd pciutils and apt Robert Yang
@ 2016-09-07 8:28 ` Robert Yang
2016-09-07 8:28 ` [PATCH 2/3] apt: add PACKAGECONFIG for lz4 Robert Yang
2016-09-07 8:28 ` [PATCH 3/3] pciutils: fix PACKAGECONFIG Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2016-09-07 8:28 UTC (permalink / raw)
To: openembedded-core
Fixed:
WARNING: QA Issue: lighttpd: configure was passed unrecognised options: --without-memcache [unknown-configure-option]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-extended/lighttpd/lighttpd_1.4.41.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/lighttpd/lighttpd_1.4.41.bb b/meta/recipes-extended/lighttpd/lighttpd_1.4.41.bb
index bba90cf..1a3f323 100644
--- a/meta/recipes-extended/lighttpd/lighttpd_1.4.41.bb
+++ b/meta/recipes-extended/lighttpd/lighttpd_1.4.41.bb
@@ -36,7 +36,7 @@ EXTRA_OECONF = " \
--without-bzip2 \
--without-ldap \
--without-lua \
- --without-memcache \
+ --without-memcached \
--with-pcre \
--without-webdav-props \
--without-webdav-locks \
--
2.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/3] apt: add PACKAGECONFIG for lz4
2016-09-07 8:28 [PATCH 0/3] fix lighttpd pciutils and apt Robert Yang
2016-09-07 8:28 ` [PATCH 1/3] lighttpd: without-memcache -> without-memcached Robert Yang
@ 2016-09-07 8:28 ` Robert Yang
2016-09-07 8:28 ` [PATCH 3/3] pciutils: fix PACKAGECONFIG Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2016-09-07 8:28 UTC (permalink / raw)
To: openembedded-core
Fixed:
apt-1.2.12: apt rdepends on lz4, but it isn't a build dependency, missing lz4 in DEPENDS or PACKAGECONFIG? [build-deps]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-devtools/apt/apt_1.2.12.bb | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta/recipes-devtools/apt/apt_1.2.12.bb b/meta/recipes-devtools/apt/apt_1.2.12.bb
index 85c0d56..ae0bce9 100644
--- a/meta/recipes-devtools/apt/apt_1.2.12.bb
+++ b/meta/recipes-devtools/apt/apt_1.2.12.bb
@@ -7,6 +7,7 @@ require apt-package.inc
PACKAGECONFIG ??= "lzma"
PACKAGECONFIG[lzma] = "ac_cv_lib_lzma_lzma_easy_encoder=yes,ac_cv_lib_lzma_lzma_easy_encoder=no,xz"
PACKAGECONFIG[bz2] = "ac_cv_lib_bz2_BZ2_bzopen=yes,ac_cv_lib_bz2_BZ2_bzopen=no,bzip2"
+PACKAGECONFIG[lz4] = "ac_cv_lib_lz4_LZ4F_createCompressionContext=yes,ac_cv_lib_lz4_LZ4F_createCompressionContext=no,lz4"
FILES_${PN} += "${bindir}/apt-key"
apt-manpages += "doc/apt-key.8"
--
2.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 3/3] pciutils: fix PACKAGECONFIG
2016-09-07 8:28 [PATCH 0/3] fix lighttpd pciutils and apt Robert Yang
2016-09-07 8:28 ` [PATCH 1/3] lighttpd: without-memcache -> without-memcached Robert Yang
2016-09-07 8:28 ` [PATCH 2/3] apt: add PACKAGECONFIG for lz4 Robert Yang
@ 2016-09-07 8:28 ` Robert Yang
2 siblings, 0 replies; 4+ messages in thread
From: Robert Yang @ 2016-09-07 8:28 UTC (permalink / raw)
To: openembedded-core
The PACKAGECONFIG's value doens't go into EXTRA_OECONF, but
PACKAGECONFIG_CONFARGS.
Fixed:
pciutils-3.5.1: libpci rdepends on libudev, but it isn't a build dependency, missing eudev in DEPENDS or PACKAGECONFIG? [build-deps]
pciutils-3.5.1: pciutils rdepends on libudev, but it isn't a build dependency, missing eudev in DEPENDS or PACKAGECONFIG? [build-deps]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-bsp/pciutils/pciutils_3.5.1.bb | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb b/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb
index a84efd9..d32b119 100644
--- a/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb
+++ b/meta/recipes-bsp/pciutils/pciutils_3.5.1.bb
@@ -27,9 +27,9 @@ PCI_CONF_FLAG = "ZLIB=yes DNS=yes SHARED=yes"
do_configure () {
(
cd lib && \
- # EXTRA_OECONF for this recipe could only possibly contain 'HWDB=yes/no', so we put it
- # before ./configure
- ${PCI_CONF_FLAG} ${EXTRA_OECONF} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH}
+ # PACKAGECONFIG_CONFARGS for this recipe could only possibly contain 'HWDB=yes/no',
+ # so we put it before ./configure
+ ${PCI_CONF_FLAG} ${PACKAGECONFIG_CONFARGS} ./configure ${PV} ${datadir} ${TARGET_OS} ${TARGET_ARCH}
)
}
--
2.9.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-09-07 8:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-07 8:28 [PATCH 0/3] fix lighttpd pciutils and apt Robert Yang
2016-09-07 8:28 ` [PATCH 1/3] lighttpd: without-memcache -> without-memcached Robert Yang
2016-09-07 8:28 ` [PATCH 2/3] apt: add PACKAGECONFIG for lz4 Robert Yang
2016-09-07 8:28 ` [PATCH 3/3] pciutils: fix PACKAGECONFIG Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox