* [PATCH 0/7] Package Updates
@ 2014-02-17 8:22 Saul Wold
2014-02-17 8:22 ` [PATCH 1/7] libnl: Update to 3.2.24 Saul Wold
` (6 more replies)
0 siblings, 7 replies; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:22 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 11e2aaf2d751277e3e99ac2acbbeff2b7227be94:
lib/oe/package_manager: Make empty package directories non-fatal (2014-02-16 16:30:58 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib sgw/updates
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/updates
Saul Wold (7):
libnl: Update to 3.2.24
help2man: Update to 1.44.1
lsbinitscripts: Update to 9.52
man-pages: Update to 3.56
libxkbcommon: Update to 0.3.2
libcheck: Update to 0.9.12
nspr: Update to 4.10.3
...-native_1.43.3.bb => help2man-native_1.44.1.bb} | 6 ++--
meta/recipes-extended/lsb/lsbinitscripts_9.52.bb | 2 +-
.../{man-pages_3.56.bb => man-pages_3.57.bb} | 4 +--
...libxkbcommon_0.3.2.bb => libxkbcommon_0.4.0.bb} | 4 +--
.../{libcheck_0.9.11.bb => libcheck_0.9.12.bb} | 4 +--
...free-caused-by-freeing-link-af_data-in-rt.patch | 41 ----------------------
.../libnl/{libnl_3.2.22.bb => libnl_3.2.24.bb} | 8 ++---
.../nspr/{nspr_4.10.2.bb => nspr_4.10.3.bb} | 4 +--
8 files changed, 16 insertions(+), 57 deletions(-)
rename meta/recipes-devtools/help2man/{help2man-native_1.43.3.bb => help2man-native_1.44.1.bb} (72%)
rename meta/recipes-extended/man-pages/{man-pages_3.56.bb => man-pages_3.57.bb} (82%)
rename meta/recipes-graphics/xorg-lib/{libxkbcommon_0.3.2.bb => libxkbcommon_0.4.0.bb} (78%)
rename meta/recipes-support/libcheck/{libcheck_0.9.11.bb => libcheck_0.9.12.bb} (79%)
delete mode 100644 meta/recipes-support/libnl/libnl/0001-fix-double-free-caused-by-freeing-link-af_data-in-rt.patch
rename meta/recipes-support/libnl/{libnl_3.2.22.bb => libnl_3.2.24.bb} (83%)
rename meta/recipes-support/nspr/{nspr_4.10.2.bb => nspr_4.10.3.bb} (96%)
--
1.8.3.1
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH 1/7] libnl: Update to 3.2.24
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
@ 2014-02-17 8:22 ` Saul Wold
2014-02-17 8:22 ` [PATCH 2/7] help2man: Update to 1.44.1 Saul Wold
` (5 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:22 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
...free-caused-by-freeing-link-af_data-in-rt.patch | 41 ----------------------
.../libnl/{libnl_3.2.22.bb => libnl_3.2.24.bb} | 8 ++---
2 files changed, 4 insertions(+), 45 deletions(-)
delete mode 100644 meta/recipes-support/libnl/libnl/0001-fix-double-free-caused-by-freeing-link-af_data-in-rt.patch
rename meta/recipes-support/libnl/{libnl_3.2.22.bb => libnl_3.2.24.bb} (83%)
diff --git a/meta/recipes-support/libnl/libnl/0001-fix-double-free-caused-by-freeing-link-af_data-in-rt.patch b/meta/recipes-support/libnl/libnl/0001-fix-double-free-caused-by-freeing-link-af_data-in-rt.patch
deleted file mode 100644
index 6d2c8ff..0000000
--- a/meta/recipes-support/libnl/libnl/0001-fix-double-free-caused-by-freeing-link-af_data-in-rt.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 6f37b439af7e96104aadd8ec3ae8d3882df8d102 Mon Sep 17 00:00:00 2001
-From: Jiri Pirko <jiri@resnulli.us>
-Date: Wed, 21 Aug 2013 14:40:34 +0200
-Subject: [PATCH] fix double free caused by freeing link af_data in
- rtnl_link_set_family()
-
-Introduced by commit 8026fe2e3a9089eff3f5a06ee6e3cc78d96334ed ("link:
-Free and realloc af specific data upon rtnl_link_set_family()")
-
-link->l_af_data[link->l_af_ops->ao_family] is freed here but not set to
-zero. That leads to double free made by link_free_data->do_foreach_af.
-
-Fix this by setting link->l_af_data[link->l_af_ops->ao_family] to zero
-rigth after free.
-
-Signed-off-by: Jiri Pirko <jiri@resnulli.us>
-Signed-off-by: Thomas Graf <tgraf@suug.ch>
----
- lib/route/link.c | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/lib/route/link.c b/lib/route/link.c
-index a73e1db..0bb90a0 100644
---- a/lib/route/link.c
-+++ b/lib/route/link.c
-@@ -1762,9 +1762,11 @@ void rtnl_link_set_family(struct rtnl_link *link, int family)
- link->l_family = family;
- link->ce_mask |= LINK_ATTR_FAMILY;
-
-- if (link->l_af_ops)
-+ if (link->l_af_ops) {
- af_free(link, link->l_af_ops,
- link->l_af_data[link->l_af_ops->ao_family], NULL);
-+ link->l_af_data[link->l_af_ops->ao_family] = NULL;
-+ }
-
- link->l_af_ops = af_lookup_and_alloc(link, family);
- }
---
-1.8.4
-
diff --git a/meta/recipes-support/libnl/libnl_3.2.22.bb b/meta/recipes-support/libnl/libnl_3.2.24.bb
similarity index 83%
rename from meta/recipes-support/libnl/libnl_3.2.22.bb
rename to meta/recipes-support/libnl/libnl_3.2.24.bb
index 73b10c5..0d2ee21 100644
--- a/meta/recipes-support/libnl/libnl_3.2.22.bb
+++ b/meta/recipes-support/libnl/libnl_3.2.24.bb
@@ -13,11 +13,10 @@ SRC_URI = "http://www.infradead.org/~tgr/${BPN}/files/${BP}.tar.gz \
file://fix-pktloc_syntax_h-race.patch \
file://fix-pc-file.patch \
file://fix-lib-cache_mngr.c-two-parentheses-bugs.patch \
- file://0001-fix-double-free-caused-by-freeing-link-af_data-in-rt.patch \
"
-SRC_URI[md5sum] = "2e1c889494d274aca24ce5f6a748e66e"
-SRC_URI[sha256sum] = "c7c5f267dfeae0c1a530bf96b71fb7c8dbbb07d54beef49b6712d8d6166f629b"
+SRC_URI[md5sum] = "6e0e7bad0674749d930dd9f285343d55"
+SRC_URI[sha256sum] = "fb8d6e5dc8af5b85bc6d00a71582a68a01e6a3f7d1664d4a646e289a99dd6816"
inherit autotools pkgconfig
@@ -31,10 +30,11 @@ FILES_${PN}-dev += "${libdir}/libnl/cli/*/*.so \
${libdir}/libnl/cli/*/*.la"
FILES_${PN}-staticdev += "${libdir}/libnl/cli/*/*.a"
-PACKAGES += "${PN}-cli ${PN}-route ${PN}-nf ${PN}-genl"
+PACKAGES += "${PN}-cli ${PN}-idiag ${PN}-route ${PN}-nf ${PN}-genl"
FILES_${PN}-cli = "${libdir}/libnl-cli-3.so.* \
${libdir}/libnl/cli/*/*.so.* \
${sbindir}/nl-*"
+FILES_${PN}-idiag = "${libdir}/libnl-idiag-3.so.*"
FILES_${PN}-route = "${libdir}/libnl-route-3.so.*"
FILES_${PN}-nf = "${libdir}/libnl-nf-3.so.*"
FILES_${PN}-genl = "${libdir}/libnl-genl-3.so.* \
--
1.8.3.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 2/7] help2man: Update to 1.44.1
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
2014-02-17 8:22 ` [PATCH 1/7] libnl: Update to 3.2.24 Saul Wold
@ 2014-02-17 8:22 ` Saul Wold
2014-02-17 8:22 ` [PATCH 3/7] lsbinitscripts: Update to 9.52 Saul Wold
` (4 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:22 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
.../{help2man-native_1.43.3.bb => help2man-native_1.44.1.bb} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
rename meta/recipes-devtools/help2man/{help2man-native_1.43.3.bb => help2man-native_1.44.1.bb} (72%)
diff --git a/meta/recipes-devtools/help2man/help2man-native_1.43.3.bb b/meta/recipes-devtools/help2man/help2man-native_1.44.1.bb
similarity index 72%
rename from meta/recipes-devtools/help2man/help2man-native_1.43.3.bb
rename to meta/recipes-devtools/help2man/help2man-native_1.44.1.bb
index 5bf6149..cf9a12d 100644
--- a/meta/recipes-devtools/help2man/help2man-native_1.43.3.bb
+++ b/meta/recipes-devtools/help2man/help2man-native_1.44.1.bb
@@ -4,10 +4,10 @@ LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
DEPENDS = "autoconf-native automake-native"
-SRC_URI = "${GNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.gz"
+SRC_URI = "${GNU_MIRROR}/${BPN}/${BPN}-${PV}.tar.xz"
-SRC_URI[md5sum] = "a84868db7c139238df8add5d86a0b54f"
-SRC_URI[sha256sum] = "67978d118980ebd9f0c60be5db129527900a7b997b9568fc795ba9bdb341d303"
+SRC_URI[md5sum] = "a5dc6530340b41f0e492d400670dd7ae"
+SRC_URI[sha256sum] = "22de6846771921f455e389cdca07119d7f55b1877685b42dd5bbb9fc1377defb"
inherit autotools native
--
1.8.3.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 3/7] lsbinitscripts: Update to 9.52
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
2014-02-17 8:22 ` [PATCH 1/7] libnl: Update to 3.2.24 Saul Wold
2014-02-17 8:22 ` [PATCH 2/7] help2man: Update to 1.44.1 Saul Wold
@ 2014-02-17 8:22 ` Saul Wold
2014-02-17 8:58 ` Laurentiu Palcu
2014-02-17 8:22 ` [PATCH 4/7] man-pages: Update to 3.56 Saul Wold
` (3 subsequent siblings)
6 siblings, 1 reply; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:22 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-extended/lsb/lsbinitscripts_9.52.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb
index 11deae2..bc3e620 100644
--- a/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb
+++ b/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb
@@ -6,7 +6,7 @@ DEPENDS = "popt glib-2.0"
LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6"
S="${WORKDIR}/initscripts-${PV}"
-SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-${PV}.tar.bz2/2453811ec27a781a77f309f356663d9e/initscripts-${PV}.tar.bz2 \
+SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-9.52.tar.bz2/2453811ec27a781a77f309f356663d9e/initscripts-9.52.tar.bz2 \
file://functions.patch \
"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 4/7] man-pages: Update to 3.56
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
` (2 preceding siblings ...)
2014-02-17 8:22 ` [PATCH 3/7] lsbinitscripts: Update to 9.52 Saul Wold
@ 2014-02-17 8:22 ` Saul Wold
2014-02-17 8:23 ` [PATCH 5/7] libxkbcommon: Update to 0.3.2 Saul Wold
` (2 subsequent siblings)
6 siblings, 0 replies; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:22 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
.../man-pages/{man-pages_3.56.bb => man-pages_3.57.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-extended/man-pages/{man-pages_3.56.bb => man-pages_3.57.bb} (82%)
diff --git a/meta/recipes-extended/man-pages/man-pages_3.56.bb b/meta/recipes-extended/man-pages/man-pages_3.57.bb
similarity index 82%
rename from meta/recipes-extended/man-pages/man-pages_3.56.bb
rename to meta/recipes-extended/man-pages/man-pages_3.57.bb
index c8ecbc2..2277270 100644
--- a/meta/recipes-extended/man-pages/man-pages_3.56.bb
+++ b/meta/recipes-extended/man-pages/man-pages_3.57.bb
@@ -7,8 +7,8 @@ LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://README;md5=0422377a748010b2b738342e24f141c1"
SRC_URI = "${KERNELORG_MIRROR}/linux/docs/${BPN}/Archive/${BP}.tar.gz"
-SRC_URI[md5sum] = "60eb30044fda5b7a8eec7791cf51a066"
-SRC_URI[sha256sum] = "7d567ba8d1a953b94379bdf6fce261cb4b01343ba083ffdc4d3e2b8f9d12e66e"
+SRC_URI[md5sum] = "c56dce7f02bc980a03188276fb5e6f72"
+SRC_URI[sha256sum] = "8183a3d5ffd4870d3af01390380c24f783501c49ff6b28f3d96f592c04f0b06d"
RDEPENDS_${PN} = "man"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 5/7] libxkbcommon: Update to 0.3.2
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
` (3 preceding siblings ...)
2014-02-17 8:22 ` [PATCH 4/7] man-pages: Update to 3.56 Saul Wold
@ 2014-02-17 8:23 ` Saul Wold
2014-02-17 8:23 ` [PATCH 6/7] libcheck: Update to 0.9.12 Saul Wold
2014-02-17 8:23 ` [PATCH 7/7] nspr: Update to 4.10.3 Saul Wold
6 siblings, 0 replies; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:23 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
.../xorg-lib/{libxkbcommon_0.3.2.bb => libxkbcommon_0.4.0.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-graphics/xorg-lib/{libxkbcommon_0.3.2.bb => libxkbcommon_0.4.0.bb} (78%)
diff --git a/meta/recipes-graphics/xorg-lib/libxkbcommon_0.3.2.bb b/meta/recipes-graphics/xorg-lib/libxkbcommon_0.4.0.bb
similarity index 78%
rename from meta/recipes-graphics/xorg-lib/libxkbcommon_0.3.2.bb
rename to meta/recipes-graphics/xorg-lib/libxkbcommon_0.4.0.bb
index 4a83b4f..2726302 100644
--- a/meta/recipes-graphics/xorg-lib/libxkbcommon_0.3.2.bb
+++ b/meta/recipes-graphics/xorg-lib/libxkbcommon_0.4.0.bb
@@ -9,8 +9,8 @@ DEPENDS = "util-macros flex-native bison-native"
SRC_URI = "http://xkbcommon.org/download/${BPN}-${PV}.tar.xz"
-SRC_URI[md5sum] = "935cf416354bf05210de2e389484f7e8"
-SRC_URI[sha256sum] = "cc378a47b01b00226ecf647b69e07df04091323846124b366cf835e5cdf5a88a"
+SRC_URI[md5sum] = "bb782f1700e45b4f57c84ef513e3cf85"
+SRC_URI[sha256sum] = "2dc018e830d1befaf4822615204138318da3fff0112f78f3a7c638fa617375b8"
inherit autotools pkgconfig
--
1.8.3.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 6/7] libcheck: Update to 0.9.12
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
` (4 preceding siblings ...)
2014-02-17 8:23 ` [PATCH 5/7] libxkbcommon: Update to 0.3.2 Saul Wold
@ 2014-02-17 8:23 ` Saul Wold
2014-02-17 8:23 ` [PATCH 7/7] nspr: Update to 4.10.3 Saul Wold
6 siblings, 0 replies; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:23 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
.../libcheck/{libcheck_0.9.11.bb => libcheck_0.9.12.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-support/libcheck/{libcheck_0.9.11.bb => libcheck_0.9.12.bb} (79%)
diff --git a/meta/recipes-support/libcheck/libcheck_0.9.11.bb b/meta/recipes-support/libcheck/libcheck_0.9.12.bb
similarity index 79%
rename from meta/recipes-support/libcheck/libcheck_0.9.11.bb
rename to meta/recipes-support/libcheck/libcheck_0.9.12.bb
index 7fc352c..12ef1d4 100644
--- a/meta/recipes-support/libcheck/libcheck_0.9.11.bb
+++ b/meta/recipes-support/libcheck/libcheck_0.9.12.bb
@@ -8,8 +8,8 @@ LIC_FILES_CHKSUM = "file://COPYING.LESSER;md5=2d5025d4aa3495befef8f17206a5b0a1"
SRC_URI = "${SOURCEFORGE_MIRROR}/check/check-${PV}.tar.gz \
"
-SRC_URI[md5sum] = "fd5a03979bcab9fb80ba005b55f54178"
-SRC_URI[sha256sum] = "ea4e8c7ffb00bb4ffb3f59f11744a71f1cc4212c79f3083c7d9a4b0953976936"
+SRC_URI[md5sum] = "46fe540d1a03714c7a1967dbc6d484e7"
+SRC_URI[sha256sum] = "c7d47e55e133a0ca19a52e08a99333ac55cb22618b53719b7f4117a1875b1ea3"
S = "${WORKDIR}/check-${PV}"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [PATCH 7/7] nspr: Update to 4.10.3
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
` (5 preceding siblings ...)
2014-02-17 8:23 ` [PATCH 6/7] libcheck: Update to 0.9.12 Saul Wold
@ 2014-02-17 8:23 ` Saul Wold
6 siblings, 0 replies; 10+ messages in thread
From: Saul Wold @ 2014-02-17 8:23 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
meta/recipes-support/nspr/{nspr_4.10.2.bb => nspr_4.10.3.bb} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-support/nspr/{nspr_4.10.2.bb => nspr_4.10.3.bb} (96%)
diff --git a/meta/recipes-support/nspr/nspr_4.10.2.bb b/meta/recipes-support/nspr/nspr_4.10.3.bb
similarity index 96%
rename from meta/recipes-support/nspr/nspr_4.10.2.bb
rename to meta/recipes-support/nspr/nspr_4.10.3.bb
index bb8912e..4792b65 100644
--- a/meta/recipes-support/nspr/nspr_4.10.2.bb
+++ b/meta/recipes-support/nspr/nspr_4.10.3.bb
@@ -13,8 +13,8 @@ SRC_URI = "ftp://ftp.mozilla.org/pub/mozilla.org/nspr/releases/v${PV}/src/nspr-$
SRC_URI += "file://nspr.pc.in"
-SRC_URI[md5sum] = "f0d254da0b2b870d9a5fa094e879d4b8"
-SRC_URI[sha256sum] = "4d09ee67a6fb57d3c646098b0ac7fd1e31be1c2c2ca57cd2ad28b42e6d3cf400"
+SRC_URI[md5sum] = "bf298e874cf454a3c2f8fe7e671c5d2e"
+SRC_URI[sha256sum] = "f25779b1a665dab0090b9c977dc6c29a63320f442956ed78629b66b405cb01e5"
S = "${WORKDIR}/nspr-${PV}/nspr"
--
1.8.3.1
^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH 3/7] lsbinitscripts: Update to 9.52
2014-02-17 8:22 ` [PATCH 3/7] lsbinitscripts: Update to 9.52 Saul Wold
@ 2014-02-17 8:58 ` Laurentiu Palcu
2014-02-17 10:06 ` Burton, Ross
0 siblings, 1 reply; 10+ messages in thread
From: Laurentiu Palcu @ 2014-02-17 8:58 UTC (permalink / raw)
To: Saul Wold; +Cc: openembedded-core
Hi Saul,
On Mon, Feb 17, 2014 at 12:22:58AM -0800, Saul Wold wrote:
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
> meta/recipes-extended/lsb/lsbinitscripts_9.52.bb | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb b/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb
> index 11deae2..bc3e620 100644
> --- a/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb
> +++ b/meta/recipes-extended/lsb/lsbinitscripts_9.52.bb
> @@ -6,7 +6,7 @@ DEPENDS = "popt glib-2.0"
> LIC_FILES_CHKSUM = "file://COPYING;md5=ebf4e8b49780ab187d51bd26aaa022c6"
>
> S="${WORKDIR}/initscripts-${PV}"
> -SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-${PV}.tar.bz2/2453811ec27a781a77f309f356663d9e/initscripts-${PV}.tar.bz2 \
> +SRC_URI = "http://pkgs.fedoraproject.org/repo/pkgs/initscripts/initscripts-9.52.tar.bz2/2453811ec27a781a77f309f356663d9e/initscripts-9.52.tar.bz2 \
This doesn't look like an upgrade... Besides, I believe you already
upgraded this recipe to 9.52:
Author: Saul Wold <sgw@linux.intel.com>
Date: Mon Jan 20 18:54:30 2014 -0800
lsbinitscripts: Update to 9.52
Am I missing something?
laurentiu
> file://functions.patch \
> "
>
> --
> 1.8.3.1
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH 3/7] lsbinitscripts: Update to 9.52
2014-02-17 8:58 ` Laurentiu Palcu
@ 2014-02-17 10:06 ` Burton, Ross
0 siblings, 0 replies; 10+ messages in thread
From: Burton, Ross @ 2014-02-17 10:06 UTC (permalink / raw)
To: Laurentiu Palcu; +Cc: OE-core
On 17 February 2014 08:58, Laurentiu Palcu <laurentiu.palcu@intel.com> wrote:
> Am I missing something?
Looks like the remains from a rebase when there were two versions of
the patch in circulation.
Ross
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2014-02-17 10:07 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-17 8:22 [PATCH 0/7] Package Updates Saul Wold
2014-02-17 8:22 ` [PATCH 1/7] libnl: Update to 3.2.24 Saul Wold
2014-02-17 8:22 ` [PATCH 2/7] help2man: Update to 1.44.1 Saul Wold
2014-02-17 8:22 ` [PATCH 3/7] lsbinitscripts: Update to 9.52 Saul Wold
2014-02-17 8:58 ` Laurentiu Palcu
2014-02-17 10:06 ` Burton, Ross
2014-02-17 8:22 ` [PATCH 4/7] man-pages: Update to 3.56 Saul Wold
2014-02-17 8:23 ` [PATCH 5/7] libxkbcommon: Update to 0.3.2 Saul Wold
2014-02-17 8:23 ` [PATCH 6/7] libcheck: Update to 0.9.12 Saul Wold
2014-02-17 8:23 ` [PATCH 7/7] nspr: Update to 4.10.3 Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox