* [meta-python][PATCH 1/6] python-javaobj-py3: add initial recipe for version 0.2.3
@ 2018-01-15 9:17 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 2/6] python-pyasn1-modules: add initial recipe for version 0.2.1 André Draszik
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: André Draszik @ 2018-01-15 9:17 UTC (permalink / raw)
To: openembedded-devel
From: André Draszik <andre.draszik@jci.com>
Signed-off-by: André Draszik <andre.draszik@jci.com>
---
.../recipes-devtools/python/python-javaobj-py3.inc | 15 +++++++++++++++
.../recipes-devtools/python/python-javaobj-py3_0.2.3.bb | 2 ++
.../recipes-devtools/python/python3-javaobj-py3_0.2.3.bb | 2 ++
3 files changed, 19 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-javaobj-py3.inc
create mode 100644 meta-python/recipes-devtools/python/python-javaobj-py3_0.2.3.bb
create mode 100644 meta-python/recipes-devtools/python/python3-javaobj-py3_0.2.3.bb
diff --git a/meta-python/recipes-devtools/python/python-javaobj-py3.inc b/meta-python/recipes-devtools/python/python-javaobj-py3.inc
new file mode 100644
index 000000000..8fa3e15f3
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-javaobj-py3.inc
@@ -0,0 +1,15 @@
+SUMMARY = "Module for serializing and de-serializing Java objects."
+DESCRIPTION = "python-javaobj is a python library that provides functions\
+ for reading and writing (writing is WIP currently) Java objects serialized\
+ or will be deserialized by ObjectOutputStream. This form of object\
+ representation is a standard data interchange format in Java world."
+HOMEPAGE = "https://github.com/tcalmant/python-javaobj"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://javaobj.py;beginline=21;endline=33;md5=8b504419ce78f8133b21b4d4a89ef7e9"
+
+SRC_URI[md5sum] = "1e3f02b5c4c0853d653b7b8590d9ed2b"
+SRC_URI[sha256sum] = "1dea6be0848c58013d92d8249ef6bc8688bbff7f13c78e02dbf08a449b4c0885"
+
+inherit pypi
+
+BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-javaobj-py3_0.2.3.bb b/meta-python/recipes-devtools/python/python-javaobj-py3_0.2.3.bb
new file mode 100644
index 000000000..ed34740e8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-javaobj-py3_0.2.3.bb
@@ -0,0 +1,2 @@
+require python-javaobj-py3.inc
+inherit setuptools
diff --git a/meta-python/recipes-devtools/python/python3-javaobj-py3_0.2.3.bb b/meta-python/recipes-devtools/python/python3-javaobj-py3_0.2.3.bb
new file mode 100644
index 000000000..0ec23ba99
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-javaobj-py3_0.2.3.bb
@@ -0,0 +1,2 @@
+require python-javaobj-py3.inc
+inherit setuptools3
--
2.15.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-python][PATCH 2/6] python-pyasn1-modules: add initial recipe for version 0.2.1
2018-01-15 9:17 [meta-python][PATCH 1/6] python-javaobj-py3: add initial recipe for version 0.2.3 André Draszik
@ 2018-01-15 9:17 ` André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 3/6] python-pycryptodome: add initial recipe for version 3.4.7 André Draszik
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: André Draszik @ 2018-01-15 9:17 UTC (permalink / raw)
To: openembedded-devel
From: André Draszik <andre.draszik@jci.com>
Signed-off-by: André Draszik <andre.draszik@jci.com>
---
.../recipes-devtools/python/python-pyasn1-modules.inc | 16 ++++++++++++++++
.../python/python-pyasn1-modules_0.2.1.bb | 2 ++
.../python/python3-pyasn1-modules_0.2.1.bb | 2 ++
3 files changed, 20 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-pyasn1-modules.inc
create mode 100644 meta-python/recipes-devtools/python/python-pyasn1-modules_0.2.1.bb
create mode 100644 meta-python/recipes-devtools/python/python3-pyasn1-modules_0.2.1.bb
diff --git a/meta-python/recipes-devtools/python/python-pyasn1-modules.inc b/meta-python/recipes-devtools/python/python-pyasn1-modules.inc
new file mode 100644
index 000000000..9fa54cfe0
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pyasn1-modules.inc
@@ -0,0 +1,16 @@
+SUMMARY = "A collection of ASN.1-based protocols modules."
+DESCRIPTION = "A collection of ASN.1 modules expressed in form of pyasn1\
+ classes. Includes protocols PDUs definition (SNMP, LDAP etc.) and various\
+ data structures (X.509, PKCS etc.)."
+HOMEPAGE = "https://github.com/etingof/pyasn1-modules"
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=280606d9c18f200e03e0c247ac61475a"
+
+SRC_URI[md5sum] = "ff938698590f314ff9b3d5c48737d899"
+SRC_URI[sha256sum] = "af00ea8f2022b6287dc375b2c70f31ab5af83989fc6fe9eacd4976ce26cd7ccc"
+
+inherit pypi
+
+RDEPENDS_${PN} = "${PYTHON_PN}-pyasn1"
+
+BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-pyasn1-modules_0.2.1.bb b/meta-python/recipes-devtools/python/python-pyasn1-modules_0.2.1.bb
new file mode 100644
index 000000000..eb7888408
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pyasn1-modules_0.2.1.bb
@@ -0,0 +1,2 @@
+require python-pyasn1-modules.inc
+inherit setuptools
diff --git a/meta-python/recipes-devtools/python/python3-pyasn1-modules_0.2.1.bb b/meta-python/recipes-devtools/python/python3-pyasn1-modules_0.2.1.bb
new file mode 100644
index 000000000..3b1186f06
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pyasn1-modules_0.2.1.bb
@@ -0,0 +1,2 @@
+require python-pyasn1-modules.inc
+inherit setuptools3
--
2.15.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-python][PATCH 3/6] python-pycryptodome: add initial recipe for version 3.4.7
2018-01-15 9:17 [meta-python][PATCH 1/6] python-javaobj-py3: add initial recipe for version 0.2.3 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 2/6] python-pyasn1-modules: add initial recipe for version 0.2.1 André Draszik
@ 2018-01-15 9:17 ` André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 4/6] python-twofish: add initial recipe for version 0.3.0 André Draszik
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: André Draszik @ 2018-01-15 9:17 UTC (permalink / raw)
To: openembedded-devel
From: André Draszik <andre.draszik@jci.com>
Signed-off-by: André Draszik <andre.draszik@jci.com>
---
meta-python/recipes-devtools/python/python-pycryptodome.inc | 13 +++++++++++++
.../recipes-devtools/python/python-pycryptodome_3.4.7.bb | 2 ++
.../recipes-devtools/python/python3-pycryptodome_3.4.7.bb | 2 ++
3 files changed, 17 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-pycryptodome.inc
create mode 100644 meta-python/recipes-devtools/python/python-pycryptodome_3.4.7.bb
create mode 100644 meta-python/recipes-devtools/python/python3-pycryptodome_3.4.7.bb
diff --git a/meta-python/recipes-devtools/python/python-pycryptodome.inc b/meta-python/recipes-devtools/python/python-pycryptodome.inc
new file mode 100644
index 000000000..ecfcc9d80
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pycryptodome.inc
@@ -0,0 +1,13 @@
+SUMMARY = "Cryptographic library for Python"
+DESCRIPTION = "PyCryptodome is a self-contained Python package of low-level\
+ cryptographic primitives."
+HOMEPAGE = "http://www.pycryptodome.org"
+LICENSE = "PD & BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=690cd8c71f0367a558f24fe53d943a2e"
+
+SRC_URI[md5sum] = "8744863c7d5980ae3f81c2e288701a61"
+SRC_URI[sha256sum] = "18d8dfe31bf0cb53d58694903e526be68f3cf48e6e3c6dfbbc1e7042b1693af7"
+
+inherit pypi
+
+BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-pycryptodome_3.4.7.bb b/meta-python/recipes-devtools/python/python-pycryptodome_3.4.7.bb
new file mode 100644
index 000000000..c7701eb9f
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pycryptodome_3.4.7.bb
@@ -0,0 +1,2 @@
+require python-pycryptodome.inc
+inherit setuptools
diff --git a/meta-python/recipes-devtools/python/python3-pycryptodome_3.4.7.bb b/meta-python/recipes-devtools/python/python3-pycryptodome_3.4.7.bb
new file mode 100644
index 000000000..0c062dddf
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pycryptodome_3.4.7.bb
@@ -0,0 +1,2 @@
+require python-pycryptodome.inc
+inherit setuptools3
--
2.15.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-python][PATCH 4/6] python-twofish: add initial recipe for version 0.3.0
2018-01-15 9:17 [meta-python][PATCH 1/6] python-javaobj-py3: add initial recipe for version 0.2.3 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 2/6] python-pyasn1-modules: add initial recipe for version 0.2.1 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 3/6] python-pycryptodome: add initial recipe for version 3.4.7 André Draszik
@ 2018-01-15 9:17 ` André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 5/6] python-pyjwt: add initial recipe for version 1.5.3 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 6/6] python-pyjks: add initial recipe for version 17.1.1 André Draszik
4 siblings, 0 replies; 6+ messages in thread
From: André Draszik @ 2018-01-15 9:17 UTC (permalink / raw)
To: openembedded-devel
From: André Draszik <andre.draszik@jci.com>
Signed-off-by: André Draszik <andre.draszik@jci.com>
---
meta-python/recipes-devtools/python/python-twofish.inc | 13 +++++++++++++
meta-python/recipes-devtools/python/python-twofish_0.3.0.bb | 2 ++
.../recipes-devtools/python/python3-twofish_0.3.0.bb | 2 ++
3 files changed, 17 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-twofish.inc
create mode 100644 meta-python/recipes-devtools/python/python-twofish_0.3.0.bb
create mode 100644 meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
diff --git a/meta-python/recipes-devtools/python/python-twofish.inc b/meta-python/recipes-devtools/python/python-twofish.inc
new file mode 100644
index 000000000..79ab285e5
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-twofish.inc
@@ -0,0 +1,13 @@
+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/python-twofish_0.3.0.bb b/meta-python/recipes-devtools/python/python-twofish_0.3.0.bb
new file mode 100644
index 000000000..85b021594
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-twofish_0.3.0.bb
@@ -0,0 +1,2 @@
+require python-twofish.inc
+inherit setuptools
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
new file mode 100644
index 000000000..e593f6f21
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-twofish_0.3.0.bb
@@ -0,0 +1,2 @@
+require python-twofish.inc
+inherit setuptools3
--
2.15.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-python][PATCH 5/6] python-pyjwt: add initial recipe for version 1.5.3
2018-01-15 9:17 [meta-python][PATCH 1/6] python-javaobj-py3: add initial recipe for version 0.2.3 André Draszik
` (2 preceding siblings ...)
2018-01-15 9:17 ` [meta-python][PATCH 4/6] python-twofish: add initial recipe for version 0.3.0 André Draszik
@ 2018-01-15 9:17 ` André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 6/6] python-pyjks: add initial recipe for version 17.1.1 André Draszik
4 siblings, 0 replies; 6+ messages in thread
From: André Draszik @ 2018-01-15 9:17 UTC (permalink / raw)
To: openembedded-devel
From: André Draszik <andre.draszik@jci.com>
Signed-off-by: André Draszik <andre.draszik@jci.com>
---
meta-python/recipes-devtools/python/python-pyjwt.inc | 17 +++++++++++++++++
.../recipes-devtools/python/python-pyjwt_1.5.3.bb | 2 ++
.../recipes-devtools/python/python3-pyjwt_1.5.3.bb | 2 ++
3 files changed, 21 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-pyjwt.inc
create mode 100644 meta-python/recipes-devtools/python/python-pyjwt_1.5.3.bb
create mode 100644 meta-python/recipes-devtools/python/python3-pyjwt_1.5.3.bb
diff --git a/meta-python/recipes-devtools/python/python-pyjwt.inc b/meta-python/recipes-devtools/python/python-pyjwt.inc
new file mode 100644
index 000000000..dda4b942d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pyjwt.inc
@@ -0,0 +1,17 @@
+SUMMARY = "JSON Web Token implementation in Python"
+SUMMARY = "JSON Web Token implementation in Python"
+DESCRIPTION = "A Python implementation of JSON Web Token draft 32.\
+ Original implementation was written by https://github.com/progrium"
+HOMEPAGE = "http://github.com/jpadilla/pyjwt"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=68626705a7b513ca8d5f44a3e200ed0c"
+
+SRC_URI[md5sum] = "739494379f582ca98c89fb7ac229915b"
+SRC_URI[sha256sum] = "500be75b17a63f70072416843dc80c8821109030be824f4d14758f114978bae7"
+
+PYPI_PACKAGE = "PyJWT"
+inherit pypi
+
+RDEPENDS_${PN} = "${PYTHON_PN}-cryptography"
+
+BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-pyjwt_1.5.3.bb b/meta-python/recipes-devtools/python/python-pyjwt_1.5.3.bb
new file mode 100644
index 000000000..f0a77b674
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pyjwt_1.5.3.bb
@@ -0,0 +1,2 @@
+require python-pyjwt.inc
+inherit setuptools
diff --git a/meta-python/recipes-devtools/python/python3-pyjwt_1.5.3.bb b/meta-python/recipes-devtools/python/python3-pyjwt_1.5.3.bb
new file mode 100644
index 000000000..dc16d2282
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pyjwt_1.5.3.bb
@@ -0,0 +1,2 @@
+require python-pyjwt.inc
+inherit setuptools3
--
2.15.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-python][PATCH 6/6] python-pyjks: add initial recipe for version 17.1.1
2018-01-15 9:17 [meta-python][PATCH 1/6] python-javaobj-py3: add initial recipe for version 0.2.3 André Draszik
` (3 preceding siblings ...)
2018-01-15 9:17 ` [meta-python][PATCH 5/6] python-pyjwt: add initial recipe for version 1.5.3 André Draszik
@ 2018-01-15 9:17 ` André Draszik
4 siblings, 0 replies; 6+ messages in thread
From: André Draszik @ 2018-01-15 9:17 UTC (permalink / raw)
To: openembedded-devel
From: André Draszik <andre.draszik@jci.com>
Signed-off-by: André Draszik <andre.draszik@jci.com>
---
.../recipes-devtools/python/python-pyjks.inc | 22 ++++++++++++++++++++++
.../recipes-devtools/python/python-pyjks_17.1.1.bb | 2 ++
.../python/python3-pyjks_17.1.1.bb | 2 ++
3 files changed, 26 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-pyjks.inc
create mode 100644 meta-python/recipes-devtools/python/python-pyjks_17.1.1.bb
create mode 100644 meta-python/recipes-devtools/python/python3-pyjks_17.1.1.bb
diff --git a/meta-python/recipes-devtools/python/python-pyjks.inc b/meta-python/recipes-devtools/python/python-pyjks.inc
new file mode 100644
index 000000000..d866c5650
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pyjks.inc
@@ -0,0 +1,22 @@
+SUMMARY = "Pure-Python Java Keystore (JKS) library"
+DESCRIPTION = "PyJKS enables Python projects to load and manipulate\
+ Java KeyStore (JKS) data without a JVM dependency. PyJKS supports JKS,\
+ JCEKS, BKS and UBER (BouncyCastle) keystores."
+HOMEPAGE = "http://github.com/kurtbrose/pyjks"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=9694d6cc724caf7f7386be88a4a81958"
+
+SRC_URI[md5sum] = "d53501e7c80d465969742bc6bee91d49"
+SRC_URI[sha256sum] = "709c44a303dd6b2464078ebeb677417e717818d4b3dc3844a462bef9d215dcc8"
+
+inherit pypi
+
+RDEPENDS_${PN} = "\
+ ${PYTHON_PN}-javaobj-py3 \
+ ${PYTHON_PN}-pyasn1 \
+ ${PYTHON_PN}-pyasn1-modules \
+ ${PYTHON_PN}-pycryptodome \
+ ${PYTHON_PN}-twofish\
+"
+
+BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python-pyjks_17.1.1.bb b/meta-python/recipes-devtools/python/python-pyjks_17.1.1.bb
new file mode 100644
index 000000000..ce99f2835
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pyjks_17.1.1.bb
@@ -0,0 +1,2 @@
+require python-pyjks.inc
+inherit setuptools
diff --git a/meta-python/recipes-devtools/python/python3-pyjks_17.1.1.bb b/meta-python/recipes-devtools/python/python3-pyjks_17.1.1.bb
new file mode 100644
index 000000000..8982fcebc
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pyjks_17.1.1.bb
@@ -0,0 +1,2 @@
+require python-pyjks.inc
+inherit setuptools3
--
2.15.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-01-15 9:17 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-15 9:17 [meta-python][PATCH 1/6] python-javaobj-py3: add initial recipe for version 0.2.3 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 2/6] python-pyasn1-modules: add initial recipe for version 0.2.1 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 3/6] python-pycryptodome: add initial recipe for version 3.4.7 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 4/6] python-twofish: add initial recipe for version 0.3.0 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 5/6] python-pyjwt: add initial recipe for version 1.5.3 André Draszik
2018-01-15 9:17 ` [meta-python][PATCH 6/6] python-pyjks: add initial recipe for version 17.1.1 André Draszik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox