* [meta-networking] [PATCH 1/3] esmtp: use BPN in SRC_URI
@ 2014-12-19 8:29 Robert Yang
2014-12-19 8:29 ` [meta-networking] [PATCH 2/3] esmtp: remove sendmail from sysroot Robert Yang
2014-12-19 8:29 ` [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue Robert Yang
0 siblings, 2 replies; 5+ messages in thread
From: Robert Yang @ 2014-12-19 8:29 UTC (permalink / raw)
To: openembedded-devel
(LOCAL REV: NOT UPSTREAM) -- Sent to meta-networking on 20141219
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta-networking/recipes-support/esmtp/esmtp_1.2.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-networking/recipes-support/esmtp/esmtp_1.2.bb b/meta-networking/recipes-support/esmtp/esmtp_1.2.bb
index 46d468c..60d34e1 100644
--- a/meta-networking/recipes-support/esmtp/esmtp_1.2.bb
+++ b/meta-networking/recipes-support/esmtp/esmtp_1.2.bb
@@ -11,7 +11,7 @@ DEPENDS = "libesmtp"
LICENSE = "GPL-2.0"
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
-SRC_URI = "http://nchc.dl.sourceforge.net/project/${PN}/${PN}/${PV}/${PN}-${PV}.tar.bz2"
+SRC_URI = "http://nchc.dl.sourceforge.net/project/${BPN}/${BPN}/${PV}/${BPN}-${PV}.tar.bz2"
# Have to set this or we get -L/lib in LDFLAGS
EXTRA_OECONF = "--with-libesmtp=${STAGING_EXECPREFIXDIR}"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-networking] [PATCH 2/3] esmtp: remove sendmail from sysroot
2014-12-19 8:29 [meta-networking] [PATCH 1/3] esmtp: use BPN in SRC_URI Robert Yang
@ 2014-12-19 8:29 ` Robert Yang
2014-12-19 8:29 ` [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue Robert Yang
1 sibling, 0 replies; 5+ messages in thread
From: Robert Yang @ 2014-12-19 8:29 UTC (permalink / raw)
To: openembedded-devel
The sysroot/${libdir}/sendmail conflicts with lsb's, and it's a
symlink to ${bindir}/esmtp which is meaningless for sysroot, so
remove it.
(LOCAL REV: NOT UPSTREAM) -- Sent to meta-networking on 20141219
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta-networking/recipes-support/esmtp/esmtp_1.2.bb | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/meta-networking/recipes-support/esmtp/esmtp_1.2.bb b/meta-networking/recipes-support/esmtp/esmtp_1.2.bb
index 60d34e1..21cc1c3 100644
--- a/meta-networking/recipes-support/esmtp/esmtp_1.2.bb
+++ b/meta-networking/recipes-support/esmtp/esmtp_1.2.bb
@@ -30,3 +30,11 @@ SRC_URI[md5sum] = "79a9c1f9023d53f35bb82bf446150a72"
SRC_URI[sha256sum] = "a0d26931bf731f97514da266d079d8bc7d73c65b3499ed080576ab606b21c0ce"
FILES_${PN} += "${libdir}/"
+
+# The sysroot/${libdir}/sendmail conflicts with lsb's, and it's a
+# symlink to ${bindir}/esmtp which is meaningless for sysroot, so
+# remove it.
+SYSROOT_PREPROCESS_FUNCS += "remove_sysroot_sendmail"
+remove_sysroot_sendmail() {
+ rm -r "${SYSROOT_DESTDIR}${libdir}/sendmail"
+}
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue
2014-12-19 8:29 [meta-networking] [PATCH 1/3] esmtp: use BPN in SRC_URI Robert Yang
2014-12-19 8:29 ` [meta-networking] [PATCH 2/3] esmtp: remove sendmail from sysroot Robert Yang
@ 2014-12-19 8:29 ` Robert Yang
2014-12-29 20:06 ` Joe MacDonald
1 sibling, 1 reply; 5+ messages in thread
From: Robert Yang @ 2014-12-19 8:29 UTC (permalink / raw)
To: openembedded-devel
Fixed:
rusers.x: No such file or directory
Makefile:44: recipe for target 'rusers_xdr.c' failed
(LOCAL REV: NOT UPSTREAM) -- Sent to meta-networking on 20141219
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
...rusersd-Makefile-fix-parallel-build-issue.patch | 30 ++++++++++++++++++++
.../netkit-rusers/netkit-rusers_0.17.bb | 1 +
2 files changed, 31 insertions(+)
create mode 100644 meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
new file mode 100644
index 0000000..d85178d
--- /dev/null
+++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
@@ -0,0 +1,30 @@
+From c23cc112a480f90950de5cf1de09b1a7e732bf21 Mon Sep 17 00:00:00 2001
+From: Robert Yang <liezhi.yang@windriver.com>
+Date: Mon, 15 Dec 2014 18:31:13 -0800
+Subject: [PATCH] rpc.rusersd/Makefile: fix parallel build issue
+
+Fixed:
+rusers.x: No such file or directory
+Makefile:44: recipe for target 'rusers_xdr.c' failed
+
+Upstream-Status: Pending
+
+Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
+---
+ rpc.rusersd/Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/rpc.rusersd/Makefile b/rpc.rusersd/Makefile
+index 792f528..65a424a 100644
+--- a/rpc.rusersd/Makefile
++++ b/rpc.rusersd/Makefile
+@@ -40,5 +40,5 @@ rusers.x:
+ rusers.h: $(RUSERSX) rusers.x
+ $(RPCGEN) -h -o rusers.h rusers.x
+
+-rusers_xdr.c: $(RUSERSX)
++rusers_xdr.c: $(RUSERSX) rusers.x
+ $(RPCGEN) -c -C -o rusers_xdr.c rusers.x
+--
+1.7.9.5
+
diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
index e59f7a7..c930842 100644
--- a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
+++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
@@ -8,6 +8,7 @@ DEPENDS = " tcp-wrappers libtirpc rpcbind"
SRC_URI = "${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}.orig.tar.gz;name=archive \
${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}-8.diff.gz;name=patch8 \
+ file://rpc.rusersd-Makefile-fix-parallel-build-issue.patch \
"
SRC_URI[archive.md5sum] = "dc99a80b9fde2ab427c874f88f1c1602"
--
1.7.9.5
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue
2014-12-19 8:29 ` [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue Robert Yang
@ 2014-12-29 20:06 ` Joe MacDonald
2014-12-30 5:40 ` Robert Yang
0 siblings, 1 reply; 5+ messages in thread
From: Joe MacDonald @ 2014-12-29 20:06 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 3099 bytes --]
Hi Robert,
I merged this patch after removing your "LOCAL REV:" comment from the
commit log) but I haven't merged the esmtp ones yet, I wanted to confirm
first that the runtime behaviour wasn't impacted. Just FYI.
-J
[[oe] [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue] On 14.12.19 (Fri 00:29) Robert Yang wrote:
> Fixed:
> rusers.x: No such file or directory
> Makefile:44: recipe for target 'rusers_xdr.c' failed
>
> (LOCAL REV: NOT UPSTREAM) -- Sent to meta-networking on 20141219
>
> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> ---
> ...rusersd-Makefile-fix-parallel-build-issue.patch | 30 ++++++++++++++++++++
> .../netkit-rusers/netkit-rusers_0.17.bb | 1 +
> 2 files changed, 31 insertions(+)
> create mode 100644 meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
>
> diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
> new file mode 100644
> index 0000000..d85178d
> --- /dev/null
> +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
> @@ -0,0 +1,30 @@
> +From c23cc112a480f90950de5cf1de09b1a7e732bf21 Mon Sep 17 00:00:00 2001
> +From: Robert Yang <liezhi.yang@windriver.com>
> +Date: Mon, 15 Dec 2014 18:31:13 -0800
> +Subject: [PATCH] rpc.rusersd/Makefile: fix parallel build issue
> +
> +Fixed:
> +rusers.x: No such file or directory
> +Makefile:44: recipe for target 'rusers_xdr.c' failed
> +
> +Upstream-Status: Pending
> +
> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
> +---
> + rpc.rusersd/Makefile | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/rpc.rusersd/Makefile b/rpc.rusersd/Makefile
> +index 792f528..65a424a 100644
> +--- a/rpc.rusersd/Makefile
> ++++ b/rpc.rusersd/Makefile
> +@@ -40,5 +40,5 @@ rusers.x:
> + rusers.h: $(RUSERSX) rusers.x
> + $(RPCGEN) -h -o rusers.h rusers.x
> +
> +-rusers_xdr.c: $(RUSERSX)
> ++rusers_xdr.c: $(RUSERSX) rusers.x
> + $(RPCGEN) -c -C -o rusers_xdr.c rusers.x
> +--
> +1.7.9.5
> +
> diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> index e59f7a7..c930842 100644
> --- a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
> @@ -8,6 +8,7 @@ DEPENDS = " tcp-wrappers libtirpc rpcbind"
>
> SRC_URI = "${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}.orig.tar.gz;name=archive \
> ${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}-8.diff.gz;name=patch8 \
> + file://rpc.rusersd-Makefile-fix-parallel-build-issue.patch \
> "
>
> SRC_URI[archive.md5sum] = "dc99a80b9fde2ab427c874f88f1c1602"
> --
> 1.7.9.5
>
--
-Joe MacDonald.
:wq
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 501 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue
2014-12-29 20:06 ` Joe MacDonald
@ 2014-12-30 5:40 ` Robert Yang
0 siblings, 0 replies; 5+ messages in thread
From: Robert Yang @ 2014-12-30 5:40 UTC (permalink / raw)
To: openembedded-devel
On 12/30/2014 04:06 AM, Joe MacDonald wrote:
> Hi Robert,
>
> I merged this patch after removing your "LOCAL REV:" comment from the
> commit log) but I haven't merged the esmtp ones yet, I wanted to confirm
> first that the runtime behaviour wasn't impacted. Just FYI.
Ah, sorry, my fault, I will remove the "(LOCAL REV" and send again, it
doesn't affect the runtime behaviour since I only remove it from sysroot.
// Robert
>
> -J
>
> [[oe] [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue] On 14.12.19 (Fri 00:29) Robert Yang wrote:
>
>> Fixed:
>> rusers.x: No such file or directory
>> Makefile:44: recipe for target 'rusers_xdr.c' failed
>>
>> (LOCAL REV: NOT UPSTREAM) -- Sent to meta-networking on 20141219
>>
>> Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>> ---
>> ...rusersd-Makefile-fix-parallel-build-issue.patch | 30 ++++++++++++++++++++
>> .../netkit-rusers/netkit-rusers_0.17.bb | 1 +
>> 2 files changed, 31 insertions(+)
>> create mode 100644 meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
>>
>> diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
>> new file mode 100644
>> index 0000000..d85178d
>> --- /dev/null
>> +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers/rpc.rusersd-Makefile-fix-parallel-build-issue.patch
>> @@ -0,0 +1,30 @@
>> +From c23cc112a480f90950de5cf1de09b1a7e732bf21 Mon Sep 17 00:00:00 2001
>> +From: Robert Yang <liezhi.yang@windriver.com>
>> +Date: Mon, 15 Dec 2014 18:31:13 -0800
>> +Subject: [PATCH] rpc.rusersd/Makefile: fix parallel build issue
>> +
>> +Fixed:
>> +rusers.x: No such file or directory
>> +Makefile:44: recipe for target 'rusers_xdr.c' failed
>> +
>> +Upstream-Status: Pending
>> +
>> +Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
>> +---
>> + rpc.rusersd/Makefile | 2 +-
>> + 1 file changed, 1 insertion(+), 1 deletion(-)
>> +
>> +diff --git a/rpc.rusersd/Makefile b/rpc.rusersd/Makefile
>> +index 792f528..65a424a 100644
>> +--- a/rpc.rusersd/Makefile
>> ++++ b/rpc.rusersd/Makefile
>> +@@ -40,5 +40,5 @@ rusers.x:
>> + rusers.h: $(RUSERSX) rusers.x
>> + $(RPCGEN) -h -o rusers.h rusers.x
>> +
>> +-rusers_xdr.c: $(RUSERSX)
>> ++rusers_xdr.c: $(RUSERSX) rusers.x
>> + $(RPCGEN) -c -C -o rusers_xdr.c rusers.x
>> +--
>> +1.7.9.5
>> +
>> diff --git a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
>> index e59f7a7..c930842 100644
>> --- a/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
>> +++ b/meta-networking/recipes-netkit/netkit-rusers/netkit-rusers_0.17.bb
>> @@ -8,6 +8,7 @@ DEPENDS = " tcp-wrappers libtirpc rpcbind"
>>
>> SRC_URI = "${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}.orig.tar.gz;name=archive \
>> ${DEBIAN_MIRROR}/main/n/${BPN}/${BPN}_${PV}-8.diff.gz;name=patch8 \
>> + file://rpc.rusersd-Makefile-fix-parallel-build-issue.patch \
>> "
>>
>> SRC_URI[archive.md5sum] = "dc99a80b9fde2ab427c874f88f1c1602"
>> --
>> 1.7.9.5
>>
>>
>>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-12-30 5:40 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-19 8:29 [meta-networking] [PATCH 1/3] esmtp: use BPN in SRC_URI Robert Yang
2014-12-19 8:29 ` [meta-networking] [PATCH 2/3] esmtp: remove sendmail from sysroot Robert Yang
2014-12-19 8:29 ` [meta-networking] [PATCH 3/3] netkit-rusers: fix parallel build issue Robert Yang
2014-12-29 20:06 ` Joe MacDonald
2014-12-30 5:40 ` Robert Yang
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.