All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file
@ 2020-04-04 13:28 Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 02/11] python-waitress: " Derek Straka
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 meta-python/recipes-devtools/python/python-wcwidth.inc |  8 --------
 .../recipes-devtools/python/python3-wcwidth_0.1.8.bb   | 10 +++++++++-
 2 files changed, 9 insertions(+), 9 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-wcwidth.inc

diff --git a/meta-python/recipes-devtools/python/python-wcwidth.inc b/meta-python/recipes-devtools/python/python-wcwidth.inc
deleted file mode 100644
index bbd0d50bf0..0000000000
--- a/meta-python/recipes-devtools/python/python-wcwidth.inc
+++ /dev/null
@@ -1,8 +0,0 @@
-SUMMARY = "Library for building powerful interactive command lines in Python"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=11fba47286258744a6bc6e43530c32a1"
-
-SRC_URI[md5sum] = "dc6677d099e6f49c0f6fbc310de261e9"
-SRC_URI[sha256sum] = "f28b3e8a6483e5d49e7f8949ac1a78314e740333ae305b4ba5defd3e74fb37a8"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-wcwidth_0.1.8.bb b/meta-python/recipes-devtools/python/python3-wcwidth_0.1.8.bb
index 5f6259b081..f9f6474add 100644
--- a/meta-python/recipes-devtools/python/python3-wcwidth_0.1.8.bb
+++ b/meta-python/recipes-devtools/python/python3-wcwidth_0.1.8.bb
@@ -1,2 +1,10 @@
+SUMMARY = "Library for building powerful interactive command lines in Python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=11fba47286258744a6bc6e43530c32a1"
+
+SRC_URI[md5sum] = "dc6677d099e6f49c0f6fbc310de261e9"
+SRC_URI[sha256sum] = "f28b3e8a6483e5d49e7f8949ac1a78314e740333ae305b4ba5defd3e74fb37a8"
+
 inherit pypi setuptools3
-require python-wcwidth.inc
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [oe][meta-python][PATCH 02/11] python-waitress: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 03/11] python-visitor: " Derek Straka
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 .../recipes-devtools/python/python-waitress.inc      | 10 ----------
 .../python/python3-waitress_1.4.2.bb                 | 12 +++++++++++-
 2 files changed, 11 insertions(+), 11 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-waitress.inc

diff --git a/meta-python/recipes-devtools/python/python-waitress.inc b/meta-python/recipes-devtools/python/python-waitress.inc
deleted file mode 100644
index 0c288d52ff..0000000000
--- a/meta-python/recipes-devtools/python/python-waitress.inc
+++ /dev/null
@@ -1,10 +0,0 @@
-SUMMARY = "A WSGI server for Python"
-DESCRIPTION = "Waitress is meant to be a production-quality pure-Python WSGI \
-    server with very acceptable performance."
-HOMEPAGE = "https://github.com/Pylons/waitress"
-SECTION = "devel/python"
-LICENSE = "ZPL-2.1"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=78ccb3640dc841e1baecb3e27a6966b2"
-
-SRC_URI[md5sum] = "fdeed7ec32bbba011e90801208378c89"
-SRC_URI[sha256sum] = "67a60a376f0eb335ed88967c42b73983a58d66a2a72eb9009a42725f7453b142"
diff --git a/meta-python/recipes-devtools/python/python3-waitress_1.4.2.bb b/meta-python/recipes-devtools/python/python3-waitress_1.4.2.bb
index 83c8b66d82..257993f8fb 100644
--- a/meta-python/recipes-devtools/python/python3-waitress_1.4.2.bb
+++ b/meta-python/recipes-devtools/python/python3-waitress_1.4.2.bb
@@ -1,2 +1,12 @@
+SUMMARY = "A WSGI server for Python"
+DESCRIPTION = "Waitress is meant to be a production-quality pure-Python WSGI \
+    server with very acceptable performance."
+HOMEPAGE = "https://github.com/Pylons/waitress"
+SECTION = "devel/python"
+LICENSE = "ZPL-2.1"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=78ccb3640dc841e1baecb3e27a6966b2"
+
+SRC_URI[md5sum] = "fdeed7ec32bbba011e90801208378c89"
+SRC_URI[sha256sum] = "67a60a376f0eb335ed88967c42b73983a58d66a2a72eb9009a42725f7453b142"
+
 inherit setuptools3 pypi
-require python-waitress.inc
-- 
2.17.1


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

* [oe][meta-python][PATCH 03/11] python-visitor: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 02/11] python-waitress: " Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 04/11] python-versiontools: " Derek Straka
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 meta-python/recipes-devtools/python/python-visitor.inc    | 6 ------
 .../recipes-devtools/python/python3-visitor_0.1.3.bb      | 8 +++++++-
 2 files changed, 7 insertions(+), 7 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-visitor.inc

diff --git a/meta-python/recipes-devtools/python/python-visitor.inc b/meta-python/recipes-devtools/python/python-visitor.inc
deleted file mode 100644
index 8c2288cf0a..0000000000
--- a/meta-python/recipes-devtools/python/python-visitor.inc
+++ /dev/null
@@ -1,6 +0,0 @@
-SUMMARY = "A tiny pythonic visitor implementation."
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
-
-SRC_URI[md5sum] = "94a024ed0ec1b02b4497c15267d319ca"
-SRC_URI[sha256sum] = "2c737903b2b6864ebc6167eef7cf3b997126f1aa94bdf590f90f1436d23e480a"
diff --git a/meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb b/meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
index b9bc51d4b9..ac3a90efb0 100644
--- a/meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
@@ -1,2 +1,8 @@
+SUMMARY = "A tiny pythonic visitor implementation."
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
+
+SRC_URI[md5sum] = "94a024ed0ec1b02b4497c15267d319ca"
+SRC_URI[sha256sum] = "2c737903b2b6864ebc6167eef7cf3b997126f1aa94bdf590f90f1436d23e480a"
+
 inherit pypi setuptools3
-require python-visitor.inc
-- 
2.17.1


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

* [oe][meta-python][PATCH 04/11] python-versiontools: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 02/11] python-waitress: " Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 03/11] python-visitor: " Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 05/11] python-urllib3: " Derek Straka
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 .../recipes-devtools/python/python-versiontools.inc  | 10 ----------
 .../python/python3-versiontools_1.9.1.bb             | 12 ++++++++++--
 2 files changed, 10 insertions(+), 12 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-versiontools.inc

diff --git a/meta-python/recipes-devtools/python/python-versiontools.inc b/meta-python/recipes-devtools/python/python-versiontools.inc
deleted file mode 100644
index b0e696f9c3..0000000000
--- a/meta-python/recipes-devtools/python/python-versiontools.inc
+++ /dev/null
@@ -1,10 +0,0 @@
-SUMMARY = "Smart replacement for plain tuple used in __version__"
-SECTION = "devel/python"
-HOMEPAGE = "https://launchpad.net/versiontools"
-LICENSE = "LGPLv3"
-LIC_FILES_CHKSUM = "file://setup.py;beginline=3;endline=20;md5=02193721a38fd8a05a4ddeb7df8e294d"
-
-inherit pypi
-
-SRC_URI[md5sum] = "602b7db8eea30dd29a1d451997adf251"
-SRC_URI[sha256sum] = "a969332887a18a9c98b0df0ea4d4ca75972f24ca94f06fb87d591377e83414f6"
diff --git a/meta-python/recipes-devtools/python/python3-versiontools_1.9.1.bb b/meta-python/recipes-devtools/python/python3-versiontools_1.9.1.bb
index e8d6b7ddaf..cf0fa30a32 100644
--- a/meta-python/recipes-devtools/python/python3-versiontools_1.9.1.bb
+++ b/meta-python/recipes-devtools/python/python3-versiontools_1.9.1.bb
@@ -1,2 +1,10 @@
-inherit setuptools3
-require python-versiontools.inc
+SUMMARY = "Smart replacement for plain tuple used in __version__"
+SECTION = "devel/python"
+HOMEPAGE = "https://launchpad.net/versiontools"
+LICENSE = "LGPLv3"
+LIC_FILES_CHKSUM = "file://setup.py;beginline=3;endline=20;md5=02193721a38fd8a05a4ddeb7df8e294d"
+
+SRC_URI[md5sum] = "602b7db8eea30dd29a1d451997adf251"
+SRC_URI[sha256sum] = "a969332887a18a9c98b0df0ea4d4ca75972f24ca94f06fb87d591377e83414f6"
+
+inherit pypi setuptools3
-- 
2.17.1


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

* [oe][meta-python][PATCH 05/11] python-urllib3: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
                   ` (2 preceding siblings ...)
  2020-04-04 13:28 ` [oe][meta-python][PATCH 04/11] python-versiontools: " Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 06/11] python-unidiff: " Derek Straka
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 .../python/python-urllib3.inc                 | 21 -----------------
 .../python/python3-urllib3_1.25.7.bb          | 23 ++++++++++++++++++-
 2 files changed, 22 insertions(+), 22 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-urllib3.inc

diff --git a/meta-python/recipes-devtools/python/python-urllib3.inc b/meta-python/recipes-devtools/python/python-urllib3.inc
deleted file mode 100644
index b7edc03f0c..0000000000
--- a/meta-python/recipes-devtools/python/python-urllib3.inc
+++ /dev/null
@@ -1,21 +0,0 @@
-SUMMARY = "Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more"
-HOMEPAGE = "https://github.com/shazow/urllib3"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e"
-
-SRC_URI[md5sum] = "85e1e3925f8c1095172bff343f3312ed"
-SRC_URI[sha256sum] = "f3c5fd51747d450d4dcf6f923c81f78f811aab8205fda64b0aba34a4e48b0745"
-
-RDEPENDS_${PN} += "\
-    ${PYTHON_PN}-certifi \
-    ${PYTHON_PN}-cryptography \
-    ${PYTHON_PN}-email \
-    ${PYTHON_PN}-idna \
-    ${PYTHON_PN}-netclient \
-    ${PYTHON_PN}-pyopenssl \
-    ${PYTHON_PN}-threading \
-"
-
-CVE_PRODUCT = "urllib3"
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-urllib3_1.25.7.bb b/meta-python/recipes-devtools/python/python3-urllib3_1.25.7.bb
index 19eb7025b2..34c15b6c24 100644
--- a/meta-python/recipes-devtools/python/python3-urllib3_1.25.7.bb
+++ b/meta-python/recipes-devtools/python/python3-urllib3_1.25.7.bb
@@ -1,2 +1,23 @@
+SUMMARY = "Python HTTP library with thread-safe connection pooling, file post support, sanity friendly, and more"
+HOMEPAGE = "https://github.com/shazow/urllib3"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=65715c2eb961313d71b297dd5a04f85e"
+
+SRC_URI[md5sum] = "85e1e3925f8c1095172bff343f3312ed"
+SRC_URI[sha256sum] = "f3c5fd51747d450d4dcf6f923c81f78f811aab8205fda64b0aba34a4e48b0745"
+
 inherit pypi setuptools3
-require python-urllib3.inc
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-certifi \
+    ${PYTHON_PN}-cryptography \
+    ${PYTHON_PN}-email \
+    ${PYTHON_PN}-idna \
+    ${PYTHON_PN}-netclient \
+    ${PYTHON_PN}-pyopenssl \
+    ${PYTHON_PN}-threading \
+"
+
+CVE_PRODUCT = "urllib3"
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [oe][meta-python][PATCH 06/11] python-unidiff: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
                   ` (3 preceding siblings ...)
  2020-04-04 13:28 ` [oe][meta-python][PATCH 05/11] python-urllib3: " Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 07/11] python-ujson: " Derek Straka
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 .../recipes-devtools/python/python-unidiff.inc   | 14 --------------
 .../python/python3-unidiff_0.5.5.bb              | 16 ++++++++++++++--
 2 files changed, 14 insertions(+), 16 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-unidiff.inc

diff --git a/meta-python/recipes-devtools/python/python-unidiff.inc b/meta-python/recipes-devtools/python/python-unidiff.inc
deleted file mode 100644
index fc1206201b..0000000000
--- a/meta-python/recipes-devtools/python/python-unidiff.inc
+++ /dev/null
@@ -1,14 +0,0 @@
-SUMMARY = "Unified diff parsing/metadata extraction library"
-HOMEPAGE = "http://github.com/matiasb/python-unidiff"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=4c434b08ef42fea235bb019b5e5a97b3"
-
-SRC_URI[md5sum] = "47f669d7273541fec45e4cc0fba8d8e9"
-SRC_URI[sha256sum] = "9c9ab5fb96b6988b4cd5def6b275492442c04a570900d33aa6373105780025bc"
-
-inherit pypi
-
-RDEPENDS_${PN} += " \
-    ${PYTHON_PN}-codecs \
-    ${PYTHON_PN}-io \
-"
diff --git a/meta-python/recipes-devtools/python/python3-unidiff_0.5.5.bb b/meta-python/recipes-devtools/python/python3-unidiff_0.5.5.bb
index 0ddc7e2f20..ded66f06f6 100644
--- a/meta-python/recipes-devtools/python/python3-unidiff_0.5.5.bb
+++ b/meta-python/recipes-devtools/python/python3-unidiff_0.5.5.bb
@@ -1,2 +1,14 @@
-require python-unidiff.inc
-inherit setuptools3
+SUMMARY = "Unified diff parsing/metadata extraction library"
+HOMEPAGE = "http://github.com/matiasb/python-unidiff"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4c434b08ef42fea235bb019b5e5a97b3"
+
+SRC_URI[md5sum] = "47f669d7273541fec45e4cc0fba8d8e9"
+SRC_URI[sha256sum] = "9c9ab5fb96b6988b4cd5def6b275492442c04a570900d33aa6373105780025bc"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += " \
+    ${PYTHON_PN}-codecs \
+    ${PYTHON_PN}-io \
+"
-- 
2.17.1


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

* [oe][meta-python][PATCH 07/11] python-ujson: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
                   ` (4 preceding siblings ...)
  2020-04-04 13:28 ` [oe][meta-python][PATCH 06/11] python-unidiff: " Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 08/11] python-tzlocal: " Derek Straka
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 .../recipes-devtools/python/python-ujson.inc  | 30 -----------------
 .../python/python3-ujson_1.35.bb              | 32 +++++++++++++++++--
 2 files changed, 30 insertions(+), 32 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-ujson.inc

diff --git a/meta-python/recipes-devtools/python/python-ujson.inc b/meta-python/recipes-devtools/python/python-ujson.inc
deleted file mode 100644
index 3196b02f3f..0000000000
--- a/meta-python/recipes-devtools/python/python-ujson.inc
+++ /dev/null
@@ -1,30 +0,0 @@
-SUMMARY  = "Ultra fast JSON encoder and decoder for Python"
-DESCRIPTION = "UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.5+ and 3."
-
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=88df8e78b9edfd744953862179f2d14e"
-
-SRC_URI[md5sum] = "42f77b0cce686dfa4da2e68480b1dd24"
-SRC_URI[sha256sum] = "f66073e5506e91d204ab0c614a148d5aa938bdbf104751be66f8ad7a222f5f86"
-
-inherit pypi ptest
-
-SRC_URI += " \
-	file://run-ptest \
-"
-
-RDEPENDS_${PN}-ptest += " \
-	${PYTHON_PN}-pytz \
-"
-
-do_install_ptest() {
-	install -d ${D}${PTEST_PATH}/tests
-	cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
-}
-
-RDEPENDS_${PN} += "\
-    ${PYTHON_PN}-datetime \
-    ${PYTHON_PN}-numbers \
-    "
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-ujson_1.35.bb b/meta-python/recipes-devtools/python/python3-ujson_1.35.bb
index ae4cc0a812..36abb7ea9d 100644
--- a/meta-python/recipes-devtools/python/python3-ujson_1.35.bb
+++ b/meta-python/recipes-devtools/python/python3-ujson_1.35.bb
@@ -1,2 +1,30 @@
-inherit setuptools3
-require python-ujson.inc
+SUMMARY  = "Ultra fast JSON encoder and decoder for Python"
+DESCRIPTION = "UltraJSON is an ultra fast JSON encoder and decoder written in pure C with bindings for Python 2.5+ and 3."
+
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=88df8e78b9edfd744953862179f2d14e"
+
+SRC_URI[md5sum] = "42f77b0cce686dfa4da2e68480b1dd24"
+SRC_URI[sha256sum] = "f66073e5506e91d204ab0c614a148d5aa938bdbf104751be66f8ad7a222f5f86"
+
+inherit pypi ptest setuptools3
+
+SRC_URI += " \
+    file://run-ptest \
+"
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-datetime \
+    ${PYTHON_PN}-numbers \
+"
+
+RDEPENDS_${PN}-ptest += " \
+    ${PYTHON_PN}-pytz \
+"
+
+do_install_ptest() {
+    install -d ${D}${PTEST_PATH}/tests
+    cp -rf ${S}/tests/* ${D}${PTEST_PATH}/tests/
+}
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [oe][meta-python][PATCH 08/11] python-tzlocal: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
                   ` (5 preceding siblings ...)
  2020-04-04 13:28 ` [oe][meta-python][PATCH 07/11] python-ujson: " Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 09/11] python-typing: remove unused inc file Derek Straka
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 meta-python/recipes-devtools/python/python-tzlocal.inc   | 8 --------
 .../recipes-devtools/python/python3-tzlocal_2.0.0.bb     | 9 ++++++++-
 2 files changed, 8 insertions(+), 9 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-tzlocal.inc

diff --git a/meta-python/recipes-devtools/python/python-tzlocal.inc b/meta-python/recipes-devtools/python/python-tzlocal.inc
deleted file mode 100644
index 3e423d2278..0000000000
--- a/meta-python/recipes-devtools/python/python-tzlocal.inc
+++ /dev/null
@@ -1,8 +0,0 @@
-SUMMARY = "Library to return tzinfo with the local timezone information"
-HOMEPAGE = "https://pypi.org/project/tzlocal/"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=57e0bd61643d81d05683cdce65b11d10"
-
-SRC_URI[md5sum] = "b14262cecca16ec9220ca8dff2ca7c5d"
-SRC_URI[sha256sum] = "949b9dd5ba4be17190a80c0268167d7e6c92c62b30026cf9764caf3e308e5590"
-
diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_2.0.0.bb b/meta-python/recipes-devtools/python/python3-tzlocal_2.0.0.bb
index 813934c812..3573b29f03 100644
--- a/meta-python/recipes-devtools/python/python3-tzlocal_2.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-tzlocal_2.0.0.bb
@@ -1,2 +1,9 @@
+SUMMARY = "Library to return tzinfo with the local timezone information"
+HOMEPAGE = "https://pypi.org/project/tzlocal/"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=57e0bd61643d81d05683cdce65b11d10"
+
+SRC_URI[md5sum] = "b14262cecca16ec9220ca8dff2ca7c5d"
+SRC_URI[sha256sum] = "949b9dd5ba4be17190a80c0268167d7e6c92c62b30026cf9764caf3e308e5590"
+
 inherit pypi setuptools3
-require python-tzlocal.inc
-- 
2.17.1


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

* [oe][meta-python][PATCH 09/11] python-typing: remove unused inc file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
                   ` (6 preceding siblings ...)
  2020-04-04 13:28 ` [oe][meta-python][PATCH 08/11] python-tzlocal: " Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 10/11] python-twofish: consolidate inc and bb files into a single bb file Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 11/11] python-twitter: " Derek Straka
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 meta-python/recipes-devtools/python/python-typing.inc | 9 ---------
 1 file changed, 9 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-typing.inc

diff --git a/meta-python/recipes-devtools/python/python-typing.inc b/meta-python/recipes-devtools/python/python-typing.inc
deleted file mode 100644
index ab8ee81ec5..0000000000
--- a/meta-python/recipes-devtools/python/python-typing.inc
+++ /dev/null
@@ -1,9 +0,0 @@
-SUMMARY = "Simple Python module defined by PEP 484."
-HOMEPAGE = "https://github.com/python/typing"
-LICENSE = "PSF"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=64fc2b30b67d0a8423c250e0386ed72f"
-
-SRC_URI[md5sum] = "0a1ebd4af65b4769e33459004eb20345"
-SRC_URI[sha256sum] = "91dfe6f3f706ee8cc32d38edbbf304e9b7583fb37108fef38229617f8b3eba23"
-
-BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [oe][meta-python][PATCH 10/11] python-twofish: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
                   ` (7 preceding siblings ...)
  2020-04-04 13:28 ` [oe][meta-python][PATCH 09/11] python-typing: remove unused inc file Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  2020-04-04 13:28 ` [oe][meta-python][PATCH 11/11] python-twitter: " Derek Straka
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 .../recipes-devtools/python/python-twofish.inc    | 13 -------------
 .../python/python3-twofish_0.3.0.bb               | 15 +++++++++++++--
 2 files changed, 13 insertions(+), 15 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-twofish.inc

diff --git a/meta-python/recipes-devtools/python/python-twofish.inc b/meta-python/recipes-devtools/python/python-twofish.inc
deleted file mode 100644
index 79ab285e55..0000000000
--- a/meta-python/recipes-devtools/python/python-twofish.inc
+++ /dev/null
@@ -1,13 +0,0 @@
-SUMMARY = "Bindings for the Twofish implementation by Niels Ferguson"
-DESCRIPTION = "Bindings for the Twofish implementation by Niels Ferguson\
- libtwofish-dev."
-HOMEPAGE = "http://github.com/keybase/python-twofish"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=33a63abf6d7567b1689d8ce69f00e43b"
-
-SRC_URI[md5sum] = "d7d22f16dc4ffa0e3ae2200654033abe"
-SRC_URI[sha256sum] = "b09d8bb50d33b23ff34cafb1f9209f858f752935c6a5c901efb92a41acb830fa"
-
-inherit pypi
-
-BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb b/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
index 7b8eb2ef0f..94fb71090e 100644
--- a/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
@@ -1,4 +1,15 @@
-require python-twofish.inc
-inherit setuptools3
+SUMMARY = "Bindings for the Twofish implementation by Niels Ferguson"
+DESCRIPTION = "Bindings for the Twofish implementation by Niels Ferguson\
+ libtwofish-dev."
+HOMEPAGE = "http://github.com/keybase/python-twofish"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=33a63abf6d7567b1689d8ce69f00e43b"
 
 SRC_URI += "file://0001-Fix-missing-return-statements-in-module-stubs.patch"
+
+SRC_URI[md5sum] = "d7d22f16dc4ffa0e3ae2200654033abe"
+SRC_URI[sha256sum] = "b09d8bb50d33b23ff34cafb1f9209f858f752935c6a5c901efb92a41acb830fa"
+
+inherit pypi setuptools3
+
+BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [oe][meta-python][PATCH 11/11] python-twitter: consolidate inc and bb files into a single bb file
  2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
                   ` (8 preceding siblings ...)
  2020-04-04 13:28 ` [oe][meta-python][PATCH 10/11] python-twofish: consolidate inc and bb files into a single bb file Derek Straka
@ 2020-04-04 13:28 ` Derek Straka
  9 siblings, 0 replies; 11+ messages in thread
From: Derek Straka @ 2020-04-04 13:28 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Derek Straka

Signed-off-by: Derek Straka <derek@asterius.io>
---
 .../recipes-devtools/python/python-twitter.inc | 17 -----------------
 .../python/python3-twitter_3.8.0.bb            | 18 +++++++++++++++++-
 2 files changed, 17 insertions(+), 18 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-twitter.inc

diff --git a/meta-python/recipes-devtools/python/python-twitter.inc b/meta-python/recipes-devtools/python/python-twitter.inc
deleted file mode 100644
index ac3f65279a..0000000000
--- a/meta-python/recipes-devtools/python/python-twitter.inc
+++ /dev/null
@@ -1,17 +0,0 @@
-SUMMARY = "Twitter for Python"
-DESCRIPTION = "Python module to support twitter API"
-
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=8f702b489acb6863cec8b261a55931d8"
-
-SRC_URI[md5sum] = "8aeff278b7cefcd384c65929bc921e2c"
-SRC_URI[sha256sum] = "8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b"
-
-PYPI_PACKAGE = "tweepy"
-
-RDEPENDS_${PN} += "\
-        ${PYTHON_PN}-pip \
-        ${PYTHON_PN}-pysocks \
-        ${PYTHON_PN}-requests \
-        ${PYTHON_PN}-six \
-        "
diff --git a/meta-python/recipes-devtools/python/python3-twitter_3.8.0.bb b/meta-python/recipes-devtools/python/python3-twitter_3.8.0.bb
index c2e4d2ebd3..78f66a4435 100644
--- a/meta-python/recipes-devtools/python/python3-twitter_3.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-twitter_3.8.0.bb
@@ -1,3 +1,19 @@
-require python-twitter.inc
+SUMMARY = "Twitter for Python"
+DESCRIPTION = "Python module to support twitter API"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=8f702b489acb6863cec8b261a55931d8"
+
+SRC_URI[md5sum] = "8aeff278b7cefcd384c65929bc921e2c"
+SRC_URI[sha256sum] = "8abd828ba51a85a2b5bb7373715d6d3bb32d18ac624e3a4db02e4ef8ab48316b"
+
+PYPI_PACKAGE = "tweepy"
+
 inherit pypi setuptools3
 
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-pip \
+    ${PYTHON_PN}-pysocks \
+    ${PYTHON_PN}-requests \
+    ${PYTHON_PN}-six \
+"
-- 
2.17.1


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

end of thread, other threads:[~2020-04-04 13:29 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-04 13:28 [oe][meta-python][PATCH 01/11] python-wcwidth: consolidate inc and bb files into a single bb file Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 02/11] python-waitress: " Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 03/11] python-visitor: " Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 04/11] python-versiontools: " Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 05/11] python-urllib3: " Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 06/11] python-unidiff: " Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 07/11] python-ujson: " Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 08/11] python-tzlocal: " Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 09/11] python-typing: remove unused inc file Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 10/11] python-twofish: consolidate inc and bb files into a single bb file Derek Straka
2020-04-04 13:28 ` [oe][meta-python][PATCH 11/11] python-twitter: " Derek Straka

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.