* [PATCH] ppp: sync packaging with OE .dev
@ 2011-07-01 18:17 Koen Kooi
2011-07-01 22:08 ` Richard Purdie
2011-07-04 11:02 ` Steffen Sledz
0 siblings, 2 replies; 4+ messages in thread
From: Koen Kooi @ 2011-07-01 18:17 UTC (permalink / raw)
To: openembedded-core; +Cc: Koen Kooi
This fixes the QA errors and the 2.4.3 vs 2.4.5 copy/paste mistake
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
meta/recipes-connectivity/ppp/ppp_2.4.5.bb | 26 ++++++++++++++------------
1 files changed, 14 insertions(+), 12 deletions(-)
diff --git a/meta/recipes-connectivity/ppp/ppp_2.4.5.bb b/meta/recipes-connectivity/ppp/ppp_2.4.5.bb
index b865afd..72464bf 100644
--- a/meta/recipes-connectivity/ppp/ppp_2.4.5.bb
+++ b/meta/recipes-connectivity/ppp/ppp_2.4.5.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://pppd/ccp.c;beginline=1;endline=29;md5=e2c43fe6e81ff77
file://pppd/plugins/passprompt.c;beginline=1;endline=10;md5=3bcbcdbf0e369c9a3e0b8c8275b065d8 \
file://pppd/tdb.c;beginline=1;endline=27;md5=4ca3a9991b011038d085d6675ae7c4e6 \
file://chat/chat.c;beginline=1;endline=15;md5=0d374b8545ee5c62d7aff1acbd38add2"
-PR = "r1"
+PR = "r2"
SRC_URI = "http://ppp.samba.org/ftp/ppp/ppp-${PV}.tar.gz \
file://makefile.patch \
@@ -31,7 +31,8 @@ SRC_URI[sha256sum] = "43317afec9299f9920b96f840414c977f0385410202d48e56d2fdb8230
inherit autotools
-EXTRA_OEMAKE = "STRIPPROG=${STRIP} MANDIR=${D}${datadir}/man/man8 INCDIR=${D}/usr/include LIBDIR=${D}/usr/lib/pppd/${PV} BINDIR=${D}/usr/sbin"
+TARGET_CC_ARCH += " ${LDFLAGS}"
+EXTRA_OEMAKE = "STRIPPROG=${STRIP} MANDIR=${D}${datadir}/man/man8 INCDIR=${D}${includedir} LIBDIR=${D}${libdir}/pppd/${PV} BINDIR=${D}${sbindir}"
EXTRA_OECONF = "--disable-strip"
do_install_append () {
@@ -50,16 +51,17 @@ do_install_append () {
}
CONFFILES_${PN} = "${sysconfdir}/ppp/pap-secrets ${sysconfdir}/ppp/chap-secrets ${sysconfdir}/ppp/options"
-PACKAGES += "ppp-oa ppp-oe ppp-radius ppp-winbind ppp-minconn ppp-password ppp-tools"
-FILES_${PN} = "/etc /usr/bin /usr/sbin/chat /usr/sbin/pppd"
-FILES_${PN}-dbg += "${libdir}/pppd/2.4.3/.debug"
-FILES_ppp-oa = "/usr/lib/pppd/2.4.3/pppoatm.so"
-FILES_ppp-oe = "/usr/sbin/pppoe-discovery /usr/lib/pppd/2.4.3/rp-pppoe.so"
-FILES_ppp-radius = "/usr/lib/pppd/2.4.3/radius.so /usr/lib/pppd/2.4.3/radattr.so /usr/lib/pppd/2.4.3/radrealms.so"
-FILES_ppp-winbind = "/usr/lib/pppd/2.4.3/winbind.so"
-FILES_ppp-minconn = "/usr/lib/pppd/2.4.3/minconn.so"
-FILES_ppp-password = "/usr/lib/pppd/2.4.3/pass*.so"
-FILES_ppp-tools = "/usr/sbin/pppstats /usr/sbin/pppdump"
+PACKAGES =+ "ppp-oa ppp-oe ppp-radius ppp-winbind ppp-minconn ppp-password ppp-tools"
+FILES_${PN} = "${sysconfdir} ${bindir} ${sbindir}/chat ${sbindir}/pppd"
+FILES_${PN}_nylon = "${sysconfdir} ${bindir} ${sbindir}/chat ${sbindir}/pppd ${sbindir}/tdbread"
+FILES_${PN}-dbg += "${libdir}/pppd/${PV}/.debug"
+FILES_${PN}-oa = "${libdir}/pppd/${PV}/pppoatm.so"
+FILES_${PN}-oe = "${sbindir}/pppoe-discovery ${libdir}/pppd/${PV}/rp-pppoe.so"
+FILES_${PN}-radius = "${libdir}/pppd/${PV}/radius.so ${libdir}/pppd/${PV}/radattr.so ${libdir}/pppd/${PV}/radrealms.so"
+FILES_${PN}-winbind = "${libdir}/pppd/${PV}/winbind.so"
+FILES_${PN}-minconn = "${libdir}/pppd/${PV}/minconn.so"
+FILES_${PN}-password = "${libdir}/pppd/${PV}/pass*.so"
+FILES_${PN}-tools = "${sbindir}/pppstats ${sbindir}/pppdump"
DESCRIPTION_ppp-oa = "Plugin for PPP needed for PPP-over-ATM"
DESCRIPTION_ppp-oe = "Plugin for PPP needed for PPP-over-Ethernet"
DESCRIPTION_ppp-radius = "Plugin for PPP that are related to RADIUS"
--
1.6.6.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] ppp: sync packaging with OE .dev
2011-07-01 18:17 [PATCH] ppp: sync packaging with OE .dev Koen Kooi
@ 2011-07-01 22:08 ` Richard Purdie
2011-07-04 11:02 ` Steffen Sledz
1 sibling, 0 replies; 4+ messages in thread
From: Richard Purdie @ 2011-07-01 22:08 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi
On Fri, 2011-07-01 at 20:17 +0200, Koen Kooi wrote:
> This fixes the QA errors and the 2.4.3 vs 2.4.5 copy/paste mistake
Merged to master, thanks.
Richard
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ppp: sync packaging with OE .dev
2011-07-01 18:17 [PATCH] ppp: sync packaging with OE .dev Koen Kooi
2011-07-01 22:08 ` Richard Purdie
@ 2011-07-04 11:02 ` Steffen Sledz
2011-07-04 12:36 ` Koen Kooi
1 sibling, 1 reply; 4+ messages in thread
From: Steffen Sledz @ 2011-07-04 11:02 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Koen Kooi
Can you please resync again.
Commit e05db51b7aea7a0359babd918d7efbb9cc213d83 introduces an own package for PPPoL2TP plugin.
Adding that package fixes the following error message.
NOTE: package ppp-2.4.5-r1: task do_qa_staging: Started
WARNING: the following files were installed but not shipped in any package:
WARNING: /usr/lib/pppd/2.4.5/pppol2tp.so
WARNING: /usr/lib/pppd/2.4.5/openl2tp.so
Regards,
Steffen
--
DResearch Fahrzeugelektronik GmbH
Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
Fax: +49 30 515932-299
Geschäftsführer: Dr. Michael Weber, Werner Mögle;
Amtsgericht Berlin Charlottenburg; HRB 130120 B;
Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] ppp: sync packaging with OE .dev
2011-07-04 11:02 ` Steffen Sledz
@ 2011-07-04 12:36 ` Koen Kooi
0 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2011-07-04 12:36 UTC (permalink / raw)
To: Steffen Sledz; +Cc: Patches and discussions about the oe-core layer
those don't get created on my system :(
Op 4 jul. 2011 om 12:02 heeft Steffen Sledz <sledz@dresearch-fe.de> het volgende geschreven:
> Can you please resync again.
>
> Commit e05db51b7aea7a0359babd918d7efbb9cc213d83 introduces an own package for PPPoL2TP plugin.
>
> Adding that package fixes the following error message.
>
> NOTE: package ppp-2.4.5-r1: task do_qa_staging: Started
> WARNING: the following files were installed but not shipped in any package:
> WARNING: /usr/lib/pppd/2.4.5/pppol2tp.so
> WARNING: /usr/lib/pppd/2.4.5/openl2tp.so
>
> Regards,
> Steffen
>
> --
> DResearch Fahrzeugelektronik GmbH
> Otto-Schmirgal-Str. 3, 10319 Berlin, Germany
> Tel: +49 30 515932-237 mailto:sledz@dresearch-fe.de
> Fax: +49 30 515932-299
> Geschäftsführer: Dr. Michael Weber, Werner Mögle;
> Amtsgericht Berlin Charlottenburg; HRB 130120 B;
> Ust.-IDNr. DE273952058
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-07-04 12:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-01 18:17 [PATCH] ppp: sync packaging with OE .dev Koen Kooi
2011-07-01 22:08 ` Richard Purdie
2011-07-04 11:02 ` Steffen Sledz
2011-07-04 12:36 ` Koen Kooi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox