All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python3-ntplib: Upgrade 0.3.3 -> 0.3.4
@ 2020-08-27 14:54 Leon Anavi
  2020-08-31 13:11 ` [oe] " Trevor Gamblin
  0 siblings, 1 reply; 2+ messages in thread
From: Leon Anavi @ 2020-08-27 14:54 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.3.4:
- Use setuptools
- update URL

Use source from the GitHub repository instead of pypi because
appropriate archive for this release is not available at pypi.org.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-ntplib_0.3.3.bb => python3-ntplib_0.3.4.bb} | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-ntplib_0.3.3.bb => python3-ntplib_0.3.4.bb} (55%)

diff --git a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb b/meta-python/recipes-devtools/python/python3-ntplib_0.3.4.bb
similarity index 55%
rename from meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb
rename to meta-python/recipes-devtools/python/python3-ntplib_0.3.4.bb
index ce2618b81..ae4c10f38 100644
--- a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-ntplib_0.3.4.bb
@@ -3,12 +3,11 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://ntplib.py;beginline=1;endline=23;md5=afa07338a9595257e94c205c3e72224d"
 
-SRCNAME = "ntplib"
-SRC_URI[md5sum] = "c7cc8e9b09f40c84819859d70b7784ca"
-SRC_URI[sha256sum] = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
+SRC_URI = "git://github.com/cf-natali/ntplib.git"
+SRCREV ?= "aea7925c26152024ca8cf207e77f403f8127727a"
 
-S = "${WORKDIR}/${SRCNAME}-${PV}"
+S = "${WORKDIR}/git"
 
-inherit setuptools3 python3native pypi
+inherit setuptools3 python3native
 
 RDEPENDS_${PN} += "${PYTHON_PN}-datetime ${PYTHON_PN}-io"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH] python3-ntplib: Upgrade 0.3.3 -> 0.3.4
  2020-08-27 14:54 [meta-python][PATCH] python3-ntplib: Upgrade 0.3.3 -> 0.3.4 Leon Anavi
@ 2020-08-31 13:11 ` Trevor Gamblin
  0 siblings, 0 replies; 2+ messages in thread
From: Trevor Gamblin @ 2020-08-31 13:11 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 8/27/20 10:54 AM, Leon Anavi wrote:
> Upgrade to release 0.3.4:
> - Use setuptools
> - update URL
>
> Use source from the GitHub repository instead of pypi because
> appropriate archive for this release is not available at pypi.org.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-ntplib_0.3.3.bb => python3-ntplib_0.3.4.bb} | 9 ++++-----
>   1 file changed, 4 insertions(+), 5 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-ntplib_0.3.3.bb => python3-ntplib_0.3.4.bb} (55%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb b/meta-python/recipes-devtools/python/python3-ntplib_0.3.4.bb
> similarity index 55%
> rename from meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb
> rename to meta-python/recipes-devtools/python/python3-ntplib_0.3.4.bb
> index ce2618b81..ae4c10f38 100644
> --- a/meta-python/recipes-devtools/python/python3-ntplib_0.3.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-ntplib_0.3.4.bb
> @@ -3,12 +3,11 @@ SECTION = "devel/python"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://ntplib.py;beginline=1;endline=23;md5=afa07338a9595257e94c205c3e72224d"
>   
> -SRCNAME = "ntplib"
> -SRC_URI[md5sum] = "c7cc8e9b09f40c84819859d70b7784ca"
> -SRC_URI[sha256sum] = "c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
> +SRC_URI = "git://github.com/cf-natali/ntplib.git"
> +SRCREV ?= "aea7925c26152024ca8cf207e77f403f8127727a"
>   
> -S = "${WORKDIR}/${SRCNAME}-${PV}"
> +S = "${WORKDIR}/git"
>   
> -inherit setuptools3 python3native pypi
> +inherit setuptools3 python3native
>   
>   RDEPENDS_${PN} += "${PYTHON_PN}-datetime ${PYTHON_PN}-io"
>
> 

[-- Attachment #2: Type: text/html, Size: 2729 bytes --]

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

end of thread, other threads:[~2020-08-31 13:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-27 14:54 [meta-python][PATCH] python3-ntplib: Upgrade 0.3.3 -> 0.3.4 Leon Anavi
2020-08-31 13:11 ` [oe] " Trevor Gamblin

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.