Openembedded Core Discussions
 help / color / mirror / Atom feed
* [UPGRADES 0/5] upgrade of some of the toolchain recipes
@ 2011-05-24  0:50 nitin.a.kamble
  2011-05-24  0:50 ` [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1 nitin.a.kamble
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: nitin.a.kamble @ 2011-05-24  0:50 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

The following changes since commit 3504c3a9b1af5a3405e0a03a5ade50b82535b6dd:

  documentation/yocto-project-qs/yocto-project-qs.xml: fixed build env script (2011-05-23 15:53:29 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib.git nitin/upgrades
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/upgrades

Nitin A Kamble (5):
  git: upgrade from 1.7.4.3 to 1.7.5.1
  libpcre: upgrade from 8.10 to 8.12
  byacc: upgrade from 20101127 to 20101229
  python-pygpbject: upgrade from 2.27 to 2.27.91
  distro-tracking: update toolchain recipe fields

 .../conf/distro/include/distro_tracking_fields.inc |    3 +++
 meta/recipes-devtools/git/files/autotools.patch    |   16 ----------------
 meta/recipes-devtools/git/git.inc                  |    3 +--
 .../git/{git_1.7.4.3.bb => git_1.7.5.1.bb}         |    6 +++---
 ...bject_2.27.0.bb => python-pygobject_2.27.91.bb} |    6 +++---
 meta/recipes-extended/byacc/byacc_20101127.bb      |    7 -------
 meta/recipes-extended/byacc/byacc_20101229.bb      |    7 +++++++
 .../libpcre/{libpcre_8.10.bb => libpcre_8.12.bb}   |    6 +++---
 8 files changed, 20 insertions(+), 34 deletions(-)
 delete mode 100644 meta/recipes-devtools/git/files/autotools.patch
 rename meta/recipes-devtools/git/{git_1.7.4.3.bb => git_1.7.5.1.bb} (56%)
 rename meta/recipes-devtools/python/{python-pygobject_2.27.0.bb => python-pygobject_2.27.91.bb} (87%)
 delete mode 100644 meta/recipes-extended/byacc/byacc_20101127.bb
 create mode 100644 meta/recipes-extended/byacc/byacc_20101229.bb
 rename meta/recipes-support/libpcre/{libpcre_8.10.bb => libpcre_8.12.bb} (94%)

-- 
1.7.3.5




^ permalink raw reply	[flat|nested] 9+ messages in thread

* [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1
  2011-05-24  0:50 [UPGRADES 0/5] upgrade of some of the toolchain recipes nitin.a.kamble
@ 2011-05-24  0:50 ` nitin.a.kamble
  2011-05-24  3:30   ` Saul Wold
  2011-05-24  0:50 ` [UPGRADES 2/5] libpcre: upgrade from 8.10 to 8.12 nitin.a.kamble
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 9+ messages in thread
From: nitin.a.kamble @ 2011-05-24  0:50 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 meta/recipes-devtools/git/files/autotools.patch    |   16 ----------------
 meta/recipes-devtools/git/git.inc                  |    3 +--
 .../git/{git_1.7.4.3.bb => git_1.7.5.1.bb}         |    6 +++---
 3 files changed, 4 insertions(+), 21 deletions(-)
 delete mode 100644 meta/recipes-devtools/git/files/autotools.patch
 rename meta/recipes-devtools/git/{git_1.7.4.3.bb => git_1.7.5.1.bb} (56%)

diff --git a/meta/recipes-devtools/git/files/autotools.patch b/meta/recipes-devtools/git/files/autotools.patch
deleted file mode 100644
index cb21193..0000000
--- a/meta/recipes-devtools/git/files/autotools.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Upstream-Status:Inappropriate [configuration]
-
-Index: git-1.7.2.1/configure.ac
-===================================================================
---- git-1.7.2.1.orig/configure.ac	2010-07-28 18:03:43.000000000 +0100
-+++ git-1.7.2.1/configure.ac	2010-08-13 14:54:29.181971250 +0100
-@@ -697,7 +697,8 @@
- 		else if (strcmp(buf, "12345"))
- 		  return 2;]])],
- 	[ac_cv_c_c99_format=yes],
--	[ac_cv_c_c99_format=no])
-+	[ac_cv_c_c99_format=no],
-+	[ac_cv_c_c99_format=yes])
- ])
- if test $ac_cv_c_c99_format = no; then
- 	NO_C99_FORMAT=YesPlease
diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc
index 49292fa..c884f9c 100644
--- a/meta/recipes-devtools/git/git.inc
+++ b/meta/recipes-devtools/git/git.inc
@@ -3,8 +3,7 @@ SECTION = "console/utils"
 LICENSE = "GPLv2"
 DEPENDS = "perl-native openssl curl zlib expat"
 
-SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.bz2 \
-           file://autotools.patch;patch=1"
+SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.bz2 "
 S = "${WORKDIR}/git-${PV}"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1"
diff --git a/meta/recipes-devtools/git/git_1.7.4.3.bb b/meta/recipes-devtools/git/git_1.7.5.1.bb
similarity index 56%
rename from meta/recipes-devtools/git/git_1.7.4.3.bb
rename to meta/recipes-devtools/git/git_1.7.5.1.bb
index 45ef61b..bfdbf62 100644
--- a/meta/recipes-devtools/git/git_1.7.4.3.bb
+++ b/meta/recipes-devtools/git/git_1.7.5.1.bb
@@ -1,10 +1,10 @@
 require git.inc
 
-PR = "r2"
+PR = "r0"
 
 EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no ac_cv_c_c99_format=yes \
                  ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes} \
                  "
 
-SRC_URI[md5sum] = "da6c8f4967393342a4397b955db72cb1"
-SRC_URI[sha256sum] = "44b3ebc87d83b34468718fb6fa424420877e1f66c190389d693d090662a3556d"
+SRC_URI[md5sum] = "a49291116e3b0564e069ae989e4db6fb"
+SRC_URI[sha256sum] = "a1d4a1c59300e68fbc493a2cbe9257048d4d6f4363924bf34f38c413a825f80c"
-- 
1.7.3.5




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [UPGRADES 2/5] libpcre: upgrade from 8.10 to 8.12
  2011-05-24  0:50 [UPGRADES 0/5] upgrade of some of the toolchain recipes nitin.a.kamble
  2011-05-24  0:50 ` [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1 nitin.a.kamble
@ 2011-05-24  0:50 ` nitin.a.kamble
  2011-05-24  0:50 ` [UPGRADES 3/5] byacc: upgrade from 20101127 to 20101229 nitin.a.kamble
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: nitin.a.kamble @ 2011-05-24  0:50 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 .../libpcre/{libpcre_8.10.bb => libpcre_8.12.bb}   |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-support/libpcre/{libpcre_8.10.bb => libpcre_8.12.bb} (94%)

diff --git a/meta/recipes-support/libpcre/libpcre_8.10.bb b/meta/recipes-support/libpcre/libpcre_8.12.bb
similarity index 94%
rename from meta/recipes-support/libpcre/libpcre_8.10.bb
rename to meta/recipes-support/libpcre/libpcre_8.12.bb
index 2e17493..0301ddb 100644
--- a/meta/recipes-support/libpcre/libpcre_8.10.bb
+++ b/meta/recipes-support/libpcre/libpcre_8.12.bb
@@ -5,15 +5,15 @@ provides a POSIX calling interface to PCRE; the regular expressions \
 themselves still follow Perl syntax and semantics. The header file for \
 the POSIX-style functions is called pcreposix.h."
 SECTION = "devel"
-PR = "r6"
+PR = "r0"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=77f9b14fe707d0376d89bc162e6c54ff"
 SRC_URI = "${SOURCEFORGE_MIRROR}/pcre/pcre-${PV}.tar.bz2 \
            file://pcre-cross.patch;patch=1 \
            file://fix-pcre-name-collision.patch"
 
-SRC_URI[md5sum] = "780867a700e9d4e4b9cb47aa5453e4b2"
-SRC_URI[sha256sum] = "7ac4e016f6bad8c7d990e6de9bce58c04ff5dd8838be0c5ada0afad1d6a07480"
+SRC_URI[md5sum] = "f14a9fef3c92f3fc6c5ac92d7a2c7eb3"
+SRC_URI[sha256sum] = "c63070d461edc451ec9457f2324e152a531e907d5c5d2d8f8121e725acd1aeec"
 S = "${WORKDIR}/pcre-${PV}"
 
 PROVIDES = "pcre"
-- 
1.7.3.5




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [UPGRADES 3/5] byacc: upgrade from 20101127 to 20101229
  2011-05-24  0:50 [UPGRADES 0/5] upgrade of some of the toolchain recipes nitin.a.kamble
  2011-05-24  0:50 ` [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1 nitin.a.kamble
  2011-05-24  0:50 ` [UPGRADES 2/5] libpcre: upgrade from 8.10 to 8.12 nitin.a.kamble
@ 2011-05-24  0:50 ` nitin.a.kamble
  2011-05-24  0:50 ` [UPGRADES 4/5] python-pygpbject: upgrade from 2.27 to 2.27.91 nitin.a.kamble
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 9+ messages in thread
From: nitin.a.kamble @ 2011-05-24  0:50 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 meta/recipes-extended/byacc/byacc_20101127.bb |    7 -------
 meta/recipes-extended/byacc/byacc_20101229.bb |    7 +++++++
 2 files changed, 7 insertions(+), 7 deletions(-)
 delete mode 100644 meta/recipes-extended/byacc/byacc_20101127.bb
 create mode 100644 meta/recipes-extended/byacc/byacc_20101229.bb

diff --git a/meta/recipes-extended/byacc/byacc_20101127.bb b/meta/recipes-extended/byacc/byacc_20101127.bb
deleted file mode 100644
index b6b7b70..0000000
--- a/meta/recipes-extended/byacc/byacc_20101127.bb
+++ /dev/null
@@ -1,7 +0,0 @@
-PR = "r0"
-LICENSE="other-BSD"
-LIC_FILES_CHKSUM = "file://package/debian/copyright;md5=4dc4c30f840a7203fb6edf20b3db849e"
-require byacc.inc
-
-SRC_URI[md5sum] = "5931a27e43102dc868745bf4dce91fb4"
-SRC_URI[sha256sum] = "c172c7ed2ee2130510d4d6e134bcac791b217e4883051137690613ac011aca47"
diff --git a/meta/recipes-extended/byacc/byacc_20101229.bb b/meta/recipes-extended/byacc/byacc_20101229.bb
new file mode 100644
index 0000000..09e91e6
--- /dev/null
+++ b/meta/recipes-extended/byacc/byacc_20101229.bb
@@ -0,0 +1,7 @@
+PR = "r0"
+LICENSE="other-BSD"
+LIC_FILES_CHKSUM = "file://package/debian/copyright;md5=4dc4c30f840a7203fb6edf20b3db849e"
+require byacc.inc
+
+SRC_URI[md5sum] = "e359702cda080c15f656a244aab132e5"
+SRC_URI[sha256sum] = "67a5e4c7888bf7921949e38d4fd6eec855ec8b5a60d83f8d6f34eddb6d42a70c"
-- 
1.7.3.5




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [UPGRADES 4/5] python-pygpbject: upgrade from 2.27 to 2.27.91
  2011-05-24  0:50 [UPGRADES 0/5] upgrade of some of the toolchain recipes nitin.a.kamble
                   ` (2 preceding siblings ...)
  2011-05-24  0:50 ` [UPGRADES 3/5] byacc: upgrade from 20101127 to 20101229 nitin.a.kamble
@ 2011-05-24  0:50 ` nitin.a.kamble
  2011-05-24  0:50 ` [UPGRADES 5/5] distro-tracking: update toolchain recipe fields nitin.a.kamble
  2011-05-25 17:18 ` [UPGRADES 0/5] upgrade of some of the toolchain recipes Saul Wold
  5 siblings, 0 replies; 9+ messages in thread
From: nitin.a.kamble @ 2011-05-24  0:50 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 ...bject_2.27.0.bb => python-pygobject_2.27.91.bb} |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-devtools/python/{python-pygobject_2.27.0.bb => python-pygobject_2.27.91.bb} (87%)

diff --git a/meta/recipes-devtools/python/python-pygobject_2.27.0.bb b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
similarity index 87%
rename from meta/recipes-devtools/python/python-pygobject_2.27.0.bb
rename to meta/recipes-devtools/python/python-pygobject_2.27.91.bb
index 62024c3..d35f672 100644
--- a/meta/recipes-devtools/python/python-pygobject_2.27.0.bb
+++ b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb
@@ -5,14 +5,14 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7"
 DEPENDS = "python-pygobject-native-${PV} glib-2.0"
 DEPENDS_virtclass-native = "glib-2.0-native"
 RDEPENDS_virtclass-native = ""
-PR = "r2"
+PR = "r0"
 
 MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}"
 
 SRC_URI = "${GNOME_MIRROR}/pygobject/${MAJ_VER}/pygobject-${PV}.tar.bz2"
 
-SRC_URI[md5sum] = "9e2496ffa4e55911f94232e29ee9f146"
-SRC_URI[sha256sum] = "7594bd86c5b92a4ba1f26927800f1b29e1ec5c246cad67aa085c279d6425b8a2"
+SRC_URI[md5sum] = "2b11a3050264721aac83188224b093a8"
+SRC_URI[sha256sum] = "a1dffbe2a8e0d490594554ed8d06f0ee4a371acb6c210e7f35158e9ae77e0df4"
 S = "${WORKDIR}/pygobject-${PV}"
 
 FILESPATH = "${FILE_DIRNAME}/python-pygobject:${FILE_DIRNAME}/files"
-- 
1.7.3.5




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [UPGRADES 5/5] distro-tracking: update toolchain recipe fields
  2011-05-24  0:50 [UPGRADES 0/5] upgrade of some of the toolchain recipes nitin.a.kamble
                   ` (3 preceding siblings ...)
  2011-05-24  0:50 ` [UPGRADES 4/5] python-pygpbject: upgrade from 2.27 to 2.27.91 nitin.a.kamble
@ 2011-05-24  0:50 ` nitin.a.kamble
  2011-05-25 17:18 ` [UPGRADES 0/5] upgrade of some of the toolchain recipes Saul Wold
  5 siblings, 0 replies; 9+ messages in thread
From: nitin.a.kamble @ 2011-05-24  0:50 UTC (permalink / raw)
  To: openembedded-core

From: Nitin A Kamble <nitin.a.kamble@intel.com>

Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
---
 .../conf/distro/include/distro_tracking_fields.inc |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index ad45b94..bcf7a1a 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -2908,11 +2908,13 @@ RECIPE_MAINTAINER_pn-linux-libc-headers = "Nitin A Kamble <nitin.a.kamble@intel.
 RECIPE_STATUS_pn-lsof="green" 
 RECIPE_LATEST_VERSION_pn-lsof="4.84"
 RECIPE_LAST_UPDATE_pn-lsof = "Nov 8, 2010"
+RECIPE_MANUAL_CHECK_DATE_pn-lsof = "May 23, 2011" 
 RECIPE_MAINTAINER_pn-lsof = "Nitin A Kamble <nitin.a.kamble@intel.com>"
 
 RECIPE_STATUS_pn-make="green" 
 RECIPE_LATEST_VERSION_pn-make="3.82"
 RECIPE_LAST_UPDATE_pn-make = "Nov 8, 2010"
+RECIPE_MANUAL_CHECK_DATE_pn-make = "May 23, 2011" 
 RECIPE_MAINTAINER_pn-make = "Nitin A Kamble <nitin.a.kamble@intel.com>"
 
 RECIPE_STATUS_pn-run-postinsts="green" # all local code
@@ -3003,6 +3005,7 @@ RECIPE_STATUS_pn-gnu-config="green"
 RECIPE_LATEST_VERSION_pn-gnu-config="0.0+git3155524"
 DISTRO_PN_ALIAS_pn-gnu-config = "OpenedHand"
 RECIPE_LAST_UPDATE_pn-gnu-config = "Jun 21, 2010"
+RECIPE_MANUAL_CHECK_DATE_pn-gnu-config = "May 23, 2011" 
 RECIPE_MAINTAINER_pn-gnu-config = "Nitin A Kamble <nitin.a.kamble@intel.com>"
 
 RECIPE_STATUS_pn-mpfr="green"
-- 
1.7.3.5




^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1
  2011-05-24  0:50 ` [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1 nitin.a.kamble
@ 2011-05-24  3:30   ` Saul Wold
  2011-05-24  3:31     ` Kamble, Nitin A
  0 siblings, 1 reply; 9+ messages in thread
From: Saul Wold @ 2011-05-24  3:30 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 05/23/2011 05:50 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
No comments about what's different that allowed you to remove the patch

Sau!

> Signed-off-by: Nitin A Kamble<nitin.a.kamble@intel.com>
> ---
>   meta/recipes-devtools/git/files/autotools.patch    |   16 ----------------
>   meta/recipes-devtools/git/git.inc                  |    3 +--
>   .../git/{git_1.7.4.3.bb =>  git_1.7.5.1.bb}         |    6 +++---
>   3 files changed, 4 insertions(+), 21 deletions(-)
>   delete mode 100644 meta/recipes-devtools/git/files/autotools.patch
>   rename meta/recipes-devtools/git/{git_1.7.4.3.bb =>  git_1.7.5.1.bb} (56%)
>
> diff --git a/meta/recipes-devtools/git/files/autotools.patch b/meta/recipes-devtools/git/files/autotools.patch
> deleted file mode 100644
> index cb21193..0000000
> --- a/meta/recipes-devtools/git/files/autotools.patch
> +++ /dev/null
> @@ -1,16 +0,0 @@
> -Upstream-Status:Inappropriate [configuration]
> -
> -Index: git-1.7.2.1/configure.ac
> -===================================================================
> ---- git-1.7.2.1.orig/configure.ac	2010-07-28 18:03:43.000000000 +0100
> -+++ git-1.7.2.1/configure.ac	2010-08-13 14:54:29.181971250 +0100
> -@@ -697,7 +697,8 @@
> - 		else if (strcmp(buf, "12345"))
> - 		  return 2;]])],
> - 	[ac_cv_c_c99_format=yes],
> --	[ac_cv_c_c99_format=no])
> -+	[ac_cv_c_c99_format=no],
> -+	[ac_cv_c_c99_format=yes])
> - ])
> - if test $ac_cv_c_c99_format = no; then
> - 	NO_C99_FORMAT=YesPlease
> diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-devtools/git/git.inc
> index 49292fa..c884f9c 100644
> --- a/meta/recipes-devtools/git/git.inc
> +++ b/meta/recipes-devtools/git/git.inc
> @@ -3,8 +3,7 @@ SECTION = "console/utils"
>   LICENSE = "GPLv2"
>   DEPENDS = "perl-native openssl curl zlib expat"
>
> -SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.bz2 \
> -           file://autotools.patch;patch=1"
> +SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.bz2 "
>   S = "${WORKDIR}/git-${PV}"
>
>   LIC_FILES_CHKSUM = "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1"
> diff --git a/meta/recipes-devtools/git/git_1.7.4.3.bb b/meta/recipes-devtools/git/git_1.7.5.1.bb
> similarity index 56%
> rename from meta/recipes-devtools/git/git_1.7.4.3.bb
> rename to meta/recipes-devtools/git/git_1.7.5.1.bb
> index 45ef61b..bfdbf62 100644
> --- a/meta/recipes-devtools/git/git_1.7.4.3.bb
> +++ b/meta/recipes-devtools/git/git_1.7.5.1.bb
> @@ -1,10 +1,10 @@
>   require git.inc
>
> -PR = "r2"
> +PR = "r0"
>
>   EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no ac_cv_c_c99_format=yes \
>                    ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes} \
>                    "
>
> -SRC_URI[md5sum] = "da6c8f4967393342a4397b955db72cb1"
> -SRC_URI[sha256sum] = "44b3ebc87d83b34468718fb6fa424420877e1f66c190389d693d090662a3556d"
> +SRC_URI[md5sum] = "a49291116e3b0564e069ae989e4db6fb"
> +SRC_URI[sha256sum] = "a1d4a1c59300e68fbc493a2cbe9257048d4d6f4363924bf34f38c413a825f80c"




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1
  2011-05-24  3:30   ` Saul Wold
@ 2011-05-24  3:31     ` Kamble, Nitin A
  0 siblings, 0 replies; 9+ messages in thread
From: Kamble, Nitin A @ 2011-05-24  3:31 UTC (permalink / raw)
  To: Wold, Saul, Patches and discussions about the oe-core layer

> >
> No comments about what's different that allowed you to remove the patch
> 
> Sau!

Ohh, I missed that. The patch/es were removed because the code was upstream already.

Thanks,
Nitin

> 
> > Signed-off-by: Nitin A Kamble<nitin.a.kamble@intel.com>
> > ---
> >   meta/recipes-devtools/git/files/autotools.patch    |   16 ---------
> -------
> >   meta/recipes-devtools/git/git.inc                  |    3 +--
> >   .../git/{git_1.7.4.3.bb =>  git_1.7.5.1.bb}         |    6 +++---
> >   3 files changed, 4 insertions(+), 21 deletions(-)
> >   delete mode 100644 meta/recipes-devtools/git/files/autotools.patch
> >   rename meta/recipes-devtools/git/{git_1.7.4.3.bb =>
> git_1.7.5.1.bb} (56%)
> >
> > diff --git a/meta/recipes-devtools/git/files/autotools.patch
> b/meta/recipes-devtools/git/files/autotools.patch
> > deleted file mode 100644
> > index cb21193..0000000
> > --- a/meta/recipes-devtools/git/files/autotools.patch
> > +++ /dev/null
> > @@ -1,16 +0,0 @@
> > -Upstream-Status:Inappropriate [configuration]
> > -
> > -Index: git-1.7.2.1/configure.ac
> > -===================================================================
> > ---- git-1.7.2.1.orig/configure.ac	2010-07-28 18:03:43.000000000
> +0100
> > -+++ git-1.7.2.1/configure.ac	2010-08-13 14:54:29.181971250 +0100
> > -@@ -697,7 +697,8 @@
> > - 		else if (strcmp(buf, "12345"))
> > - 		  return 2;]])],
> > - 	[ac_cv_c_c99_format=yes],
> > --	[ac_cv_c_c99_format=no])
> > -+	[ac_cv_c_c99_format=no],
> > -+	[ac_cv_c_c99_format=yes])
> > - ])
> > - if test $ac_cv_c_c99_format = no; then
> > - 	NO_C99_FORMAT=YesPlease
> > diff --git a/meta/recipes-devtools/git/git.inc b/meta/recipes-
> devtools/git/git.inc
> > index 49292fa..c884f9c 100644
> > --- a/meta/recipes-devtools/git/git.inc
> > +++ b/meta/recipes-devtools/git/git.inc
> > @@ -3,8 +3,7 @@ SECTION = "console/utils"
> >   LICENSE = "GPLv2"
> >   DEPENDS = "perl-native openssl curl zlib expat"
> >
> > -SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.bz2 \
> > -           file://autotools.patch;patch=1"
> > +SRC_URI = "${KERNELORG_MIRROR}/software/scm/git/git-${PV}.tar.bz2 "
> >   S = "${WORKDIR}/git-${PV}"
> >
> >   LIC_FILES_CHKSUM =
> "file://COPYING;md5=7c0d7ef03a7eb04ce795b0f60e68e7e1"
> > diff --git a/meta/recipes-devtools/git/git_1.7.4.3.bb b/meta/recipes-
> devtools/git/git_1.7.5.1.bb
> > similarity index 56%
> > rename from meta/recipes-devtools/git/git_1.7.4.3.bb
> > rename to meta/recipes-devtools/git/git_1.7.5.1.bb
> > index 45ef61b..bfdbf62 100644
> > --- a/meta/recipes-devtools/git/git_1.7.4.3.bb
> > +++ b/meta/recipes-devtools/git/git_1.7.5.1.bb
> > @@ -1,10 +1,10 @@
> >   require git.inc
> >
> > -PR = "r2"
> > +PR = "r0"
> >
> >   EXTRA_OECONF += "ac_cv_snprintf_returns_bogus=no
> ac_cv_c_c99_format=yes \
> >
> ac_cv_fread_reads_directories=${ac_cv_fread_reads_directories=yes} \
> >                    "
> >
> > -SRC_URI[md5sum] = "da6c8f4967393342a4397b955db72cb1"
> > -SRC_URI[sha256sum] =
> "44b3ebc87d83b34468718fb6fa424420877e1f66c190389d693d090662a3556d"
> > +SRC_URI[md5sum] = "a49291116e3b0564e069ae989e4db6fb"
> > +SRC_URI[sha256sum] =
> "a1d4a1c59300e68fbc493a2cbe9257048d4d6f4363924bf34f38c413a825f80c"




^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [UPGRADES 0/5] upgrade of some of the toolchain recipes
  2011-05-24  0:50 [UPGRADES 0/5] upgrade of some of the toolchain recipes nitin.a.kamble
                   ` (4 preceding siblings ...)
  2011-05-24  0:50 ` [UPGRADES 5/5] distro-tracking: update toolchain recipe fields nitin.a.kamble
@ 2011-05-25 17:18 ` Saul Wold
  5 siblings, 0 replies; 9+ messages in thread
From: Saul Wold @ 2011-05-25 17:18 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 05/23/2011 05:50 PM, nitin.a.kamble@intel.com wrote:
> From: Nitin A Kamble<nitin.a.kamble@intel.com>
>
> The following changes since commit 3504c3a9b1af5a3405e0a03a5ade50b82535b6dd:
>
>    documentation/yocto-project-qs/yocto-project-qs.xml: fixed build env script (2011-05-23 15:53:29 +0100)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib.git nitin/upgrades
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=nitin/upgrades
>
> Nitin A Kamble (5):
>    git: upgrade from 1.7.4.3 to 1.7.5.1
>    libpcre: upgrade from 8.10 to 8.12
>    byacc: upgrade from 20101127 to 20101229
>    python-pygpbject: upgrade from 2.27 to 2.27.91
>    distro-tracking: update toolchain recipe fields
>
>   .../conf/distro/include/distro_tracking_fields.inc |    3 +++
>   meta/recipes-devtools/git/files/autotools.patch    |   16 ----------------
>   meta/recipes-devtools/git/git.inc                  |    3 +--
>   .../git/{git_1.7.4.3.bb =>  git_1.7.5.1.bb}         |    6 +++---
>   ...bject_2.27.0.bb =>  python-pygobject_2.27.91.bb} |    6 +++---
>   meta/recipes-extended/byacc/byacc_20101127.bb      |    7 -------
>   meta/recipes-extended/byacc/byacc_20101229.bb      |    7 +++++++
>   .../libpcre/{libpcre_8.10.bb =>  libpcre_8.12.bb}   |    6 +++---
>   8 files changed, 20 insertions(+), 34 deletions(-)
>   delete mode 100644 meta/recipes-devtools/git/files/autotools.patch
>   rename meta/recipes-devtools/git/{git_1.7.4.3.bb =>  git_1.7.5.1.bb} (56%)
>   rename meta/recipes-devtools/python/{python-pygobject_2.27.0.bb =>  python-pygobject_2.27.91.bb} (87%)
>   delete mode 100644 meta/recipes-extended/byacc/byacc_20101127.bb
>   create mode 100644 meta/recipes-extended/byacc/byacc_20101229.bb
>   rename meta/recipes-support/libpcre/{libpcre_8.10.bb =>  libpcre_8.12.bb} (94%)
>
Merged into oe-core

Thanks
	Sau!




^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2011-05-25 17:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-24  0:50 [UPGRADES 0/5] upgrade of some of the toolchain recipes nitin.a.kamble
2011-05-24  0:50 ` [UPGRADES 1/5] git: upgrade from 1.7.4.3 to 1.7.5.1 nitin.a.kamble
2011-05-24  3:30   ` Saul Wold
2011-05-24  3:31     ` Kamble, Nitin A
2011-05-24  0:50 ` [UPGRADES 2/5] libpcre: upgrade from 8.10 to 8.12 nitin.a.kamble
2011-05-24  0:50 ` [UPGRADES 3/5] byacc: upgrade from 20101127 to 20101229 nitin.a.kamble
2011-05-24  0:50 ` [UPGRADES 4/5] python-pygpbject: upgrade from 2.27 to 2.27.91 nitin.a.kamble
2011-05-24  0:50 ` [UPGRADES 5/5] distro-tracking: update toolchain recipe fields nitin.a.kamble
2011-05-25 17:18 ` [UPGRADES 0/5] upgrade of some of the toolchain recipes Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox