[oe] [meta-python2][PATCH] python-lxml: License is BSD-3-Clause

2022-05-19 Thread Douglas Royds via lists.openembedded.org
Silences: WARNING: python-lxml-native-4.4.2-r0 do_populate_lic: QA Issue: python-lxml-native: No generic license file exists for: BSD in any provider [license-exists] Signed-off-by: Douglas Royds --- recipes-devtools/python/python-lxml_4.4.2.bb | 2 +- 1 file changed, 1

[oe] [meta-python2][PATCH] python-lxml: License is BSD-3-Clause

2022-05-19 Thread Douglas Royds via lists.openembedded.org
Silences: WARNING: python-lxml-native-4.4.2-r0 do_populate_lic: QA Issue: python-lxml-native: No generic license file exists for: BSD in any provider [license-exists] Signed-off-by: Douglas Royds --- recipes-devtools/python/python-lxml_4.4.2.bb | 2 +- 1 file changed, 1

[oe] [meta-java][PATCH] BSD licenses: Updated to SPDX namings

2022-05-18 Thread Douglas Royds via lists.openembedded.org
From: Douglas Royds javasqlite has an MIT license, not a BSD one. Silences warnings of this form: WARNING: jzlib-native-1.0.7-r0 do_populate_lic: QA Issue: jzlib-native: No generic license file exists for: BSD in any provider [license-exists] Signed-off-by: Douglas Royds

[oe] [meta-java][PATCH] jaxen: github protocol=https, branch=master

2022-05-18 Thread Douglas Royds via lists.openembedded.org
From: Douglas Royds Silences: WARNING: jaxen-1.1.6-r0 do_fetch: URL: git://github.com/codehaus/jaxen uses git protocol which is no longer supported by github. Please change to ;protocol=https in the url. WARNING: jaxen-1.1.6-r0 do_fetch: URL: git://github.com/codehaus/jaxen

[oe] [meta-oe][PATCH 2/2] packagegroup-meta-oe: RDEPENDS on googletest

2019-06-30 Thread Douglas Royds via Openembedded-devel
The gtest and gmock projects were combined under googletest in 2015, and the former gtest recipe has now been renamed to googletest. Signed-off-by: Douglas Royds --- meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[oe] [meta-oe][PATCH 1/2] grpc: DEPENDS on googletest

2019-06-30 Thread Douglas Royds via Openembedded-devel
The gtest and gmock projects were combined under googletest in 2015, and the former gtest recipe has now been renamed to googletest. Signed-off-by: Douglas Royds --- meta-networking/recipes-devtools/grpc/grpc_1.14.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta

[oe] [meta-oe][PATCH 0/2] googletest: Former gtest recipe has been renamed

2019-06-30 Thread Douglas Royds via Openembedded-devel
The gtest and gmock projects were combined under googletest in 2015, and the former gtest recipe has now been renamed to googletest. Douglas Royds (2): grpc: DEPENDS on googletest packagegroup-meta-oe: RDEPENDS on googletest meta-networking/recipes-devtools/grpc/grpc_1.14.1.bb | 2

[oe] [meta-oe][PATCH] libtar: Enable libtar-native build

2019-06-25 Thread Douglas Royds via Openembedded-devel
Signed-off-by: Douglas Royds --- meta-oe/recipes-support/libtar/libtar_1.2.20.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-support/libtar/libtar_1.2.20.bb b/meta-oe/recipes-support/libtar/libtar_1.2.20.bb index 60710f416..f93d9c09a 100644 --- a/meta-oe/recipes

[oe] [meta-oe][PATCH 2/2] googletest: The gtest and gmock projects were combined under googletest in 2015

2019-06-24 Thread Douglas Royds via Openembedded-devel
PROVIDES gmock and gtest for backwards-compatibility with existing DEPENDS. Signed-off-by: Douglas Royds --- .../{gtest/gtest_1.8.1.bb => googletest/googletest_1.8.1.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-oe/recipes-test/{gtest/gtest_1.8.1.bb => goog

[oe] [meta-oe][PATCH 1/2] gtest: Googletest project is back under github.com/google/googletest

2019-06-24 Thread Douglas Royds via Openembedded-devel
No longer under the Abseil project. Signed-off-by: Douglas Royds --- meta-oe/recipes-test/gtest/gtest_1.8.1.bb | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/meta-oe/recipes-test/gtest/gtest_1.8.1.bb b/meta-oe/recipes-test/gtest/gtest_1.8.1.bb index 23862c930

Re: [oe] Steps for adding new python module to meta-python

2019-04-30 Thread Douglas Royds via Openembedded-devel
You need: python3-aiohttp_3.5.4.bb Note the ".bb" extension. On 1/05/19 10:45 AM, Parthiban Nallathambi wrote: Hello All, I am currently trying to add a python module for aiohttp into meta-python. But this recipes are not detected during bitbake. Do we have any specific ways to add it

[oe] [PATCH] net-snmp: Licenses are in the COPYING file

2019-03-06 Thread Douglas Royds
A bit of an unholy mixture of MIT, BSD 3-clause, and too old to really know BSD-style, with a wide variety of copyright holders. I'm open to better suggestions on how to handle this. Signed-off-by: Douglas Royds --- meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb | 4 ++-- 1 file

[oe] [meta-oe][PATCH] net-snmp: reproducibility: Strip host paths from ptest files

2018-12-13 Thread Douglas Royds
net-snmp also installs net-snmp-config and gen-variables files that need to have host paths stripped. --- meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb

[oe] [meta-oe][PATCH v2 6/6] net-snmp: Simplify sed expressions

2018-11-20 Thread Douglas Royds
Readability. The existing patterns allowed each pattern to be matched multiple times (with no intevening spaces), but the "g" modifier achieves this anyway. Signed-off-by: Douglas Royds --- .../recipes-protocols/net-snmp/net-snmp_5.8.bb | 12 ++-- 1 file changed, 6

[oe] [meta-oe][PATCH v2 5/6] net-snmp: Reproducibility: Set NETSNMP_CONFIGURE_OPTIONS null

2018-11-20 Thread Douglas Royds
To avoid build host paths being written into binaries, accept a null NETSNMP_CONFIGURE_OPTIONS from the environment. Upstream-Status: Submitted https://sourceforge.net/p/net-snmp/patches/1384/ Signed-off-by: Douglas Royds --- ...bility-accept-configure-options-from-env.patch | 15

[oe] [meta-oe][PATCH v2 1/6] Revert "net-snmp: improve reproducibility"

2018-11-20 Thread Douglas Royds
This reverts commit 57d8e2c673d5f5686bbf411333f1d39c3e29690e. Signed-off-by: Douglas Royds --- ...e-configure-options-from-versioninfo.patch | 42 --- .../net-snmp/net-snmp_5.8.bb | 7 2 files changed, 49 deletions(-) delete mode 100644 meta-networking

[oe] [meta-oe][PATCH v2 4/6] net-snmp: Reproducibility: Don't check build host for /etc/printcap

2018-11-20 Thread Douglas Royds
tform. I have taken the simple expedient of setting ac_cv_file__etc_printcap=no. If this proves to be a problem, we can easily add a new variable, HAS_PRINTCAP. Upstream-Status: Submitted https://sourceforge.net/p/net-snmp/patches/1385/ Signed-off-by: Douglas Royds --- .../reproducibility-have-print

[oe] [meta-oe][PATCH v2 0/6] net-snmp: Reproducibility

2018-11-20 Thread Douglas Royds
There was a breakage in the "Remove PKG_CONFIG paths" patch, in which I was unwittingly trimming the trailing close double quotes from the CFLAGS in net-snmp-config. I have also added a readability improvement for the sed expressions in do_install(). Douglas Royds (6): Revert

[oe] [meta-oe][PATCH v2 2/6] net-snmp: Reproducibility: Fixed path to /bin/uname

2018-11-20 Thread Douglas Royds
Signed-off-by: Douglas Royds --- meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb index a32d09d77..089946032

[oe] [meta-oe][PATCH v2 3/6] net-snmp: Reproducibility: Remove PKG_CONFIG paths from net-snmp-config

2018-11-20 Thread Douglas Royds
PKG_CONFIG_PATH and PKG_CONFIG_LIBDIR point into the net-snmp recipe-sysroot. Careful not to trim trailing quotes from the CFLAGS Signed-off-by: Douglas Royds --- .../recipes-protocols/net-snmp/net-snmp_5.8.bb | 12 +++- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git

[oe] [meta-oe][PATCH 5/5] net-snmp: Reproducibility: Set NETSNMP_CONFIGURE_OPTIONS null

2018-11-19 Thread Douglas Royds
To avoid build host paths being written into binaries, accept a null NETSNMP_CONFIGURE_OPTIONS from the environment. Upstream-Status: Submitted https://sourceforge.net/p/net-snmp/patches/1384/ Signed-off-by: Douglas Royds --- ...bility-accept-configure-options-from-env.patch | 15

[oe] [meta-oe][PATCH 1/5] Revert "net-snmp: improve reproducibility"

2018-11-19 Thread Douglas Royds
This reverts commit 57d8e2c673d5f5686bbf411333f1d39c3e29690e. Signed-off-by: Douglas Royds --- ...e-configure-options-from-versioninfo.patch | 42 --- .../net-snmp/net-snmp_5.8.bb | 7 2 files changed, 49 deletions(-) delete mode 100644 meta-networking

[oe] [meta-oe][PATCH 2/5] net-snmp: Reproducibility: Fixed path to /bin/uname

2018-11-19 Thread Douglas Royds
Signed-off-by: Douglas Royds --- meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb b/meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb index a32d09d77..089946032

[oe] [meta-oe][PATCH 0/5] net-snmp: Reproducibility

2018-11-19 Thread Douglas Royds
-snmp/patches/1384/ Consequently, I have reverted Hongxu Jia's earlier commit 57d8e2c6. Note that I have turned off printcap support, hard-coded. If this proves to be a problem, we can easily add a new variable, HAS_PRINTCAP. Douglas Royds (5): Revert "net-snmp: improve reproducibility&q

[oe] [meta-oe][PATCH 3/5] net-snmp: Reproducibility: Remove PKG_CONFIG paths from net-snmp-config

2018-11-19 Thread Douglas Royds
PKG_CONFIG_PATH and PKG_CONFIG_LIBDIR point into the net-snmp recipe-sysroot. Signed-off-by: Douglas Royds --- meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-networking/recipes-protocols/net-snmp/net-snmp_5.8.bb b/meta

[oe] [meta-oe][PATCH 4/5] net-snmp: Reproducibility: Don't check build host for /etc/printcap

2018-11-19 Thread Douglas Royds
tform. I have taken the simple expedient of setting ac_cv_file__etc_printcap=no. If this proves to be a problem, we can easily add a new variable, HAS_PRINTCAP. Upstream-Status: Submitted https://sourceforge.net/p/net-snmp/patches/1385/ Signed-off-by: Douglas Royds --- .../reproducibility-have-print

[oe] [meta-networking][PATCH 0/2] ntp: Reproducible build

2018-11-12 Thread Douglas Royds
POCH" patch has been submitted upstream in this form. Douglas Royds (2): ntp: Reproducible build: Respect SOURCE_DATE_EPOCH ntp: Reproducible build: Use fixed path to posix shell ...producibility-fixed-path-to-posix-shell.patch | 15 +++ ...producibility-respect-source-d

[oe] [meta-networking][PATCH 1/2] ntp: Reproducible build: Respect SOURCE_DATE_EPOCH

2018-11-12 Thread Douglas Royds
upstream for use on Mac OSX or OpenBSD, though it has not been tested on OSX or any BSD platform. Upstream-Status: Submitted http://bugs.ntp.org/show_bug.cgi?id=3550 Signed-off-by: Douglas Royds --- ...producibility-respect-source-date-epoch.patch | 16 .../recipes-support/ntp

[oe] [meta-networking][PATCH 2/2] ntp: Reproducible build: Use fixed path to posix shell

2018-11-12 Thread Douglas Royds
it consistently found bash at /bin/bash. Don't go looking, just use a fixed path to /bin/sh instead. Upstream-Status: Submitted http://bugs.ntp.org/show_bug.cgi?id=3551 Signed-off-by: Douglas Royds --- ...eproducibility-fixed-path-to-posix-shell.patch | 15 +++ .../recipes-support

[oe] [meta-oe][PATCH] openldap: Reproducibility: Remove user, hostname, pwd from version string

2018-10-25 Thread Douglas Royds
This updated patch also sets the date and time strings to the SOURCE_DATE_EPOCH. The WHOWHERE string will now be set to simply "openldap" in the case that a SOURCE_DATE_EPOCH is set. Upstream-Status: Submitted [https://www.openldap.org/its/index.cgi/Incoming?id=8928] Signed-off-by: Dou

Re: [oe] [meta-oe][PATCH] openldap: Reproducibility: Remove user, hostname, pwd from version string

2018-10-17 Thread Douglas Royds
, changing the upstream-status to "Submitted"? On 9/10/18 5:55 PM, Douglas Royds wrote: Upstream-Status: Pending Signed-off-by: Douglas Royds --- ... diff --git a/meta-oe/recipes-support/openldap/openldap/remove-user-host-pwd-from-version.patch b/meta-oe/recipes-support/openldap/openl

Re: [oe] [meta-oe][PATCH] openldap: Reproducibility: Remove user, hostname, pwd from version string

2018-10-08 Thread Douglas Royds
Debian have set this string to their own Debian-specific value: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833179 WHOWHERE="$(dpkg-vendor --query vendor) package version $(dpkg-parsechangelog -SVersion)" -- ___ Openembedded-devel

Re: [oe] [meta-oe][PATCH] openldap: Reproducibility: Remove user, hostname, pwd from version string

2018-10-08 Thread Douglas Royds
. On 09/10/18 17:55, Douglas Royds wrote: Upstream-Status: Pending ... +-WHOWHERE="$USER@`uname -n`:`pwd`" ++WHOWHERE="${SOURCE_DATE_EPOCH:-$USER@`uname -n`:`pwd`}" -- ___ Openembedded-devel mailing list Openembedded-devel@lists.o

[oe] [meta-oe][PATCH] openldap: Reproducibility: Remove user, hostname, pwd from version string

2018-10-08 Thread Douglas Royds
Upstream-Status: Pending Signed-off-by: Douglas Royds --- .../openldap/remove-user-host-pwd-from-version.patch | 12 meta-oe/recipes-support/openldap/openldap_2.4.46.bb | 1 + 2 files changed, 13 insertions(+) create mode 100644 meta-oe/recipes-support/openldap/openldap/remove

Re: [oe] [PATCH] task-base: conditional wifi and bluetooth tasks in PACKAGES

2011-02-08 Thread Douglas Royds
On 09/02/11 07:23, Koen Kooi wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08-02-11 18:29, Tom Rini wrote: On 02/07/2011 03:13 PM, Filip Zyzniewski wrote: This reduces amount of tasks for bootstrap-image from around 3400 to around 1600 for jlime. Signed-off-by: Filip

Re: [oe] Does the OS make a difference?

2010-09-02 Thread Douglas Royds
On 03/09/10 05:19, J. L. wrote: I would be interested to know as well I am building on 9.10 and seem to get more errors than those building on 10.04 or 10.10 with 64 bit On Thu, Sep 2, 2010 at 8:46 AM, AJ ONealcoola...@gmail.com wrote: It would be worth it to upgrade from Ubuntu 8.10 to

Re: [oe] A new bitbake extension: .bbappend files

2010-07-18 Thread Douglas Royds
On 17/07/10 02:25, Richard Purdie wrote: Whilst our layers mechanism, is great it does have a drawback which has bugged me for a while. If you have a recipe like pointercal which has machine specific information in it and you have your new machine code in a layer, how do you add a pointercal

Re: [oe] COMPATIBLE_MACHINE - how can use?

2010-03-25 Thread Douglas Royds
COMPATIBLE_MACHINE uses Python's re.match(), so COMPATIBLE_MACHINE is a regular expression that must match the start of the MACHINE variable. For instance, from recipes/linux/linux-davinci_2.6.30.bb: COMPATIBLE_MACHINE = (dm6446-evm|dm6467-evm|dm355-evm|davinci-sffsdr|dm355-leopard) The

Re: [oe] [PATCH 4/4] Renamed prefix_native, bindir_native, etc using hyphens

2010-03-18 Thread Douglas Royds
Frans Meulenbroeks wrote: 2010/3/18 Douglas Royds douglas.ro...@tait.co.nz: - Avoids clashing with the machine override when MACHINE=native - bindir_cross similarly renamed for consistency [...] # Path prefixes base_prefix = ${STAGING_DIR_NATIVE} -prefix

Re: [oe] [PATCH 2/2] Renamed prefix_native, bindir_native, etc using camelCaps

2010-03-18 Thread Douglas Royds
Richard Purdie wrote: On Thu, 2010-03-18 at 04:37 +0100, Holger Hans Peter Freyther wrote: On Thursday 18 March 2010 02:31:11 Douglas Royds wrote: - Avoids clashing with the machine override when MACHINE=native - bindir_cross similarly renamed for consistency Thank you

[oe] Patches and patchwork

2010-03-18 Thread Douglas Royds
I have submitted a patch, and after discussion want to correct it. Do I submit the corrected patch as a reply to the existing email thread, or start a new thread? If I submit the new patch as a reply to the existing thread, will patchwork pick up the corrected patch, or remain on the original

[oe] [PATCH 4/4] Renamed prefix_native, bindir_native, etc using hyphens

2010-03-17 Thread Douglas Royds
- Avoids clashing with the machine override when MACHINE=native - bindir_cross similarly renamed for consistency Signed-off-by: Douglas Royds douglas.ro...@taitradio.com --- classes/cross-canadian.bbclass |2 +- classes/native.bbclass |4

Re: [oe] Need help with No GNU_HASH in the elf binary

2010-03-15 Thread Douglas Royds
For some background reading, try this: http://lwn.net/Articles/192624/ The -Wl,-O1 linker option is set in bitbake.conf (see TARGET_LDFLAGS). Angstrom sets -Wl,--hash-style=gnu in angstrom-glibc.inc (see TARGET_LINK_HASH_STYLE). Hope this helps, Douglas.

Re: [oe] Boost library version

2010-03-11 Thread Douglas Royds
The short answer is that yes, that should work. It's certainly worth a crack. The long answer is definitely maybe. Building Boost is non-trivial. You will observe several patch files in boost_1.36.0.bb, and quite a lot of intelligence in boost-36.inc, that may or may not all work with 1.37.