All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-oe][PATCH 0/2] PyYAML / libYAML improvements
@ 2013-02-08  9:20 Paul Eggleton
  2013-02-08  9:20 ` [meta-oe][PATCH 1/2] python-pyyaml: update to version 3.10 and tweak Paul Eggleton
  2013-02-08  9:20 ` [meta-oe][PATCH 2/2] libyaml: update to 0.1.4 " Paul Eggleton
  0 siblings, 2 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-02-08  9:20 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 61911b23099c2658186179504ded318c987b5276:

  ttf: introduce update-fonts bbclass and change all ttf recipes to use it (2013-02-06 15:16:01 +0100)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded-contrib paule/yaml
  http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=paule/yaml

Paul Eggleton (2):
  python-pyyaml: update to version 3.10 and tweak
  libyaml: update to 0.1.4 and tweak

 .../{python-pyyaml_svn.bb => python-pyyaml_3.10.bb}  |   18 +++++++++---------
 .../libyaml/{libyaml_0.1.3.bb => libyaml_0.1.4.bb}   |    7 +++----
 2 files changed, 12 insertions(+), 13 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-pyyaml_svn.bb => python-pyyaml_3.10.bb} (50%)
 rename meta-oe/recipes-support/libyaml/{libyaml_0.1.3.bb => libyaml_0.1.4.bb} (54%)

-- 
1.7.10.4




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

* [meta-oe][PATCH 1/2] python-pyyaml: update to version 3.10 and tweak
  2013-02-08  9:20 [meta-oe][PATCH 0/2] PyYAML / libYAML improvements Paul Eggleton
@ 2013-02-08  9:20 ` Paul Eggleton
  2013-02-08  9:20 ` [meta-oe][PATCH 2/2] libyaml: update to 0.1.4 " Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-02-08  9:20 UTC (permalink / raw)
  To: openembedded-devel

* Update to 3.10, using tarball instead of svn
* Set SUMMARY instead of description
* Drop PR

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../{python-pyyaml_svn.bb => python-pyyaml_3.10.bb}  |   18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)
 rename meta-oe/recipes-devtools/python/{python-pyyaml_svn.bb => python-pyyaml_3.10.bb} (50%)

diff --git a/meta-oe/recipes-devtools/python/python-pyyaml_svn.bb b/meta-oe/recipes-devtools/python/python-pyyaml_3.10.bb
similarity index 50%
rename from meta-oe/recipes-devtools/python/python-pyyaml_svn.bb
rename to meta-oe/recipes-devtools/python/python-pyyaml_3.10.bb
index 92c0673..625efd5 100644
--- a/meta-oe/recipes-devtools/python/python-pyyaml_svn.bb
+++ b/meta-oe/recipes-devtools/python/python-pyyaml_3.10.bb
@@ -1,18 +1,18 @@
-DESCRIPTION = "Python support for YAML"
+SUMMARY = "Python support for YAML"
 HOMEPAGE = "http://www.pyyaml.org"
 SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=6015f088759b10e0bc2bf64898d4ae17"
 DEPENDS = "libyaml python-cython-native"
-SRCREV = "344"
-PV = "3.08+svnr${SRCPV}"
-PR = "ml2"
 
-SRC_URI = "\
-  svn://svn.pyyaml.org/pyyaml;module=trunk;protocol=http \
-  file://setup.py \
-"
-S = "${WORKDIR}/trunk"
+SRC_URI = "http://pyyaml.org/download/pyyaml/PyYAML-${PV}.tar.gz \
+           file://setup.py \
+           "
+
+SRC_URI[md5sum] = "74c94a383886519e9e7b3dd1ee540247"
+SRC_URI[sha256sum] = "e713da45c96ca53a3a8b48140d4120374db622df16ab71759c9ceb5b8d46fe7c"
+
+S = "${WORKDIR}/PyYAML-${PV}"
 
 inherit distutils
 
-- 
1.7.10.4




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

* [meta-oe][PATCH 2/2] libyaml: update to 0.1.4 and tweak
  2013-02-08  9:20 [meta-oe][PATCH 0/2] PyYAML / libYAML improvements Paul Eggleton
  2013-02-08  9:20 ` [meta-oe][PATCH 1/2] python-pyyaml: update to version 3.10 and tweak Paul Eggleton
@ 2013-02-08  9:20 ` Paul Eggleton
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Eggleton @ 2013-02-08  9:20 UTC (permalink / raw)
  To: openembedded-devel

* Update to 0.1.4
* Set SUMMARY instead of DESCRIPTION
* Drop PR

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
 .../libyaml/{libyaml_0.1.3.bb => libyaml_0.1.4.bb}              |    7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)
 rename meta-oe/recipes-support/libyaml/{libyaml_0.1.3.bb => libyaml_0.1.4.bb} (54%)

diff --git a/meta-oe/recipes-support/libyaml/libyaml_0.1.3.bb b/meta-oe/recipes-support/libyaml/libyaml_0.1.4.bb
similarity index 54%
rename from meta-oe/recipes-support/libyaml/libyaml_0.1.3.bb
rename to meta-oe/recipes-support/libyaml/libyaml_0.1.4.bb
index 702ed55..04c6f77 100644
--- a/meta-oe/recipes-support/libyaml/libyaml_0.1.3.bb
+++ b/meta-oe/recipes-support/libyaml/libyaml_0.1.4.bb
@@ -1,13 +1,12 @@
-DESCRIPTION = "LibYAML is a YAML parser and emitter written in C."
+SUMMARY = "LibYAML is a YAML parser and emitter written in C."
 HOMEPAGE = "http://pyyaml.org/wiki/LibYAML"
 SECTION = "libs/devel"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=6015f088759b10e0bc2bf64898d4ae17"
-PR="r0"
 
 SRC_URI = "http://pyyaml.org/download/libyaml/yaml-${PV}.tar.gz;name=libyaml"
-SRC_URI[libyaml.md5sum] = "b8ab9064e8e0330423fe640de76608cd"
-SRC_URI[libyaml.sha256sum] = "a8bbad7e5250b3735126b7e3bd9f6fce9db19d6be7cc13abad17a24b59ec144a"
+SRC_URI[libyaml.md5sum] = "36c852831d02cf90508c29852361d01b"
+SRC_URI[libyaml.sha256sum] = "7bf81554ae5ab2d9b6977da398ea789722e0db75b86bffdaeb4e66d961de6a37"
 
 S = "${WORKDIR}/yaml-${PV}"
 
-- 
1.7.10.4




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

end of thread, other threads:[~2013-02-08  9:36 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-08  9:20 [meta-oe][PATCH 0/2] PyYAML / libYAML improvements Paul Eggleton
2013-02-08  9:20 ` [meta-oe][PATCH 1/2] python-pyyaml: update to version 3.10 and tweak Paul Eggleton
2013-02-08  9:20 ` [meta-oe][PATCH 2/2] libyaml: update to 0.1.4 " Paul Eggleton

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.