All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] [V1] Upgrade 4 more packages, Dec 27, 2011
@ 2011-12-26 17:08 Shane Wang
  2011-12-26 17:11 ` [PATCH 1/5] freetype: upgrade to 2.4.8 Shane Wang
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: Shane Wang @ 2011-12-26 17:08 UTC (permalink / raw)
  To: openembedded-core

All,

These are recipe upgrading for freetype, minicom, libical, and libsamplerate0. Please review and pull.

The following changes since commit f5aa3bbda623c8fae3a761d72fddc95631ad0706:

  coreutils: ensure --color works so DEPEND on libcap (2011-12-24 10:05:47 +0000)

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

Shane Wang (5):
  freetype: upgrade to 2.4.8
  minicom: upgrade to 2.5
  libical: upgrade to 0.48
  libsamplerate0: upgrade to 0.1.8
  distro_tracking_fields: update the info for recipe upgrade.

 .../conf/distro/include/distro_tracking_fields.inc |   10 ++++----
 .../{minicom-2.4 => minicom-2.5}/gcc4-scope.patch  |    0
 .../rename-conflicting-functions.patch             |    0
 .../minicom/{minicom_2.4.bb => minicom_2.5.bb}     |    6 ++--
 .../no-hardcode.patch                              |    0
 .../{freetype_2.4.6.bb => freetype_2.4.8.bb}       |    6 ++--
 .../libsamplerate-0.1.7-macro-quoting.patch        |   22 --------------------
 ...amplerate0_0.1.7.bb => libsamplerate0_0.1.8.bb} |    9 +++----
 .../libical/{libical_0.47.bb => libical_0.48.bb}   |    6 ++--
 9 files changed, 18 insertions(+), 41 deletions(-)
 rename meta/recipes-extended/minicom/{minicom-2.4 => minicom-2.5}/gcc4-scope.patch (100%)
 rename meta/recipes-extended/minicom/{minicom-2.4 => minicom-2.5}/rename-conflicting-functions.patch (100%)
 rename meta/recipes-extended/minicom/{minicom_2.4.bb => minicom_2.5.bb} (75%)
 rename meta/recipes-graphics/freetype/{freetype-2.4.6 => freetype-2.4.8}/no-hardcode.patch (100%)
 rename meta/recipes-graphics/freetype/{freetype_2.4.6.bb => freetype_2.4.8.bb} (91%)
 delete mode 100644 meta/recipes-multimedia/libsamplerate/libsamplerate0-0.1.7/libsamplerate-0.1.7-macro-quoting.patch
 rename meta/recipes-multimedia/libsamplerate/{libsamplerate0_0.1.7.bb => libsamplerate0_0.1.8.bb} (61%)
 rename meta/recipes-sato/libical/{libical_0.47.bb => libical_0.48.bb} (78%)

-- 
1.7.6




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

* [PATCH 1/5] freetype: upgrade to 2.4.8
  2011-12-26 17:08 [PATCH 0/5] [V1] Upgrade 4 more packages, Dec 27, 2011 Shane Wang
@ 2011-12-26 17:11 ` Shane Wang
  2011-12-26 17:11 ` [PATCH 2/5] minicom: upgrade to 2.5 Shane Wang
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Shane Wang @ 2011-12-26 17:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Shane Wang <shane.wang@intel.com>
---
 .../no-hardcode.patch                              |    0
 .../{freetype_2.4.6.bb => freetype_2.4.8.bb}       |    6 +++---
 2 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-graphics/freetype/{freetype-2.4.6 => freetype-2.4.8}/no-hardcode.patch (100%)
 rename meta/recipes-graphics/freetype/{freetype_2.4.6.bb => freetype_2.4.8.bb} (91%)

diff --git a/meta/recipes-graphics/freetype/freetype-2.4.6/no-hardcode.patch b/meta/recipes-graphics/freetype/freetype-2.4.8/no-hardcode.patch
similarity index 100%
rename from meta/recipes-graphics/freetype/freetype-2.4.6/no-hardcode.patch
rename to meta/recipes-graphics/freetype/freetype-2.4.8/no-hardcode.patch
diff --git a/meta/recipes-graphics/freetype/freetype_2.4.6.bb b/meta/recipes-graphics/freetype/freetype_2.4.8.bb
similarity index 91%
rename from meta/recipes-graphics/freetype/freetype_2.4.6.bb
rename to meta/recipes-graphics/freetype/freetype_2.4.8.bb
index f002103..bce01cf 100644
--- a/meta/recipes-graphics/freetype/freetype_2.4.6.bb
+++ b/meta/recipes-graphics/freetype/freetype_2.4.8.bb
@@ -13,13 +13,13 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE.TXT;md5=28d5381b1bef2649c59f20c20bae4f39
 
 SECTION = "libs"
 
-PR = "r2"
+PR = "r0"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/freetype/freetype-${PV}.tar.bz2 \
            file://no-hardcode.patch"
 
-SRC_URI[md5sum] = "5e6510613f612809d2d7862592b92ab7"
-SRC_URI[sha256sum] = "24a4a57f3a6859887e91f90f93f754cfc7bf9ab9246a3a696435a0c6a7a1e92a"
+SRC_URI[md5sum] = "dbf2caca1d3afd410a29217a9809d397"
+SRC_URI[sha256sum] = "a9eb7da3875fcb2f022a9c280c01b94ae45ac83d8102838c05dce1277948fb71"
 
 S = "${WORKDIR}/freetype-${PV}"
 
-- 
1.7.6




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

* [PATCH 2/5] minicom: upgrade to 2.5
  2011-12-26 17:08 [PATCH 0/5] [V1] Upgrade 4 more packages, Dec 27, 2011 Shane Wang
  2011-12-26 17:11 ` [PATCH 1/5] freetype: upgrade to 2.4.8 Shane Wang
@ 2011-12-26 17:11 ` Shane Wang
  2011-12-26 17:12 ` [PATCH 3/5] libical: upgrade to 0.48 Shane Wang
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: Shane Wang @ 2011-12-26 17:11 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Shane Wang <shane.wang@intel.com>
---
 .../{minicom-2.4 => minicom-2.5}/gcc4-scope.patch  |    0
 .../rename-conflicting-functions.patch             |    0
 .../minicom/{minicom_2.4.bb => minicom_2.5.bb}     |    6 +++---
 3 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-extended/minicom/{minicom-2.4 => minicom-2.5}/gcc4-scope.patch (100%)
 rename meta/recipes-extended/minicom/{minicom-2.4 => minicom-2.5}/rename-conflicting-functions.patch (100%)
 rename meta/recipes-extended/minicom/{minicom_2.4.bb => minicom_2.5.bb} (75%)

diff --git a/meta/recipes-extended/minicom/minicom-2.4/gcc4-scope.patch b/meta/recipes-extended/minicom/minicom-2.5/gcc4-scope.patch
similarity index 100%
rename from meta/recipes-extended/minicom/minicom-2.4/gcc4-scope.patch
rename to meta/recipes-extended/minicom/minicom-2.5/gcc4-scope.patch
diff --git a/meta/recipes-extended/minicom/minicom-2.4/rename-conflicting-functions.patch b/meta/recipes-extended/minicom/minicom-2.5/rename-conflicting-functions.patch
similarity index 100%
rename from meta/recipes-extended/minicom/minicom-2.4/rename-conflicting-functions.patch
rename to meta/recipes-extended/minicom/minicom-2.5/rename-conflicting-functions.patch
diff --git a/meta/recipes-extended/minicom/minicom_2.4.bb b/meta/recipes-extended/minicom/minicom_2.5.bb
similarity index 75%
rename from meta/recipes-extended/minicom/minicom_2.4.bb
rename to meta/recipes-extended/minicom/minicom_2.5.bb
index 38b5154..8e93d4d 100644
--- a/meta/recipes-extended/minicom/minicom_2.4.bb
+++ b/meta/recipes-extended/minicom/minicom_2.5.bb
@@ -6,13 +6,13 @@ LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=420477abc567404debca0a2a1cb6b645 \
                     file://src/minicom.h;beginline=1;endline=12;md5=a58838cb709f0db517f4e42730c49e81"
 
-SRC_URI = "http://alioth.debian.org/frs/download.php/3195/minicom-${PV}.tar.gz \
+SRC_URI = "http://alioth.debian.org/frs/download.php/3487/minicom-${PV}.tar.gz \
 	file://rename-conflicting-functions.patch \
 	"
 #	file://gcc4-scope.patch
 
-SRC_URI[md5sum] = "700976a3c2dcc8bbd50ab9bb1c08837b"
-SRC_URI[sha256sum] = "6b7af240b073ba847b091fd75aed4bf720eb94d30e188d23bb098d016bf40a48"
+SRC_URI[md5sum] = "a5117d4d21e2c9e825edb586ee2fe8d2"
+SRC_URI[sha256sum] = "2aa43f98580d3c9c59b12895f15783695cde85472f6bfc7974bcc0935af0a8fd"
 
 inherit autotools gettext
 
-- 
1.7.6




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

* [PATCH 3/5] libical: upgrade to 0.48
  2011-12-26 17:08 [PATCH 0/5] [V1] Upgrade 4 more packages, Dec 27, 2011 Shane Wang
  2011-12-26 17:11 ` [PATCH 1/5] freetype: upgrade to 2.4.8 Shane Wang
  2011-12-26 17:11 ` [PATCH 2/5] minicom: upgrade to 2.5 Shane Wang
@ 2011-12-26 17:12 ` Shane Wang
  2011-12-26 17:12 ` [PATCH 4/5] libsamplerate0: upgrade to 0.1.8 Shane Wang
  2011-12-26 17:12 ` [PATCH 5/5] distro_tracking_fields: update the info for recipe upgrade Shane Wang
  4 siblings, 0 replies; 6+ messages in thread
From: Shane Wang @ 2011-12-26 17:12 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Shane Wang <shane.wang@intel.com>
---
 .../libical/{libical_0.47.bb => libical_0.48.bb}   |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
 rename meta/recipes-sato/libical/{libical_0.47.bb => libical_0.48.bb} (78%)

diff --git a/meta/recipes-sato/libical/libical_0.47.bb b/meta/recipes-sato/libical/libical_0.48.bb
similarity index 78%
rename from meta/recipes-sato/libical/libical_0.47.bb
rename to meta/recipes-sato/libical/libical_0.48.bb
index ee4351a..80f629c 100644
--- a/meta/recipes-sato/libical/libical_0.47.bb
+++ b/meta/recipes-sato/libical/libical_0.48.bb
@@ -6,12 +6,12 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d4fc58309d8ed46587ac63bb449d82f8 \
                     file://LICENSE;md5=d1a0891cd3e582b3e2ec8fe63badbbb6"
 SECTION = "libs"
 
-PR = "r1"
+PR = "r0"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/project/freeassociation/${BPN}/${P}/${BPN}-${PV}.tar.gz\
            file://pthread-fix.patch"
 
-SRC_URI[md5sum] = "21f7f8a21e3d857c9476be732e52dc32"
-SRC_URI[sha256sum] = "af4cbb4bb13d9ed3f2262181da9199823feba70802b15cc3e89b263d95da2888"
+SRC_URI[md5sum] = "e549f434d5fbf9cd156c60ed4943618f"
+SRC_URI[sha256sum] = "2ae78b0757f0dd13431acf42a9a8d038339fd4767fd5134e650bf60ee0b4dff0"
 
 inherit autotools
-- 
1.7.6




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

* [PATCH 4/5] libsamplerate0: upgrade to 0.1.8
  2011-12-26 17:08 [PATCH 0/5] [V1] Upgrade 4 more packages, Dec 27, 2011 Shane Wang
                   ` (2 preceding siblings ...)
  2011-12-26 17:12 ` [PATCH 3/5] libical: upgrade to 0.48 Shane Wang
@ 2011-12-26 17:12 ` Shane Wang
  2011-12-26 17:12 ` [PATCH 5/5] distro_tracking_fields: update the info for recipe upgrade Shane Wang
  4 siblings, 0 replies; 6+ messages in thread
From: Shane Wang @ 2011-12-26 17:12 UTC (permalink / raw)
  To: openembedded-core

This patch is to upgrade libsamplerate0 to 0.1.8 and remove the patch for 0.1.7.
In the new code, the fix is there in M4/endian.m4 (which is part of acinclude.m4 in 0.1.7)
The license is changed from "Copyright (C) 2002-2008 Erik de Castro Lopo <erikd@mega-nerd.com>" to "Copyright (C) 2002-2011 Erik de Castro Lopo <erikd@mega-nerd.com>".

Signed-off-by: Shane Wang <shane.wang@intel.com>
---
 .../libsamplerate-0.1.7-macro-quoting.patch        |   22 --------------------
 ...amplerate0_0.1.7.bb => libsamplerate0_0.1.8.bb} |    9 +++----
 2 files changed, 4 insertions(+), 27 deletions(-)
 delete mode 100644 meta/recipes-multimedia/libsamplerate/libsamplerate0-0.1.7/libsamplerate-0.1.7-macro-quoting.patch
 rename meta/recipes-multimedia/libsamplerate/{libsamplerate0_0.1.7.bb => libsamplerate0_0.1.8.bb} (61%)

diff --git a/meta/recipes-multimedia/libsamplerate/libsamplerate0-0.1.7/libsamplerate-0.1.7-macro-quoting.patch b/meta/recipes-multimedia/libsamplerate/libsamplerate0-0.1.7/libsamplerate-0.1.7-macro-quoting.patch
deleted file mode 100644
index 1518d7e..0000000
--- a/meta/recipes-multimedia/libsamplerate/libsamplerate0-0.1.7/libsamplerate-0.1.7-macro-quoting.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Upstream-Status: Inappropriate [configuration]
-
-diff -ruN libsamplerate-0.1.7-orig//acinclude.m4 libsamplerate-0.1.7/acinclude.m4
---- libsamplerate-0.1.7-orig//acinclude.m4	2011-04-20 15:04:25.147664992 +0800
-+++ libsamplerate-0.1.7/acinclude.m4	2011-04-20 15:04:45.397665029 +0800
-@@ -135,7 +135,6 @@
- 	fi
- 
- )
--]
- 
- if test $ac_cv_c_byte_order = big ; then
- 	ac_cv_c_big_endian=1
-@@ -154,7 +153,7 @@
- 	AC_MSG_WARN([[*****************************************************************]])
- 	fi
- 
--)# AC_C_FIND_ENDIAN
-+])# AC_C_FIND_ENDIAN
- 
- 
- 
diff --git a/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.7.bb b/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.8.bb
similarity index 61%
rename from meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.7.bb
rename to meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.8.bb
index d08640f..949b3d0 100644
--- a/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.7.bb
+++ b/meta/recipes-multimedia/libsamplerate/libsamplerate0_0.1.8.bb
@@ -2,15 +2,14 @@ DESCRIPTION = "An audio Sample Rate Conversion library"
 SECTION = "libs"
 LICENSE = "GPLv2+"
 LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
-                    file://src/samplerate.c;beginline=1;endline=17;md5=ed4dfdaa3bdf0f817ebc70cee0cccc88"
+                    file://src/samplerate.c;beginline=1;endline=17;md5=d0807c35fc906466d24a50463534815a"
 DEPENDS = "flac"
 PR = "r0"
 
-SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz \
-           file://libsamplerate-0.1.7-macro-quoting.patch"
+SRC_URI = "http://www.mega-nerd.com/SRC/libsamplerate-${PV}.tar.gz"
 
-SRC_URI[md5sum] = "6731a81cb0c622c483b28c0d7f90867d"
-SRC_URI[sha256sum] = "78ed5d9ff1bf162c4a078f6a3e7432a537dd2f22dc58872b081fb01156027fcc"
+SRC_URI[md5sum] = "1c7fb25191b4e6e3628d198a66a84f47"
+SRC_URI[sha256sum] = "93b54bdf46d5e6d2354b7034395fe329c222a966790de34520702bb9642f1c06"
 S = "${WORKDIR}/libsamplerate-${PV}"
 
 inherit autotools pkgconfig
-- 
1.7.6




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

* [PATCH 5/5] distro_tracking_fields: update the info for recipe upgrade.
  2011-12-26 17:08 [PATCH 0/5] [V1] Upgrade 4 more packages, Dec 27, 2011 Shane Wang
                   ` (3 preceding siblings ...)
  2011-12-26 17:12 ` [PATCH 4/5] libsamplerate0: upgrade to 0.1.8 Shane Wang
@ 2011-12-26 17:12 ` Shane Wang
  4 siblings, 0 replies; 6+ messages in thread
From: Shane Wang @ 2011-12-26 17:12 UTC (permalink / raw)
  To: openembedded-core

Signed-off-by: Shane Wang <shane.wang@intel.com>
---
 .../conf/distro/include/distro_tracking_fields.inc |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/meta/conf/distro/include/distro_tracking_fields.inc b/meta/conf/distro/include/distro_tracking_fields.inc
index ab18e12..e0df61f 100644
--- a/meta/conf/distro/include/distro_tracking_fields.inc
+++ b/meta/conf/distro/include/distro_tracking_fields.inc
@@ -87,7 +87,7 @@ RECIPE_LATEST_VERSION_pn-minicom = "2.5"
 RECIPE_NO_OF_PATCHES_pn-minicom = "1"
 RECIPE_LATEST_RELEASE_DATE_pn-minicom = "Dec 20, 2010"
 RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-minicom = "22 months"
-RECIPE_LAST_UPDATE_pn-minicom = "Nov 24, 2010"
+RECIPE_LAST_UPDATE_pn-minicom = "Dec 27, 2011"
 RECIPE_MANUAL_CHECK_DATE_pn-minicom = "Nov 22, 2011"
 RECIPE_MAINTAINER_pn-minicom = "Dongxiao Xu <dongxiao.xu@intel.com>"
 
@@ -2379,11 +2379,11 @@ RECIPE_LAST_UPDATE_pn-orinoco-conf = "Jul 21, 2006"
 RECIPE_MAINTAINER_pn-orinoco-conf = "Dongxiao Xu <dongxiao.xu@intel.com>"
 
 RECIPE_STATUS_pn-libical="green"
-RECIPE_LATEST_VERSION_pn-libical = "0.47"
+RECIPE_LATEST_VERSION_pn-libical = "0.48"
 RECIPE_NO_OF_PATCHES_pn-libical = "0"
 RECIPE_LATEST_RELEASE_DATE_pn-libical = "Oct 12, 2011"
 RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-libical = "11 months"
-RECIPE_LAST_UPDATE_pn-libical = "Nov 16, 2010"
+RECIPE_LAST_UPDATE_pn-libical = "Dec 26, 2011"
 RECIPE_MANUAL_CHECK_DATE_pn-libical = "Nov 22, 2011"
 RECIPE_MAINTAINER_pn-libical = "Dongxiao Xu <dongxiao.xu@intel.com>"
 
@@ -2795,7 +2795,7 @@ DISTRO_PN_ALIAS_pn-libomxil = "OSPDT upstream=http://omxil.sourceforge.net/"
 RECIPE_STATUS_pn-libsamplerate0 = "green"
 DISTRO_PN_ALIAS_pn-libsamplerate0 = "Meego=libsamplerate Fedora=libsamplerate OpenSuSE=libsamplerate Ubuntu=libsamplerate Mandriva=libsamplerate Debian=libsamplerate"
 RECIPE_LATEST_VERSION_pn-libsamplerate0 = "0.1.8"
-RECIPE_LAST_UPDATE_pn-libsamplerate0 = "Apr 26, 2011"
+RECIPE_LAST_UPDATE_pn-libsamplerate0 = "Dec 27, 2011"
 RECIPE_MANUAL_CHECK_DATE_pn-libsamplerate0 = "Nov 22, 2011"
 RECIPE_MAINTAINER_pn-libsamplerate0 = "Dongxiao Xu <dongxiao.xu@intel.com>"
 
@@ -4632,7 +4632,7 @@ RECIPE_INTEL_SECTION_pn-freetype = "libs"
 RECIPE_TIME_BETWEEN_LAST_TWO_RELEASES_pn-freetype = "1+ months"
 RECIPE_LATEST_RELEASE_DATE_pn-freetype = "Jul 29, 2011"
 RECIPE_COMMENTS_pn-freetype = ""
-RECIPE_LAST_UPDATE_pn-freetype = "Aug 16, 2011"
+RECIPE_LAST_UPDATE_pn-freetype = "Dec 27, 2011"
 RECIPE_MANUAL_CHECK_DATE_pn-freetype = "Nov 17, 2011"
 RECIPE_MAINTAINER_pn-freetype = "Dexuan Cui <dexuan.cui@intel.com>"
 
-- 
1.7.6




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

end of thread, other threads:[~2011-12-26 17:13 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-26 17:08 [PATCH 0/5] [V1] Upgrade 4 more packages, Dec 27, 2011 Shane Wang
2011-12-26 17:11 ` [PATCH 1/5] freetype: upgrade to 2.4.8 Shane Wang
2011-12-26 17:11 ` [PATCH 2/5] minicom: upgrade to 2.5 Shane Wang
2011-12-26 17:12 ` [PATCH 3/5] libical: upgrade to 0.48 Shane Wang
2011-12-26 17:12 ` [PATCH 4/5] libsamplerate0: upgrade to 0.1.8 Shane Wang
2011-12-26 17:12 ` [PATCH 5/5] distro_tracking_fields: update the info for recipe upgrade Shane Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.