diff options
author | Joe Slater <jslater@windriver.com> | 2014-09-12 16:04:18 -0700 |
---|---|---|
committer | Joe MacDonald <joe_macdonald@mentor.com> | 2014-09-23 21:59:42 -0400 |
commit | f2715a565228a50cb9da1102d2758937addf21e3 (patch) | |
tree | b92d1ab850accae72566cbe3d50b51df325e0969 /meta-networking/recipes-daemons/ptpd | |
parent | 28e26a9b0ad37d0c92ba42b2727215eef1edf5a2 (diff) | |
download | meta-openembedded-f2715a565228a50cb9da1102d2758937addf21e3.tar.gz |
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@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
Diffstat (limited to 'meta-networking/recipes-daemons/ptpd')
-rw-r--r-- | meta-networking/recipes-daemons/ptpd/ptpd_2.3.1-rc2.bb (renamed from meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb) | 18 |
1 files 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 index 54679dcf1d..db74e44631 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." | |||
6 | HOMEPAGE = "http://sourceforge.net/projects/ptpd" | 6 | HOMEPAGE = "http://sourceforge.net/projects/ptpd" |
7 | SECTION = "network" | 7 | SECTION = "network" |
8 | LICENSE = "BSD" | 8 | LICENSE = "BSD" |
9 | LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41" | 9 | LIC_FILES_CHKSUM = "file://README;md5=2452033fe374283f29579898663b1aa8" |
10 | 10 | ||
11 | DEPENDS = "libpcap" | 11 | DEPENDS = "libpcap" |
12 | 12 | ||
13 | inherit autotools | 13 | inherit autotools |
14 | 14 | ||
15 | SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${PV}/ptpd-${PV}.tar.gz" | 15 | # return something like '1.2.3' or '1.2.3/rc1' |
16 | # | ||
17 | def get_sub(d): | ||
18 | parts = d.getVar('PV',True).split('-') | ||
19 | try: | ||
20 | return parts[0] + '/' + parts[1] | ||
21 | except: | ||
22 | return parts[0] | ||
23 | |||
24 | SRC_URI = "http://downloads.sourceforge.net/project/ptpd/ptpd/${@get_sub(d)}/ptpd-${PV}.tar.gz" | ||
25 | |||
26 | SRC_URI[md5sum] = "1ef2f1f2825080a865bbce0eb61246d4" | ||
27 | SRC_URI[sha256sum] = "2802aab758649bb222859dfcb62a5d282709ccb4d3f1df3f26f739cc091d0c8d" | ||
16 | 28 | ||
17 | S = "${WORKDIR}/ptpd-${PV}" | 29 | S = "${WORKDIR}/ptpd-${PV}" |
18 | SRC_URI[md5sum] = "f5e931b4a229705ff0dbdfe22490566b" | ||
19 | SRC_URI[sha256sum] = "1a4e90496f004bfd91657ccc49209101dc25b787e540648c07c0973469f1d8f7" | ||
20 | 30 | ||
21 | EXTRA_OEMAKE = "" | 31 | EXTRA_OEMAKE = "" |
22 | 32 | ||