[oe] [meta-networking][PATCH v3] phytool: Add recipe
A nice tool to directly read, write and interpret ethernet PHY data. Very useful when debugging PHY or MDIO problems, which ethtool does not do. Signed-off-by: Mike Looijmans --- v3: Add SRCPV to PV Indent using spaces instead of tab v2: Fix LICENSE filename and checksum Honor LDFLAGS value (patch accepted upstream) meta-networking/recipes-support/phytool/phytool.bb | 14 ++ 1 file changed, 14 insertions(+) create mode 100644 meta-networking/recipes-support/phytool/phytool.bb diff --git a/meta-networking/recipes-support/phytool/phytool.bb b/meta-networking/recipes-support/phytool/phytool.bb new file mode 100644 index 000..e4391df --- /dev/null +++ b/meta-networking/recipes-support/phytool/phytool.bb @@ -0,0 +1,14 @@ +SUMMARY = "PHY interface tool for Linux" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0" + +PV = "1.0.1+git${SRCPV}" +SRCREV = "3149bfdb4f513e2f0da0a7d0bc5d0873578696f2" +SRC_URI = "git://github.com/wkz/phytool.git" + +S = "${WORKDIR}/git" + +do_install() { +install -d ${D}${prefix}/bin +oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install +} -- 1.9.1 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-networking][PATCH v2] phytool: Add recipe
On 05-10-16 18:32, Martin Jansa wrote: On Wed, Oct 05, 2016 at 08:38:07AM -0700, Khem Raj wrote: On Wed, Oct 5, 2016 at 2:34 AM, Mike Looijmans wrote: A nice tool to directly read, write and interpret ethernet PHY data. Very useful when debugging PHY or MDIO problems, which ethtool does not do. Signed-off-by: Mike Looijmans --- v2: Fix LICENSE filename and checksum Honor LDFLAGS value (patch accepted upstream) meta-networking/recipes-support/phytool/phytool.bb | 14 ++ 1 file changed, 14 insertions(+) create mode 100644 meta-networking/recipes-support/phytool/phytool.bb diff --git a/meta-networking/recipes-support/phytool/phytool.bb b/meta-networking/recipes-support/phytool/phytool.bb new file mode 100644 index 000..d451aa9 --- /dev/null +++ b/meta-networking/recipes-support/phytool/phytool.bb @@ -0,0 +1,14 @@ +SUMMARY = "PHY interface tool for Linux" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0" + +PV = "1.0.1" perhaps its better to include SRCPV in PV above since the SRCREV below is really 1.0.1+some more commits. moreover we get srcrev accounted for task hashes Will do. +SRCREV = "3149bfdb4f513e2f0da0a7d0bc5d0873578696f2" +SRC_URI = "git://github.com/wkz/phytool.git" + +S = "${WORKDIR}/git" + +do_install() { + install -d ${D}${prefix}/bin + oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install We're not using tabs for indentation. see http://www.openembedded.org/wiki/Styleguide Will fix in v3. I also want to move it to another location in meta-oe, because meta-networking depends on meta-python and it's really weird to have to add meta-python to your layers just to get a simple C binary tool. Mike. Kind regards, Mike Looijmans System Expert TOPIC Products Materiaalweg 4, NL-5681 RJ Best Postbus 440, NL-5680 AK Best Telefoon: +31 (0) 499 33 69 79 E-mail: mike.looijm...@topicproducts.com Website: www.topicproducts.com Please consider the environment before printing this e-mail -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] [meta-networking][PATCH] wireshark: update to 2.2.1
Restore PE includes 2 security fixes: wnpa-sec-2016-57. NCP dissector crash. Fixed in 2.2.1. wnpa-sec-2016-56. Bluetooth L2CAP dissector crash. Fixed in 2.2.1. see https://www.wireshark.org/docs/relnotes/wireshark-2.2.1.html Signed-off-by: Armin Kuster --- .../wireshark/{wireshark_2.2.0.bb => wireshark_2.2.1.bb} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename meta-networking/recipes-support/wireshark/{wireshark_2.2.0.bb => wireshark_2.2.1.bb} (93%) diff --git a/meta-networking/recipes-support/wireshark/wireshark_2.2.0.bb b/meta-networking/recipes-support/wireshark/wireshark_2.2.1.bb similarity index 93% rename from meta-networking/recipes-support/wireshark/wireshark_2.2.0.bb rename to meta-networking/recipes-support/wireshark/wireshark_2.2.1.bb index dca3be6..a5fb7f6 100644 --- a/meta-networking/recipes-support/wireshark/wireshark_2.2.0.bb +++ b/meta-networking/recipes-support/wireshark/wireshark_2.2.1.bb @@ -8,8 +8,9 @@ DEPENDS = "pcre expat glib-2.0 sbc" SRC_URI = "https://2.na.dl.wireshark.org/src/all-versions/${BP}.tar.bz2"; -SRC_URI[md5sum] = "c7de0997f74934f25b456846cf75cb81" -SRC_URI[sha256sum] = "a6847e741efcba6cb9d92d464d4219917bee3ad0b8f5b0f80d4388ad2f3f1104" +PE = "1" +SRC_URI[md5sum] = "49a1023a69ac108ca089d750eee50e37" +SRC_URI[sha256sum] = "900e22af04c8b35e0d02a25a360ab1fb7cfe5ac18fc48a9afd75a7103e569149" inherit autotools pkgconfig perlnative -- 2.7.4 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-networking][PATCH v2] phytool: Add recipe
On Wed, Oct 05, 2016 at 08:38:07AM -0700, Khem Raj wrote: > On Wed, Oct 5, 2016 at 2:34 AM, Mike Looijmans > wrote: > > A nice tool to directly read, write and interpret ethernet PHY data. > > Very useful when debugging PHY or MDIO problems, which ethtool does > > not do. > > > > Signed-off-by: Mike Looijmans > > --- > > v2: Fix LICENSE filename and checksum > > Honor LDFLAGS value (patch accepted upstream) > > > > meta-networking/recipes-support/phytool/phytool.bb | 14 ++ > > 1 file changed, 14 insertions(+) > > create mode 100644 meta-networking/recipes-support/phytool/phytool.bb > > > > diff --git a/meta-networking/recipes-support/phytool/phytool.bb > > b/meta-networking/recipes-support/phytool/phytool.bb > > new file mode 100644 > > index 000..d451aa9 > > --- /dev/null > > +++ b/meta-networking/recipes-support/phytool/phytool.bb > > @@ -0,0 +1,14 @@ > > +SUMMARY = "PHY interface tool for Linux" > > +LICENSE = "GPLv2" > > +LIC_FILES_CHKSUM = "file://LICENSE;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0" > > + > > +PV = "1.0.1" > > perhaps its better to include SRCPV in PV above since the SRCREV > below is really 1.0.1+some more commits. moreover we get srcrev > accounted for task hashes > > > +SRCREV = "3149bfdb4f513e2f0da0a7d0bc5d0873578696f2" > > +SRC_URI = "git://github.com/wkz/phytool.git" > > + > > +S = "${WORKDIR}/git" > > + > > +do_install() { > > + install -d ${D}${prefix}/bin > > + oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install We're not using tabs for indentation. see http://www.openembedded.org/wiki/Styleguide > > +} > > -- > > 1.9.1 > > > > -- > > ___ > > Openembedded-devel mailing list > > Openembedded-devel@lists.openembedded.org > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel > -- > ___ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com signature.asc Description: Digital signature -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-networking][PATCH] wireshark: update to 2.2
On 10/02/2016 04:13 PM, Khem Raj wrote: On Sep 8, 2016, at 7:11 PM, Armin Kuster wrote: remove unused config params. Drop PE Thats going to cause problem for feeds k. There is a an new update was just release. I will restore the PE when I send the update. - armin Drop do_configure_prepend update PACKAGECONFIG's for graphics Signed-off-by: Armin Kuster --- .../{wireshark_2.0.5.bb => wireshark_2.2.0.bb} | 24 ++ 1 file changed, 6 insertions(+), 18 deletions(-) rename meta-networking/recipes-support/wireshark/{wireshark_2.0.5.bb => wireshark_2.2.0.bb} (69%) diff --git a/meta-networking/recipes-support/wireshark/wireshark_2.0.5.bb b/meta-networking/recipes-support/wireshark/wireshark_2.2.0.bb similarity index 69% rename from meta-networking/recipes-support/wireshark/wireshark_2.0.5.bb rename to meta-networking/recipes-support/wireshark/wireshark_2.2.0.bb index 31ca4d2..dca3be6 100644 --- a/meta-networking/recipes-support/wireshark/wireshark_2.0.5.bb +++ b/meta-networking/recipes-support/wireshark/wireshark_2.2.0.bb @@ -8,21 +8,16 @@ DEPENDS = "pcre expat glib-2.0 sbc" SRC_URI = "https://2.na.dl.wireshark.org/src/all-versions/${BP}.tar.bz2"; -SRC_URI[md5sum] = "627b5fc6cf0aeca196c75debd5e69b14" -SRC_URI[sha256sum] = "0ce0241330828973f5b4efee422a3760cab8ce0b41e7721c4b9fd185be1bb10b" - -PE = "1" +SRC_URI[md5sum] = "c7de0997f74934f25b456846cf75cb81" +SRC_URI[sha256sum] = "a6847e741efcba6cb9d92d464d4219917bee3ad0b8f5b0f80d4388ad2f3f1104" inherit autotools pkgconfig perlnative ARM_INSTRUCTION_SET = "arm" -# Works with either gtk+ or gtk3. -WHICH_GTK = "gtk+" PACKAGECONFIG ?= "libpcap gnutls libnl libcap" PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "x11", "gtk2 graphics", "", d)}" -PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "ipv6", "ipv6", "", d)}" #PACKAGECONFIG += " ${@bb.utils.contains("DISTRO_FEATURES", "opengl", "gtk3", "", d)}" PACKAGECONFIG[libcap] = "--with-libcap=${STAGING_LIBDIR}, --with-libcap=no --enable-pcap-ng-default , libcap" @@ -30,10 +25,9 @@ PACKAGECONFIG[libpcap] = "--with-pcap=${STAGING_LIBDIR} --with-pcap-remote, --wi PACKAGECONFIG[libsmi] = "--with-libsmi=yes, --with-libsmi=no, libsmi" PACKAGECONFIG[libnl] = "--with-libnl=yes, --with-libnl=no, libnl" PACKAGECONFIG[portaudio] = "--with-portaudio=yes, --with-portaudio=no, portaudio-v19" -PACKAGECONFIG[gtk2] = "--with-gtk2=yes, --with-gtk2=no, gtk+" -PACKAGECONFIG[gtk3] = "--with-gtk3=yes, --with-gtk3=no, gtk+3" -PACKAGECONFIG[graphics] = "--enable-wireshark, --disable-wireshark," -PACKAGECONFIG[ipv6] = "--enable-ipv6, --disable-ipv6," +PACKAGECONFIG[gtk2] = "--with-gtk=2, , gtk+" +PACKAGECONFIG[gtk3] = "--with-gtk=3, , gtk+3" +PACKAGECONFIG[graphics] = "--enable-wireshark, --with-gtk=no --disable-wireshark," PACKAGECONFIG[gnutls] = "--with-gnutls=yes, --with-gnutls=no, gnutls" PACKAGECONFIG[gcrypt] = "--with-gcrypt=yes, --with-gcrypt=no, libgcrypt" PACKAGECONFIG[ssl] = "--with-ssl=yes, --with-ssl=no, openssl" @@ -44,15 +38,9 @@ PACKAGECONFIG[geoip] = "--with-geoip=yes, --with-geoip=no, geoip" PACKAGECONFIG[plugins] = "--with-plugins=yes, --with-plugins=no" # these next two options require addional layers -PACKAGECONFIG[adns] = "--with-adns=yes, --with-adns=no, adns" PACKAGECONFIG[c-ares] = "--with-c-ares=yes, --with-c-ares=no, c-ares" -EXTRA_OECONF += "--with-qt=no --enable-usr-local=no --enable-tshark --enable-rawshark" - -do_configure_prepend() { -# force to use fallback -sed -i -e '/^glib_prefix/s/=.*$/=""/' ${S}/aclocal-flags -} +EXTRA_OECONF += "--with-qt=no --enable-tshark --enable-rawshark" ALLOW_EMPTY_${PN} = "1" INHIBIT_PACKAGE_DEBUG_SPLIT = "1" -- 2.7.4 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-python for-krogoth PATCH] pypi.bbclass: Allow fetching without requiring the hash
On 10/03/2016 02:08 PM, Tim Orling wrote: Thank you. I was about to do this myself. Acked-by: Tim Orling (Intel) Tested-by: Tim Orling (Intel) Acked-by: Armin Kuster On Mon, Oct 3, 2016 at 1:17 PM, Otavio Salvador wrote: This allow the fetching of packages in a backward compatible way[1], using un-hashed packages. 1. https://bitbucket.org/pypa/pypi/issues/438/backwards- compatible-un-hashed-package A equivalent fix is available on master in commit 7edad4d (pypi: update the base pypi url to use the package info without requiring the hash) so this is really a backport but without unrelated changes. Signed-off-by: Otavio Salvador --- meta-python/classes/pypi.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/classes/pypi.bbclass b/meta-python/classes/pypi. bbclass index 659e1c0..cd27cd2 100644 --- a/meta-python/classes/pypi.bbclass +++ b/meta-python/classes/pypi.bbclass @@ -13,7 +13,7 @@ def pypi_src_uri(d): package = d.getVar('PYPI_PACKAGE', True) package_ext = d.getVar('PYPI_PACKAGE_EXT', True) pv = d.getVar('PV', True) -return 'https://pypi.python.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) +return 'https://files.pythonhosted.org/packages/source/%s/%s/%s-%s.%s' % (package[0], package, package, pv, package_ext) PYPI_SRC_URI ?= "${@pypi_src_uri(d)}" -- 2.10.0 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-networking][PATCH v2] phytool: Add recipe
On Wed, Oct 5, 2016 at 2:34 AM, Mike Looijmans wrote: > A nice tool to directly read, write and interpret ethernet PHY data. > Very useful when debugging PHY or MDIO problems, which ethtool does > not do. > > Signed-off-by: Mike Looijmans > --- > v2: Fix LICENSE filename and checksum > Honor LDFLAGS value (patch accepted upstream) > > meta-networking/recipes-support/phytool/phytool.bb | 14 ++ > 1 file changed, 14 insertions(+) > create mode 100644 meta-networking/recipes-support/phytool/phytool.bb > > diff --git a/meta-networking/recipes-support/phytool/phytool.bb > b/meta-networking/recipes-support/phytool/phytool.bb > new file mode 100644 > index 000..d451aa9 > --- /dev/null > +++ b/meta-networking/recipes-support/phytool/phytool.bb > @@ -0,0 +1,14 @@ > +SUMMARY = "PHY interface tool for Linux" > +LICENSE = "GPLv2" > +LIC_FILES_CHKSUM = "file://LICENSE;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0" > + > +PV = "1.0.1" perhaps its better to include SRCPV in PV above since the SRCREV below is really 1.0.1+some more commits. moreover we get srcrev accounted for task hashes > +SRCREV = "3149bfdb4f513e2f0da0a7d0bc5d0873578696f2" > +SRC_URI = "git://github.com/wkz/phytool.git" > + > +S = "${WORKDIR}/git" > + > +do_install() { > + install -d ${D}${prefix}/bin > + oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install > +} > -- > 1.9.1 > > -- > ___ > Openembedded-devel mailing list > Openembedded-devel@lists.openembedded.org > http://lists.openembedded.org/mailman/listinfo/openembedded-devel -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [OE-core] State of bitbake world 2016-10-04
On Wed, Oct 05, 2016 at 03:29:25PM +0200, Andreas Müller wrote: > > === qemuarm (1) === > > * > > meta-openembedded/meta-filesystems/recipes-support/physfs/physfs_git.bb:do_populate_lic > ^ This one was fixed during run - correct? > > > > === qemux86 (2) === > > * > > meta-browser/recipes-browser/chromium/chromium_52.0.2743.76.bb:do_compile > > * > > meta-openembedded/meta-oe/recipes-support/mongodb/mongodb_git.bb:do_compile > > > > === qemux86_64 (1) === > > * > > meta-openembedded/meta-oe/recipes-support/ipmiutil/ipmiutil_2.9.6.bb:do_compile > > > > ... > > > > > == Tested changes (nocluded in master yet: > > ad9b1ce firefox: Fix build using gcc 6 > ^ Where does this one come from? https://patchwork.openembedded.org/patch/126075/ probably -- Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com signature.asc Description: Digital signature -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [OE-core] State of bitbake world 2016-10-04
> === qemuarm (1) === > * > meta-openembedded/meta-filesystems/recipes-support/physfs/physfs_git.bb:do_populate_lic ^ This one was fixed during run - correct? > > === qemux86 (2) === > * > meta-browser/recipes-browser/chromium/chromium_52.0.2743.76.bb:do_compile > * > meta-openembedded/meta-oe/recipes-support/mongodb/mongodb_git.bb:do_compile > > === qemux86_64 (1) === > * > meta-openembedded/meta-oe/recipes-support/ipmiutil/ipmiutil_2.9.6.bb:do_compile > ... > > == Tested changes (nocluded in master yet: > ad9b1ce firefox: Fix build using gcc 6 ^ Where does this one come from? Andreas -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
[oe] State of bitbake world 2016-10-04
== Number of issues - stats == {| class='wikitable' !|Date !!colspan='3'|Failed tasks !!colspan='6'|Failed depencencies!!|Signatures !!colspan='12'|QA !!Comment |- || ||qemuarm ||qemux86 ||qemux86_64 ||qemuarm||max||min ||qemux86||max||min ||all ||already-stripped ||libdir||textrel ||build-deps||file-rdeps ||version-going-backwards ||host-user-contaminated ||installed-vs-shipped ||unknown-configure-option ||symlink-to-sysroot ||invalid-pkgconfig ||pkgname || |- ||2016-10-04||1 ||3 ||1 ||7 ||2 ||2 ||5 ||2 ||2 ||0 ||0 ||0 ||1 ||7 ||3 ||0 ||2 ||0 ||0 ||0 ||0 ||0 || |} http://www.openembedded.org/wiki/Bitbake_World_Status == Failed tasks 2016-10-04 == INFO: jenkins-job.sh-1.8.10 Complete log available at http://logs.nslu2-linux.org/buildlogs/oe/world/log.report.20161004_221856.log === common () === === common-x86 (0) === === qemuarm (1) === * meta-openembedded/meta-filesystems/recipes-support/physfs/physfs_git.bb:do_populate_lic === qemux86 (2) === * meta-browser/recipes-browser/chromium/chromium_52.0.2743.76.bb:do_compile * meta-openembedded/meta-oe/recipes-support/mongodb/mongodb_git.bb:do_compile === qemux86_64 (1) === * meta-openembedded/meta-oe/recipes-support/ipmiutil/ipmiutil_2.9.6.bb:do_compile === Number of failed tasks (5) === {| class=wikitable |- || qemuarm || 1 || http://logs.nslu2-linux.org/buildlogs/oe/world/log.world.qemuarm.20161002_021146.log/ || http://errors.yoctoproject.org/Errors/Build/22949/ |- || qemux86 || 3 || http://logs.nslu2-linux.org/buildlogs/oe/world/log.world.qemux86.20161002_021146.log/ || http://errors.yoctoproject.org/Errors/Build/22954/ |- || qemux86_64 || 1 || http://logs.nslu2-linux.org/buildlogs/oe/world/log.world.qemux86-64.20161004_034459.log/ || http://errors.yoctoproject.org/Errors/Build/22971/ |} === PNBLACKLISTs (119) === === QA issues (13) === {| class=wikitable !| Count||Issue |- ||0 ||already-stripped |- ||0 ||installed-vs-shipped |- ||0 ||invalid-pkgconfig |- ||0 ||libdir |- ||0 ||pkgname |- ||0 ||symlink-to-sysroot |- ||0 ||unknown-configure-option |- ||0 ||version-going-backwards |- ||1 ||textrel |- ||2 ||host-user-contaminated |- ||3 ||file-rdeps |- ||7 ||build-deps |} === Failed dependencies for qemuarm (7) === Complete log: http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20161003_005918.log/ Found differences: Found errors: * ERROR: 7 issues were found in these recipes: physfs xfsprogs === Recipes failing with maximal dependencies for qemuarm (2) === * physfs -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20161003_005918.log//2_max/failed/physfs.log * xfsprogs -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20161003_005918.log//2_max/failed/xfsprogs.log === Recipes failing with minimal dependencies for qemuarm (2) === * physfs -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20161003_005918.log//3_min/failed/physfs.log * xfsprogs -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemuarm.20161003_005918.log//3_min/failed/xfsprogs.log === Failed dependencies for qemux86 (5) === Complete log: http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemux86.20161004_134145.log/ Found differences: Found errors: * ERROR: 5 issues were found in these recipes: chromium mongodb === Recipes failing with maximal dependencies for qemux86 (2) === * chromium -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemux86.20161004_134145.log//2_max/failed/chromium.log * mongodb -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemux86.20161004_134145.log//2_max/failed/mongodb.log === Recipes failing with minimal dependencies for qemux86 (2) === * chromium -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemux86.20161004_134145.log//3_min/failed/chromium.log * mongodb -- http://logs.nslu2-linux.org/buildlogs/oe/world/log.dependencies.qemux86.20161004_134145.log//3_min/failed/mongodb.log === Incorrect PACKAGE_ARCH or sstate signatures (0) === Complete log: http://logs.nslu2-linux.org/buildlogs/oe/world/log.signatures.20161003_031658.log/ No issues detected PNBLACKLISTs: openembedded-core/: meta-browser: recipes-browser/chromium/cef3_280796.bb:PNBLACKLIST[cef3] ?= "BROKEN: fails to build with gcc-6" meta-openembedded: meta-efl/recipes-efl/e17/diskio_svn.bb:PNBLACKLIST[diskio] ?= "broken: switch to https://git.enlightenment.org/enlightenment/modu
[oe] [meta-networking][PATCH v2] phytool: Add recipe
A nice tool to directly read, write and interpret ethernet PHY data. Very useful when debugging PHY or MDIO problems, which ethtool does not do. Signed-off-by: Mike Looijmans --- v2: Fix LICENSE filename and checksum Honor LDFLAGS value (patch accepted upstream) meta-networking/recipes-support/phytool/phytool.bb | 14 ++ 1 file changed, 14 insertions(+) create mode 100644 meta-networking/recipes-support/phytool/phytool.bb diff --git a/meta-networking/recipes-support/phytool/phytool.bb b/meta-networking/recipes-support/phytool/phytool.bb new file mode 100644 index 000..d451aa9 --- /dev/null +++ b/meta-networking/recipes-support/phytool/phytool.bb @@ -0,0 +1,14 @@ +SUMMARY = "PHY interface tool for Linux" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=39bba7d2cf0ba1036f2a6e2be52fe3f0" + +PV = "1.0.1" +SRCREV = "3149bfdb4f513e2f0da0a7d0bc5d0873578696f2" +SRC_URI = "git://github.com/wkz/phytool.git" + +S = "${WORKDIR}/git" + +do_install() { + install -d ${D}${prefix}/bin + oe_runmake 'DESTDIR=${D}' 'PREFIX=${prefix}' install +} -- 1.9.1 -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel
Re: [oe] [meta-python][PATCH] python-scales: add recipe for version 1.0.9
Excuse me, I didn't see that there was a reply here. I'll fix this somewhere around tomorrow. Thanks for the review, Kind regards, Ruben On 10/03/2016 11:10 PM, Tim Orling wrote: > On Mon, Oct 3, 2016 at 12:58 PM, Otavio Salvador < > otavio.salva...@ossystems.com.br> wrote: > >> On Thu, Sep 29, 2016 at 10:54 AM, Fabio Berton >> wrote: >>> On Thu, Sep 29, 2016 at 10:30 AM, Ruben De Smet >> >>> wrote: >>> +" + +DEPENDS_${PN} += "\ +python3-setuptools \ +" >>> >>> >>> Is this not provided by setuptools3 >>> class? >> >> The DEPENDS being PN specific is pointless also Fabio raised a point >> which seems ignored. >> >> Martin, please drop this from master-next until it is fixed. >> >> > Agreed. Thank you for the review. > > >> -- >> Otavio Salvador O.S. Systems >> http://www.ossystems.com.brhttp://code.ossystems.com.br >> Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750 >> -- >> ___ >> Openembedded-devel mailing list >> Openembedded-devel@lists.openembedded.org >> http://lists.openembedded.org/mailman/listinfo/openembedded-devel >> signature.asc Description: OpenPGP digital signature -- ___ Openembedded-devel mailing list Openembedded-devel@lists.openembedded.org http://lists.openembedded.org/mailman/listinfo/openembedded-devel