All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-networking][PATCH 1/1] ptpd: update to version 2.3.1-rc2
@ 2014-09-12 23:04 Joe Slater
  2014-09-12 23:17 ` akuster808
  2014-09-24  2:02 ` Joe MacDonald
  0 siblings, 2 replies; 3+ messages in thread
From: Joe Slater @ 2014-09-12 23:04 UTC (permalink / raw)
  To: openembedded-devel

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

Signed-off-by: Joe Slater <jslater@windriver.com>
---
 .../ptpd/{ptpd_2.3.0.bb => ptpd_2.3.1-rc2.bb}      |   23 ++++++++++++++++---
 1 files changed, 19 insertions(+), 4 deletions(-)
 rename meta-networking/recipes-daemons/ptpd/{ptpd_2.3.0.bb => ptpd_2.3.1-rc2.bb} (58%)

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 58%
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..2a23995 100644
--- a/meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb
+++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1-rc2.bb
@@ -5,18 +5,33 @@ and PTP Version 2 implements IEEE-1588-2008. PTP was developed to provide very p
 time coordination of LAN connected computers."
 HOMEPAGE = "http://sourceforge.net/projects/ptpd"
 SECTION = "network"
+
+# COPYRIGHT is gone, but maybe it will come back
+#
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
+#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 = ""
 
-- 
1.7.3.4



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

* Re: [meta-networking][PATCH 1/1] ptpd: update to version 2.3.1-rc2
  2014-09-12 23:04 [meta-networking][PATCH 1/1] ptpd: update to version 2.3.1-rc2 Joe Slater
@ 2014-09-12 23:17 ` akuster808
  2014-09-24  2:02 ` Joe MacDonald
  1 sibling, 0 replies; 3+ messages in thread
From: akuster808 @ 2014-09-12 23:17 UTC (permalink / raw)
  To: jslater; +Cc: openembedded-devel



On 09/12/2014 04:04 PM, Joe Slater wrote:
> Add a little processing to find correct directory
> for source upstream.
>
> Signed-off-by: Joe Slater <jslater@windriver.com>
> ---
>   .../ptpd/{ptpd_2.3.0.bb => ptpd_2.3.1-rc2.bb}      |   23 ++++++++++++++++---
>   1 files changed, 19 insertions(+), 4 deletions(-)
>   rename meta-networking/recipes-daemons/ptpd/{ptpd_2.3.0.bb => ptpd_2.3.1-rc2.bb} (58%)
>
> 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 58%
> 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..2a23995 100644
> --- a/meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb
> +++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1-rc2.bb
> @@ -5,18 +5,33 @@ and PTP Version 2 implements IEEE-1588-2008. PTP was developed to provide very p
>   time coordination of LAN connected computers."
>   HOMEPAGE = "http://sourceforge.net/projects/ptpd"
>   SECTION = "network"
> +
> +# COPYRIGHT is gone, but maybe it will come back
> +#
>   LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
> +#LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"

I think your 'COPYRIGHT' comment should be in the header, then you can 
remove the commented out code.

- Armin

> +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 = ""
>
>


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

* Re: [meta-networking][PATCH 1/1] ptpd: update to version 2.3.1-rc2
  2014-09-12 23:04 [meta-networking][PATCH 1/1] ptpd: update to version 2.3.1-rc2 Joe Slater
  2014-09-12 23:17 ` akuster808
@ 2014-09-24  2:02 ` Joe MacDonald
  1 sibling, 0 replies; 3+ messages in thread
From: Joe MacDonald @ 2014-09-24  2:02 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2475 bytes --]

[[oe] [meta-networking][PATCH 1/1] ptpd: update to version 2.3.1-rc2] On 14.09.12 (Fri 16:04) Joe Slater wrote:

> Add a little processing to find correct directory
> for source upstream.
> 
> Signed-off-by: Joe Slater <jslater@windriver.com>

Merged, thanks Joe.  I made a minor change to your commit based on
Armin's comment, but that's it.

-J.

> ---
>  .../ptpd/{ptpd_2.3.0.bb => ptpd_2.3.1-rc2.bb}      |   23 ++++++++++++++++---
>  1 files changed, 19 insertions(+), 4 deletions(-)
>  rename meta-networking/recipes-daemons/ptpd/{ptpd_2.3.0.bb => ptpd_2.3.1-rc2.bb} (58%)
> 
> 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 58%
> 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..2a23995 100644
> --- a/meta-networking/recipes-daemons/ptpd/ptpd_2.3.0.bb
> +++ b/meta-networking/recipes-daemons/ptpd/ptpd_2.3.1-rc2.bb
> @@ -5,18 +5,33 @@ and PTP Version 2 implements IEEE-1588-2008. PTP was developed to provide very p
>  time coordination of LAN connected computers."
>  HOMEPAGE = "http://sourceforge.net/projects/ptpd"
>  SECTION = "network"
> +
> +# COPYRIGHT is gone, but maybe it will come back
> +#
>  LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=4019cad2b3cd55f22ea819ffad6ccd41"
> +#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 = ""
>  
-- 
-Joe MacDonald.
:wq

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

end of thread, other threads:[~2014-09-24  2:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-12 23:04 [meta-networking][PATCH 1/1] ptpd: update to version 2.3.1-rc2 Joe Slater
2014-09-12 23:17 ` akuster808
2014-09-24  2:02 ` Joe MacDonald

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.