* [PATCH 0/5] Recipe upgrades
@ 2011-10-25 21:32 Scott Garman
2011-10-25 21:32 ` [PATCH 1/5] sudo: upgrade to 1.8.3 Scott Garman
` (5 more replies)
0 siblings, 6 replies; 14+ messages in thread
From: Scott Garman @ 2011-10-25 21:32 UTC (permalink / raw)
To: openembedded-core
Hello,
Here is a set of some straightfoward recipe upgrades: sudo, grep,
mtools, and openssh.
Build testing: These have been successfully built for all 5 qemu
architectures.
Runtime testing: I have performed basic runtime testing for all of
these recipe upgrades as well within a qemux86 session.
The following changes since commit f586aaa8d00361a9597a546d665077c75cf4d520:
libxml-parser-perl, libxml-simple-perl, expat, sgmlspl-native, git: bump PR to rebuild after perl upgrade (2011-10-25 08:36:01 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib sgarman/recipe-upgrades-final
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/recipe-upgrades-final
Scott Garman (5):
sudo: upgrade to 1.8.3
grep: upgrade to 2.9
mtools: upgrade to 4.0.17
openssh: upgrade to 5.9p1
distro_tracking_fields: updates for sudo, mtools, grep, and openssh
.../conf/distro/include/distro_tracking_fields.inc | 32 ++++++++++----------
.../openssh/{openssh-5.8p2 => openssh-5.9p1}/init | 0
.../{openssh-5.8p2 => openssh-5.9p1}/nostrip.patch | 0
.../{openssh-5.8p2 => openssh-5.9p1}/ssh_config | 0
.../openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd | 0
.../{openssh-5.8p2 => openssh-5.9p1}/sshd_config | 0
.../openssh/{openssh_5.8p2.bb => openssh_5.9p1.bb} | 4 +-
.../mtools/{mtools_4.0.16.bb => mtools_4.0.17.bb} | 4 +-
.../grep/{grep_2.8.bb => grep_2.9.bb} | 4 +-
.../sudo/{sudo_1.8.1p2.bb => sudo_1.8.3.bb} | 6 ++--
10 files changed, 25 insertions(+), 25 deletions(-)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/init (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/nostrip.patch (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/ssh_config (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd_config (100%)
rename meta/recipes-connectivity/openssh/{openssh_5.8p2.bb => openssh_5.9p1.bb} (96%)
rename meta/recipes-devtools/mtools/{mtools_4.0.16.bb => mtools_4.0.17.bb} (80%)
rename meta/recipes-extended/grep/{grep_2.8.bb => grep_2.9.bb} (88%)
rename meta/recipes-extended/sudo/{sudo_1.8.1p2.bb => sudo_1.8.3.bb} (82%)
--
1.7.5.4
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH 1/5] sudo: upgrade to 1.8.3
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
@ 2011-10-25 21:32 ` Scott Garman
2011-10-25 21:32 ` [PATCH 2/5] grep: upgrade to 2.9 Scott Garman
` (4 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Scott Garman @ 2011-10-25 21:32 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
.../sudo/{sudo_1.8.1p2.bb => sudo_1.8.3.bb} | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
rename meta/recipes-extended/sudo/{sudo_1.8.1p2.bb => sudo_1.8.3.bb} (82%)
diff --git a/meta/recipes-extended/sudo/sudo_1.8.1p2.bb b/meta/recipes-extended/sudo/sudo_1.8.3.bb
similarity index 82%
rename from meta/recipes-extended/sudo/sudo_1.8.1p2.bb
rename to meta/recipes-extended/sudo/sudo_1.8.3.bb
index b568291..0ac0851 100644
--- a/meta/recipes-extended/sudo/sudo_1.8.1p2.bb
+++ b/meta/recipes-extended/sudo/sudo_1.8.3.bb
@@ -1,6 +1,6 @@
require sudo.inc
-PR = "r2"
+PR = "r0"
SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \
file://libtool.patch \
@@ -8,8 +8,8 @@ SRC_URI = "http://ftp.sudo.ws/sudo/dist/sudo-${PV}.tar.gz \
PAM_SRC_URI = "file://sudo.pam"
-SRC_URI[md5sum] = "e8330f0e63b0ecb2e12b5c76922818cc"
-SRC_URI[sha256sum] = "281f90c80547cf22132e351e7f61c25ba4ba9cf393438468f318f9a7884026fb"
+SRC_URI[md5sum] = "9e5517bbf3aee420b38c2d1d7a71bcad"
+SRC_URI[sha256sum] = "ff1fcc410c5465063ee4912912e29936ea39f017d9a8a57ec76b0ded71b7c3c4"
DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}"
RDEPENDS_${PN} += " ${@base_contains('DISTRO_FEATURES', 'pam', 'pam-plugin-limits pam-plugin-keyinit', '', d)}"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH 2/5] grep: upgrade to 2.9
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
2011-10-25 21:32 ` [PATCH 1/5] sudo: upgrade to 1.8.3 Scott Garman
@ 2011-10-25 21:32 ` Scott Garman
2011-10-25 21:36 ` [PATCH 3/5] mtools: upgrade to 4.0.17 Scott Garman
` (3 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Scott Garman @ 2011-10-25 21:32 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
.../grep/{grep_2.8.bb => grep_2.9.bb} | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-extended/grep/{grep_2.8.bb => grep_2.9.bb} (88%)
diff --git a/meta/recipes-extended/grep/grep_2.8.bb b/meta/recipes-extended/grep/grep_2.9.bb
similarity index 88%
rename from meta/recipes-extended/grep/grep_2.8.bb
rename to meta/recipes-extended/grep/grep_2.9.bb
index 3425e8f..08ac527 100644
--- a/meta/recipes-extended/grep/grep_2.8.bb
+++ b/meta/recipes-extended/grep/grep_2.9.bb
@@ -9,8 +9,8 @@ PR = "r0"
SRC_URI = "${GNU_MIRROR}/grep/grep-${PV}.tar.gz"
-SRC_URI[md5sum] = "cb2dfc502c5afc7a4a6e5f6cefd6850e"
-SRC_URI[sha256sum] = "da48d0e20bceaacc7d05bfcbccb34c3dee0c50bd7e80de5222fd5e319809af27"
+SRC_URI[md5sum] = "03e3451a38b0d615cb113cbeaf252dc0"
+SRC_URI[sha256sum] = "e9118eac72ecc71191725a7566361ab7643edfd3364869a47b78dc934a357970"
inherit autotools gettext
--
1.7.5.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH 3/5] mtools: upgrade to 4.0.17
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
2011-10-25 21:32 ` [PATCH 1/5] sudo: upgrade to 1.8.3 Scott Garman
2011-10-25 21:32 ` [PATCH 2/5] grep: upgrade to 2.9 Scott Garman
@ 2011-10-25 21:36 ` Scott Garman
2011-10-25 21:36 ` [PATCH 4/5] openssh: upgrade to 5.9p1 Scott Garman
` (2 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Scott Garman @ 2011-10-25 21:36 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
.../mtools/{mtools_4.0.16.bb => mtools_4.0.17.bb} | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-devtools/mtools/{mtools_4.0.16.bb => mtools_4.0.17.bb} (80%)
diff --git a/meta/recipes-devtools/mtools/mtools_4.0.16.bb b/meta/recipes-devtools/mtools/mtools_4.0.17.bb
similarity index 80%
rename from meta/recipes-devtools/mtools/mtools_4.0.16.bb
rename to meta/recipes-devtools/mtools/mtools_4.0.17.bb
index df67854..e4666ff 100644
--- a/meta/recipes-devtools/mtools/mtools_4.0.16.bb
+++ b/meta/recipes-devtools/mtools/mtools_4.0.17.bb
@@ -11,8 +11,8 @@ SRC_URI = "${GNU_MIRROR}/mtools/mtools-${PV}.tar.bz2 \
file://mtools-makeinfo.patch \
file://no-x11.gplv3.patch"
-SRC_URI[md5sum] = "e9b07f35272210f407012abaf5d1b9b5"
-SRC_URI[sha256sum] = "7c9e337786d142399d37202ff2002f95bfb3f4e96620223a18d7206708ad2ed5"
+SRC_URI[md5sum] = "15571c615d8f75f5f6d294272f80c7fa"
+SRC_URI[sha256sum] = "0ecc358e30a72d215b1d4c625b27e67121cd6f6075370dfb791ef2a8b980ecb6"
inherit autotools
--
1.7.5.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH 4/5] openssh: upgrade to 5.9p1
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
` (2 preceding siblings ...)
2011-10-25 21:36 ` [PATCH 3/5] mtools: upgrade to 4.0.17 Scott Garman
@ 2011-10-25 21:36 ` Scott Garman
2011-10-25 21:36 ` [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh Scott Garman
2011-10-27 7:31 ` [PATCH 0/5] Recipe upgrades Richard Purdie
5 siblings, 0 replies; 14+ messages in thread
From: Scott Garman @ 2011-10-25 21:36 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
.../openssh/{openssh-5.8p2 => openssh-5.9p1}/init | 0
.../{openssh-5.8p2 => openssh-5.9p1}/nostrip.patch | 0
.../{openssh-5.8p2 => openssh-5.9p1}/ssh_config | 0
.../openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd | 0
.../{openssh-5.8p2 => openssh-5.9p1}/sshd_config | 0
.../openssh/{openssh_5.8p2.bb => openssh_5.9p1.bb} | 4 ++--
6 files changed, 2 insertions(+), 2 deletions(-)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/init (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/nostrip.patch (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/ssh_config (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd (100%)
rename meta/recipes-connectivity/openssh/{openssh-5.8p2 => openssh-5.9p1}/sshd_config (100%)
rename meta/recipes-connectivity/openssh/{openssh_5.8p2.bb => openssh_5.9p1.bb} (96%)
diff --git a/meta/recipes-connectivity/openssh/openssh-5.8p2/init b/meta/recipes-connectivity/openssh/openssh-5.9p1/init
similarity index 100%
rename from meta/recipes-connectivity/openssh/openssh-5.8p2/init
rename to meta/recipes-connectivity/openssh/openssh-5.9p1/init
diff --git a/meta/recipes-connectivity/openssh/openssh-5.8p2/nostrip.patch b/meta/recipes-connectivity/openssh/openssh-5.9p1/nostrip.patch
similarity index 100%
rename from meta/recipes-connectivity/openssh/openssh-5.8p2/nostrip.patch
rename to meta/recipes-connectivity/openssh/openssh-5.9p1/nostrip.patch
diff --git a/meta/recipes-connectivity/openssh/openssh-5.8p2/ssh_config b/meta/recipes-connectivity/openssh/openssh-5.9p1/ssh_config
similarity index 100%
rename from meta/recipes-connectivity/openssh/openssh-5.8p2/ssh_config
rename to meta/recipes-connectivity/openssh/openssh-5.9p1/ssh_config
diff --git a/meta/recipes-connectivity/openssh/openssh-5.8p2/sshd b/meta/recipes-connectivity/openssh/openssh-5.9p1/sshd
similarity index 100%
rename from meta/recipes-connectivity/openssh/openssh-5.8p2/sshd
rename to meta/recipes-connectivity/openssh/openssh-5.9p1/sshd
diff --git a/meta/recipes-connectivity/openssh/openssh-5.8p2/sshd_config b/meta/recipes-connectivity/openssh/openssh-5.9p1/sshd_config
similarity index 100%
rename from meta/recipes-connectivity/openssh/openssh-5.8p2/sshd_config
rename to meta/recipes-connectivity/openssh/openssh-5.9p1/sshd_config
diff --git a/meta/recipes-connectivity/openssh/openssh_5.8p2.bb b/meta/recipes-connectivity/openssh/openssh_5.9p1.bb
similarity index 96%
rename from meta/recipes-connectivity/openssh/openssh_5.8p2.bb
rename to meta/recipes-connectivity/openssh/openssh_5.9p1.bb
index 5f5f0bc..f9493d7 100644
--- a/meta/recipes-connectivity/openssh/openssh_5.8p2.bb
+++ b/meta/recipes-connectivity/openssh/openssh_5.9p1.bb
@@ -26,8 +26,8 @@ SRC_URI = "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-${PV}.tar.
${@base_contains('DISTRO_FEATURES', 'pam', '${PAM_SRC_URI}', '', d)}"
PAM_SRC_URI = "file://sshd"
-SRC_URI[md5sum] = "0541579adf9d55abb15ef927048d372e"
-SRC_URI[sha256sum] = "5c35ec7c966ce05cc4497ac59c0b54a556e55ae7368165cc8c4129694654f314"
+SRC_URI[md5sum] = "afe17eee7e98d3b8550cc349834a85d0"
+SRC_URI[sha256sum] = "8d3e8b6b6ff04b525a6dfa6fdeb6a99043ccf6c3310cc32eba84c939b07777d5"
inherit useradd update-rc.d
--
1.7.5.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
` (3 preceding siblings ...)
2011-10-25 21:36 ` [PATCH 4/5] openssh: upgrade to 5.9p1 Scott Garman
@ 2011-10-25 21:36 ` Scott Garman
2011-10-26 20:37 ` Saul Wold
2011-10-27 7:31 ` [PATCH 0/5] Recipe upgrades Richard Purdie
5 siblings, 1 reply; 14+ messages in thread
From: Scott Garman @ 2011-10-25 21:36 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Scott Garman <scott.a.garman@intel.com>
---
.../conf/distro/include/distro_tracking_fields.inc | 32 ++++++++++----------
1 files changed, 16 insertions(+), 16 deletions(-)
diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index 1f3540e..936ef81 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -813,12 +813,12 @@ RECIPE_MAINTAINER_pn-pax-utils = "Scott Garman <scott.a.garman@intel.com>"
RECIPE_STATUS_pn-sudo = "green"
RECIPE_DEPENDENCY_CHECK_pn-sudo = "not done"
-RECIPE_LATEST_VERSION_pn-sudo = "1.8.1p2"
+RECIPE_LATEST_VERSION_pn-sudo = "1.8.3"
RECIPE_INTEL_SECTION_pn-sudo = "base utils"
-RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "1 month"
-RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/05/16"
+RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "2 months"
+RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/10/21"
RECIPE_COMMENTS_pn-sudo = ""
-RECIPE_LAST_UPDATE_pn-sudo = "Jun 14, 2011"
+RECIPE_LAST_UPDATE_pn-sudo = "Oct 25, 2011"
RECIPE_MAINTAINER_pn-sudo = "Scott Garman <scott.a.garman@intel.com>"
RECIPE_STATUS_pn-blktool = "green"
@@ -1290,12 +1290,12 @@ DISTRO_PN_ALIAS_pn-msynctool = "OpenSuse=msynctool Mandriva=msynctool"
RECIPE_STATUS_pn-mtools = "green"
RECIPE_DEPENDENCY_CHECK_pn-mtools = "not done"
-RECIPE_LATEST_VERSION_pn-mtools = "4.0.16"
+RECIPE_LATEST_VERSION_pn-mtools = "4.0.17"
RECIPE_INTEL_SECTION_pn-mtools = "optional"
-RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-mtools = "6 months"
-RECIPE_LATEST_RELEASE_DATE_pn-mtools = "2011/04/16"
+RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-mtools = "2 months"
+RECIPE_LATEST_RELEASE_DATE_pn-mtools = "2011/06/28"
RECIPE_COMMENTS_pn-mtools = ""
-RECIPE_LAST_UPDATE_pn-mtools = "Jun 15, 2011"
+RECIPE_LAST_UPDATE_pn-mtools = "Oct 25, 2011"
RECIPE_MAINTAINER_pn-mtools = "Scott Garman <scott.a.garman@intel.com>"
RECIPE_STATUS_pn-pm-utils = "green"
@@ -2016,22 +2016,22 @@ RECIPE_MAINTAINER_pn-cronie = "Dexuan Cui <dexuan.cui@intel.com>"
RECIPE_STATUS_pn-grep = "green"
RECIPE_DEPENDENCY_CHECK_pn-grep = "not done"
-RECIPE_LATEST_VERSION_pn-grep = "2.8"
+RECIPE_LATEST_VERSION_pn-grep = "2.9"
RECIPE_INTEL_SECTION_pn-grep = "base"
RECIPE_NO_OF_PATCHES_pn-grep = "0"
-RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-grep = "8 months"
-RECIPE_LATEST_RELEASE_DATE_pn-grep = "05/2011"
-RECIPE_LAST_UPDATE_pn-grep = "Jun 5, 2011"
+RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-grep = "1 month"
+RECIPE_LATEST_RELEASE_DATE_pn-grep = "06/2011"
+RECIPE_LAST_UPDATE_pn-grep = "Oct 25, 2011"
RECIPE_MAINTAINER_pn-grep = "Scott Garman <scott.a.garman@intel.com>"
RECIPE_STATUS_pn-openssh = "green"
RECIPE_DEPENDENCY_CHECK_pn-openssh = "not done"
-RECIPE_LATEST_VERSION_pn-openssh = "5.8p2"
+RECIPE_LATEST_VERSION_pn-openssh = "5.9p1"
RECIPE_INTEL_SECTION_pn-openssh = "base"
RECIPE_NO_OF_PATCHES_pn-openssh = "1"
-RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-openssh = "3 months"
-RECIPE_LATEST_RELEASE_DATE_pn-openssh = "05/2011"
-RECIPE_LAST_UPDATE_pn-openssh = "Jun 5, 2011"
+RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-openssh = "4 months"
+RECIPE_LATEST_RELEASE_DATE_pn-openssh = "09/2011"
+RECIPE_LAST_UPDATE_pn-openssh = "Oct 25, 2011"
RECIPE_MAINTAINER_pn-openssh = "Scott Garman <scott.a.garman@intel.com>"
RECIPE_STATUS_pn-tar = "green"
--
1.7.5.4
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh
2011-10-25 21:36 ` [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh Scott Garman
@ 2011-10-26 20:37 ` Saul Wold
2011-10-31 9:08 ` Paul Eggleton
0 siblings, 1 reply; 14+ messages in thread
From: Saul Wold @ 2011-10-26 20:37 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Scott Garman
On 10/25/2011 11:36 PM, Scott Garman wrote:
> Signed-off-by: Scott Garman<scott.a.garman@intel.com>
> ---
> .../conf/distro/include/distro_tracking_fields.inc | 32 ++++++++++----------
> 1 files changed, 16 insertions(+), 16 deletions(-)
>
> diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
> index 1f3540e..936ef81 100644
> --- a/meta/conf/distro/include/distro_tracking_fields.inc
> +++ b/meta/conf/distro/include/distro_tracking_fields.inc
> @@ -813,12 +813,12 @@ RECIPE_MAINTAINER_pn-pax-utils = "Scott Garman<scott.a.garman@intel.com>"
>
> RECIPE_STATUS_pn-sudo = "green"
> RECIPE_DEPENDENCY_CHECK_pn-sudo = "not done"
> -RECIPE_LATEST_VERSION_pn-sudo = "1.8.1p2"
> +RECIPE_LATEST_VERSION_pn-sudo = "1.8.3"
> RECIPE_INTEL_SECTION_pn-sudo = "base utils"
> -RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "1 month"
> -RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/05/16"
> +RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "2 months"
> +RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/10/21"
These date formats should be MMM DD, YYYY also, for all the data listed
below also.
Thanks
Sau!
> RECIPE_COMMENTS_pn-sudo = ""
> -RECIPE_LAST_UPDATE_pn-sudo = "Jun 14, 2011"
> +RECIPE_LAST_UPDATE_pn-sudo = "Oct 25, 2011"
> RECIPE_MAINTAINER_pn-sudo = "Scott Garman<scott.a.garman@intel.com>"
>
> RECIPE_STATUS_pn-blktool = "green"
> @@ -1290,12 +1290,12 @@ DISTRO_PN_ALIAS_pn-msynctool = "OpenSuse=msynctool Mandriva=msynctool"
>
> RECIPE_STATUS_pn-mtools = "green"
> RECIPE_DEPENDENCY_CHECK_pn-mtools = "not done"
> -RECIPE_LATEST_VERSION_pn-mtools = "4.0.16"
> +RECIPE_LATEST_VERSION_pn-mtools = "4.0.17"
> RECIPE_INTEL_SECTION_pn-mtools = "optional"
> -RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-mtools = "6 months"
> -RECIPE_LATEST_RELEASE_DATE_pn-mtools = "2011/04/16"
> +RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-mtools = "2 months"
> +RECIPE_LATEST_RELEASE_DATE_pn-mtools = "2011/06/28"
> RECIPE_COMMENTS_pn-mtools = ""
> -RECIPE_LAST_UPDATE_pn-mtools = "Jun 15, 2011"
> +RECIPE_LAST_UPDATE_pn-mtools = "Oct 25, 2011"
> RECIPE_MAINTAINER_pn-mtools = "Scott Garman<scott.a.garman@intel.com>"
>
> RECIPE_STATUS_pn-pm-utils = "green"
> @@ -2016,22 +2016,22 @@ RECIPE_MAINTAINER_pn-cronie = "Dexuan Cui<dexuan.cui@intel.com>"
>
> RECIPE_STATUS_pn-grep = "green"
> RECIPE_DEPENDENCY_CHECK_pn-grep = "not done"
> -RECIPE_LATEST_VERSION_pn-grep = "2.8"
> +RECIPE_LATEST_VERSION_pn-grep = "2.9"
> RECIPE_INTEL_SECTION_pn-grep = "base"
> RECIPE_NO_OF_PATCHES_pn-grep = "0"
> -RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-grep = "8 months"
> -RECIPE_LATEST_RELEASE_DATE_pn-grep = "05/2011"
> -RECIPE_LAST_UPDATE_pn-grep = "Jun 5, 2011"
> +RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-grep = "1 month"
> +RECIPE_LATEST_RELEASE_DATE_pn-grep = "06/2011"
> +RECIPE_LAST_UPDATE_pn-grep = "Oct 25, 2011"
> RECIPE_MAINTAINER_pn-grep = "Scott Garman<scott.a.garman@intel.com>"
>
> RECIPE_STATUS_pn-openssh = "green"
> RECIPE_DEPENDENCY_CHECK_pn-openssh = "not done"
> -RECIPE_LATEST_VERSION_pn-openssh = "5.8p2"
> +RECIPE_LATEST_VERSION_pn-openssh = "5.9p1"
> RECIPE_INTEL_SECTION_pn-openssh = "base"
> RECIPE_NO_OF_PATCHES_pn-openssh = "1"
> -RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-openssh = "3 months"
> -RECIPE_LATEST_RELEASE_DATE_pn-openssh = "05/2011"
> -RECIPE_LAST_UPDATE_pn-openssh = "Jun 5, 2011"
> +RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-openssh = "4 months"
> +RECIPE_LATEST_RELEASE_DATE_pn-openssh = "09/2011"
> +RECIPE_LAST_UPDATE_pn-openssh = "Oct 25, 2011"
> RECIPE_MAINTAINER_pn-openssh = "Scott Garman<scott.a.garman@intel.com>"
>
> RECIPE_STATUS_pn-tar = "green"
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh
2011-10-26 20:37 ` Saul Wold
@ 2011-10-31 9:08 ` Paul Eggleton
2011-10-31 15:46 ` Saul Wold
0 siblings, 1 reply; 14+ messages in thread
From: Paul Eggleton @ 2011-10-31 9:08 UTC (permalink / raw)
To: Saul Wold; +Cc: Patches and discussions about the oe-core layer
On Wednesday 26 October 2011 21:37:39 Saul Wold wrote:
> > -RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "1 month"
> > -RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/05/16"
> > +RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "2 months"
> > +RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/10/21"
>
> These date formats should be MMM DD, YYYY also, for all the data listed
> below also.
I'd been meaning to ask this before - is there a good reason for not being
consistent and using the same format for all date fields in this file?
Cheers,
Paul
--
Paul Eggleton
Intel Open Source Technology Centre
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh
2011-10-31 9:08 ` Paul Eggleton
@ 2011-10-31 15:46 ` Saul Wold
2011-10-31 16:05 ` Koen Kooi
0 siblings, 1 reply; 14+ messages in thread
From: Saul Wold @ 2011-10-31 15:46 UTC (permalink / raw)
To: Paul Eggleton; +Cc: Patches and discussions about the oe-core layer
On 10/31/2011 02:08 AM, Paul Eggleton wrote:
> On Wednesday 26 October 2011 21:37:39 Saul Wold wrote:
>>> -RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "1 month"
>>> -RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/05/16"
>>> +RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "2 months"
>>> +RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/10/21"
>>
>> These date formats should be MMM DD, YYYY also, for all the data listed
>> below also.
>
> I'd been meaning to ask this before - is there a good reason for not being
> consistent and using the same format for all date fields in this file?
>
Maybe I am missing your comment, is that what I not suggested in my
comment above? All date formats in the distro_tracking_fields should be
in the MMM DD, YYY format.
Sau!
> Cheers,
> Paul
>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh
2011-10-31 15:46 ` Saul Wold
@ 2011-10-31 16:05 ` Koen Kooi
2011-11-01 11:38 ` Paul Eggleton
0 siblings, 1 reply; 14+ messages in thread
From: Koen Kooi @ 2011-10-31 16:05 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer; +Cc: Paul Eggleton
[-- Attachment #1: Type: text/plain, Size: 1100 bytes --]
Op 31 okt. 2011, om 16:46 heeft Saul Wold het volgende geschreven:
> On 10/31/2011 02:08 AM, Paul Eggleton wrote:
>> On Wednesday 26 October 2011 21:37:39 Saul Wold wrote:
>>>> -RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "1 month"
>>>> -RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/05/16"
>>>> +RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-sudo = "2 months"
>>>> +RECIPE_LATEST_RELEASE_DATE_pn-sudo = "2011/10/21"
>>>
>>> These date formats should be MMM DD, YYYY also, for all the data listed
>>> below also.
>>
>> I'd been meaning to ask this before - is there a good reason for not being
>> consistent and using the same format for all date fields in this file?
>>
> Maybe I am missing your comment, is that what I not suggested in my comment above? All date formats in the distro_tracking_fields should be in the MMM DD, YYY format.
Can we please use a format that makes sense for non-americans as well? E.g. YYYY/MM/DD or DD/MM/YYYY or plain ISO (2011-10-31T17:04:31+01:00) without the hours? Anything that doesn't put days in between months and year.
regards,
KOen
[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 169 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh
2011-10-31 16:05 ` Koen Kooi
@ 2011-11-01 11:38 ` Paul Eggleton
0 siblings, 0 replies; 14+ messages in thread
From: Paul Eggleton @ 2011-11-01 11:38 UTC (permalink / raw)
To: Saul Wold; +Cc: Patches and discussions about the oe-core layer
> Op 31 okt. 2011, om 16:46 heeft Saul Wold het volgende geschreven:
> > On 10/31/2011 02:08 AM, Paul Eggleton wrote:
> >> I'd been meaning to ask this before - is there a good reason for not
> >> being consistent and using the same format for all date fields in
> >> this file?>
>
> > Maybe I am missing your comment, is that what I not suggested in my
> > comment above? All date formats in the distro_tracking_fields should
> > be in the MMM DD, YYY format.
Right, I was really commenting on the previous state of the file which seemed
to have one style for one field and another for the others. Apologies for the
mixup, however...
On Monday 31 October 2011 17:05:24 Koen Kooi wrote:
> Can we please use a format that makes sense for non-americans as well? E.g.
> YYYY/MM/DD or DD/MM/YYYY or plain ISO (2011-10-31T17:04:31+01:00)
> without the hours? Anything that doesn't put days in between months and
> year.
I definitely agree with this. ISO date format (or at the very least, numerical
YYYY-MM-DD) would make much more sense to me.
Cheers,
Paul
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH 0/5] Recipe upgrades
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
` (4 preceding siblings ...)
2011-10-25 21:36 ` [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh Scott Garman
@ 2011-10-27 7:31 ` Richard Purdie
5 siblings, 0 replies; 14+ messages in thread
From: Richard Purdie @ 2011-10-27 7:31 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On Tue, 2011-10-25 at 14:32 -0700, Scott Garman wrote:
> Hello,
>
> Here is a set of some straightfoward recipe upgrades: sudo, grep,
> mtools, and openssh.
>
> Build testing: These have been successfully built for all 5 qemu
> architectures.
>
> Runtime testing: I have performed basic runtime testing for all of
> these recipe upgrades as well within a qemux86 session.
>
> The following changes since commit f586aaa8d00361a9597a546d665077c75cf4d520:
>
> libxml-parser-perl, libxml-simple-perl, expat, sgmlspl-native, git: bump PR to rebuild after perl upgrade (2011-10-25 08:36:01 +0100)
>
> are available in the git repository at:
> git://git.pokylinux.org/poky-contrib sgarman/recipe-upgrades-final
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=sgarman/recipe-upgrades-final
>
> Scott Garman (5):
> sudo: upgrade to 1.8.3
> grep: upgrade to 2.9
> mtools: upgrade to 4.0.17
> openssh: upgrade to 5.9p1
I've merged the above, the distro tracking had feedback from Saul.
Cheers,
Richard
^ permalink raw reply [flat|nested] 14+ messages in thread
* [PATCH 0/5] Recipe upgrades
@ 2021-06-06 22:20 Tim Orling
0 siblings, 0 replies; 14+ messages in thread
From: Tim Orling @ 2021-06-06 22:20 UTC (permalink / raw)
To: openembedded-core; +Cc: Tim Orling
Update maintainer email.
Upgrade python3-scons and fix upstream check.
AUH upgrades to:
* python3-hypothesis
* python3-importlib-metadata
* at-spi2-core
Tested on qemux86-64 core-image-full-cmdline and core-image-weston
The following changes since commit d6b62b5a9d6c64971b9f981a4732791658150e43:
nativesdk-libdnf: fix installed and not shipped files (2021-06-03 23:09:18 +0100)
are available in the Git repository at:
git://push.openembedded.org/openembedded-core-contrib timo/recipe-upgrades-20210606
Tim Orling (5):
maintainers.inc: update email address
python3-scons: upgrade 3.1.2 -> 4.1.0; simplify
python3-hypothesis: upgrade 6.13.7 -> 6.13.14
python3-importlib-metadata: upgrade 4.3.0 -> 4.5.0
at-spi2-core: upgrade 2.40.1 -> 2.40.2
meta/conf/distro/include/maintainers.inc | 68 +++++++++----------
....13.7.bb => python3-hypothesis_6.13.14.bb} | 4 +-
...bb => python3-importlib-metadata_4.5.0.bb} | 2 +-
...3.1.2.bb => python3-scons-native_4.1.0.bb} | 0
.../0001-Fix-man-page-installation.patch | 46 +++++++++++++
.../python/python3-scons_3.1.2.bb | 34 ----------
.../python/python3-scons_4.1.0.bb | 27 ++++++++
...-core_2.40.1.bb => at-spi2-core_2.40.2.bb} | 2 +-
8 files changed, 111 insertions(+), 72 deletions(-)
rename meta/recipes-devtools/python/{python3-hypothesis_6.13.7.bb => python3-hypothesis_6.13.14.bb} (77%)
rename meta/recipes-devtools/python/{python3-importlib-metadata_4.3.0.bb => python3-importlib-metadata_4.5.0.bb} (88%)
rename meta/recipes-devtools/python/{python3-scons-native_3.1.2.bb => python3-scons-native_4.1.0.bb} (100%)
create mode 100644 meta/recipes-devtools/python/python3-scons/0001-Fix-man-page-installation.patch
delete mode 100644 meta/recipes-devtools/python/python3-scons_3.1.2.bb
create mode 100644 meta/recipes-devtools/python/python3-scons_4.1.0.bb
rename meta/recipes-support/atk/{at-spi2-core_2.40.1.bb => at-spi2-core_2.40.2.bb} (94%)
--
2.29.2
^ permalink raw reply [flat|nested] 14+ messages in thread* [PATCH 0/5] recipe upgrades
@ 2011-10-18 20:14 nitin.a.kamble
0 siblings, 0 replies; 14+ messages in thread
From: nitin.a.kamble @ 2011-10-18 20:14 UTC (permalink / raw)
To: openembedded-core
From: Nitin A Kamble <nitin.a.kamble@intel.com>
The following changes since commit b4757833c3548b5ee3a1cce58e2f059b3f63cb09:
fontconfig: fix fix-pkgconfig.patch (2011-10-18 18:18:36 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/upgrades
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/upgrades
Nitin A Kamble (5):
x86 tune files: set baselib for x32 tune as libx32
gmp: also generate the libgmpcxx library
python-scons: upgrade from 2.0.1 to 2.1.0
python-dbus: upgrade from 0.83.2 to 0.84.0
distro-tracking: update data for few of my recipes
.../conf/distro/include/distro_tracking_fields.inc | 38 ++++++++++++--------
meta/conf/machine/include/ia32/arch-ia32.inc | 2 +-
meta/conf/machine/include/tune-core2.inc | 2 +-
...python-dbus_0.83.2.bb => python-dbus_0.84.0.bb} | 4 +-
...ative_2.0.1.bb => python-scons-native_2.1.0.bb} | 3 +-
...python-scons_2.0.1.bb => python-scons_2.1.0.bb} | 6 ++--
meta/recipes-support/gmp/gmp.inc | 2 +
meta/recipes-support/gmp/gmp_4.2.1.bb | 2 +-
meta/recipes-support/gmp/gmp_5.0.2.bb | 2 +-
9 files changed, 35 insertions(+), 26 deletions(-)
rename meta/recipes-devtools/python/{python-dbus_0.83.2.bb => python-dbus_0.84.0.bb} (83%)
rename meta/recipes-devtools/python/{python-scons-native_2.0.1.bb => python-scons-native_2.1.0.bb} (89%)
rename meta/recipes-devtools/python/{python-scons_2.0.1.bb => python-scons_2.1.0.bb} (51%)
--
1.7.4.4
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2021-06-06 22:20 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-25 21:32 [PATCH 0/5] Recipe upgrades Scott Garman
2011-10-25 21:32 ` [PATCH 1/5] sudo: upgrade to 1.8.3 Scott Garman
2011-10-25 21:32 ` [PATCH 2/5] grep: upgrade to 2.9 Scott Garman
2011-10-25 21:36 ` [PATCH 3/5] mtools: upgrade to 4.0.17 Scott Garman
2011-10-25 21:36 ` [PATCH 4/5] openssh: upgrade to 5.9p1 Scott Garman
2011-10-25 21:36 ` [PATCH 5/5] distro_tracking_fields: updates for sudo, mtools, grep, and openssh Scott Garman
2011-10-26 20:37 ` Saul Wold
2011-10-31 9:08 ` Paul Eggleton
2011-10-31 15:46 ` Saul Wold
2011-10-31 16:05 ` Koen Kooi
2011-11-01 11:38 ` Paul Eggleton
2011-10-27 7:31 ` [PATCH 0/5] Recipe upgrades Richard Purdie
-- strict thread matches above, loose matches on Subject: below --
2021-06-06 22:20 Tim Orling
2011-10-18 20:14 [PATCH 0/5] recipe upgrades nitin.a.kamble
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox