[oe] [meta-networking][PATCH] net-snmp: check that executable is used before testing for existance

2017-09-24 Thread Bill Randle
The recipe for net-snmp has snmpd and snmptrapd in seperate packages, so one or 
the other
or both could be installed. In a common case where only snmpd is installed, the 
startup
script will fail to run because the snmptrapd executable does not exist.

This patch simply qualifies the test by first checking to see if the executable 
is to
be used.

-Bill

Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-networking/recipes-protocols/net-snmp/files/init | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta-networking/recipes-protocols/net-snmp/files/init 
b/meta-networking/recipes-protocols/net-snmp/files/init
index 2b8fe18..4799546 100755
--- a/meta-networking/recipes-protocols/net-snmp/files/init
+++ b/meta-networking/recipes-protocols/net-snmp/files/init
@@ -3,9 +3,6 @@
 
 . /etc/init.d/functions
 
-test -x /usr/sbin/snmpd || exit 0
-test -x /usr/sbin/snmptrapd || exit 0
-
 # Defaults
 export MIBDIRS=/usr/share/snmp/mibs
 SNMPDRUN=yes
@@ -18,6 +15,9 @@ SPIDFILE=/var/run/snmptrapd.pid
 # Reads config file if exists (will override defaults above)
 [ -r /etc/default/snmpd ] && . /etc/default/snmpd
 
+[ "$SNMPDRUN" = "yes" ] && { test -x /usr/sbin/snmpd || exit 0; }
+[ "$TRAPDRUN" = "yes" ] && { test -x /usr/sbin/snmptrapd || exit 0; }
+
 case "$1" in
   start)
 echo -n "Starting network management services:"
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH] python-can: update to version 2.0.0b1

2017-09-25 Thread Bill Randle
While 1.5.2 is the latest release on the master branch of python-can, it is over
a year old and many improvements and bugfixes have ben made in the develop 
branch
that make it worth using over master.

Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-can.inc | 4 ++--
 meta-python/recipes-devtools/python/python-can_1.5.2.bb| 4 
 meta-python/recipes-devtools/python/python-can_2.0.0b1.bb  | 4 
 meta-python/recipes-devtools/python/python3-can_1.5.2.bb   | 4 
 meta-python/recipes-devtools/python/python3-can_2.0.0b1.bb | 4 
 5 files changed, 10 insertions(+), 10 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python-can_1.5.2.bb
 create mode 100644 meta-python/recipes-devtools/python/python-can_2.0.0b1.bb
 delete mode 100644 meta-python/recipes-devtools/python/python3-can_1.5.2.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-can_2.0.0b1.bb

diff --git a/meta-python/recipes-devtools/python/python-can.inc 
b/meta-python/recipes-devtools/python/python-can.inc
index 1878f31..1dbc809 100644
--- a/meta-python/recipes-devtools/python/python-can.inc
+++ b/meta-python/recipes-devtools/python/python-can.inc
@@ -3,7 +3,7 @@ SECTION = "devel/python"
 LICENSE = "LGPLv3"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=38138baa100d7259934590850bc0406e"
 
-SRC_URI[md5sum] = "f653aecf8b9034bbba32cc04ca6a7b6d"
-SRC_URI[sha256sum] = 
"edabb426e6cd11c2dc7a98980340135aa0eb02143b0d51bf14e3e6178c131cc3"
+SRC_URI[md5sum] = "b2a164887c1c6a2a2490b5afb36e36db"
+SRC_URI[sha256sum] = 
"b961b6ce75a7f08b586f4d2cae8cdc409881731b851fc405fa21cb16bad00d87"
 
 PYPI_PACKAGE="python-can"
diff --git a/meta-python/recipes-devtools/python/python-can_1.5.2.bb 
b/meta-python/recipes-devtools/python/python-can_1.5.2.bb
deleted file mode 100644
index ec81a9e..000
--- a/meta-python/recipes-devtools/python/python-can_1.5.2.bb
+++ /dev/null
@@ -1,4 +0,0 @@
-require python-can.inc
-inherit pypi setuptools
-
-RDEPENDS_${PN} += "python-sqlite3"
diff --git a/meta-python/recipes-devtools/python/python-can_2.0.0b1.bb 
b/meta-python/recipes-devtools/python/python-can_2.0.0b1.bb
new file mode 100644
index 000..ec81a9e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-can_2.0.0b1.bb
@@ -0,0 +1,4 @@
+require python-can.inc
+inherit pypi setuptools
+
+RDEPENDS_${PN} += "python-sqlite3"
diff --git a/meta-python/recipes-devtools/python/python3-can_1.5.2.bb 
b/meta-python/recipes-devtools/python/python3-can_1.5.2.bb
deleted file mode 100644
index a1d45b8..000
--- a/meta-python/recipes-devtools/python/python3-can_1.5.2.bb
+++ /dev/null
@@ -1,4 +0,0 @@
-require python-can.inc
-inherit pypi setuptools3
-
-RDEPENDS_${PN} += "python3-sqlite3"
diff --git a/meta-python/recipes-devtools/python/python3-can_2.0.0b1.bb 
b/meta-python/recipes-devtools/python/python3-can_2.0.0b1.bb
new file mode 100644
index 000..a1d45b8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-can_2.0.0b1.bb
@@ -0,0 +1,4 @@
+require python-can.inc
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "python3-sqlite3"
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 09/12] python-visitor: move core of recipe to a .inc file

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-visitor.inc  | 6 ++
 meta-python/recipes-devtools/python/python-visitor_0.1.3.bb | 8 +---
 2 files changed, 7 insertions(+), 7 deletions(-)
 create 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
new file mode 100644
index 000..8c2288c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-visitor.inc
@@ -0,0 +1,6 @@
+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/python-visitor_0.1.3.bb 
b/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb
index 1236506..eee25a5 100644
--- a/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb
+++ b/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb
@@ -1,8 +1,2 @@
-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 setuptools
+require python-visitor.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 08/12] python3-flask-wtf: new recipe

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb

diff --git a/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb 
b/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
new file mode 100644
index 000..52362a8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-wtf.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 04/12] python3-flask-bootstrap: new recipe

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
new file mode 100644
index 000..877c754
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-bootstrap.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 07/12] python-flask-wtf: move core of recipe to a .inc file

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-wtf.inc| 15 +++
 .../recipes-devtools/python/python-flask-wtf_0.12.bb| 17 +
 2 files changed, 16 insertions(+), 16 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-wtf.inc 
b/meta-python/recipes-devtools/python/python-flask-wtf.inc
new file mode 100644
index 000..e42f7c1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-wtf.inc
@@ -0,0 +1,15 @@
+DESCRIPTION = "Simple integration of Flask and WTForms."
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=507e8635f25a06dc4f041a3a1b3359b3"
+
+SRC_URI[md5sum] = "c53a74e8ba481bf53405fd5efdf0339e"
+SRC_URI[sha256sum] = 
"bd99316c97ed1d1cb90b8f0c242c86420a891a6a2058f20717e424bf5b0bb80e"
+
+SRC_URI += " file://import-simplejson-as-json.patch"
+
+PYPI_PACKAGE = "Flask-WTF"
+
+RDEPENDS_${PN} = "\
+${PYTHON_PN}-wtforms \
+${PYTHON_PN}-simplejson \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb 
b/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb
index 79afaf6..dbf091b 100644
--- a/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb
+++ b/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb
@@ -1,17 +1,2 @@
-DESCRIPTION = "Simple integration of Flask and WTForms."
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=507e8635f25a06dc4f041a3a1b3359b3"
-
-SRC_URI[md5sum] = "c53a74e8ba481bf53405fd5efdf0339e"
-SRC_URI[sha256sum] = 
"bd99316c97ed1d1cb90b8f0c242c86420a891a6a2058f20717e424bf5b0bb80e"
-
-SRC_URI += " file://import-simplejson-as-json.patch"
-
-PYPI_PACKAGE = "Flask-WTF"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} = "\
-python-wtforms \
-python-simplejson \
-"
+require python-flask-wtf.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 06/12] python3-flask-sqlalchemy: new recipe

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb 
b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
new file mode 100644
index 000..07f45bc
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-sqlalchemy.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 01/12] python-dominate: move core of recipe to a .inc file

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-dominate.inc | 11 +++
 .../recipes-devtools/python/python-dominate_2.3.1.bb| 13 +
 2 files changed, 12 insertions(+), 12 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc

diff --git a/meta-python/recipes-devtools/python/python-dominate.inc 
b/meta-python/recipes-devtools/python/python-dominate.inc
new file mode 100644
index 000..ecf74a0
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-dominate.inc
@@ -0,0 +1,11 @@
+SUMMARY = "Dominate is a Python library for creating and manipulating HTML 
documents using an elegant DOM API."
+LICENSE = "LGPLv3"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
+
+SRC_URI[md5sum] = "45bd97e6f7888aac24ae86013c57638e"
+SRC_URI[sha256sum] = 
"4b8ce6f33633c9dd9175b228d21c00c801b6bd0327747cd5e17fc2da934c3a69"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-numbers \
+${PYTHON_PN}-threading \
+"
diff --git a/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb 
b/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb
index 13ebf92..c19445e 100644
--- a/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb
+++ b/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb
@@ -1,13 +1,2 @@
-SUMMARY = "Dominate is a Python library for creating and manipulating HTML 
documents using an elegant DOM API."
-LICENSE = "LGPLv3"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
-
-SRC_URI[md5sum] = "45bd97e6f7888aac24ae86013c57638e"
-SRC_URI[sha256sum] = 
"4b8ce6f33633c9dd9175b228d21c00c801b6bd0327747cd5e17fc2da934c3a69"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} += "\
-${PYTHON_PN}-numbers \
-${PYTHON_PN}-threading \
-"
+require python-dominate.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 02/12] python3-dominate: new recipe

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb 
b/meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
new file mode 100644
index 000..5304ccc
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-dominate.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 05/12] python-flask-sqlalchemy: move core of recipe to a .inc file

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-sqlalchemy.inc  | 10 ++
 .../recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb | 12 +---
 2 files changed, 11 insertions(+), 11 deletions(-)
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc 
b/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
new file mode 100644
index 000..e0efbc6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
@@ -0,0 +1,10 @@
+DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=5ed1b8cc741515a835a7f6bf2f62ef4a"
+
+SRC_URI[md5sum] = "373ce61dfd03b593ad2eaba68c9fee35"
+SRC_URI[sha256sum] = 
"5971b9852b5888655f11db634e87725a9031e170f37c0ce7851cf83497f56e53"
+
+PYPI_PACKAGE = "Flask-SQLAlchemy"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
diff --git 
a/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb 
b/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb
index 7650917..3dc355c 100644
--- a/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb
+++ b/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb
@@ -1,12 +1,2 @@
-DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=5ed1b8cc741515a835a7f6bf2f62ef4a"
-
-SRC_URI[md5sum] = "373ce61dfd03b593ad2eaba68c9fee35"
-SRC_URI[sha256sum] = 
"5971b9852b5888655f11db634e87725a9031e170f37c0ce7851cf83497f56e53"
-
-PYPI_PACKAGE = "Flask-SQLAlchemy"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
+require python-flask-sqlalchemy.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 03/12] python-flask-bootstrap: move core of recipe to a .inc file

2017-11-29 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-bootstrap.inc   | 14 ++
 .../python/python-flask-bootstrap_3.3.7.1.bb | 16 +---
 2 files changed, 15 insertions(+), 15 deletions(-)
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-bootstrap.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-bootstrap.inc 
b/meta-python/recipes-devtools/python/python-flask-bootstrap.inc
new file mode 100644
index 000..0723b97
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-bootstrap.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "An extension that includes Bootstrap in your project, without 
any boilerplate code."
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a03749709f06118a17349deb5a210619"
+
+SRC_URI[md5sum] = "e40d50f5c5b6438c1c6200a6f2871f81"
+SRC_URI[sha256sum] = 
"cb08ed940183f6343a64e465e83b3a3f13c53e1baabb8d72b5da4545ef123ac8"
+
+PYPI_PACKAGE = "Flask-Bootstrap"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-dominate \
+${PYTHON_PN}-flask \
+${PYTHON_PN}-visitor \
+"
diff --git 
a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb 
b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
index 2b2a6f9..eeaade9 100644
--- a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
+++ b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
@@ -1,16 +1,2 @@
-DESCRIPTION = "An extension that includes Bootstrap in your project, without 
any boilerplate code."
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a03749709f06118a17349deb5a210619"
-
-SRC_URI[md5sum] = "e40d50f5c5b6438c1c6200a6f2871f81"
-SRC_URI[sha256sum] = 
"cb08ed940183f6343a64e465e83b3a3f13c53e1baabb8d72b5da4545ef123ac8"
-
-PYPI_PACKAGE = "Flask-Bootstrap"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} += "\
-${PYTHON_PN}-dominate \
-${PYTHON_PN}-flask \
-${PYTHON_PN}-visitor \
-"
+require python-flask-bootstrap.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 00/12] Create Python3 recipies for several existing Python2 recipes

2017-11-29 Thread Bill Randle
This set of patches creates the Python3 variant of several existing Python2 
packages.
It first moves the core of the existing recipe(s) into a .inc file, then creates
python-*-.bb and python3-*.bb files that reference the new .inc file.

Bill Randle (12):
  python-dominate: move core of recipe to a .inc file
  python3-dominate: new recipe
  python-flask-bootstrap: move core of recipe to a .inc file
  python3-flask-bootstrap: new recipe
  python-flask-sqlalchemy: move core of recipe to a .inc file
  python3-flask-sqlalchemy: new recipe
  python-flask-wtf: move core of recipe to a .inc file
  python3-flask-wtf: new recipe
  python-visitor: move core of recipe to a .inc file
  python3-visitor: new recipe
  python-wtforms: move core of recipe to a .inc file
  python3-wtforms: new recipe

 .../recipes-devtools/python/python-dominate.inc| 11 +++
 .../recipes-devtools/python/python-dominate_2.3.1.bb   | 13 +
 .../recipes-devtools/python/python-flask-bootstrap.inc | 14 ++
 .../python/python-flask-bootstrap_3.3.7.1.bb   | 16 +---
 .../python/python-flask-sqlalchemy.inc | 10 ++
 .../python/python-flask-sqlalchemy_2.3.2.bb| 12 +---
 .../recipes-devtools/python/python-flask-wtf.inc   | 15 +++
 .../recipes-devtools/python/python-flask-wtf_0.12.bb   | 17 +
 meta-python/recipes-devtools/python/python-visitor.inc |  6 ++
 .../recipes-devtools/python/python-visitor_0.1.3.bb|  8 +---
 meta-python/recipes-devtools/python/python-wtforms.inc | 16 
 .../recipes-devtools/python/python-wtforms_2.1.bb  | 18 +-
 .../recipes-devtools/python/python3-dominate_2.3.1.bb  |  2 ++
 .../python/python3-flask-bootstrap_3.3.7.1.bb  |  2 ++
 .../python/python3-flask-sqlalchemy_2.3.2.bb   |  2 ++
 .../recipes-devtools/python/python3-flask-wtf_0.12.bb  |  2 ++
 .../recipes-devtools/python/python3-visitor_0.1.3.bb   |  2 ++
 .../recipes-devtools/python/python3-wtforms_2.1.bb |  2 ++
 18 files changed, 90 insertions(+), 78 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-bootstrap.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
 create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc
 create mode 100644 meta-python/recipes-devtools/python/python-visitor.inc
 create mode 100644 meta-python/recipes-devtools/python/python-wtforms.inc
 create mode 100644 
meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-wtforms_2.1.bb

-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 00/13] New recipes for additional flask extensions

2017-12-01 Thread Bill Randle
The basic flask recipes and recipes for a few flask extensions are currently
present in meta-python. This patch adds several more flask extensions and their
dependencies, useful for building full featured web sites. Both python and
python3 receipes are provided.

Bill Randle (13):
  python[3]-editor: new recipes
  python[3]-alembic: new recipes
  python[3]-fask-migrate: new recipes
  python[3]-flask-nav: new recipes
  python[3]-flask-uploads: new recipes
  python[3]-flask-script: new recipes
  python[3]-flask-mail: new recipes
  python[3]-flask-user: new recipes
  python[3]-speaklater: new recipes
  python[3]-flask-babel: new recipes
  python[3]-xstatic: new recipes
  python[3]-xstatic-font-awesome: new recipes
  python[3]-flask-xstatic: new recipes

 meta-python/recipes-devtools/python/python-alembic.inc  | 13 +
 .../recipes-devtools/python/python-alembic_0.9.6.bb |  2 ++
 meta-python/recipes-devtools/python/python-editor.inc   |  9 +
 .../recipes-devtools/python/python-editor_1.0.3.bb  |  2 ++
 .../recipes-devtools/python/python-flask-babel.inc  | 16 
 .../python/python-flask-babel_0.11.2.bb |  2 ++
 .../recipes-devtools/python/python-flask-mail.inc   | 12 
 .../recipes-devtools/python/python-flask-mail_0.9.1.bb  |  2 ++
 .../recipes-devtools/python/python-flask-migrate.inc| 14 ++
 .../python/python-flask-migrate_2.1.1.bb|  2 ++
 .../recipes-devtools/python/python-flask-nav.inc| 13 +
 .../recipes-devtools/python/python-flask-nav_0.6.bb |  2 ++
 .../recipes-devtools/python/python-flask-script.inc | 12 
 .../python/python-flask-script_2.0.6.bb |  2 ++
 .../recipes-devtools/python/python-flask-uploads.inc| 12 
 .../python/python-flask-uploads_0.2.1.bb|  2 ++
 .../recipes-devtools/python/python-flask-user.inc   | 17 +
 .../recipes-devtools/python/python-flask-user_0.6.19.bb |  2 ++
 .../recipes-devtools/python/python-flask-xstatic.inc| 15 +++
 .../python-flask-xstatic/remove-pip-requires.patch  |  7 +++
 .../python/python-flask-xstatic_0.0.1.bb|  2 ++
 .../recipes-devtools/python/python-speaklater.inc   |  9 +
 .../recipes-devtools/python/python-speaklater_1.3.bb|  2 ++
 .../python/python-xstatic-font-awesome.inc  | 17 +
 .../python/python-xstatic-font-awesome_4.7.0.0.bb   |  2 ++
 meta-python/recipes-devtools/python/python-xstatic.inc  | 14 ++
 .../recipes-devtools/python/python-xstatic_1.0.1.bb |  2 ++
 .../recipes-devtools/python/python3-alembic_0.9.6.bb|  2 ++
 .../recipes-devtools/python/python3-editor_1.0.3.bb |  2 ++
 .../python/python3-flask-babel_0.11.2.bb|  2 ++
 .../recipes-devtools/python/python3-flask-mail_0.9.1.bb |  2 ++
 .../python/python3-flask-migrate_2.1.1.bb   |  2 ++
 .../recipes-devtools/python/python3-flask-nav_0.6.bb|  2 ++
 .../python/python3-flask-script_2.0.6.bb|  2 ++
 .../python/python3-flask-uploads_0.2.1.bb   |  2 ++
 .../python/python3-flask-user_0.6.19.bb |  2 ++
 .../python/python3-flask-xstatic_0.0.1.bb   |  2 ++
 .../recipes-devtools/python/python3-speaklater_1.3.bb   |  2 ++
 .../python/python3-xstatic-font-awesome_4.7.0.0.bb  |  2 ++
 .../recipes-devtools/python/python3-xstatic_1.0.1.bb|  2 ++
 40 files changed, 232 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-alembic.inc
 create mode 100644 meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python-editor.inc
 create mode 100644 meta-python/recipes-devtools/python/python-editor_1.0.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-babel.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-mail.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-migrate.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav.inc
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-script.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-uploads.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-user.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask

[oe] [meta-python][PATCH 2/2] python3-blinker: new recipe

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-blinker_1.4.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-blinker_1.4.bb

diff --git a/meta-python/recipes-devtools/python/python3-blinker_1.4.bb 
b/meta-python/recipes-devtools/python/python3-blinker_1.4.bb
new file mode 100644
index 000..924b3cf
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-blinker_1.4.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-blinker.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 01/13] python[3]-editor: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-editor.inc   | 9 +
 meta-python/recipes-devtools/python/python-editor_1.0.3.bb  | 2 ++
 meta-python/recipes-devtools/python/python3-editor_1.0.3.bb | 2 ++
 3 files changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-editor.inc
 create mode 100644 meta-python/recipes-devtools/python/python-editor_1.0.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-editor_1.0.3.bb

diff --git a/meta-python/recipes-devtools/python/python-editor.inc 
b/meta-python/recipes-devtools/python/python-editor.inc
new file mode 100644
index 000..30650bd
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-editor.inc
@@ -0,0 +1,9 @@
+DESCRIPTION = "Programmatically open and editor, capture the result"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
+
+SRC_URI[md5sum] = "0aca5f2ef176ce68e98a5b7e31372835"
+SRC_URI[sha256sum] = 
"a3c066acee22a1c94f63938341d4fb374e3fdd69366ed6603d7b24bed1efc565"
+
+PYPI_PACKAGE = "python-editor"
+
diff --git a/meta-python/recipes-devtools/python/python-editor_1.0.3.bb 
b/meta-python/recipes-devtools/python/python-editor_1.0.3.bb
new file mode 100644
index 000..f7a9a8c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-editor_1.0.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-editor.inc
diff --git a/meta-python/recipes-devtools/python/python3-editor_1.0.3.bb 
b/meta-python/recipes-devtools/python/python3-editor_1.0.3.bb
new file mode 100644
index 000..8ad2b86
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-editor_1.0.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-editor.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 11/13] python[3]-xstatic: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-xstatic.inc | 14 ++
 .../recipes-devtools/python/python-xstatic_1.0.1.bb|  2 ++
 .../recipes-devtools/python/python3-xstatic_1.0.1.bb   |  2 ++
 3 files changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-xstatic.inc
 create mode 100644 meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb

diff --git a/meta-python/recipes-devtools/python/python-xstatic.inc 
b/meta-python/recipes-devtools/python/python-xstatic.inc
new file mode 100644
index 000..f7c7db9
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "XStatic base package with minimal support code"
+HOMEPAGE = "https://pypi.python.org/pypi/XStatic;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://README.txt;md5=36a1e7eaa71e1bd07b8d2247839f228e"
+
+PYPI_PACKAGE = "XStatic"
+
+SRC_URI[md5sum] = "7064b5ea7fd1ee990e0ae0538301d9bc"
+SRC_URI[sha256sum] = 
"0ec93d7c66ebb9e0d31b664753437dc8634cb66e13310cb47c9eb1e0bc66d726"
+
+DEPENDS += " \
+${PYTHON_PN}-pip \
+"
diff --git a/meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb 
b/meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb
new file mode 100644
index 000..8073037
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-xstatic.inc
diff --git a/meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb 
b/meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb
new file mode 100644
index 000..76cb702
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-xstatic.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 10/13] python[3]-flask-babel: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-babel.inc   | 16 
 .../recipes-devtools/python/python-flask-babel_0.11.2.bb |  2 ++
 .../python/python3-flask-babel_0.11.2.bb |  2 ++
 3 files changed, 20 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-babel.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-babel.inc 
b/meta-python/recipes-devtools/python/python-flask-babel.inc
new file mode 100644
index 000..b60ee17
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-babel.inc
@@ -0,0 +1,16 @@
+DESCRIPTION = "i18n and l10n support for Flask based on babel and pytz"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=51917f3e8e858f5ae295a7d0e2eb3cc9"
+
+SRC_URI[md5sum] = "07803453743f139309021572a799c6b3"
+SRC_URI[sha256sum] = 
"c0d75710bd4b0fe866f9f2347de6e19208712f9cec006436b4c1c15d4cb0c939"
+
+PYPI_PACKAGE = "Flask-Babel"
+
+inherit pypi
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-speaklater \
+${PYTHON_PN}-babel \
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb 
b/meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
new file mode 100644
index 000..38e78c7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-babel.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb 
b/meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb
new file mode 100644
index 000..104e7c2
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-babel.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 12/13] python[3]-xstatic-font-awesome: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../python/python-xstatic-font-awesome.inc  | 17 +
 .../python/python-xstatic-font-awesome_4.7.0.0.bb   |  2 ++
 .../python/python3-xstatic-font-awesome_4.7.0.0.bb  |  2 ++
 3 files changed, 21 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb

diff --git 
a/meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc 
b/meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc
new file mode 100644
index 000..d13cb83
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc
@@ -0,0 +1,17 @@
+DESCRIPTION = "Font Awesome icons packaged for setuptools (easy_install) / 
pip."
+HOMEPAGE = "https://pypi.python.org/pypi/XStatic-Font-Awesome;
+SECTION = "devel/python"
+LICENSE = "Apache-2"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=313d021898694cd2b0ea6508bdfe51a2"
+
+PYPI_PACKAGE = "XStatic-Font-Awesome"
+
+inherit pypi
+
+SRC_URI[md5sum] = "141a0e9a7e21e82f922573a00ae0c166"
+SRC_URI[sha256sum] = 
"e01fb480caaa7c7963dcb3328a4700e631bef6070db0e8b685816d220e685f6c"
+
+DEPENDS += " \
+${PYTHON_PN}-xstatic \
+${PYTHON_PN}-pip \
+"
diff --git 
a/meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb 
b/meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb
new file mode 100644
index 000..41e85f4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-xstatic-font-awesome.inc
diff --git 
a/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb 
b/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb
new file mode 100644
index 000..639f80d
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-xstatic-font-awesome.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 09/13] python[3]-speaklater: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-speaklater.inc | 9 +
 meta-python/recipes-devtools/python/python-speaklater_1.3.bb  | 2 ++
 meta-python/recipes-devtools/python/python3-speaklater_1.3.bb | 2 ++
 3 files changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-speaklater.inc
 create mode 100644 meta-python/recipes-devtools/python/python-speaklater_1.3.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-speaklater_1.3.bb

diff --git a/meta-python/recipes-devtools/python/python-speaklater.inc 
b/meta-python/recipes-devtools/python/python-speaklater.inc
new file mode 100644
index 000..94fa8a6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-speaklater.inc
@@ -0,0 +1,9 @@
+DESCRIPTION = "Media asset management for Python, with glue code for various 
frameworks"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=b810770075a29bf44b96607440e7c801"
+
+SRC_URI[md5sum] = "e8d5dbe36e53d5a35cff227e795e8bbf"
+SRC_URI[sha256sum] = 
"59fea336d0eed38c1f0bf3181ee1222d0ef45f3a9dd34ebe65e6bfffdd6a65a9"
+
+PYPI_PACKAGE = "speaklater"
+
diff --git a/meta-python/recipes-devtools/python/python-speaklater_1.3.bb 
b/meta-python/recipes-devtools/python/python-speaklater_1.3.bb
new file mode 100644
index 000..56fd555
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-speaklater_1.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-speaklater.inc
diff --git a/meta-python/recipes-devtools/python/python3-speaklater_1.3.bb 
b/meta-python/recipes-devtools/python/python3-speaklater_1.3.bb
new file mode 100644
index 000..aa4f699
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-speaklater_1.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-speaklater.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 13/13] python[3]-flask-xstatic: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-xstatic.inc  | 15 +++
 .../python/python-flask-xstatic/remove-pip-requires.patch |  7 +++
 .../recipes-devtools/python/python-flask-xstatic_0.0.1.bb |  2 ++
 .../python/python3-flask-xstatic_0.0.1.bb |  2 ++
 4 files changed, 26 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-xstatic.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-xstatic.inc 
b/meta-python/recipes-devtools/python/python-flask-xstatic.inc
new file mode 100644
index 000..d992f53
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-xstatic.inc
@@ -0,0 +1,15 @@
+DESCRIPTION = "XStatic support for flask"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=659968f6ebd4b70b6c3190d20b4a924c"
+
+SRC_URI[md5sum] = "2f56023e1444c8bd1fec41afe93de743"
+SRC_URI[sha256sum] = 
"226ea8e97065a9488b59bfe5c94af4c6e2ea70a25052e301fb231a1381490133"
+
+SRC_URI += "file://remove-pip-requires.patch"
+
+PYPI_PACKAGE = "Flask-XStatic"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask \
+${PYTHON_PN}-xstatic \
+"
diff --git 
a/meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
 
b/meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
new file mode 100644
index 000..a2d620a
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
@@ -0,0 +1,7 @@
+--- Flask-XStatic-0.0.1/setup.py.orig  2015-01-30 08:01:56.0 -0800
 Flask-XStatic-0.0.1/setup.py   2017-04-17 21:40:32.570181626 -0700
+@@ -1,4 +1,3 @@
+-from pip.req import parse_requirements
+ import setuptools
+ 
+ with open('README.rst') as f:
diff --git a/meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb 
b/meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb
new file mode 100644
index 000..dff14a8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-xstatic.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb
new file mode 100644
index 000..5412bef
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-xstatic.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 03/13] python[3]-fask-migrate: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-migrate.inc   | 14 ++
 .../recipes-devtools/python/python-flask-migrate_2.1.1.bb  |  2 ++
 .../recipes-devtools/python/python3-flask-migrate_2.1.1.bb |  2 ++
 3 files changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-migrate.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-migrate.inc 
b/meta-python/recipes-devtools/python/python-flask-migrate.inc
new file mode 100644
index 000..7af4fe1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-migrate.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "SQLAlchemy database migrations for Flask applications using 
Alembic"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
+
+SRC_URI[md5sum] = "def4106c80897b7fad2afb3bc05360e4"
+SRC_URI[sha256sum] = 
"b709ca8642559c3c5a81a33ab10839fa052177accd5ba821047a99db635255ed"
+
+PYPI_PACKAGE = "Flask-Migrate"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask-sqlalchemy \
+${PYTHON_PN}-alembic \
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb 
b/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
new file mode 100644
index 000..af79997
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-migrate
diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
new file mode 100644
index 000..94abbf3
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-migrate
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 07/13] python[3]-flask-mail: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-mail.inc| 12 
 .../recipes-devtools/python/python-flask-mail_0.9.1.bb   |  2 ++
 .../recipes-devtools/python/python3-flask-mail_0.9.1.bb  |  2 ++
 3 files changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-mail.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-mail.inc 
b/meta-python/recipes-devtools/python/python-flask-mail.inc
new file mode 100644
index 000..bb08703
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-mail.inc
@@ -0,0 +1,12 @@
+SUMMARY = "Flask extension for sending email"
+DESCRIPTION = "A Flask extension for sending email"
+HOMEPAGE = " https://github.com/rduplain/flask-email;
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=5b16dfa6d3f275ace5985bb92949f770"
+
+SRC_URI[md5sum] = "04b35a42a44ec7aa724ec8ce55e2e08e"
+SRC_URI[sha256sum] = 
"22e5eb9a940bf407bcf30410ecc3708f3c56cc44b29c34e1726fe85006935f41"
+
+PYPI_PACKAGE = "Flask-Mail"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-flask"
diff --git a/meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb 
b/meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
new file mode 100644
index 000..8324da8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-mail.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
new file mode 100644
index 000..0b963be
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-mail.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 08/13] python[3]-flask-user: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-user.inc   | 17 +
 .../recipes-devtools/python/python-flask-user_0.6.19.bb |  2 ++
 .../python/python3-flask-user_0.6.19.bb |  2 ++
 3 files changed, 21 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-user.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-user.inc 
b/meta-python/recipes-devtools/python/python-flask-user.inc
new file mode 100644
index 000..c2b7182
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-user.inc
@@ -0,0 +1,17 @@
+SUMMARY = "Customizable user account management for Flask"
+DESCRIPTION = "Customizable User Account Management for Flask; Register \
+Confirm email, Login, Change username, Change password, Forgot Password \
+and more."
+HOMEPAGE = " https://github.com/lingthio/Flask-User;
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=97de97cd9d6e23c88129d884588ce71a"
+
+SRC_URI[md5sum] = "f7965e66ca139c8436896da07e66c21f"
+SRC_URI[sha256sum] = 
"601abcc0343dfbae0c56273d98362d5cdc266ac84d20b3f65a212e4a2c83b302"
+
+PYPI_PACKAGE = "Flask-User"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-flask \
+${PYTHON_PN}-flask-login \
+${PYTHON_PN}-flask-mail \
+${PYTHON_PN}-babel"
diff --git a/meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb 
b/meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb
new file mode 100644
index 000..654d377
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-user.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb 
b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
new file mode 100644
index 000..251017f
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-user.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 04/13] python[3]-flask-nav: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-nav.inc| 13 +
 meta-python/recipes-devtools/python/python-flask-nav_0.6.bb |  2 ++
 .../recipes-devtools/python/python3-flask-nav_0.6.bb|  2 ++
 3 files changed, 17 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav.inc
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-nav.inc 
b/meta-python/recipes-devtools/python/python-flask-nav.inc
new file mode 100644
index 000..932ccdf
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-nav.inc
@@ -0,0 +1,13 @@
+DESCRIPTION = "Easily create navigation for Flask applications."
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2729ee82259d601d90d28b0574d12416"
+
+SRC_URI[md5sum] = "4d51cfd06d58f8d0fe85775a6696c0e5"
+SRC_URI[sha256sum] = 
"44e40b755380a1e68ab521a2f9174de259a2c94ddcdaabf36b3aca2e110a33f4"
+
+PYPI_PACKAGE = "flask-nav"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-blinker \
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb 
b/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
new file mode 100644
index 000..30b5b3b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-nav.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb 
b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
new file mode 100644
index 000..d251152
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-nav.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 02/13] python[3]-alembic: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-alembic.inc  | 13 +
 meta-python/recipes-devtools/python/python-alembic_0.9.6.bb |  2 ++
 .../recipes-devtools/python/python3-alembic_0.9.6.bb|  2 ++
 3 files changed, 17 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-alembic.inc
 create mode 100644 meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb

diff --git a/meta-python/recipes-devtools/python/python-alembic.inc 
b/meta-python/recipes-devtools/python/python-alembic.inc
new file mode 100644
index 000..2ca6023
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-alembic.inc
@@ -0,0 +1,13 @@
+DESCRIPTION = "A database migration tool for SQLAlchemy"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d07407716fd24408b5747b0fa2262775"
+
+SRC_URI[md5sum] = "fcb096bccc87c8770bd07a04606cb989"
+SRC_URI[sha256sum] = 
"042851ebe9efa07be6dc1395b1793b6c1d8964a39b73a0ce1649e2bcd41ea732"
+
+PYPI_PACKAGE = "alembic"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-editor \
+${PYTHON_PN}-sqlalchemy \
+"
diff --git a/meta-python/recipes-devtools/python/python-alembic_0.9.6.bb 
b/meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
new file mode 100644
index 000..efcb2b1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-alembic.inc
diff --git a/meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb 
b/meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb
new file mode 100644
index 000..e248fe7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-alembic.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 05/13] python[3]-flask-uploads: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-uploads.inc | 12 
 .../recipes-devtools/python/python-flask-uploads_0.2.1.bb|  2 ++
 .../recipes-devtools/python/python3-flask-uploads_0.2.1.bb   |  2 ++
 3 files changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-uploads.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-uploads.inc 
b/meta-python/recipes-devtools/python/python-flask-uploads.inc
new file mode 100644
index 000..cd7ac1a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-uploads.inc
@@ -0,0 +1,12 @@
+DESCRIPTION = "Flexible and efficient upload handling for Flask"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=b712ac634b39469660c9bdfb8d03421c"
+
+SRC_URI[md5sum] = "e5eee34aa92b64a4d22847672b3858a1"
+SRC_URI[sha256sum] = 
"53ecbd6033667d50ae02b63adebbaa33c7fc56c09e5293025810cf9d841ecb02"
+
+PYPI_PACKAGE = "Flask-Uploads"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb 
b/meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
new file mode 100644
index 000..d39b07f
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-uploads.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb
new file mode 100644
index 000..758c2ac
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-uploads.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][PATCH 06/13] python[3]-flask-script: new recipes

2017-12-01 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-script.inc  | 12 
 .../recipes-devtools/python/python-flask-script_2.0.6.bb |  2 ++
 .../recipes-devtools/python/python3-flask-script_2.0.6.bb|  2 ++
 3 files changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-script.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-script.inc 
b/meta-python/recipes-devtools/python/python-flask-script.inc
new file mode 100644
index 000..fca777b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-script.inc
@@ -0,0 +1,12 @@
+DESCRIPTION = "Scripting support for flask"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e686048adb69341fc8a08caeda528b41"
+
+SRC_URI[md5sum] = "3fbd91fe13cebedfb2431331f6eabb68"
+SRC_URI[sha256sum] = 
"6425963d91054cfcc185807141c7314a9c5ad46325911bd24dcb489bd0161c65"
+
+PYPI_PACKAGE = "Flask-Script"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb 
b/meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
new file mode 100644
index 000..b7d55af
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-script.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb 
b/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb
new file mode 100644
index 000..9f88519
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-script.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 04/12] python3-flask-bootstrap: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
new file mode 100644
index 000..877c754
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-bootstrap.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 00/12] Create Python3 recipies for several existing Python2 recipes

2017-12-07 Thread Bill Randle
This set of patches creates the Python3 variant of several existing Python2 
packages.
It first moves the core of the existing recipe(s) into a .inc file, then creates
python-*-.bb and python3-*.bb files that reference the new .inc file.

V2: the only change is to patch 07 of the series.

Bill Randle (12):
  python-dominate: move core of recipe to a .inc file
  python3-dominate: new recipe
  python-flask-bootstrap: move core of recipe to a .inc file
  python3-flask-bootstrap: new recipe
  python-flask-sqlalchemy: move core of recipe to a .inc file
  python3-flask-sqlalchemy: new recipe
  python-flask-wtf: move core of recipe to a .inc file
  python3-flask-wtf: new recipe
  python-visitor: move core of recipe to a .inc file
  python3-visitor: new recipe
  python-wtforms: move core of recipe to a .inc file
  python3-wtforms: new recipe

 .../recipes-devtools/python/python-dominate.inc| 11 +++
 .../recipes-devtools/python/python-dominate_2.3.1.bb   | 13 +
 .../recipes-devtools/python/python-flask-bootstrap.inc | 14 ++
 .../python/python-flask-bootstrap_3.3.7.1.bb   | 16 +---
 .../python/python-flask-sqlalchemy.inc | 10 ++
 .../python/python-flask-sqlalchemy_2.3.2.bb| 12 +---
 .../recipes-devtools/python/python-flask-wtf.inc   | 16 
 .../recipes-devtools/python/python-flask-wtf_0.12.bb   | 17 +
 meta-python/recipes-devtools/python/python-visitor.inc |  6 ++
 .../recipes-devtools/python/python-visitor_0.1.3.bb|  8 +---
 meta-python/recipes-devtools/python/python-wtforms.inc | 16 
 .../recipes-devtools/python/python-wtforms_2.1.bb  | 18 +-
 .../recipes-devtools/python/python3-dominate_2.3.1.bb  |  2 ++
 .../python/python3-flask-bootstrap_3.3.7.1.bb  |  2 ++
 .../python/python3-flask-sqlalchemy_2.3.2.bb   |  2 ++
 .../recipes-devtools/python/python3-flask-wtf_0.12.bb  |  2 ++
 .../recipes-devtools/python/python3-visitor_0.1.3.bb   |  2 ++
 .../recipes-devtools/python/python3-wtforms_2.1.bb |  2 ++
 18 files changed, 90 insertions(+), 78 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-bootstrap.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
 create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc
 create mode 100644 meta-python/recipes-devtools/python/python-visitor.inc
 create mode 100644 meta-python/recipes-devtools/python/python-wtforms.inc
 create mode 100644 
meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-wtforms_2.1.bb

-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 01/12] python-dominate: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-dominate.inc | 11 +++
 .../recipes-devtools/python/python-dominate_2.3.1.bb| 13 +
 2 files changed, 12 insertions(+), 12 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc

diff --git a/meta-python/recipes-devtools/python/python-dominate.inc 
b/meta-python/recipes-devtools/python/python-dominate.inc
new file mode 100644
index 000..ecf74a0
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-dominate.inc
@@ -0,0 +1,11 @@
+SUMMARY = "Dominate is a Python library for creating and manipulating HTML 
documents using an elegant DOM API."
+LICENSE = "LGPLv3"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
+
+SRC_URI[md5sum] = "45bd97e6f7888aac24ae86013c57638e"
+SRC_URI[sha256sum] = 
"4b8ce6f33633c9dd9175b228d21c00c801b6bd0327747cd5e17fc2da934c3a69"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-numbers \
+${PYTHON_PN}-threading \
+"
diff --git a/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb 
b/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb
index 13ebf92..c19445e 100644
--- a/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb
+++ b/meta-python/recipes-devtools/python/python-dominate_2.3.1.bb
@@ -1,13 +1,2 @@
-SUMMARY = "Dominate is a Python library for creating and manipulating HTML 
documents using an elegant DOM API."
-LICENSE = "LGPLv3"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b52f2d57d10c4f7ee67a7eb9615d5d24"
-
-SRC_URI[md5sum] = "45bd97e6f7888aac24ae86013c57638e"
-SRC_URI[sha256sum] = 
"4b8ce6f33633c9dd9175b228d21c00c801b6bd0327747cd5e17fc2da934c3a69"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} += "\
-${PYTHON_PN}-numbers \
-${PYTHON_PN}-threading \
-"
+require python-dominate.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 03/12] python-flask-bootstrap: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-bootstrap.inc   | 14 ++
 .../python/python-flask-bootstrap_3.3.7.1.bb | 16 +---
 2 files changed, 15 insertions(+), 15 deletions(-)
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-bootstrap.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-bootstrap.inc 
b/meta-python/recipes-devtools/python/python-flask-bootstrap.inc
new file mode 100644
index 000..0723b97
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-bootstrap.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "An extension that includes Bootstrap in your project, without 
any boilerplate code."
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a03749709f06118a17349deb5a210619"
+
+SRC_URI[md5sum] = "e40d50f5c5b6438c1c6200a6f2871f81"
+SRC_URI[sha256sum] = 
"cb08ed940183f6343a64e465e83b3a3f13c53e1baabb8d72b5da4545ef123ac8"
+
+PYPI_PACKAGE = "Flask-Bootstrap"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-dominate \
+${PYTHON_PN}-flask \
+${PYTHON_PN}-visitor \
+"
diff --git 
a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb 
b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
index 2b2a6f9..eeaade9 100644
--- a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
+++ b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
@@ -1,16 +1,2 @@
-DESCRIPTION = "An extension that includes Bootstrap in your project, without 
any boilerplate code."
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a03749709f06118a17349deb5a210619"
-
-SRC_URI[md5sum] = "e40d50f5c5b6438c1c6200a6f2871f81"
-SRC_URI[sha256sum] = 
"cb08ed940183f6343a64e465e83b3a3f13c53e1baabb8d72b5da4545ef123ac8"
-
-PYPI_PACKAGE = "Flask-Bootstrap"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} += "\
-${PYTHON_PN}-dominate \
-${PYTHON_PN}-flask \
-${PYTHON_PN}-visitor \
-"
+require python-flask-bootstrap.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 07/12] python-flask-wtf: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
V2: add FILESEXTRAPATH_prepend to pick up common patch directory.

Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-wtf.inc| 15 +++
 .../recipes-devtools/python/python-flask-wtf_0.12.bb| 17 +
 2 files changed, 16 insertions(+), 16 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-wtf.inc 
b/meta-python/recipes-devtools/python/python-flask-wtf.inc
new file mode 100644
index 0..3a959aed7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-wtf.inc
@@ -0,0 +1,16 @@
+DESCRIPTION = "Simple integration of Flask and WTForms."
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=507e8635f25a06dc4f041a3a1b3359b3"
+
+SRC_URI[md5sum] = "c53a74e8ba481bf53405fd5efdf0339e"
+SRC_URI[sha256sum] = 
"bd99316c97ed1d1cb90b8f0c242c86420a891a6a2058f20717e424bf5b0bb80e"
+
+FILESEXTRAPATHS_prepend := "${THISDIR}/python-flask-wtf:"
+SRC_URI += " file://import-simplejson-as-json.patch"
+
+PYPI_PACKAGE = "Flask-WTF"
+
+RDEPENDS_${PN} = "\
+${PYTHON_PN}-wtforms \
+${PYTHON_PN}-simplejson \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb 
b/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb
index 79afaf6..dbf091b 100644
--- a/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb
+++ b/meta-python/recipes-devtools/python/python-flask-wtf_0.12.bb
@@ -1,17 +1,2 @@
-DESCRIPTION = "Simple integration of Flask and WTForms."
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=507e8635f25a06dc4f041a3a1b3359b3"
-
-SRC_URI[md5sum] = "c53a74e8ba481bf53405fd5efdf0339e"
-SRC_URI[sha256sum] = 
"bd99316c97ed1d1cb90b8f0c242c86420a891a6a2058f20717e424bf5b0bb80e"
-
-SRC_URI += " file://import-simplejson-as-json.patch"
-
-PYPI_PACKAGE = "Flask-WTF"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} = "\
-python-wtforms \
-python-simplejson \
-"
+require python-flask-wtf.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 08/12] python3-flask-wtf: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb

diff --git a/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb 
b/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
new file mode 100644
index 000..52362a8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-wtf.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 05/12] python-flask-sqlalchemy: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-sqlalchemy.inc  | 10 ++
 .../recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb | 12 +---
 2 files changed, 11 insertions(+), 11 deletions(-)
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc

diff --git a/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc 
b/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
new file mode 100644
index 000..e0efbc6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
@@ -0,0 +1,10 @@
+DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=5ed1b8cc741515a835a7f6bf2f62ef4a"
+
+SRC_URI[md5sum] = "373ce61dfd03b593ad2eaba68c9fee35"
+SRC_URI[sha256sum] = 
"5971b9852b5888655f11db634e87725a9031e170f37c0ce7851cf83497f56e53"
+
+PYPI_PACKAGE = "Flask-SQLAlchemy"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
diff --git 
a/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb 
b/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb
index 7650917..3dc355c 100644
--- a/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb
+++ b/meta-python/recipes-devtools/python/python-flask-sqlalchemy_2.3.2.bb
@@ -1,12 +1,2 @@
-DESCRIPTION = "Adds SQLAlchemy support to your Flask application."
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=5ed1b8cc741515a835a7f6bf2f62ef4a"
-
-SRC_URI[md5sum] = "373ce61dfd03b593ad2eaba68c9fee35"
-SRC_URI[sha256sum] = 
"5971b9852b5888655f11db634e87725a9031e170f37c0ce7851cf83497f56e53"
-
-PYPI_PACKAGE = "Flask-SQLAlchemy"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} = "${PYTHON_PN}-sqlalchemy ${PYTHON_PN}-flask"
+require python-flask-sqlalchemy.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 06/12] python3-flask-sqlalchemy: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb

diff --git 
a/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb 
b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
new file mode 100644
index 000..07f45bc
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-sqlalchemy_2.3.2.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-sqlalchemy.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 02/12] python3-dominate: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb 
b/meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
new file mode 100644
index 000..5304ccc
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-dominate_2.3.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-dominate.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 13/13] python[3]-flask-xstatic: new recipes

2017-12-07 Thread Bill Randle
V2: add missing FILESEXTRAPATHS_prepend

Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-xstatic.inc  | 15 +++
 .../python/python-flask-xstatic/remove-pip-requires.patch |  7 +++
 .../recipes-devtools/python/python-flask-xstatic_0.0.1.bb |  2 ++
 .../python/python3-flask-xstatic_0.0.1.bb |  2 ++
 4 files changed, 26 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-xstatic.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-xstatic.inc 
b/meta-python/recipes-devtools/python/python-flask-xstatic.inc
new file mode 100644
index 0..a1fe14ed4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-xstatic.inc
@@ -0,0 +1,16 @@
+DESCRIPTION = "XStatic support for flask"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=659968f6ebd4b70b6c3190d20b4a924c"
+
+SRC_URI[md5sum] = "2f56023e1444c8bd1fec41afe93de743"
+SRC_URI[sha256sum] = 
"226ea8e97065a9488b59bfe5c94af4c6e2ea70a25052e301fb231a1381490133"
+
+FILESEXTRAPATHS_prepend := "${THISDIR}/python-flask-xstatic:"
+SRC_URI += "file://remove-pip-requires.patch"
+
+PYPI_PACKAGE = "Flask-XStatic"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask \
+${PYTHON_PN}-xstatic \
+"
diff --git 
a/meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
 
b/meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
new file mode 100644
index 000..a2d620a
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python-flask-xstatic/remove-pip-requires.patch
@@ -0,0 +1,7 @@
+--- Flask-XStatic-0.0.1/setup.py.orig  2015-01-30 08:01:56.0 -0800
 Flask-XStatic-0.0.1/setup.py   2017-04-17 21:40:32.570181626 -0700
+@@ -1,4 +1,3 @@
+-from pip.req import parse_requirements
+ import setuptools
+ 
+ with open('README.rst') as f:
diff --git a/meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb 
b/meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb
new file mode 100644
index 000..dff14a8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-xstatic_0.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-xstatic.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb
new file mode 100644
index 000..5412bef
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-xstatic.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 12/13] python[3]-xstatic-font-awesome: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../python/python-xstatic-font-awesome.inc  | 17 +
 .../python/python-xstatic-font-awesome_4.7.0.0.bb   |  2 ++
 .../python/python3-xstatic-font-awesome_4.7.0.0.bb  |  2 ++
 3 files changed, 21 insertions(+)
 create mode 100644 
meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb

diff --git 
a/meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc 
b/meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc
new file mode 100644
index 000..d13cb83
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic-font-awesome.inc
@@ -0,0 +1,17 @@
+DESCRIPTION = "Font Awesome icons packaged for setuptools (easy_install) / 
pip."
+HOMEPAGE = "https://pypi.python.org/pypi/XStatic-Font-Awesome;
+SECTION = "devel/python"
+LICENSE = "Apache-2"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=313d021898694cd2b0ea6508bdfe51a2"
+
+PYPI_PACKAGE = "XStatic-Font-Awesome"
+
+inherit pypi
+
+SRC_URI[md5sum] = "141a0e9a7e21e82f922573a00ae0c166"
+SRC_URI[sha256sum] = 
"e01fb480caaa7c7963dcb3328a4700e631bef6070db0e8b685816d220e685f6c"
+
+DEPENDS += " \
+${PYTHON_PN}-xstatic \
+${PYTHON_PN}-pip \
+"
diff --git 
a/meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb 
b/meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb
new file mode 100644
index 000..41e85f4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic-font-awesome_4.7.0.0.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-xstatic-font-awesome.inc
diff --git 
a/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb 
b/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb
new file mode 100644
index 000..639f80d
--- /dev/null
+++ 
b/meta-python/recipes-devtools/python/python3-xstatic-font-awesome_4.7.0.0.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-xstatic-font-awesome.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 11/13] python[3]-xstatic: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-xstatic.inc | 14 ++
 .../recipes-devtools/python/python-xstatic_1.0.1.bb|  2 ++
 .../recipes-devtools/python/python3-xstatic_1.0.1.bb   |  2 ++
 3 files changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-xstatic.inc
 create mode 100644 meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb

diff --git a/meta-python/recipes-devtools/python/python-xstatic.inc 
b/meta-python/recipes-devtools/python/python-xstatic.inc
new file mode 100644
index 000..f7c7db9
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "XStatic base package with minimal support code"
+HOMEPAGE = "https://pypi.python.org/pypi/XStatic;
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://README.txt;md5=36a1e7eaa71e1bd07b8d2247839f228e"
+
+PYPI_PACKAGE = "XStatic"
+
+SRC_URI[md5sum] = "7064b5ea7fd1ee990e0ae0538301d9bc"
+SRC_URI[sha256sum] = 
"0ec93d7c66ebb9e0d31b664753437dc8634cb66e13310cb47c9eb1e0bc66d726"
+
+DEPENDS += " \
+${PYTHON_PN}-pip \
+"
diff --git a/meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb 
b/meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb
new file mode 100644
index 000..8073037
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-xstatic_1.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-xstatic.inc
diff --git a/meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb 
b/meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb
new file mode 100644
index 000..76cb702
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-xstatic_1.0.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-xstatic.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 07/13] python[3]-flask-mail: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-mail.inc| 12 
 .../recipes-devtools/python/python-flask-mail_0.9.1.bb   |  2 ++
 .../recipes-devtools/python/python3-flask-mail_0.9.1.bb  |  2 ++
 3 files changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-mail.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-mail.inc 
b/meta-python/recipes-devtools/python/python-flask-mail.inc
new file mode 100644
index 000..bb08703
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-mail.inc
@@ -0,0 +1,12 @@
+SUMMARY = "Flask extension for sending email"
+DESCRIPTION = "A Flask extension for sending email"
+HOMEPAGE = " https://github.com/rduplain/flask-email;
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=5b16dfa6d3f275ace5985bb92949f770"
+
+SRC_URI[md5sum] = "04b35a42a44ec7aa724ec8ce55e2e08e"
+SRC_URI[sha256sum] = 
"22e5eb9a940bf407bcf30410ecc3708f3c56cc44b29c34e1726fe85006935f41"
+
+PYPI_PACKAGE = "Flask-Mail"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-flask"
diff --git a/meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb 
b/meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
new file mode 100644
index 000..8324da8
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-mail.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
new file mode 100644
index 000..0b963be
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-mail_0.9.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-mail.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 08/13] python[3]-flask-user: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-user.inc   | 17 +
 .../recipes-devtools/python/python-flask-user_0.6.19.bb |  2 ++
 .../python/python3-flask-user_0.6.19.bb |  2 ++
 3 files changed, 21 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-user.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-user.inc 
b/meta-python/recipes-devtools/python/python-flask-user.inc
new file mode 100644
index 000..c2b7182
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-user.inc
@@ -0,0 +1,17 @@
+SUMMARY = "Customizable user account management for Flask"
+DESCRIPTION = "Customizable User Account Management for Flask; Register \
+Confirm email, Login, Change username, Change password, Forgot Password \
+and more."
+HOMEPAGE = " https://github.com/lingthio/Flask-User;
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=97de97cd9d6e23c88129d884588ce71a"
+
+SRC_URI[md5sum] = "f7965e66ca139c8436896da07e66c21f"
+SRC_URI[sha256sum] = 
"601abcc0343dfbae0c56273d98362d5cdc266ac84d20b3f65a212e4a2c83b302"
+
+PYPI_PACKAGE = "Flask-User"
+
+RDEPENDS_${PN} = "${PYTHON_PN}-flask \
+${PYTHON_PN}-flask-login \
+${PYTHON_PN}-flask-mail \
+${PYTHON_PN}-babel"
diff --git a/meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb 
b/meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb
new file mode 100644
index 000..654d377
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-user_0.6.19.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-user.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb 
b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
new file mode 100644
index 000..251017f
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-user_0.6.19.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-user.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 05/13] python[3]-flask-uploads: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-uploads.inc | 12 
 .../recipes-devtools/python/python-flask-uploads_0.2.1.bb|  2 ++
 .../recipes-devtools/python/python3-flask-uploads_0.2.1.bb   |  2 ++
 3 files changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-uploads.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-uploads.inc 
b/meta-python/recipes-devtools/python/python-flask-uploads.inc
new file mode 100644
index 000..cd7ac1a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-uploads.inc
@@ -0,0 +1,12 @@
+DESCRIPTION = "Flexible and efficient upload handling for Flask"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=b712ac634b39469660c9bdfb8d03421c"
+
+SRC_URI[md5sum] = "e5eee34aa92b64a4d22847672b3858a1"
+SRC_URI[sha256sum] = 
"53ecbd6033667d50ae02b63adebbaa33c7fc56c09e5293025810cf9d841ecb02"
+
+PYPI_PACKAGE = "Flask-Uploads"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb 
b/meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
new file mode 100644
index 000..d39b07f
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-uploads.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb
new file mode 100644
index 000..758c2ac
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-uploads_0.2.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-uploads.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 10/13] python[3]-flask-babel: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-babel.inc   | 16 
 .../recipes-devtools/python/python-flask-babel_0.11.2.bb |  2 ++
 .../python/python3-flask-babel_0.11.2.bb |  2 ++
 3 files changed, 20 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-babel.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-babel.inc 
b/meta-python/recipes-devtools/python/python-flask-babel.inc
new file mode 100644
index 000..b60ee17
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-babel.inc
@@ -0,0 +1,16 @@
+DESCRIPTION = "i18n and l10n support for Flask based on babel and pytz"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=51917f3e8e858f5ae295a7d0e2eb3cc9"
+
+SRC_URI[md5sum] = "07803453743f139309021572a799c6b3"
+SRC_URI[sha256sum] = 
"c0d75710bd4b0fe866f9f2347de6e19208712f9cec006436b4c1c15d4cb0c939"
+
+PYPI_PACKAGE = "Flask-Babel"
+
+inherit pypi
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-speaklater \
+${PYTHON_PN}-babel \
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb 
b/meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
new file mode 100644
index 000..38e78c7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-babel.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb 
b/meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb
new file mode 100644
index 000..104e7c2
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-babel_0.11.2.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-babel.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 03/13] python[3]-fask-migrate: new recipes

2017-12-07 Thread Bill Randle
V2: fix typo on .inc filename

Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../recipes-devtools/python/python-flask-migrate.inc   | 14 ++
 .../recipes-devtools/python/python-flask-migrate_2.1.1.bb  |  2 ++
 .../recipes-devtools/python/python3-flask-migrate_2.1.1.bb |  2 ++
 3 files changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-migrate.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-migrate.inc 
b/meta-python/recipes-devtools/python/python-flask-migrate.inc
new file mode 100644
index 000..7af4fe1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-migrate.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "SQLAlchemy database migrations for Flask applications using 
Alembic"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
+
+SRC_URI[md5sum] = "def4106c80897b7fad2afb3bc05360e4"
+SRC_URI[sha256sum] = 
"b709ca8642559c3c5a81a33ab10839fa052177accd5ba821047a99db635255ed"
+
+PYPI_PACKAGE = "Flask-Migrate"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask-sqlalchemy \
+${PYTHON_PN}-alembic \
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-migrate.inc 
b/meta-python/recipes-devtools/python/python-flask-migrate.inc
new file mode 100644
index 0..7af4fe1b5
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-migrate.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "SQLAlchemy database migrations for Flask applications using 
Alembic"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
+
+SRC_URI[md5sum] = "def4106c80897b7fad2afb3bc05360e4"
+SRC_URI[sha256sum] = 
"b709ca8642559c3c5a81a33ab10839fa052177accd5ba821047a99db635255ed"
+
+PYPI_PACKAGE = "Flask-Migrate"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask-sqlalchemy \
+${PYTHON_PN}-alembic \
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb 
b/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
new file mode 100644
index 0..ece516f50
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-migrate.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb 
b/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
new file mode 100644
index 0..c98cbfddb
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-migrate.inc
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 09/13] python[3]-speaklater: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-speaklater.inc | 9 +
 meta-python/recipes-devtools/python/python-speaklater_1.3.bb  | 2 ++
 meta-python/recipes-devtools/python/python3-speaklater_1.3.bb | 2 ++
 3 files changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-speaklater.inc
 create mode 100644 meta-python/recipes-devtools/python/python-speaklater_1.3.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-speaklater_1.3.bb

diff --git a/meta-python/recipes-devtools/python/python-speaklater.inc 
b/meta-python/recipes-devtools/python/python-speaklater.inc
new file mode 100644
index 000..94fa8a6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-speaklater.inc
@@ -0,0 +1,9 @@
+DESCRIPTION = "Media asset management for Python, with glue code for various 
frameworks"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=b810770075a29bf44b96607440e7c801"
+
+SRC_URI[md5sum] = "e8d5dbe36e53d5a35cff227e795e8bbf"
+SRC_URI[sha256sum] = 
"59fea336d0eed38c1f0bf3181ee1222d0ef45f3a9dd34ebe65e6bfffdd6a65a9"
+
+PYPI_PACKAGE = "speaklater"
+
diff --git a/meta-python/recipes-devtools/python/python-speaklater_1.3.bb 
b/meta-python/recipes-devtools/python/python-speaklater_1.3.bb
new file mode 100644
index 000..56fd555
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-speaklater_1.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-speaklater.inc
diff --git a/meta-python/recipes-devtools/python/python3-speaklater_1.3.bb 
b/meta-python/recipes-devtools/python/python3-speaklater_1.3.bb
new file mode 100644
index 000..aa4f699
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-speaklater_1.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-speaklater.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 02/13] python[3]-alembic: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-alembic.inc  | 13 +
 meta-python/recipes-devtools/python/python-alembic_0.9.6.bb |  2 ++
 .../recipes-devtools/python/python3-alembic_0.9.6.bb|  2 ++
 3 files changed, 17 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-alembic.inc
 create mode 100644 meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb

diff --git a/meta-python/recipes-devtools/python/python-alembic.inc 
b/meta-python/recipes-devtools/python/python-alembic.inc
new file mode 100644
index 000..2ca6023
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-alembic.inc
@@ -0,0 +1,13 @@
+DESCRIPTION = "A database migration tool for SQLAlchemy"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d07407716fd24408b5747b0fa2262775"
+
+SRC_URI[md5sum] = "fcb096bccc87c8770bd07a04606cb989"
+SRC_URI[sha256sum] = 
"042851ebe9efa07be6dc1395b1793b6c1d8964a39b73a0ce1649e2bcd41ea732"
+
+PYPI_PACKAGE = "alembic"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-editor \
+${PYTHON_PN}-sqlalchemy \
+"
diff --git a/meta-python/recipes-devtools/python/python-alembic_0.9.6.bb 
b/meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
new file mode 100644
index 000..efcb2b1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-alembic.inc
diff --git a/meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb 
b/meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb
new file mode 100644
index 000..e248fe7
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-alembic_0.9.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-alembic.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 12/12] python3-wtforms: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-wtforms_2.1.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-wtforms_2.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-wtforms_2.1.bb 
b/meta-python/recipes-devtools/python/python3-wtforms_2.1.bb
new file mode 100644
index 000..add59cf
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-wtforms_2.1.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-wtforms.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 10/12] python3-visitor: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb | 2 ++
 1 file changed, 2 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb

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
new file mode 100644
index 000..b9bc51d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-visitor_0.1.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-visitor.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 11/12] python-wtforms: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-wtforms.inc | 16 
 .../recipes-devtools/python/python-wtforms_2.1.bb  | 18 +-
 2 files changed, 17 insertions(+), 17 deletions(-)
 create mode 100644 meta-python/recipes-devtools/python/python-wtforms.inc

diff --git a/meta-python/recipes-devtools/python/python-wtforms.inc 
b/meta-python/recipes-devtools/python/python-wtforms.inc
new file mode 100644
index 000..916697f
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-wtforms.inc
@@ -0,0 +1,16 @@
+DESCRIPTION = "A flexible forms validation and rendering library for python 
web development."
+HOMEPAGE = "https://pypi.python.org/pypi/WTForms;
+SECTION = "devel/python"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=c459accc90c6ed6a94878c8fe0535be2"
+
+SRC_URI[md5sum] = "6938a541fafd1a1ae2f6b9b88588eef2"
+SRC_URI[sha256sum] = 
"ffdf10bd1fa565b8233380cb77a304cd36fd55c73023e91d4b803c96bc11d46f"
+
+PYPI_PACKAGE = "WTForms"
+PYPI_PACKAGE_EXT = "zip"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-netserver \
+${PYTHON_PN}-numbers \
+"
diff --git a/meta-python/recipes-devtools/python/python-wtforms_2.1.bb 
b/meta-python/recipes-devtools/python/python-wtforms_2.1.bb
index 5ddcb48..fdb015e 100644
--- a/meta-python/recipes-devtools/python/python-wtforms_2.1.bb
+++ b/meta-python/recipes-devtools/python/python-wtforms_2.1.bb
@@ -1,18 +1,2 @@
-DESCRIPTION = "A flexible forms validation and rendering library for python 
web development."
-HOMEPAGE = "https://pypi.python.org/pypi/WTForms;
-SECTION = "devel/python"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=c459accc90c6ed6a94878c8fe0535be2"
-
-SRC_URI[md5sum] = "6938a541fafd1a1ae2f6b9b88588eef2"
-SRC_URI[sha256sum] = 
"ffdf10bd1fa565b8233380cb77a304cd36fd55c73023e91d4b803c96bc11d46f"
-
-PYPI_PACKAGE = "WTForms"
-PYPI_PACKAGE_EXT = "zip"
-
 inherit pypi setuptools
-
-RDEPENDS_${PN} += "\
-${PYTHON_PN}-netserver \
-${PYTHON_PN}-numbers \
-"
+require python-wtforms.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 01/13] python[3]-editor: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-editor.inc   | 9 +
 meta-python/recipes-devtools/python/python-editor_1.0.3.bb  | 2 ++
 meta-python/recipes-devtools/python/python3-editor_1.0.3.bb | 2 ++
 3 files changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-editor.inc
 create mode 100644 meta-python/recipes-devtools/python/python-editor_1.0.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-editor_1.0.3.bb

diff --git a/meta-python/recipes-devtools/python/python-editor.inc 
b/meta-python/recipes-devtools/python/python-editor.inc
new file mode 100644
index 000..30650bd
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-editor.inc
@@ -0,0 +1,9 @@
+DESCRIPTION = "Programmatically open and editor, capture the result"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
+
+SRC_URI[md5sum] = "0aca5f2ef176ce68e98a5b7e31372835"
+SRC_URI[sha256sum] = 
"a3c066acee22a1c94f63938341d4fb374e3fdd69366ed6603d7b24bed1efc565"
+
+PYPI_PACKAGE = "python-editor"
+
diff --git a/meta-python/recipes-devtools/python/python-editor_1.0.3.bb 
b/meta-python/recipes-devtools/python/python-editor_1.0.3.bb
new file mode 100644
index 000..f7a9a8c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-editor_1.0.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-editor.inc
diff --git a/meta-python/recipes-devtools/python/python3-editor_1.0.3.bb 
b/meta-python/recipes-devtools/python/python3-editor_1.0.3.bb
new file mode 100644
index 000..8ad2b86
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-editor_1.0.3.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-editor.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 00/13] New recipes for additional flask extensions

2017-12-07 Thread Bill Randle
The basic flask recipes and recipes for a few flask extensions are currently
present in meta-python. This patch adds several more flask extensions and their
dependencies, useful for building full featured web sites. Both python and
python3 receipes are provided.

V2: fix patches in 03/13 (flask-migrate) and 13/13 (flask-xstatic). The rest
are unchanged.

Bill Randle (13):
  python[3]-editor: new recipes
  python[3]-alembic: new recipes
  python[3]-fask-migrate: new recipes
  python[3]-flask-nav: new recipes
  python[3]-flask-uploads: new recipes
  python[3]-flask-script: new recipes
  python[3]-flask-mail: new recipes
  python[3]-flask-user: new recipes
  python[3]-speaklater: new recipes
  python[3]-flask-babel: new recipes
  python[3]-xstatic: new recipes
  python[3]-xstatic-font-awesome: new recipes
  python[3]-flask-xstatic: new recipes

 meta-python/recipes-devtools/python/python-alembic.inc  | 13 +
 .../recipes-devtools/python/python-alembic_0.9.6.bb |  2 ++
 meta-python/recipes-devtools/python/python-editor.inc   |  9 +
 .../recipes-devtools/python/python-editor_1.0.3.bb  |  2 ++
 .../recipes-devtools/python/python-flask-babel.inc  | 16 
 .../python/python-flask-babel_0.11.2.bb |  2 ++
 .../recipes-devtools/python/python-flask-mail.inc   | 12 
 .../recipes-devtools/python/python-flask-mail_0.9.1.bb  |  2 ++
 .../recipes-devtools/python/python-flask-migrate.inc| 14 ++
 .../python/python-flask-migrate_2.1.1.bb|  2 ++
 .../recipes-devtools/python/python-flask-nav.inc| 13 +
 .../recipes-devtools/python/python-flask-nav_0.6.bb |  2 ++
 .../recipes-devtools/python/python-flask-script.inc | 12 
 .../python/python-flask-script_2.0.6.bb |  2 ++
 .../recipes-devtools/python/python-flask-uploads.inc| 12 
 .../python/python-flask-uploads_0.2.1.bb|  2 ++
 .../recipes-devtools/python/python-flask-user.inc   | 17 +
 .../recipes-devtools/python/python-flask-user_0.6.19.bb |  2 ++
 .../recipes-devtools/python/python-flask-xstatic.inc| 16 
 .../python-flask-xstatic/remove-pip-requires.patch  |  7 +++
 .../python/python-flask-xstatic_0.0.1.bb|  2 ++
 .../recipes-devtools/python/python-speaklater.inc   |  9 +
 .../recipes-devtools/python/python-speaklater_1.3.bb|  2 ++
 .../python/python-xstatic-font-awesome.inc  | 17 +
 .../python/python-xstatic-font-awesome_4.7.0.0.bb   |  2 ++
 meta-python/recipes-devtools/python/python-xstatic.inc  | 14 ++
 .../recipes-devtools/python/python-xstatic_1.0.1.bb |  2 ++
 .../recipes-devtools/python/python3-alembic_0.9.6.bb|  2 ++
 .../recipes-devtools/python/python3-editor_1.0.3.bb |  2 ++
 .../python/python3-flask-babel_0.11.2.bb|  2 ++
 .../recipes-devtools/python/python3-flask-mail_0.9.1.bb |  2 ++
 .../python/python3-flask-migrate_2.1.1.bb   |  2 ++
 .../recipes-devtools/python/python3-flask-nav_0.6.bb|  2 ++
 .../python/python3-flask-script_2.0.6.bb|  2 ++
 .../python/python3-flask-uploads_0.2.1.bb   |  2 ++
 .../python/python3-flask-user_0.6.19.bb |  2 ++
 .../python/python3-flask-xstatic_0.0.1.bb   |  2 ++
 .../recipes-devtools/python/python3-speaklater_1.3.bb   |  2 ++
 .../python/python3-xstatic-font-awesome_4.7.0.0.bb  |  2 ++
 .../recipes-devtools/python/python3-xstatic_1.0.1.bb|  2 ++
 40 files changed, 232 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-alembic.inc
 create mode 100644 meta-python/recipes-devtools/python/python-alembic_0.9.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python-editor.inc
 create mode 100644 meta-python/recipes-devtools/python/python-editor_1.0.3.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-babel.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-babel_0.11.2.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-mail.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-mail_0.9.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-migrate.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav.inc
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-script.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python-flask-uploads.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-uploads_0.2.1.bb
 create mode 100644 meta-python/recipes-devtools/python

[oe] [meta-python][V2 PATCH 09/12] python-visitor: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-visitor.inc  | 6 ++
 meta-python/recipes-devtools/python/python-visitor_0.1.3.bb | 8 +---
 2 files changed, 7 insertions(+), 7 deletions(-)
 create 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
new file mode 100644
index 000..8c2288c
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-visitor.inc
@@ -0,0 +1,6 @@
+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/python-visitor_0.1.3.bb 
b/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb
index 1236506..eee25a5 100644
--- a/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb
+++ b/meta-python/recipes-devtools/python/python-visitor_0.1.3.bb
@@ -1,8 +1,2 @@
-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 setuptools
+require python-visitor.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 06/13] python[3]-flask-script: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-script.inc  | 12 
 .../recipes-devtools/python/python-flask-script_2.0.6.bb |  2 ++
 .../recipes-devtools/python/python3-flask-script_2.0.6.bb|  2 ++
 3 files changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-script.inc
 create mode 100644 
meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
 create mode 100644 
meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-script.inc 
b/meta-python/recipes-devtools/python/python-flask-script.inc
new file mode 100644
index 000..fca777b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-script.inc
@@ -0,0 +1,12 @@
+DESCRIPTION = "Scripting support for flask"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e686048adb69341fc8a08caeda528b41"
+
+SRC_URI[md5sum] = "3fbd91fe13cebedfb2431331f6eabb68"
+SRC_URI[sha256sum] = 
"6425963d91054cfcc185807141c7314a9c5ad46325911bd24dcb489bd0161c65"
+
+PYPI_PACKAGE = "Flask-Script"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb 
b/meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
new file mode 100644
index 000..b7d55af
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-script_2.0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-script.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb 
b/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb
new file mode 100644
index 000..9f88519
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-script_2.0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-script.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-python][V2 PATCH 04/13] python[3]-flask-nav: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 meta-python/recipes-devtools/python/python-flask-nav.inc| 13 +
 meta-python/recipes-devtools/python/python-flask-nav_0.6.bb |  2 ++
 .../recipes-devtools/python/python3-flask-nav_0.6.bb|  2 ++
 3 files changed, 17 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav.inc
 create mode 100644 meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb

diff --git a/meta-python/recipes-devtools/python/python-flask-nav.inc 
b/meta-python/recipes-devtools/python/python-flask-nav.inc
new file mode 100644
index 000..932ccdf
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-nav.inc
@@ -0,0 +1,13 @@
+DESCRIPTION = "Easily create navigation for Flask applications."
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2729ee82259d601d90d28b0574d12416"
+
+SRC_URI[md5sum] = "4d51cfd06d58f8d0fe85775a6696c0e5"
+SRC_URI[sha256sum] = 
"44e40b755380a1e68ab521a2f9174de259a2c94ddcdaabf36b3aca2e110a33f4"
+
+PYPI_PACKAGE = "flask-nav"
+
+RDEPENDS_${PN} += "\
+${PYTHON_PN}-blinker \
+${PYTHON_PN}-flask \
+"
diff --git a/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb 
b/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
new file mode 100644
index 000..30b5b3b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools
+require python-flask-nav.inc
diff --git a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb 
b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
new file mode 100644
index 000..d251152
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
@@ -0,0 +1,2 @@
+inherit pypi setuptools3
+require python-flask-nav.inc
-- 
2.7.4

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-python][PATCH 00/12] Create Python3 recipies for several existing Python2 recipes

2017-12-05 Thread Bill Randle
On Tue, Dec 5, 2017 at 6:48 PM, akuster808 <akuster...@gmail.com> wrote:
> Bill,
>
>
> On 11/29/2017 09:46 PM, Bill Randle wrote:
>> This set of patches creates the Python3 variant of several existing Python2 
>> packages.
>> It first moves the core of the existing recipe(s) into a .inc file, then 
>> creates
>> python-*-.bb and python3-*.bb files that reference the new .inc file.
>>
>> Bill Randle (12):
>>   python-dominate: move core of recipe to a .inc file
>>   python3-dominate: new recipe
>>   python-flask-bootstrap: move core of recipe to a .inc file
>>   python3-flask-bootstrap: new recipe
>>   python-flask-sqlalchemy: move core of recipe to a .inc file
>>   python3-flask-sqlalchemy: new recipe
>>   python-flask-wtf: move core of recipe to a .inc file
>>   python3-flask-wtf: new recipe
>>   python-visitor: move core of recipe to a .inc file
>>   python3-visitor: new recipe
>>   python-wtforms: move core of recipe to a .inc file
>>   python3-wtforms: new recipe
>
> I am seeing these additional issues:
>
> NOTE: Resolving any missing task queue dependencies
> ERROR: Nothing RPROVIDES 'python3-wtforms' (but
> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
> RDEPENDS on or otherwise requires it)
> NOTE: Runtime target 'python3-wtforms' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-wtforms']
> NOTE: Runtime target 'python3-flask-wtf' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-wtf',
> 'python3-wtforms']
> ERROR: Nothing RPROVIDES 'python3-flask-wtf-dev' (but
> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb
> RDEPENDS on or otherwise requires it)
> No eligible RPROVIDERs exist for 'python3-flask-wtf-dev'
> NOTE: Runtime target 'python3-flask-wtf-dev' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-wtf-dev']
> ERROR: Nothing RPROVIDES 'python3-visitor' (but
> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-bootstrap_3.3.7.1.bb
> RDEPENDS on or otherwise requires it)
> NOTE: Runtime target 'python3-visitor' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-visitor']
> NOTE: Runtime target 'python3-flask-bootstrap-dev' is unbuildable,
> removing...
> Missing or unbuildable dependency chain was:
> ['python3-flask-bootstrap-dev', 'python3-visitor']
> NOTE: Runtime target 'python3-flask-bootstrap' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-bootstrap',
> 'python3-visitor']
>
>
> please check. still running local world build so not sure what else will
> pop up.
>
> - armin
>>
>>  .../recipes-devtools/python/python-dominate.inc| 11 +++
>>  .../recipes-devtools/python/python-dominate_2.3.1.bb   | 13 +
>>  .../recipes-devtools/python/python-flask-bootstrap.inc | 14 ++
>>  .../python/python-flask-bootstrap_3.3.7.1.bb   | 16 +---
>>  .../python/python-flask-sqlalchemy.inc | 10 ++
>>  .../python/python-flask-sqlalchemy_2.3.2.bb| 12 +---
>>  .../recipes-devtools/python/python-flask-wtf.inc   | 15 +++
>>  .../recipes-devtools/python/python-flask-wtf_0.12.bb   | 17 
>> +
>>  meta-python/recipes-devtools/python/python-visitor.inc |  6 ++
>>  .../recipes-devtools/python/python-visitor_0.1.3.bb|  8 +---
>>  meta-python/recipes-devtools/python/python-wtforms.inc | 16 
>>  .../recipes-devtools/python/python-wtforms_2.1.bb  | 18 
>> +-
>>  .../recipes-devtools/python/python3-dominate_2.3.1.bb  |  2 ++
>>  .../python/python3-flask-bootstrap_3.3.7.1.bb  |  2 ++
>>  .../python/python3-flask-sqlalchemy_2.3.2.bb   |  2 ++
>>  .../recipes-devtools/python/python3-flask-wtf_0.12.bb  |  2 ++
>>  .../recipes-devtools/python/python3-visitor_0.1.3.bb   |  2 ++
>>  .../recipes-devtools/python/python3-wtforms_2.1.bb |  2 ++
>>  18 files changed, 90 insertions(+), 78 deletions(-)
>>  create mode 100644 meta-python/recipes-devtools/python/python-dominate.inc
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python-flask-bootstrap.inc
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python-flask-sqlalchemy.inc
>>  create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc
>>  create mode 100644 meta-python/recipes-devtools/pytho

Re: [oe] [meta-python][PATCH 03/13] python[3]-fask-migrate: new recipes

2017-12-05 Thread Bill Randle
Ouch! Good find. I'll issue a revised patch.

-Bill

On Tue, Dec 5, 2017 at 6:13 PM, akuster808 <akuster...@gmail.com> wrote:
>
>
> On 12/01/2017 09:12 PM, Bill Randle wrote:
>> Signed-off-by: Bill Randle <bill.ran...@gmail.com>
>> ---
>>  .../recipes-devtools/python/python-flask-migrate.inc   | 14 
>> ++
>>  .../recipes-devtools/python/python-flask-migrate_2.1.1.bb  |  2 ++
>>  .../recipes-devtools/python/python3-flask-migrate_2.1.1.bb |  2 ++
>>  3 files changed, 18 insertions(+)
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python-flask-migrate.inc
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
>>  create mode 100644 
>> meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
>>
>> diff --git a/meta-python/recipes-devtools/python/python-flask-migrate.inc 
>> b/meta-python/recipes-devtools/python/python-flask-migrate.inc
>> new file mode 100644
>> index 000..7af4fe1
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python-flask-migrate.inc
>> @@ -0,0 +1,14 @@
>> +DESCRIPTION = "SQLAlchemy database migrations for Flask applications using 
>> Alembic"
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b69377f79f3f48c661701236d5a6a85"
>> +
>> +SRC_URI[md5sum] = "def4106c80897b7fad2afb3bc05360e4"
>> +SRC_URI[sha256sum] = 
>> "b709ca8642559c3c5a81a33ab10839fa052177accd5ba821047a99db635255ed"
>> +
>> +PYPI_PACKAGE = "Flask-Migrate"
>> +
>> +RDEPENDS_${PN} += "\
>> +${PYTHON_PN}-flask-sqlalchemy \
>> +${PYTHON_PN}-alembic \
>> +${PYTHON_PN}-flask \
>> +"
>> diff --git 
>> a/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb 
>> b/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
>> new file mode 100644
>> index 000..af79997
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python-flask-migrate_2.1.1.bb
>> @@ -0,0 +1,2 @@
>> +inherit pypi setuptools
>> +require python-flask-migrate
>> diff --git 
>> a/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb 
>> b/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
>> new file mode 100644
>> index 000..94abbf3
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python3-flask-migrate_2.1.1.bb
>> @@ -0,0 +1,2 @@
>> +inherit pypi setuptools3
> Found issue
>> +require python-flask-migrate  <<<-- missing .inc
>
> - armin
>
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [meta-python][PATCH 07/12] python-flask-wtf: move core of recipe to a .inc file

2017-12-05 Thread Bill Randle
On Tue, Dec 5, 2017 at 8:03 PM, Tim Orling
<timothy.t.orl...@linux.intel.com> wrote:
>
>> On Dec 5, 2017, at 7:57 PM, akuster808 <akuster...@gmail.com> wrote:
>>
>>
>>
>> On 11/29/2017 09:47 PM, Bill Randle wrote:
>>> Signed-off-by: Bill Randle <bill.ran...@gmail.com>
>>> ---
>>> .../recipes-devtools/python/python-flask-wtf.inc| 15 +++
>>> .../recipes-devtools/python/python-flask-wtf_0.12.bb| 17 
>>> +
>>> 2 files changed, 16 insertions(+), 16 deletions(-)
>>> create mode 100644 meta-python/recipes-devtools/python/python-flask-wtf.inc
>>
>> I am getting this error:
>>
>> WARNING:
>> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-xstatic_0.0.1.bb:
>> Unable to get checksum for python3-flask-xstatic SRC_URI entry
>> remove-pip-requires.patch: file could not be found
>> WARNING:
>> /home/akuster/OE/master/meta-openembedded/meta-python/recipes-devtools/python/python3-flask-wtf_0.12.bb:
>> Unable to get checksum for python3-flask-wtf SRC_URI entry
>> import-simplejson-as-json.patch: file could not be found
>
> If you are trying to use a common patch file in, for instance, 
> python-flask-wtf directory, you will need to add FILESEXTRAPATHS_prepend to 
> the .inc so that the patch will be picked up by python3 version. One of the 
> few cases where we want FILESEXTRAPATHS in an actual recipe, or at least the 
> .inc (rather than a bbappend).
>
> —Tim

Thanks, Tim! I just figured out I needed something like that. Thanks
for the tip!!

-Bill

[cut]
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] smstools3: remove bash dependency on packaged scripts

2017-12-31 Thread Bill Randle
An earlier patch to update smstools3 to v3.1.21 dropped the RDEPENDS for
bash, which caused qc errors during packaging, since the example scripts
still used /bin/bash as the command executor. This patch updates the scripts
to use /bin/sh instead. No known bash-only syntax is present in the packaged
scripts and they run ok under Busybox.

Upstream-Status: Submitted 
[http://smstools3.kekekasvi.com/topic.php?post=6188#post6188]
Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../smstools3/smstools3/scripts_no_bash.patch  | 32 ++
 .../smstools3/smstools3_3.1.21.bb  |  3 +-
 2 files changed, 34 insertions(+), 1 deletion(-)
 create mode 100644 
meta-oe/recipes-connectivity/smstools3/smstools3/scripts_no_bash.patch

diff --git 
a/meta-oe/recipes-connectivity/smstools3/smstools3/scripts_no_bash.patch 
b/meta-oe/recipes-connectivity/smstools3/smstools3/scripts_no_bash.patch
new file mode 100644
index 0..f7529d8cb
--- /dev/null
+++ b/meta-oe/recipes-connectivity/smstools3/smstools3/scripts_no_bash.patch
@@ -0,0 +1,32 @@
+--- smstools3.orig/scripts/sendsms 2006-02-04 11:52:06.0 -0800
 smstools3/scripts/sendsms  2017-12-30 15:40:28.009169106 -0800
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ # This script send a text sms at the command line by creating
+ # a sms file in the outgoing queue.
+ 
+--- smstools3.orig/scripts/sms2html2006-02-04 11:52:06.0 -0800
 smstools3/scripts/sms2html 2017-12-30 15:39:17.496694390 -0800
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ 
+ # This script converts a received sms file into a html file. 
+ 
+--- smstools3.orig/scripts/sms2unicode 2006-02-04 11:52:06.0 -0800
 smstools3/scripts/sms2unicode  2017-12-30 15:33:14.477250179 -0800
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ 
+ # This script converts a received sms file into a pure unicode text file.
+ 
+--- smstools3/scripts/unicode2sms  2006-02-04 11:52:06.0 -0800
 smstools3/scripts/unicode2sms.new  2017-12-30 15:33:56.918536044 -0800
+@@ -1,4 +1,4 @@
+-#!/bin/bash
++#!/bin/sh
+ 
+ # This script converts a pure unicode text file into an sms file for sending.
+ 
diff --git a/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.21.bb 
b/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.21.bb
index 86c8ede1d..6e6413b4b 100644
--- a/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.21.bb
+++ b/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.21.bb
@@ -6,7 +6,8 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=4d21efa1bb2a186360dde4035f860682"
 HOMEPAGE = "http://smstools3.kekekasvi.com;
 
 SRC_URI = "http://smstools3.kekekasvi.com/packages/${BP}.tar.gz \
-   file://sms_binpath.patch"
+   file://sms_binpath.patch \
+   file://scripts_no_bash.patch"
 
 SRC_URI[md5sum] = "6a9f038fb38a49cc3a4f8f14a88fb8af"
 SRC_URI[sha256sum] = 
"a26ba4c02b16f6cf13177bffca6c9230dc5fefaeba8e3030cd4e4905f6a92084"
-- 
2.13.6

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe][PATCH] smstools3: update to 3.1.21; drop uneeded patches

2017-12-23 Thread Bill Randle
Update smstools3 to latest version and drop some patches that no longer
seem to be required. (Builds and runs fine on poky.)

Signed-off-by: Bill Randle <bill.ran...@gmail.com>
---
 .../smstools3/fix-makefile-override.patch  | 24 --
 ...s_binpath_and_psops.patch => sms_binpath.patch} |  5 +
 .../{smstools3_3.1.15.bb => smstools3_3.1.21.bb}   |  8 +++-
 3 files changed, 4 insertions(+), 33 deletions(-)
 delete mode 100644 
meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch
 rename 
meta-oe/recipes-connectivity/smstools3/smstools3/{sms_binpath_and_psops.patch 
=> sms_binpath.patch} (90%)
 rename meta-oe/recipes-connectivity/smstools3/{smstools3_3.1.15.bb => 
smstools3_3.1.21.bb} (84%)

diff --git 
a/meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch 
b/meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch
deleted file mode 100644
index f0a1d33c9..0
--- 
a/meta-oe/recipes-connectivity/smstools3/smstools3/fix-makefile-override.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Upstream-Status: Backport [debian]
-
 a/src/Makefile
-+++ b/src/Makefile
-@@ -37,16 +37,15 @@
- # Use the following only on GNU/Linux and only if you need ps listing like 
"smsd: MAINPROCESS" and "smsd: GSM1"
- # CFLAGS += -D USE_LINUX_PS_TRICK
- 
--all: smsd 
--
--smsd: smsd.c extras.o locking.o cfgfile.o logging.o alarm.o smsd_cfg.o 
charset.o stats.o blacklist.o whitelist.o modeminit.o pdu.o
--
- ifneq (,$(findstring SOLARIS,$(CFLAGS)))
- ifeq (,$(findstring DISABLE_INET_SOCKET,$(CFLAGS)))
- override LFLAGS += -lsocket -lnsl
- endif
- endif
- 
-+all: smsd 
-+
-+smsd: smsd.c extras.o locking.o cfgfile.o logging.o alarm.o smsd_cfg.o 
charset.o stats.o blacklist.o whitelist.o modeminit.o pdu.o
- ifneq (,$(findstring NOSTATS,$(CFLAGS)))
-   $(CC) $(CFLAGS) -o $@ $^ $(LFLAGS)
- else 
diff --git 
a/meta-oe/recipes-connectivity/smstools3/smstools3/sms_binpath_and_psops.patch 
b/meta-oe/recipes-connectivity/smstools3/smstools3/sms_binpath.patch
similarity index 90%
rename from 
meta-oe/recipes-connectivity/smstools3/smstools3/sms_binpath_and_psops.patch
rename to meta-oe/recipes-connectivity/smstools3/smstools3/sms_binpath.patch
index ffcaa0971..622044632 100644
--- 
a/meta-oe/recipes-connectivity/smstools3/smstools3/sms_binpath_and_psops.patch
+++ b/meta-oe/recipes-connectivity/smstools3/smstools3/sms_binpath.patch
@@ -12,8 +12,5 @@ Index: smstools3/scripts/sms3
 -RESETMODEMS=/usr/local/bin/smsd_resetmodems
 +RESETMODEMS=/usr/bin/smsd_resetmodems
  NAME=smsd
--PSOPT="-e"
-+PSOPT=""
+ PSOPT="-e"
  ECHO=echo
- case `uname` in
-   *BSD|Darwin)
diff --git a/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.15.bb 
b/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.21.bb
similarity index 84%
rename from meta-oe/recipes-connectivity/smstools3/smstools3_3.1.15.bb
rename to meta-oe/recipes-connectivity/smstools3/smstools3_3.1.21.bb
index 310a13c22..9885f351b 100644
--- a/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.15.bb
+++ b/meta-oe/recipes-connectivity/smstools3/smstools3_3.1.21.bb
@@ -6,18 +6,16 @@ LIC_FILES_CHKSUM = 
"file://LICENSE;md5=4d21efa1bb2a186360dde4035f860682"
 HOMEPAGE = "http://smstools3.kekekasvi.com;
 
 SRC_URI = "http://smstools3.kekekasvi.com/packages/${BP}.tar.gz \
-   file://sms_binpath_and_psops.patch \
-   file://fix-makefile-override.patch"
+   file://sms_binpath.patch"
 
-SRC_URI[md5sum] = "0241ef60e646fac1a06254a848e61ed7"
-SRC_URI[sha256sum] = 
"ed00ffaeaa312a5b4f969f4e97a64603a866bbe16e393ea02f5bf05234814d59"
+SRC_URI[md5sum] = "6a9f038fb38a49cc3a4f8f14a88fb8af"
+SRC_URI[sha256sum] = "a26ba4c02b16f6cf13177bffca6c9230dc5fefaeba8e3030cd4e49"
 
 
 S = "${WORKDIR}/${BPN}"
 
 EXTRA_OEMAKE += "LFLAGS='${LDFLAGS}'"
 
-RDEPENDS_${PN} = "bash"
 INITSCRIPT_NAME = "sms3"
 INITSCRIPT_PARAMS = "defaults"
 
-- 
2.13.6

-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [oe-commits] [meta-openembedded] 14/30: python[3]-flask-nav: new recipes

2017-12-24 Thread Bill Randle
On Sat, Dec 23, 2017 at 11:34 PM, Martin Jansa <martin.ja...@gmail.com> wrote:
> On Sat, Dec 23, 2017 at 04:08:52AM +, g...@git.openembedded.org wrote:
>> This is an automated email from the git hooks/post-receive script.
>>
>> armin_kuster pushed a commit to branch master
>> in repository meta-openembedded.
>
> Hi,
>
> This depends on 2 python-blinker reviews which weren't merged with this
> batch, causing:
>
> ERROR: Nothing RPROVIDES 'python3-blinker' (but 
> meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb RDEPENDS on or 
> otherwise requires it)
> NOTE: Runtime target 'python3-blinker' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-blinker']
> NOTE: Runtime target 'python3-flask-nav' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-nav', 
> 'python3-blinker']
> NOTE: Runtime target 'python3-flask-nav-dev' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['python3-flask-nav-dev', 
> 'python3-blinker']
>
> Regards,

That would be this patch:
http://lists.openembedded.org/pipermail/openembedded-devel/2017-December/115865.html
posted on the mailing list five days earlier than the patch for
flask-nav. I should have perhaps put a note in the patch series that
the previously submitted patch was also required as a prerequisite.
I'll to do that in the future.

-Bill

>> commit 55d77b7e3f81dff333cbaa3361d02249943a8fec
>> Author: Bill Randle <bill.ran...@gmail.com>
>> AuthorDate: Thu Dec 7 21:49:02 2017 -0800
>>
>> python[3]-flask-nav: new recipes
>>
>> Signed-off-by: Bill Randle <bill.ran...@gmail.com>
>> Signed-off-by: Armin Kuster <akuster...@gmail.com>
>> ---
>>  meta-python/recipes-devtools/python/python-flask-nav.inc| 13 
>> +
>>  meta-python/recipes-devtools/python/python-flask-nav_0.6.bb |  2 ++
>>  .../recipes-devtools/python/python3-flask-nav_0.6.bb|  2 ++
>>  3 files changed, 17 insertions(+)
>>
>> diff --git a/meta-python/recipes-devtools/python/python-flask-nav.inc 
>> b/meta-python/recipes-devtools/python/python-flask-nav.inc
>> new file mode 100644
>> index 000..932ccdf
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python-flask-nav.inc
>> @@ -0,0 +1,13 @@
>> +DESCRIPTION = "Easily create navigation for Flask applications."
>> +LICENSE = "MIT"
>> +LIC_FILES_CHKSUM = "file://PKG-INFO;md5=2729ee82259d601d90d28b0574d12416"
>> +
>> +SRC_URI[md5sum] = "4d51cfd06d58f8d0fe85775a6696c0e5"
>> +SRC_URI[sha256sum] = 
>> "44e40b755380a1e68ab521a2f9174de259a2c94ddcdaabf36b3aca2e110a33f4"
>> +
>> +PYPI_PACKAGE = "flask-nav"
>> +
>> +RDEPENDS_${PN} += "\
>> +${PYTHON_PN}-blinker \
>> +${PYTHON_PN}-flask \
>> +"
>> diff --git a/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb 
>> b/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
>> new file mode 100644
>> index 000..30b5b3b
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python-flask-nav_0.6.bb
>> @@ -0,0 +1,2 @@
>> +inherit pypi setuptools
>> +require python-flask-nav.inc
>> diff --git a/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb 
>> b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
>> new file mode 100644
>> index 000..d251152
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python/python3-flask-nav_0.6.bb
>> @@ -0,0 +1,2 @@
>> +inherit pypi setuptools3
>> +require python-flask-nav.inc
>>
>> --
>> To stop receiving notification emails like this one, please contact
>> the administrator of this repository.
>> --
>> ___
>> Openembedded-commits mailing list
>> openembedded-comm...@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-commits
>
> --
> Martin 'JaMa' Jansa jabber: martin.ja...@gmail.com
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


[oe] [meta-oe] smstools3

2017-12-20 Thread Bill Randle
When smstools3 was added to meta-oe/recipes-connectivity in 2015, a
patch was included to the init script to change to 'ps' options used
to find the pid during stop. The original (as distributed by the
author) has PSOPT="-e" and the patch changes it to PSOPT="". The way
it is used is:
if  "ps $PSOPT | grep smsd | grep -v grep >/dev/null; then
   do stuff
fi

I'm considering submitting a patch to update the recipe from version
3.15 to 3.21, but before I do, I like to know why PSOPT was changed.
On my busybox test system, a "ps | grep smsd" returns nothing. I need
to use the "-e" option. So, I would like to drop this patch. Comments?
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel


Re: [oe] [PATCH 0/2] poppler nightmare

2018-04-03 Thread Bill Randle
I recently tried to cross build the current version of poppler for an
embedded ARM system. This was not under the Yocto/OE build
environment, but I never could get quite the right cmake config file
to get the thing to build. Since I just needed it for the pdftoraster
cups filter, I punted and built ghostscript instead. cmake may be fine
for native builds, but at least in this case, it was a pain to use for
cross-compilation.

-Bill

On Tue, Apr 3, 2018 at 8:28 PM, Andreas Müller  wrote:
> On Wed, Apr 4, 2018 at 3:32 AM, akuster808  wrote:
>> Andreas,
>>
>>
>>
>> On 04/03/2018 04:15 PM, Andreas Müller wrote:
>>> Not convinced that I'll get support at poppler project. Let's see what
>>> autobuilder says. If it fails, please unroll back to 0.57.0 - I am sure
>>> that disable glib causes trouble for evince.
>>
>> this didn't make it into the current world build. I built it @ home a
>> getting the same errors:
>>
>> |
>> /build/build_artifacts/master/tmp-glibc/work/core2-64-oe-linux/poppler/0.63.0-r0/recipe-sysroot-native/usr/bin/x86_64-oe-linux/../../libexec/x86_64-oe-linux/gcc/x86_64-oe-linux/7.3.0/ld:
>> warning: libpoppler.so.74, needed by ./libpoppler-glib.so, not found
>> (try using -rpath or -rpath-link)
>>
>> - armin
> Thanks Armin for quick response. As written - I suggest to keep
> poppler at 0.57.0 and forget the updates for a while.
>
> Sigh - from the moment I saw the announcement that poppler changes
> from autotools to cmake I thought there might be trouble is ahead. Now
> I know.
>
> Andreas
> --
> ___
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
-- 
___
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel