All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python3-semantic-version: Add recipe
@ 2021-02-26 14:55 Leon Anavi
  2021-03-01 17:51 ` [oe] " Trevor Gamblin
  0 siblings, 1 reply; 3+ messages in thread
From: Leon Anavi @ 2021-02-26 14:55 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Add semantic_version - a library implementing the 'SemVer' scheme.
Version 2.8.5 brings:

- Properly handle wildcards in SimpleSpec (e.g. ==1.2.*)

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/python3-semantic-version_2.8.5.bb         | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb

diff --git a/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb b/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
new file mode 100644
index 0000000000..b8541ff570
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
@@ -0,0 +1,12 @@
+SUMMARY  = "A library implementing the 'SemVer' scheme."
+DESCRIPTION = "Semantic version comparison for Python (see http://semver.org/)"
+HOMEPAGE = "https://github.com/rbarrois/python-semanticversion"
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4fb31e3c1c7eeb8b5e8c07657cdd54e2"
+
+SRC_URI[sha256sum] = "d2cb2de0558762934679b9a104e82eca7af448c9f4974d1f3eeccff651df8a54"
+
+PYPI_PACKAGE = "semantic_version"
+inherit pypi setuptools3
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH] python3-semantic-version: Add recipe
  2021-02-26 14:55 [meta-python][PATCH] python3-semantic-version: Add recipe Leon Anavi
@ 2021-03-01 17:51 ` Trevor Gamblin
  2021-03-01 21:44   ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Trevor Gamblin @ 2021-03-01 17:51 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-02-26 9:55 a.m., Leon Anavi wrote:
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Add semantic_version - a library implementing the 'SemVer' scheme.
> Version 2.8.5 brings:
>
> - Properly handle wildcards in SimpleSpec (e.g. ==1.2.*)
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-semantic-version_2.8.5.bb         | 12 ++++++++++++
>   1 file changed, 12 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb b/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
> new file mode 100644
> index 0000000000..b8541ff570
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
> @@ -0,0 +1,12 @@
> +SUMMARY  = "A library implementing the 'SemVer' scheme."
> +DESCRIPTION = "Semantic version comparison for Python (see http://semver.org/)"
> +HOMEPAGE = "https://github.com/rbarrois/python-semanticversion"
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=4fb31e3c1c7eeb8b5e8c07657cdd54e2"
> +
> +SRC_URI[sha256sum] = "d2cb2de0558762934679b9a104e82eca7af448c9f4974d1f3eeccff651df8a54"
> +
> +PYPI_PACKAGE = "semantic_version"
> +inherit pypi setuptools3
> +
> +BBCLASSEXTEND = "native nativesdk"
> --
> 2.17.1
>
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH] python3-semantic-version: Add recipe
  2021-03-01 17:51 ` [oe] " Trevor Gamblin
@ 2021-03-01 21:44   ` Khem Raj
  0 siblings, 0 replies; 3+ messages in thread
From: Khem Raj @ 2021-03-01 21:44 UTC (permalink / raw)
  To: Trevor Gamblin; +Cc: Leon Anavi, openembeded-devel

there is python3-semver recipe as well. While they are different
sources but perhaps are similar in functionality can you find out if
we need both

On Mon, Mar 1, 2021 at 9:51 AM Trevor Gamblin
<trevor.gamblin@windriver.com> wrote:
>
>
> On 2021-02-26 9:55 a.m., Leon Anavi wrote:
>
> [Please note: This e-mail is from an EXTERNAL e-mail address]
>
> Add semantic_version - a library implementing the 'SemVer' scheme.
> Version 2.8.5 brings:
>
> - Properly handle wildcards in SimpleSpec (e.g. ==1.2.*)
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
>
> Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
>
> ---
>  .../python/python3-semantic-version_2.8.5.bb         | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb b/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
> new file mode 100644
> index 0000000000..b8541ff570
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
> @@ -0,0 +1,12 @@
> +SUMMARY  = "A library implementing the 'SemVer' scheme."
> +DESCRIPTION = "Semantic version comparison for Python (see http://semver.org/)"
> +HOMEPAGE = "https://github.com/rbarrois/python-semanticversion"
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=4fb31e3c1c7eeb8b5e8c07657cdd54e2"
> +
> +SRC_URI[sha256sum] = "d2cb2de0558762934679b9a104e82eca7af448c9f4974d1f3eeccff651df8a54"
> +
> +PYPI_PACKAGE = "semantic_version"
> +inherit pypi setuptools3
> +
> +BBCLASSEXTEND = "native nativesdk"
> --
> 2.17.1
>
>
>
>
>
> 
>

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

end of thread, other threads:[~2021-03-01 21:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-26 14:55 [meta-python][PATCH] python3-semantic-version: Add recipe Leon Anavi
2021-03-01 17:51 ` [oe] " Trevor Gamblin
2021-03-01 21:44   ` Khem Raj

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.