All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/4] python3-cantools: Added recipe
@ 2020-07-22 22:56 Khem Raj
  2020-07-22 22:56 ` [meta-python][PATCH 2/4] python3-dateparser: " Khem Raj
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Khem Raj @ 2020-07-22 22:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created python3 recipe for cantools.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-cantools_35.1.0.bb              | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb b/meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb
new file mode 100644
index 0000000000..a9638fbd2b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "CAN BUS tools in Python 3."
+HOMEPAGE = "https://github.com/eerimoq/cantools"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
+
+SRC_URI[md5sum] = "46b71bbfec33146d9dbba708489a8ae2"
+SRC_URI[sha256sum] = "bd0ac5b16bb7fe2ada0c9436c91a0b3795217bed7126296dde1565919a3f44f1"
+
+PYPI_PACKAGE = "cantools"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
-- 
2.27.0


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

* [meta-python][PATCH 2/4] python3-dateparser: Added recipe
  2020-07-22 22:56 [meta-python][PATCH 1/4] python3-cantools: Added recipe Khem Raj
@ 2020-07-22 22:56 ` Khem Raj
  2020-07-23 16:48   ` [oe] " Trevor Gamblin
  2020-07-22 22:56 ` [meta-python][PATCH 3/4] python3-diskcache: " Khem Raj
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2020-07-22 22:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created python3 recipe for dateparser.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-dateparser_0.7.6.bb        | 21 +++++++++++++++++++
 1 file changed, 21 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb

diff --git a/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb b/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb
new file mode 100644
index 0000000000..e4683911e2
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb
@@ -0,0 +1,21 @@
+DESCRIPTION = "Provides modules to easily parse localized dates in almost any string formats commonly found on web pages"
+HOMEPAGE = "https://github.com/scrapinghub/dateparser"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3d3ed25571191e7aa3f55d0a6efe0051"
+
+SRC_URI[md5sum] = "78b4bf317f9b844631562abad5ce040b"
+SRC_URI[sha256sum] = "e875efd8c57c85c2d02b238239878db59ff1971f5a823457fcc69e493bf6ebfa"
+
+PYPI_PACKAGE = "dateparser"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
+RDEPENDS_${PN} += " \
+        ${PYTHON_PN}-dateutil \
+        ${PYTHON_PN}-tzlocal \
+        ${PYTHON_PN}-ruamel-yaml \
+"
+
+# Ommitted ${PYTHON_PN}-convertdate, ${PYTHON_PN}-jdatetime ${PYTHON_PN}-umalqurra
-- 
2.27.0


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

* [meta-python][PATCH 3/4] python3-diskcache: Added recipe
  2020-07-22 22:56 [meta-python][PATCH 1/4] python3-cantools: Added recipe Khem Raj
  2020-07-22 22:56 ` [meta-python][PATCH 2/4] python3-dateparser: " Khem Raj
@ 2020-07-22 22:56 ` Khem Raj
  2020-07-23 16:49   ` [oe] " Trevor Gamblin
  2020-07-22 22:56 ` [meta-python][PATCH 4/4] python3-bitstruct: " Khem Raj
  2020-07-23 16:48 ` [oe] [meta-python][PATCH 1/4] python3-cantools: " Trevor Gamblin
  3 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2020-07-22 22:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created python3 recipe for diskcache.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-diskcache_4.1.0.bb              | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb b/meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb
new file mode 100644
index 0000000000..91cff0cd15
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "Disk Cache -- Disk and file backed persistent cache."
+HOMEPAGE = "http://www.grantjenks.com/docs/diskcache/"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=9e046ce8fae71087134866418f646ec3"
+
+SRC_URI[md5sum] = "21c9945e7707799e1c64956f8a54d4c3"
+SRC_URI[sha256sum] = "bcee5a59f9c264e2809e58d01be6569a3bbb1e36a1e0fb83f7ef9b2075f95ce0"
+
+PYPI_PACKAGE = "diskcache"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
-- 
2.27.0


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

* [meta-python][PATCH 4/4] python3-bitstruct: Added recipe
  2020-07-22 22:56 [meta-python][PATCH 1/4] python3-cantools: Added recipe Khem Raj
  2020-07-22 22:56 ` [meta-python][PATCH 2/4] python3-dateparser: " Khem Raj
  2020-07-22 22:56 ` [meta-python][PATCH 3/4] python3-diskcache: " Khem Raj
@ 2020-07-22 22:56 ` Khem Raj
  2020-07-23 16:49   ` [oe] " Trevor Gamblin
  2020-07-23 16:48 ` [oe] [meta-python][PATCH 1/4] python3-cantools: " Trevor Gamblin
  3 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2020-07-22 22:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created python3 recipe for bitstruct.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-bitstruct_8.11.0.bb             | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb b/meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb
new file mode 100644
index 0000000000..a25380418c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "This module performs conversions between Python values and C bit field structs represented as Python byte strings."
+HOMEPAGE = "https://github.com/eerimoq/bitstruct"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
+
+SRC_URI[md5sum] = "8eaf853c95e10ca4b6bca2fe5ff307c6"
+SRC_URI[sha256sum] = "2b13f2c3e76b49e8cd854f7a1da590bb73ecbc6cbfacc2d479eacf2b88282d5d"
+
+PYPI_PACKAGE = "bitstruct"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
-- 
2.27.0


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

* Re: [oe] [meta-python][PATCH 1/4] python3-cantools: Added recipe
  2020-07-22 22:56 [meta-python][PATCH 1/4] python3-cantools: Added recipe Khem Raj
                   ` (2 preceding siblings ...)
  2020-07-22 22:56 ` [meta-python][PATCH 4/4] python3-bitstruct: " Khem Raj
@ 2020-07-23 16:48 ` Trevor Gamblin
  3 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:48 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel; +Cc: Colin McAllister

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


On 7/22/20 6:56 PM, Khem Raj wrote:
> From: Colin McAllister <colinmca242@gmail.com>
>
> Created python3 recipe for cantools.
>
> Signed-off-by: Colin McAllister <colinmca242@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-cantools_35.1.0.bb              | 14 ++++++++++++++
>   1 file changed, 14 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb b/meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb
> new file mode 100644
> index 0000000000..a9638fbd2b
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-cantools_35.1.0.bb
> @@ -0,0 +1,14 @@
> +DESCRIPTION = "CAN BUS tools in Python 3."
> +HOMEPAGE = "https://github.com/eerimoq/cantools"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
> +
> +SRC_URI[md5sum] = "46b71bbfec33146d9dbba708489a8ae2"
> +SRC_URI[sha256sum] = "bd0ac5b16bb7fe2ada0c9436c91a0b3795217bed7126296dde1565919a3f44f1"
> +
> +PYPI_PACKAGE = "cantools"
> +
> +inherit pypi setuptools3
> +
> +CLEANBROKEN = "1"
> +
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/4] python3-dateparser: Added recipe
  2020-07-22 22:56 ` [meta-python][PATCH 2/4] python3-dateparser: " Khem Raj
@ 2020-07-23 16:48   ` Trevor Gamblin
  0 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:48 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel; +Cc: Colin McAllister

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


On 7/22/20 6:56 PM, Khem Raj wrote:
> From: Colin McAllister <colinmca242@gmail.com>
>
> Created python3 recipe for dateparser.
>
> Signed-off-by: Colin McAllister <colinmca242@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-dateparser_0.7.6.bb        | 21 +++++++++++++++++++
>   1 file changed, 21 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb b/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb
> new file mode 100644
> index 0000000000..e4683911e2
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-dateparser_0.7.6.bb
> @@ -0,0 +1,21 @@
> +DESCRIPTION = "Provides modules to easily parse localized dates in almost any string formats commonly found on web pages"
> +HOMEPAGE = "https://github.com/scrapinghub/dateparser"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=3d3ed25571191e7aa3f55d0a6efe0051"
> +
> +SRC_URI[md5sum] = "78b4bf317f9b844631562abad5ce040b"
> +SRC_URI[sha256sum] = "e875efd8c57c85c2d02b238239878db59ff1971f5a823457fcc69e493bf6ebfa"
> +
> +PYPI_PACKAGE = "dateparser"
> +
> +inherit pypi setuptools3
> +
> +CLEANBROKEN = "1"
> +
> +RDEPENDS_${PN} += " \
> +        ${PYTHON_PN}-dateutil \
> +        ${PYTHON_PN}-tzlocal \
> +        ${PYTHON_PN}-ruamel-yaml \
> +"
> +
> +# Ommitted ${PYTHON_PN}-convertdate, ${PYTHON_PN}-jdatetime ${PYTHON_PN}-umalqurra
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/4] python3-diskcache: Added recipe
  2020-07-22 22:56 ` [meta-python][PATCH 3/4] python3-diskcache: " Khem Raj
@ 2020-07-23 16:49   ` Trevor Gamblin
  0 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:49 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel; +Cc: Colin McAllister

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


On 7/22/20 6:56 PM, Khem Raj wrote:
> From: Colin McAllister <colinmca242@gmail.com>
>
> Created python3 recipe for diskcache.
>
> Signed-off-by: Colin McAllister <colinmca242@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-diskcache_4.1.0.bb              | 14 ++++++++++++++
>   1 file changed, 14 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb b/meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb
> new file mode 100644
> index 0000000000..91cff0cd15
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-diskcache_4.1.0.bb
> @@ -0,0 +1,14 @@
> +DESCRIPTION = "Disk Cache -- Disk and file backed persistent cache."
> +HOMEPAGE = "http://www.grantjenks.com/docs/diskcache/"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=9e046ce8fae71087134866418f646ec3"
> +
> +SRC_URI[md5sum] = "21c9945e7707799e1c64956f8a54d4c3"
> +SRC_URI[sha256sum] = "bcee5a59f9c264e2809e58d01be6569a3bbb1e36a1e0fb83f7ef9b2075f95ce0"
> +
> +PYPI_PACKAGE = "diskcache"
> +
> +inherit pypi setuptools3
> +
> +CLEANBROKEN = "1"
> +
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/4] python3-bitstruct: Added recipe
  2020-07-22 22:56 ` [meta-python][PATCH 4/4] python3-bitstruct: " Khem Raj
@ 2020-07-23 16:49   ` Trevor Gamblin
  0 siblings, 0 replies; 8+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:49 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel; +Cc: Colin McAllister

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


On 7/22/20 6:56 PM, Khem Raj wrote:
> From: Colin McAllister <colinmca242@gmail.com>
>
> Created python3 recipe for bitstruct.
>
> Signed-off-by: Colin McAllister <colinmca242@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-bitstruct_8.11.0.bb             | 14 ++++++++++++++
>   1 file changed, 14 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb b/meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb
> new file mode 100644
> index 0000000000..a25380418c
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-bitstruct_8.11.0.bb
> @@ -0,0 +1,14 @@
> +DESCRIPTION = "This module performs conversions between Python values and C bit field structs represented as Python byte strings."
> +HOMEPAGE = "https://github.com/eerimoq/bitstruct"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
> +
> +SRC_URI[md5sum] = "8eaf853c95e10ca4b6bca2fe5ff307c6"
> +SRC_URI[sha256sum] = "2b13f2c3e76b49e8cd854f7a1da590bb73ecbc6cbfacc2d479eacf2b88282d5d"
> +
> +PYPI_PACKAGE = "bitstruct"
> +
> +inherit pypi setuptools3
> +
> +CLEANBROKEN = "1"
> +
>
> 

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

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

end of thread, other threads:[~2020-07-23 16:49 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-22 22:56 [meta-python][PATCH 1/4] python3-cantools: Added recipe Khem Raj
2020-07-22 22:56 ` [meta-python][PATCH 2/4] python3-dateparser: " Khem Raj
2020-07-23 16:48   ` [oe] " Trevor Gamblin
2020-07-22 22:56 ` [meta-python][PATCH 3/4] python3-diskcache: " Khem Raj
2020-07-23 16:49   ` [oe] " Trevor Gamblin
2020-07-22 22:56 ` [meta-python][PATCH 4/4] python3-bitstruct: " Khem Raj
2020-07-23 16:49   ` [oe] " Trevor Gamblin
2020-07-23 16:48 ` [oe] [meta-python][PATCH 1/4] python3-cantools: " 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.