* [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings.
@ 2012-07-06 2:52 Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 2/4] networkmanager: Set SYSTEMD_PACKAGES as networkmanager-systemd Elvis Dowson
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Elvis Dowson @ 2012-07-06 2:52 UTC (permalink / raw)
To: openembedded-devel; +Cc: Elvis Dowson
This commit fixes the following warnings:
WARNING: Unable to get checksum for python-numpy SRC_URI entry config.h: file could not be found
WARNING: Unable to get checksum for python-numpy SRC_URI entry numpyconfig.h: file could not be found
Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
---
.../recipes-devtools/python/python-numpy_1.4.1.bb | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb b/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
index a67bf8b..c1923f7 100644
--- a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
+++ b/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
@@ -5,7 +5,14 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3c42211d73c3faa1026e671dd39883fa"
PR = "r3"
SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \
- file://config.h \
+ ${CONFIGFILESURI} \
+ "
+CONFIGFILESURI ?= ""
+
+CONFIGFILESURI_arm = "file://config.h \
+ file://numpyconfig.h \
+ "
+CONFIGFILESURI_mipsel = "file://config.h \
file://numpyconfig.h \
"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-openembedded 2/4] networkmanager: Set SYSTEMD_PACKAGES as networkmanager-systemd.
2012-07-06 2:52 [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Elvis Dowson
@ 2012-07-06 2:52 ` Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 3/4] lighttpd: Rename to lighttpd_1.4.31.bbappend Elvis Dowson
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Elvis Dowson @ 2012-07-06 2:52 UTC (permalink / raw)
To: openembedded-devel; +Cc: Elvis Dowson
This commit fixes WARNING:
/tool/yocto/meta-openembedded/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bb:
it is recommended to set SYSTEMD_PACKAGES as <existing-package>-systemd
Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
---
.../networkmanager/networkmanager_0.9.2.0.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bb b/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bb
index 221dc2c..d681e0c 100644
--- a/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bb
+++ b/meta-oe/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bb
@@ -54,7 +54,7 @@ do_install_append () {
install -d ${D}/etc/NetworkManager/VPN
}
-SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_PACKAGES = "${PN}-systemd"
SYSTEMD_SERVICE = "NetworkManager.service"
PACKAGES =+ "libnmutil libnmglib libnmglib-vpn ${PN}-tests"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-openembedded 3/4] lighttpd: Rename to lighttpd_1.4.31.bbappend.
2012-07-06 2:52 [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 2/4] networkmanager: Set SYSTEMD_PACKAGES as networkmanager-systemd Elvis Dowson
@ 2012-07-06 2:52 ` Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 4/4] lighttpd: Set SYSTEMD_PACKAGES as lighttpd-systemd Elvis Dowson
2012-07-18 7:24 ` [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Martin Jansa
3 siblings, 0 replies; 6+ messages in thread
From: Elvis Dowson @ 2012-07-06 2:52 UTC (permalink / raw)
To: openembedded-devel; +Cc: Elvis Dowson
This commit renames the lighttpd bbappend file to match the recipe version
provided in poky/meta/recipes-extended/lighttpd
Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
---
.../lighttpd/lighttpd_1.4.30.bbappend | 10 ----------
.../lighttpd/lighttpd_1.4.31.bbappend | 10 ++++++++++
2 files changed, 10 insertions(+), 10 deletions(-)
delete mode 100644 meta-oe/recipes-extended/lighttpd/lighttpd_1.4.30.bbappend
create mode 100644 meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
diff --git a/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.30.bbappend b/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.30.bbappend
deleted file mode 100644
index 1341405..0000000
--- a/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.30.bbappend
+++ /dev/null
@@ -1,10 +0,0 @@
-FILESEXTRAPATHS := "${THISDIR}/${PN}"
-
-PRINC := "${@int(PRINC) + 3}"
-
-inherit systemd
-
-SRC_URI += "file://lighttpd.service"
-
-SYSTEMD_PACKAGES = "${PN}"
-SYSTEMD_SERVICE_${PN} = "lighttpd.service"
diff --git a/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend b/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
new file mode 100644
index 0000000..1341405
--- /dev/null
+++ b/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
@@ -0,0 +1,10 @@
+FILESEXTRAPATHS := "${THISDIR}/${PN}"
+
+PRINC := "${@int(PRINC) + 3}"
+
+inherit systemd
+
+SRC_URI += "file://lighttpd.service"
+
+SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_SERVICE_${PN} = "lighttpd.service"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-openembedded 4/4] lighttpd: Set SYSTEMD_PACKAGES as lighttpd-systemd.
2012-07-06 2:52 [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 2/4] networkmanager: Set SYSTEMD_PACKAGES as networkmanager-systemd Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 3/4] lighttpd: Rename to lighttpd_1.4.31.bbappend Elvis Dowson
@ 2012-07-06 2:52 ` Elvis Dowson
2012-07-07 18:35 ` Otavio Salvador
2012-07-18 7:24 ` [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Martin Jansa
3 siblings, 1 reply; 6+ messages in thread
From: Elvis Dowson @ 2012-07-06 2:52 UTC (permalink / raw)
To: openembedded-devel; +Cc: Elvis Dowson
This commit fixes WARNING:
/tool/yocto/poky/meta/recipes-extended/lighttpd/lighttpd_1.4.31.bb:
it is recommended to set SYSTEMD_PACKAGES as <existing-package>-systemd
Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
---
.../lighttpd/lighttpd_1.4.31.bbappend | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend b/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
index 1341405..b02f35c 100644
--- a/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
+++ b/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
@@ -6,5 +6,5 @@ inherit systemd
SRC_URI += "file://lighttpd.service"
-SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_PACKAGES = "${PN}-systemd"
SYSTEMD_SERVICE_${PN} = "lighttpd.service"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [meta-openembedded 4/4] lighttpd: Set SYSTEMD_PACKAGES as lighttpd-systemd.
2012-07-06 2:52 ` [meta-openembedded 4/4] lighttpd: Set SYSTEMD_PACKAGES as lighttpd-systemd Elvis Dowson
@ 2012-07-07 18:35 ` Otavio Salvador
0 siblings, 0 replies; 6+ messages in thread
From: Otavio Salvador @ 2012-07-07 18:35 UTC (permalink / raw)
To: openembedded-devel
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
On Thu, Jul 5, 2012 at 11:52 PM, Elvis Dowson <elvis.dowson@gmail.com> wrote:
> This commit fixes WARNING:
> /tool/yocto/poky/meta/recipes-extended/lighttpd/lighttpd_1.4.31.bb:
> it is recommended to set SYSTEMD_PACKAGES as <existing-package>-systemd
>
> Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
> ---
> .../lighttpd/lighttpd_1.4.31.bbappend | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend b/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
> index 1341405..b02f35c 100644
> --- a/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
> +++ b/meta-oe/recipes-extended/lighttpd/lighttpd_1.4.31.bbappend
> @@ -6,5 +6,5 @@ inherit systemd
>
> SRC_URI += "file://lighttpd.service"
>
> -SYSTEMD_PACKAGES = "${PN}"
> +SYSTEMD_PACKAGES = "${PN}-systemd"
> SYSTEMD_SERVICE_${PN} = "lighttpd.service"
> --
> 1.7.9.5
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
--
Otavio Salvador O.S. Systems
E-mail: otavio@ossystems.com.br http://www.ossystems.com.br
Mobile: +55 53 9981-7854 http://projetos.ossystems.com.br
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings.
2012-07-06 2:52 [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Elvis Dowson
` (2 preceding siblings ...)
2012-07-06 2:52 ` [meta-openembedded 4/4] lighttpd: Set SYSTEMD_PACKAGES as lighttpd-systemd Elvis Dowson
@ 2012-07-18 7:24 ` Martin Jansa
3 siblings, 0 replies; 6+ messages in thread
From: Martin Jansa @ 2012-07-18 7:24 UTC (permalink / raw)
To: openembedded-devel
On Fri, Jul 6, 2012 at 4:52 AM, Elvis Dowson <elvis.dowson@gmail.com> wrote:
> This commit fixes the following warnings:
> WARNING: Unable to get checksum for python-numpy SRC_URI entry config.h: file could not be found
> WARNING: Unable to get checksum for python-numpy SRC_URI entry numpyconfig.h: file could not be found
>
> Signed-off-by: Elvis Dowson <elvis.dowson@gmail.com>
> ---
> .../recipes-devtools/python/python-numpy_1.4.1.bb | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb b/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
> index a67bf8b..c1923f7 100644
> --- a/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
> +++ b/meta-oe/recipes-devtools/python/python-numpy_1.4.1.bb
> @@ -5,7 +5,14 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3c42211d73c3faa1026e671dd39883fa"
> PR = "r3"
>
> SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/numpy-${PV}.tar.gz \
> - file://config.h \
> + ${CONFIGFILESURI} \
> + "
> +CONFIGFILESURI ?= ""
> +
> +CONFIGFILESURI_arm = "file://config.h \
> + file://numpyconfig.h \
> + "
> +CONFIGFILESURI_mipsel = "file://config.h \
> file://numpyconfig.h \
> "
Does python-numpy build for other archs (without config.h and numpyconfig.h)?
If no then please add COMPATIBLE_HOST restriction to arm or mipsel.
It can be in follow-up patch..
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-07-18 7:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-06 2:52 [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 2/4] networkmanager: Set SYSTEMD_PACKAGES as networkmanager-systemd Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 3/4] lighttpd: Rename to lighttpd_1.4.31.bbappend Elvis Dowson
2012-07-06 2:52 ` [meta-openembedded 4/4] lighttpd: Set SYSTEMD_PACKAGES as lighttpd-systemd Elvis Dowson
2012-07-07 18:35 ` Otavio Salvador
2012-07-18 7:24 ` [meta-openembedded 1/4] python_numpy: Fix SRC_URI warnings Martin Jansa
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox