* [PATCH 01/11] iperf: fix out of tree configuration
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-24 9:09 ` Koen Kooi
2015-01-23 22:53 ` [PATCH 02/11] meta-gnome: Add LAYERVERSION and LAYERDEPENDS Armin Kuster
` (11 subsequent siblings)
12 siblings, 1 reply; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: "Belal, Awais" <Awais_Belal@mentor.com>
The configure step uses a package header to check for support
of types/declares, this package header encapsulates all the
required system headers for providing the needed resources.
When configured from an out of tree directory the package
header is not found due to the hard path.
We now make the path for package header relative to 'srcdir' so
it is found appropriately.
Signed-off-by: Awais Belal <awais_belal@mentor.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
.../iperf-2.0.5/0001-fix-out-of-tree-config.patch | 52 ++++++++++++++++++++++
meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb | 1 +
2 files changed, 53 insertions(+)
create mode 100644 meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
diff --git a/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch b/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
new file mode 100644
index 0000000..e8a0297
--- /dev/null
+++ b/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
@@ -0,0 +1,52 @@
+iperf: fix out of tree configuration
+
+The configure step uses a package header to check for support of types/declares,
+this package header encapsulates all the required system header for providing
+the needed resources. When configured from an out of tree directory the package
+header is not found due to the hard path.
+We now make the path for package header relative to our 'srcdir' so it is
+found appropriately.
+
+Signed-off-by: Awais Belal <awais_belal@mentor.com>
+---
+diff --git a/configure.ac b/configure.ac
+index 2b3fd20..d420f9e 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -176,8 +176,8 @@ dnl Check for system services
+
+ dnl check for multicast
+ if test "$ac_cv_multicast" != no; then
+- AC_CHECK_TYPES(struct ip_mreq,,,[#include "compat/headers_slim.h"])
+- AC_CHECK_DECLS(IP_ADD_MEMBERSHIP,,,[#include "compat/headers_slim.h"])
++ AC_CHECK_TYPES(struct ip_mreq,,,[#include "${srcdir}/compat/headers_slim.h"])
++ AC_CHECK_DECLS(IP_ADD_MEMBERSHIP,,,[#include "${srcdir}/compat/headers_slim.h"])
+ AC_MSG_CHECKING(for multicast support)
+ ac_cv_multicast=no
+ if test "$ac_cv_have_decl_IP_ADD_MEMBERSHIP" = yes; then
+@@ -193,9 +193,9 @@ fi
+
+ dnl check for IPv6
+ if test "$ac_cv_have_ipv6" != no; then
+- AC_CHECK_TYPES(struct sockaddr_storage,,,[#include "compat/headers_slim.h"])
+- AC_CHECK_TYPES(struct sockaddr_in6,,,[#include "compat/headers_slim.h"])
+- AC_CHECK_DECLS(AF_INET6,,,[#include "compat/headers_slim.h"])
++ AC_CHECK_TYPES(struct sockaddr_storage,,,[#include "${srcdir}/compat/headers_slim.h"])
++ AC_CHECK_TYPES(struct sockaddr_in6,,,[#include "${srcdir}/compat/headers_slim.h"])
++ AC_CHECK_DECLS(AF_INET6,,,[#include "${srcdir}/compat/headers_slim.h"])
+ AC_MSG_CHECKING(for IPv6 headers and structures)
+ ac_cv_have_ipv6=no
+ if test "$ac_cv_type_struct_sockaddr_storage" = yes; then
+@@ -211,9 +211,9 @@ fi
+
+ if test "$ac_cv_have_ipv6" = yes; then
+ if test "$ac_cv_multicast" = yes; then
+- AC_CHECK_TYPES(struct ipv6_mreq,,,[#include "compat/headers_slim.h"])
+- AC_CHECK_DECLS(IPV6_ADD_MEMBERSHIP,,,[#include "compat/headers_slim.h"])
+- AC_CHECK_DECLS(IPV6_MULTICAST_HOPS,,,[#include "compat/headers_slim.h"])
++ AC_CHECK_TYPES(struct ipv6_mreq,,,[#include "${srcdir}/compat/headers_slim.h"])
++ AC_CHECK_DECLS(IPV6_ADD_MEMBERSHIP,,,[#include "${srcdir}/compat/headers_slim.h"])
++ AC_CHECK_DECLS(IPV6_MULTICAST_HOPS,,,[#include "${srcdir}/compat/headers_slim.h"])
+ AC_MSG_CHECKING(for IPv6 multicast support)
+ ac_cv_have_ipv6_multicast=no
+ if test "$ac_cv_type_struct_ipv6_mreq" = yes; then
diff --git a/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb b/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb
index 1bd554b..20adc0d 100644
--- a/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb
+++ b/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb
@@ -6,6 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298"
SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/${BP}.tar.gz \
file://iperf-2.0.5_ManPage.patch \
+ file://0001-fix-out-of-tree-config.patch \
"
SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH 01/11] iperf: fix out of tree configuration
2015-01-23 22:53 ` [PATCH 01/11] iperf: fix out of tree configuration Armin Kuster
@ 2015-01-24 9:09 ` Koen Kooi
2015-01-26 15:37 ` akuster808
0 siblings, 1 reply; 16+ messages in thread
From: Koen Kooi @ 2015-01-24 9:09 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Armin Kuster schreef op 23-01-15 om 23:53:
> From: "Belal, Awais" <Awais_Belal@mentor.com>
>
> The configure step uses a package header to check for support of
> types/declares, this package header encapsulates all the required system
> headers for providing the needed resources. When configured from an out
> of tree directory the package header is not found due to the hard path.
> We now make the path for package header relative to 'srcdir' so it is
> found appropriately.
>
> Signed-off-by: Awais Belal <awais_belal@mentor.com> Signed-off-by: Martin
> Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster
> <akuster808@gmail.com> ---
> .../iperf-2.0.5/0001-fix-out-of-tree-config.patch | 52
> ++++++++++++++++++++++ meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb
> | 1 + 2 files changed, 53 insertions(+) create mode 100644
> meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
>
> diff --git
> a/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
> b/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
>
>
new file mode 100644
> index 0000000..e8a0297 --- /dev/null +++
> b/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
>
>
@@ -0,0 +1,52 @@
> +iperf: fix out of tree configuration + +The configure step uses a
> package header to check for support of types/declares, +this package
> header encapsulates all the required system header for providing +the
> needed resources. When configured from an out of tree directory the
> package +header is not found due to the hard path. +We now make the path
> for package header relative to our 'srcdir' so it is +found
> appropriately. + +Signed-off-by: Awais Belal <awais_belal@mentor.com>
Missing Upstream-status
> +--- +diff --git a/configure.ac b/configure.ac +index 2b3fd20..d420f9e
> 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -176,8 +176,8 @@ dnl
> Check for system services + + dnl check for multicast + if test
> "$ac_cv_multicast" != no; then +- AC_CHECK_TYPES(struct
> ip_mreq,,,[#include "compat/headers_slim.h"]) +-
> AC_CHECK_DECLS(IP_ADD_MEMBERSHIP,,,[#include "compat/headers_slim.h"]) ++
> AC_CHECK_TYPES(struct ip_mreq,,,[#include
> "${srcdir}/compat/headers_slim.h"]) ++
> AC_CHECK_DECLS(IP_ADD_MEMBERSHIP,,,[#include
> "${srcdir}/compat/headers_slim.h"]) + AC_MSG_CHECKING(for multicast
> support) + ac_cv_multicast=no + if test
> "$ac_cv_have_decl_IP_ADD_MEMBERSHIP" = yes; then +@@ -193,9 +193,9 @@ fi
> + + dnl check for IPv6 + if test "$ac_cv_have_ipv6" != no; then +-
> AC_CHECK_TYPES(struct sockaddr_storage,,,[#include
> "compat/headers_slim.h"]) +- AC_CHECK_TYPES(struct
> sockaddr_in6,,,[#include "compat/headers_slim.h"]) +-
> AC_CHECK_DECLS(AF_INET6,,,[#include "compat/headers_slim.h"]) ++
> AC_CHECK_TYPES(struct sockaddr_storage,,,[#include
> "${srcdir}/compat/headers_slim.h"]) ++ AC_CHECK_TYPES(struct
> sockaddr_in6,,,[#include "${srcdir}/compat/headers_slim.h"]) ++
> AC_CHECK_DECLS(AF_INET6,,,[#include "${srcdir}/compat/headers_slim.h"]) +
> AC_MSG_CHECKING(for IPv6 headers and structures) + ac_cv_have_ipv6=no +
> if test "$ac_cv_type_struct_sockaddr_storage" = yes; then +@@ -211,9
> +211,9 @@ fi + + if test "$ac_cv_have_ipv6" = yes; then + if test
> "$ac_cv_multicast" = yes; then +- AC_CHECK_TYPES(struct
> ipv6_mreq,,,[#include "compat/headers_slim.h"]) +-
> AC_CHECK_DECLS(IPV6_ADD_MEMBERSHIP,,,[#include "compat/headers_slim.h"])
> +- AC_CHECK_DECLS(IPV6_MULTICAST_HOPS,,,[#include
> "compat/headers_slim.h"]) ++ AC_CHECK_TYPES(struct
> ipv6_mreq,,,[#include "${srcdir}/compat/headers_slim.h"]) ++
> AC_CHECK_DECLS(IPV6_ADD_MEMBERSHIP,,,[#include
> "${srcdir}/compat/headers_slim.h"]) ++
> AC_CHECK_DECLS(IPV6_MULTICAST_HOPS,,,[#include
> "${srcdir}/compat/headers_slim.h"]) + AC_MSG_CHECKING(for IPv6
> multicast support) + ac_cv_have_ipv6_multicast=no + if test
> "$ac_cv_type_struct_ipv6_mreq" = yes; then diff --git
> a/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb
> b/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb index 1bd554b..20adc0d
> 100644 --- a/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb +++
> b/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb @@ -6,6 +6,7 @@
> LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298"
>
> SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/${BP}.tar.gz \
> file://iperf-2.0.5_ManPage.patch \ +
> file://0001-fix-out-of-tree-config.patch \ "
>
> SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016"
>
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
Comment: GPGTools - http://gpgtools.org
iD8DBQFUw2FFMkyGM64RGpERArugAJ4nkEYjuGS9ZOgyq/2ouo8dIUY7xQCeM58n
jN/V4SPAvQw8zcM6qCTjyAw=
=4Vn9
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 01/11] iperf: fix out of tree configuration
2015-01-24 9:09 ` Koen Kooi
@ 2015-01-26 15:37 ` akuster808
0 siblings, 0 replies; 16+ messages in thread
From: akuster808 @ 2015-01-26 15:37 UTC (permalink / raw)
To: openembedded-devel
I appreciate the review but I got this patch from master with the
"Missing Upstream-status". This is for dizzy update. ( I really need to
fix my process)
regards,
- Armin
On 01/24/2015 01:09 AM, Koen Kooi wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Armin Kuster schreef op 23-01-15 om 23:53:
>> From: "Belal, Awais" <Awais_Belal@mentor.com>
>>
>> The configure step uses a package header to check for support of
>> types/declares, this package header encapsulates all the required system
>> headers for providing the needed resources. When configured from an out
>> of tree directory the package header is not found due to the hard path.
>> We now make the path for package header relative to 'srcdir' so it is
>> found appropriately.
>>
>> Signed-off-by: Awais Belal <awais_belal@mentor.com> Signed-off-by: Martin
>> Jansa <Martin.Jansa@gmail.com> Signed-off-by: Armin Kuster
>> <akuster808@gmail.com> ---
>> .../iperf-2.0.5/0001-fix-out-of-tree-config.patch | 52
>> ++++++++++++++++++++++ meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb
>> | 1 + 2 files changed, 53 insertions(+) create mode 100644
>> meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
>>
>> diff --git
>> a/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
>> b/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
>>
>>
> new file mode 100644
>> index 0000000..e8a0297 --- /dev/null +++
>> b/meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
>>
>>
> @@ -0,0 +1,52 @@
>> +iperf: fix out of tree configuration + +The configure step uses a
>> package header to check for support of types/declares, +this package
>> header encapsulates all the required system header for providing +the
>> needed resources. When configured from an out of tree directory the
>> package +header is not found due to the hard path. +We now make the path
>> for package header relative to our 'srcdir' so it is +found
>> appropriately. + +Signed-off-by: Awais Belal <awais_belal@mentor.com>
>
> Missing Upstream-status
>
>
>> +--- +diff --git a/configure.ac b/configure.ac +index 2b3fd20..d420f9e
>> 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -176,8 +176,8 @@ dnl
>> Check for system services + + dnl check for multicast + if test
>> "$ac_cv_multicast" != no; then +- AC_CHECK_TYPES(struct
>> ip_mreq,,,[#include "compat/headers_slim.h"]) +-
>> AC_CHECK_DECLS(IP_ADD_MEMBERSHIP,,,[#include "compat/headers_slim.h"]) ++
>> AC_CHECK_TYPES(struct ip_mreq,,,[#include
>> "${srcdir}/compat/headers_slim.h"]) ++
>> AC_CHECK_DECLS(IP_ADD_MEMBERSHIP,,,[#include
>> "${srcdir}/compat/headers_slim.h"]) + AC_MSG_CHECKING(for multicast
>> support) + ac_cv_multicast=no + if test
>> "$ac_cv_have_decl_IP_ADD_MEMBERSHIP" = yes; then +@@ -193,9 +193,9 @@ fi
>> + + dnl check for IPv6 + if test "$ac_cv_have_ipv6" != no; then +-
>> AC_CHECK_TYPES(struct sockaddr_storage,,,[#include
>> "compat/headers_slim.h"]) +- AC_CHECK_TYPES(struct
>> sockaddr_in6,,,[#include "compat/headers_slim.h"]) +-
>> AC_CHECK_DECLS(AF_INET6,,,[#include "compat/headers_slim.h"]) ++
>> AC_CHECK_TYPES(struct sockaddr_storage,,,[#include
>> "${srcdir}/compat/headers_slim.h"]) ++ AC_CHECK_TYPES(struct
>> sockaddr_in6,,,[#include "${srcdir}/compat/headers_slim.h"]) ++
>> AC_CHECK_DECLS(AF_INET6,,,[#include "${srcdir}/compat/headers_slim.h"]) +
>> AC_MSG_CHECKING(for IPv6 headers and structures) + ac_cv_have_ipv6=no +
>> if test "$ac_cv_type_struct_sockaddr_storage" = yes; then +@@ -211,9
>> +211,9 @@ fi + + if test "$ac_cv_have_ipv6" = yes; then + if test
>> "$ac_cv_multicast" = yes; then +- AC_CHECK_TYPES(struct
>> ipv6_mreq,,,[#include "compat/headers_slim.h"]) +-
>> AC_CHECK_DECLS(IPV6_ADD_MEMBERSHIP,,,[#include "compat/headers_slim.h"])
>> +- AC_CHECK_DECLS(IPV6_MULTICAST_HOPS,,,[#include
>> "compat/headers_slim.h"]) ++ AC_CHECK_TYPES(struct
>> ipv6_mreq,,,[#include "${srcdir}/compat/headers_slim.h"]) ++
>> AC_CHECK_DECLS(IPV6_ADD_MEMBERSHIP,,,[#include
>> "${srcdir}/compat/headers_slim.h"]) ++
>> AC_CHECK_DECLS(IPV6_MULTICAST_HOPS,,,[#include
>> "${srcdir}/compat/headers_slim.h"]) + AC_MSG_CHECKING(for IPv6
>> multicast support) + ac_cv_have_ipv6_multicast=no + if test
>> "$ac_cv_type_struct_ipv6_mreq" = yes; then diff --git
>> a/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb
>> b/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb index 1bd554b..20adc0d
>> 100644 --- a/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb +++
>> b/meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb @@ -6,6 +6,7 @@
>> LIC_FILES_CHKSUM = "file://COPYING;md5=e8478eae9f479e39bc34975193360298"
>>
>> SRC_URI = " ${SOURCEFORGE_MIRROR}/iperf/${BP}.tar.gz \
>> file://iperf-2.0.5_ManPage.patch \ +
>> file://0001-fix-out-of-tree-config.patch \ "
>>
>> SRC_URI[md5sum] = "44b5536b67719f4250faed632a3cd016"
>>
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
> Comment: GPGTools - http://gpgtools.org
>
> iD8DBQFUw2FFMkyGM64RGpERArugAJ4nkEYjuGS9ZOgyq/2ouo8dIUY7xQCeM58n
> jN/V4SPAvQw8zcM6qCTjyAw=
> =4Vn9
> -----END PGP SIGNATURE-----
>
^ permalink raw reply [flat|nested] 16+ messages in thread
* [PATCH 02/11] meta-gnome: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
2015-01-23 22:53 ` [PATCH 01/11] iperf: fix out of tree configuration Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 03/11] meta-perl: " Armin Kuster
` (10 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core and openembedded-layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-gnome/conf/layer.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta-gnome/conf/layer.conf b/meta-gnome/conf/layer.conf
index 902ab8f..58e12a9 100644
--- a/meta-gnome/conf/layer.conf
+++ b/meta-gnome/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "gnome-layer"
BBFILE_PATTERN_gnome-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_gnome-layer = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_gnome-layer = "1"
+
+LAYERDEPENDS_gnome-layer = "core openembedded-layer"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 03/11] meta-perl: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
2015-01-23 22:53 ` [PATCH 01/11] iperf: fix out of tree configuration Armin Kuster
2015-01-23 22:53 ` [PATCH 02/11] meta-gnome: Add LAYERVERSION and LAYERDEPENDS Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 04/11] meta-python: " Armin Kuster
` (9 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-perl/conf/layer.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta-perl/conf/layer.conf b/meta-perl/conf/layer.conf
index 09ed0e5..0485ac8 100644
--- a/meta-perl/conf/layer.conf
+++ b/meta-perl/conf/layer.conf
@@ -8,3 +8,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
BBFILE_COLLECTIONS += "perl-layer"
BBFILE_PATTERN_perl-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_perl-layer = "6"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_perl-layer = "1"
+
+LAYERDEPENDS_perl-layer = "core"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 04/11] meta-python: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (2 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 03/11] meta-perl: " Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 05/11] meta-ruby: " Armin Kuster
` (8 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core and openembedded-layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-python/conf/layer.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta-python/conf/layer.conf b/meta-python/conf/layer.conf
index 4e8eca3..55169e4 100644
--- a/meta-python/conf/layer.conf
+++ b/meta-python/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes*/*/*.bb ${LAYERDIR}/recipes*/*/*.bbappend"
BBFILE_COLLECTIONS += "meta-python"
BBFILE_PATTERN_meta-python := "^${LAYERDIR}/"
BBFILE_PRIORITY_meta-python = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_meta-python = "1"
+
+LAYERDEPENDS_meta-python = "core openembedded-layer"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 05/11] meta-ruby: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (3 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 04/11] meta-python: " Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 06/11] toolchain-layer: " Armin Kuster
` (7 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core and openembedded-layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-ruby/conf/layer.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta-ruby/conf/layer.conf b/meta-ruby/conf/layer.conf
index 6c2369f..b526a5d 100644
--- a/meta-ruby/conf/layer.conf
+++ b/meta-ruby/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "ruby-layer"
BBFILE_PATTERN_ruby-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_ruby-layer = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_ruby-layer = "1"
+
+LAYERDEPENDS_ruby-layer = "core openembedded-layer"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 06/11] toolchain-layer: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (4 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 05/11] meta-ruby: " Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 07/11] meta-efl: " Armin Kuster
` (6 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
toolchain-layer/conf/layer.conf | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/toolchain-layer/conf/layer.conf b/toolchain-layer/conf/layer.conf
index ca81eb1..b377f12 100644
--- a/toolchain-layer/conf/layer.conf
+++ b/toolchain-layer/conf/layer.conf
@@ -23,3 +23,8 @@ BBFILE_PATTERN_toolchain-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_toolchain-layer = "6"
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_toolchain-layer = "1"
+
+LAYERDEPENDS_toolchain-layer = "core"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 07/11] meta-efl: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (5 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 06/11] toolchain-layer: " Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 08/11] meta-filesystems: " Armin Kuster
` (5 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core and openembedded-layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-efl/conf/layer.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta-efl/conf/layer.conf b/meta-efl/conf/layer.conf
index 53f4ff4..ed132aa 100644
--- a/meta-efl/conf/layer.conf
+++ b/meta-efl/conf/layer.conf
@@ -8,6 +8,12 @@ BBFILE_COLLECTIONS += "efl-layer"
BBFILE_PATTERN_efl-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_efl-layer = "7"
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_efl-layer = "1"
+
+LAYERDEPENDS_efl-layer = "core openembedded-layer"
+
E_MIRROR = "http://download.enlightenment.org/releases"
E_RELEASES = "http://download.enlightenment.org/rel"
E_SVN = "svn://svn.enlightenment.org/svn/e"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 08/11] meta-filesystems: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (6 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 07/11] meta-efl: " Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 09/11] meta-gpe: " Armin Kuster
` (4 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core and openembedded-layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-filesystems/conf/layer.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta-filesystems/conf/layer.conf b/meta-filesystems/conf/layer.conf
index c0bbd78..9ed6d1b 100644
--- a/meta-filesystems/conf/layer.conf
+++ b/meta-filesystems/conf/layer.conf
@@ -8,3 +8,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
BBFILE_COLLECTIONS += "filesystems-layer"
BBFILE_PATTERN_filesystems-layer = "^${LAYERDIR}/"
BBFILE_PRIORITY_filesystems-layer = "6"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_filesystems-layer = "1"
+
+LAYERDEPENDS_filesystems-layer = "core openembedded-layer"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 09/11] meta-gpe: Add LAYERVERSION and LAYERDEPENDS
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (7 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 08/11] meta-filesystems: " Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 10/11] nbench-byte: Fix license QA error Armin Kuster
` (3 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Jackie Huang <jackie.huang@windriver.com>
According to README, it depends on oe-core and openembedded-layer
Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-gpe/conf/layer.conf | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/meta-gpe/conf/layer.conf b/meta-gpe/conf/layer.conf
index 6c018b1..00f3929 100644
--- a/meta-gpe/conf/layer.conf
+++ b/meta-gpe/conf/layer.conf
@@ -7,3 +7,9 @@ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "gpe-layer"
BBFILE_PATTERN_gpe-layer := "^${LAYERDIR}/"
BBFILE_PRIORITY_gpe-layer = "7"
+
+# This should only be incremented on significant changes that will
+# cause compatibility issues with other layers
+LAYERVERSION_gpe-layer = "1"
+
+LAYERDEPENDS_gpe-layer = "core openembedded-layer"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 10/11] nbench-byte: Fix license QA error
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (8 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 09/11] meta-gpe: " Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-23 22:53 ` [PATCH 11/11] xmlto: remove recipe as it's in OE core Armin Kuster
` (2 subsequent siblings)
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: Otavio Salvador <otavio@ossystems.com.br>
The license is not a common only and seems to be a 'free distribution'
license but without explicit rules about modification or similar. Due
that, we copied the license text from the README file and added it
onto nbench-byte license file.
This fixes following QA error:
,----
| WARNING: Recipe nbench-byte, LICENSE (freely distributable) has
| invalid format, LICENSES must have operator "([&|() ])" between
| them.
`----
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
meta-oe/licenses/nbench-byte | 10 ++++++++++
meta-oe/recipes-benchmark/nbench-byte/nbench-byte_2.2.3.bb | 2 +-
2 files changed, 11 insertions(+), 1 deletion(-)
create mode 100644 meta-oe/licenses/nbench-byte
diff --git a/meta-oe/licenses/nbench-byte b/meta-oe/licenses/nbench-byte
new file mode 100644
index 0000000..7e47ba6
--- /dev/null
+++ b/meta-oe/licenses/nbench-byte
@@ -0,0 +1,10 @@
+THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
+IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
+IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/meta-oe/recipes-benchmark/nbench-byte/nbench-byte_2.2.3.bb b/meta-oe/recipes-benchmark/nbench-byte/nbench-byte_2.2.3.bb
index a98d507..2eedd7e 100644
--- a/meta-oe/recipes-benchmark/nbench-byte/nbench-byte_2.2.3.bb
+++ b/meta-oe/recipes-benchmark/nbench-byte/nbench-byte_2.2.3.bb
@@ -2,7 +2,7 @@ DESCRIPTION = "BYTE Magazine's native benchmarks (also called BYTEmark) \
designed to expose the capabilities of a system's CPU, FPU, \
and memory system."
HOMEPAGE = "http://www.tux.org/~mayer/linux/"
-LICENSE = "freely distributable"
+LICENSE = "nbench-byte"
LIC_FILES_CHKSUM = "file://README;beginline=57;endline=66;md5=020ef579f8fa5746b7e307a54707834f"
SECTION = "console/utils"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* [PATCH 11/11] xmlto: remove recipe as it's in OE core
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (9 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 10/11] nbench-byte: Fix license QA error Armin Kuster
@ 2015-01-23 22:53 ` Armin Kuster
2015-01-24 0:50 ` [PATCH 00/11] [Dizzy next] pull merge request Otavio Salvador
2015-01-28 8:19 ` Martin Jansa
12 siblings, 0 replies; 16+ messages in thread
From: Armin Kuster @ 2015-01-23 22:53 UTC (permalink / raw)
To: openembedded-devel, otavio
From: "Qi.Chen@windriver.com" <Qi.Chen@windriver.com>
Remove xmlto recipe from meta-oe because it's in OE core now.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
.../xmlto/xmlto-0.0.25/obsolete_automake_macros.patch | 12 ------------
meta-oe/recipes-support/xmlto/xmlto_0.0.25.bb | 18 ------------------
2 files changed, 30 deletions(-)
delete mode 100644 meta-oe/recipes-support/xmlto/xmlto-0.0.25/obsolete_automake_macros.patch
delete mode 100644 meta-oe/recipes-support/xmlto/xmlto_0.0.25.bb
diff --git a/meta-oe/recipes-support/xmlto/xmlto-0.0.25/obsolete_automake_macros.patch b/meta-oe/recipes-support/xmlto/xmlto-0.0.25/obsolete_automake_macros.patch
deleted file mode 100644
index faa8acc..0000000
--- a/meta-oe/recipes-support/xmlto/xmlto-0.0.25/obsolete_automake_macros.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Nurd xmlto-0.0.25/configure.in xmlto-0.0.25/configure.in
---- xmlto-0.0.25/configure.in 2011-12-01 17:49:00.000000000 +0200
-+++ xmlto-0.0.25/configure.in 2013-01-07 05:24:16.169953519 +0200
-@@ -1,7 +1,7 @@
- AC_INIT(xmlto, 0.0.25)
- AC_CONFIG_SRCDIR(xmlto.spec.in)
- AM_INIT_AUTOMAKE([dist-bzip2 subdir-objects 1.6])
--AM_CONFIG_HEADER(config.h)
-+AC_CONFIG_HEADERS(config.h)
-
- AC_PROG_CC
- AM_PROG_CC_C_O
diff --git a/meta-oe/recipes-support/xmlto/xmlto_0.0.25.bb b/meta-oe/recipes-support/xmlto/xmlto_0.0.25.bb
deleted file mode 100644
index 9188c8a..0000000
--- a/meta-oe/recipes-support/xmlto/xmlto_0.0.25.bb
+++ /dev/null
@@ -1,18 +0,0 @@
-SUMMARY = "A shell-script tool for converting XML files to various formats"
-HOMEPAGE = "https://fedorahosted.org/xmlto/"
-SECTION = "docs/xmlto"
-LICENSE = "GPLv2"
-
-LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552"
-
-PR = "r1"
-
-SRC_URI = "https://fedorahosted.org/releases/x/m/xmlto/xmlto-${PV}.tar.gz \
- file://obsolete_automake_macros.patch \
-"
-SRC_URI[md5sum] = "a88cd3f08789b4825d1ac89fa065170d"
-SRC_URI[sha256sum] = "c52b56d929e8d20fc19cd3b7ec238f8d039730c56ee311cc352e843147e3e31a"
-
-inherit autotools
-
-BBCLASSEXTEND = "native nativesdk"
--
1.9.1
^ permalink raw reply related [flat|nested] 16+ messages in thread* Re: [PATCH 00/11] [Dizzy next] pull merge request
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (10 preceding siblings ...)
2015-01-23 22:53 ` [PATCH 11/11] xmlto: remove recipe as it's in OE core Armin Kuster
@ 2015-01-24 0:50 ` Otavio Salvador
2015-01-28 8:19 ` Martin Jansa
12 siblings, 0 replies; 16+ messages in thread
From: Otavio Salvador @ 2015-01-24 0:50 UTC (permalink / raw)
To: Armin Kuster; +Cc: OpenEmbedded Devel List
On Fri, Jan 23, 2015 at 8:53 PM, Armin Kuster <akuster808@gmail.com> wrote:
> Please consider this changes for meta-openembedded dizzy
>
> The following changes since commit 3b83aa44186fac44a679cd24a5ae64560cb4118f:
>
> xf86-video-glamo: fix build with xserver 1.16 (2015-01-18 16:40:55 -0800)
>
> are available in the git repository at:
>
> git://github.com/akuster/meta-openembedded akuster/dizzy-next
> https://github.com/akuster/meta-openembedded/tree/akuster/dizzy-next
>
> Belal, Awais (1):
> iperf: fix out of tree configuration
>
> Jackie Huang (8):
> meta-gnome: Add LAYERVERSION and LAYERDEPENDS
> meta-perl: Add LAYERVERSION and LAYERDEPENDS
> meta-python: Add LAYERVERSION and LAYERDEPENDS
> meta-ruby: Add LAYERVERSION and LAYERDEPENDS
> toolchain-layer: Add LAYERVERSION and LAYERDEPENDS
> meta-efl: Add LAYERVERSION and LAYERDEPENDS
> meta-filesystems: Add LAYERVERSION and LAYERDEPENDS
> meta-gpe: Add LAYERVERSION and LAYERDEPENDS
>
> Otavio Salvador (1):
> nbench-byte: Fix license QA error
>
> Qi.Chen@windriver.com (1):
> xmlto: remove recipe as it's in OE core
Acked-by: Otavio Salvador <otavio@ossystems.com.br>
--
Otavio Salvador O.S. Systems
http://www.ossystems.com.br http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854 Mobile: +1 (347) 903-9750
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [PATCH 00/11] [Dizzy next] pull merge request
2015-01-23 22:53 [PATCH 00/11] [Dizzy next] pull merge request Armin Kuster
` (11 preceding siblings ...)
2015-01-24 0:50 ` [PATCH 00/11] [Dizzy next] pull merge request Otavio Salvador
@ 2015-01-28 8:19 ` Martin Jansa
12 siblings, 0 replies; 16+ messages in thread
From: Martin Jansa @ 2015-01-28 8:19 UTC (permalink / raw)
To: openembedded-devel; +Cc: otavio
[-- Attachment #1: Type: text/plain, Size: 3018 bytes --]
On Fri, Jan 23, 2015 at 02:53:40PM -0800, Armin Kuster wrote:
> Please consider this changes for meta-openembedded dizzy
>
> The following changes since commit 3b83aa44186fac44a679cd24a5ae64560cb4118f:
>
> xf86-video-glamo: fix build with xserver 1.16 (2015-01-18 16:40:55 -0800)
>
> are available in the git repository at:
>
> git://github.com/akuster/meta-openembedded akuster/dizzy-next
> https://github.com/akuster/meta-openembedded/tree/akuster/dizzy-next
This branch contains also this commit:
pick 3b83aa4 xf86-video-glamo: fix build with xserver 1.16
which was already in previous dizzy-pull-request and we agreed to drop
it. So I've dropped it again, but please make sure that the pull branch
is matching with pull-request on ML.
>
> Belal, Awais (1):
> iperf: fix out of tree configuration
>
> Jackie Huang (8):
> meta-gnome: Add LAYERVERSION and LAYERDEPENDS
> meta-perl: Add LAYERVERSION and LAYERDEPENDS
> meta-python: Add LAYERVERSION and LAYERDEPENDS
> meta-ruby: Add LAYERVERSION and LAYERDEPENDS
> toolchain-layer: Add LAYERVERSION and LAYERDEPENDS
> meta-efl: Add LAYERVERSION and LAYERDEPENDS
> meta-filesystems: Add LAYERVERSION and LAYERDEPENDS
> meta-gpe: Add LAYERVERSION and LAYERDEPENDS
>
> Otavio Salvador (1):
> nbench-byte: Fix license QA error
>
> Qi.Chen@windriver.com (1):
> xmlto: remove recipe as it's in OE core
>
> meta-efl/conf/layer.conf | 6 +++
> meta-filesystems/conf/layer.conf | 6 +++
> meta-gnome/conf/layer.conf | 6 +++
> meta-gpe/conf/layer.conf | 6 +++
> meta-oe/licenses/nbench-byte | 10 +++++
> .../iperf-2.0.5/0001-fix-out-of-tree-config.patch | 52 ++++++++++++++++++++++
> meta-oe/recipes-benchmark/iperf/iperf_2.0.5.bb | 1 +
> .../nbench-byte/nbench-byte_2.2.3.bb | 2 +-
> .../xmlto-0.0.25/obsolete_automake_macros.patch | 12 -----
> meta-oe/recipes-support/xmlto/xmlto_0.0.25.bb | 18 --------
> meta-perl/conf/layer.conf | 6 +++
> meta-python/conf/layer.conf | 6 +++
> meta-ruby/conf/layer.conf | 6 +++
> toolchain-layer/conf/layer.conf | 5 +++
> 14 files changed, 111 insertions(+), 31 deletions(-)
> create mode 100644 meta-oe/licenses/nbench-byte
> create mode 100644 meta-oe/recipes-benchmark/iperf/iperf-2.0.5/0001-fix-out-of-tree-config.patch
> delete mode 100644 meta-oe/recipes-support/xmlto/xmlto-0.0.25/obsolete_automake_macros.patch
> delete mode 100644 meta-oe/recipes-support/xmlto/xmlto_0.0.25.bb
>
> --
> 1.9.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread