[oe-commits] Joe Slater : ptpd: update to version 2.3.1-rc2

git at git.openembedded.org git at git.openembedded.org
Wed Sep 24 15:23:40 UTC 2014


Module: meta-openembedded.git
Branch: master-next
Commit: f2715a565228a50cb9da1102d2758937addf21e3
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=f2715a565228a50cb9da1102d2758937addf21e3

Author: Joe Slater <jslater at windriver.com>
Date:   Fri Sep 12 16:04:18 2014 -0700

ptpd: update to version 2.3.1-rc2

Add a little processing to find correct directory
for source upstream.

Update LIC_FILES_CHKSUM since the latest package
doesn't include a COPYRIGHT file anymore.

Signed-off-by: Joe Slater <jslater at windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa at gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald at mentor.com>

---

 .../ptpd/{ptpd_2.3.0.bb => ptpd_2.3.1-rc2.bb}          | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1-rc2.bb
similarity index 64%
rename from meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb
rename to meta-networking/recipes-daemons/ptpd/ptpd_2.3.1-rc2.bb
index 54679dc..db74e44 100644
--- a/meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb
+++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1-rc2.bb
@@ -6,17 +6,27 @@ time coordination of LAN connected computers."
 HOMEPAGE = "http://sourceforge.net/projects/ptpd"
 SECTION = "network"
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
+LIC_FILES_CHKSUM = "file://README;md5=2452033fe374283f29579898663b1aa8"
 
 DEPENDS = "libpcap"
 
 inherit autotools
 
-SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz"
+# return something like '1.2.3' or '1.2.3/rc1'
+#
+def get_sub(d):
+    parts = d.getVar('PV',True).split('-')
+    try:
+        return parts[0] + '/' + parts[1]
+    except:
+        return parts[0]
+
+SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${@get_sub(d)}/ptpd-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "1ef2f1f2825080a865bbce0eb61246d4"
+SRC_URI[sha256sum] = "2802aab758649bb222859dfcb62a5d282709ccb4d3f1df3f26f739cc091d0c8d"
 
 S = "${WORKDIR}/ptpd-${PV}"
-SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b"
-SRC_URI[sha256sum] = "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7"
 
 EXTRA_OEMAKE = ""
 



More information about the Openembedded-commits mailing list