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

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 13/13] python[3]-flask-xstatic: new recipes

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

Signed-off-by: Bill Randle 
---
 .../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 
---
 .../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 07/13] python[3]-flask-mail: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 
---
 .../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 
---
 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 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 
---
 .../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 10/13] python[3]-flask-babel: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 .../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 09/13] python[3]-speaklater: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 
---
 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 04/13] python[3]-flask-nav: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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][V2 PATCH 01/13] python[3]-editor: new recipes

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 

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

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 10/12] python3-visitor: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 12/12] python3-wtforms: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 11/12] python-wtforms: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 09/12] python-visitor: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 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 
---
 .../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 
---
 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 
---
 .../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 
---
 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 01/12] python-dominate: move core of recipe to a .inc file

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 
---
 .../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 04/12] python3-flask-bootstrap: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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 02/12] python3-dominate: new recipe

2017-12-07 Thread Bill Randle
Signed-off-by: Bill Randle 
---
 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-networking][PATCH] samba: Add packagegroup

2017-12-07 Thread zhengrq
Add packagegroup for samba, for there are too many rpms in samba and it's hard 
to manage.

Signed-off-by: Zheng Ruoqin 
---
 .../recipes-connectivity/samba/samba_4.6.7.bb  | 30 +-
 1 file changed, 29 insertions(+), 1 deletion(-)

diff --git a/meta-networking/recipes-connectivity/samba/samba_4.6.7.bb 
b/meta-networking/recipes-connectivity/samba/samba_4.6.7.bb
index 2b227c9..83846b1 100644
--- a/meta-networking/recipes-connectivity/samba/samba_4.6.7.bb
+++ b/meta-networking/recipes-connectivity/samba/samba_4.6.7.bb
@@ -162,7 +162,7 @@ PACKAGES =+ "${PN}-python ${PN}-pidl \
  ${PN}-dsdb-modules ${PN}-testsuite registry-tools \
  winbind \
  ${PN}-common ${PN}-base ${PN}-ctdb-tests \
- smbclient"
+ smbclient ${PN}-client ${PN}-server ${PN}-test"
 
 python samba_populate_packages() {
 def module_hook(file, pkg, pattern, format, basename):
@@ -254,3 +254,31 @@ FILES_smbclient = "${bindir}/cifsdd \
 
 RDEPENDS_${PN}-pidl_append = " perl"
 FILES_${PN}-pidl = "${bindir}/pidl ${datadir}/perl5/Parse"
+
+SUMMARY_${PN}-client = "samba client"
+RDEPENDS_${PN}-client = "\
+smbclient \
+winbind \
+registry-tools \
+${PN}-pidl \
+" 
+
+ALLOW_EMPTY_${PN}-client = "1"
+
+SUMMARY_${PN}-server = "samba server"
+RDEPENDS_${PN}-server = "\
+${PN} \
+winbind \
+registry-tools \
+${PN}-pidl \
+" 
+
+ALLOW_EMPTY_${PN}-server = "1"
+
+SUMMARY_${PN}-test = "samba test"
+RDEPENDS_${PN}-test = "\
+${PN}-ctdb-tests \
+${PN}-testsuite \
+"
+
+ALLOW_EMPTY_${PN}-test = "1"
-- 
2.7.4



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


Re: [oe] [meta-oe][PATCH] usb-modeswitch: Upgrade to latest version

2017-12-07 Thread Dmitri Vorobiev
Yes, it is needed, as documented on the home page of the project [1]:

"You need program releases from 2.4.0 upward because of updated
parameters/functions."

[1] http://www.draisberghof.de/usb_modeswitch/

Thanks,
Dmitri

On Thu, 7 Dec 2017 at 21.23, Khem Raj  wrote:

> On Thu, Dec 7, 2017 at 5:19 AM, Dmitri Vorobiev
>  wrote:
> > Use the latest version of usb-modeswitch (2.5.1) and
> > usb-modeswitch-data (20170806).
> >
> > Signed-off-by: Dmitri Vorobiev 
> > ---
> >  ...-modeswitch-data_20140529.bb => usb-modeswitch-data_20170806.bb} |
> 6 +++---
> >  .../{usb-modeswitch_2.2.0.bb => usb-modeswitch_2.5.1.bb}|
> 4 ++--
> >  2 files changed, 5 insertions(+), 5 deletions(-)
> >  rename meta-oe/recipes-support/usb-modeswitch/{usb-modeswitch-
> data_20140529.bb => usb-modeswitch-data_20170806.bb} (66%)
> >  rename meta-oe/recipes-support/usb-modeswitch/{usb-modeswitch_2.2.0.bb
> => usb-modeswitch_2.5.1.bb} (79%)
> >
> > diff --git a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-
> data_20140529.bb b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-
> data_20170806.bb
> > similarity index 66%
> > rename from meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-
> data_20140529.bb
> > rename to meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-
> data_20170806.bb
> > index a265411..3926feb 100644
> > --- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-
> data_20140529.bb
> > +++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-
> data_20170806.bb
> > @@ -5,13 +5,13 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=
> 94d55d512a9ba36caa9b7df079bae19f"
> >  inherit allarch
> >
> >  SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2;
> > -SRC_URI[md5sum] = "dff94177781298aaf0b3c2a3c3dea6b2"
> > -SRC_URI[sha256sum] = "53889157937109e04dafe897c098ec
> 94f3f44f9c0c83fc6ec8417aa9a587e536"
> > +SRC_URI[md5sum] = "fb50d15b52e909d742dd16f0a9882316"
> > +SRC_URI[sha256sum] = "ce413ef2a50e648e9c81bc3ea6110e
> 7324a8bf981034fc9ec4467d3562563c2c"
> >
> >  do_install() {
> >  oe_runmake install DESTDIR=${D}
> >  }
> >
> > -RDEPENDS_${PN} = "usb-modeswitch (>= 2.2.0)"
> > +RDEPENDS_${PN} = "usb-modeswitch (>= 2.4.0)"
>
> is versions specific dep still needed.
>
> >  FILES_${PN} += "${base_libdir}/udev/rules.d/ \
> >  ${datadir}/usb_modeswitch"
> > diff --git a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.
> 0.bb b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
> > similarity index 79%
> > rename from meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.
> 0.bb
> > rename to meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
> > index 425f66b..e2d211b 100644
> > --- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb
> > +++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
> > @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=
> 94d55d512a9ba36caa9b7df079bae19f"
> >  DEPENDS = "libusb1"
> >
> >  SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2;
> > -SRC_URI[md5sum] = "f323fe700edd6ea404c40934ddf32b22"
> > -SRC_URI[sha256sum] = "2752103de171ed5f6c8d6a6e3e73e1
> 6c9ee3e8e394dd39c5991f7680eb908a3a"
> > +SRC_URI[md5sum] = "7e6435a2afe7aed8574fe59cf09a3503"
> > +SRC_URI[sha256sum] = "f6e44bfc6e8d531ac6759791cf79ee
> 9c618e7894fcf37170c8a5559718f9abd2"
> >
> >  EXTRA_OEMAKE = "TCL=${bindir}/tclsh"
> >
> > --
> > 2.1.4
> >
> > --
> > ___
> > 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


Re: [oe] [meta-oe][PATCH] usb-modeswitch: Upgrade to latest version

2017-12-07 Thread Khem Raj
On Thu, Dec 7, 2017 at 5:19 AM, Dmitri Vorobiev
 wrote:
> Use the latest version of usb-modeswitch (2.5.1) and
> usb-modeswitch-data (20170806).
>
> Signed-off-by: Dmitri Vorobiev 
> ---
>  ...-modeswitch-data_20140529.bb => usb-modeswitch-data_20170806.bb} | 6 
> +++---
>  .../{usb-modeswitch_2.2.0.bb => usb-modeswitch_2.5.1.bb}| 4 ++--
>  2 files changed, 5 insertions(+), 5 deletions(-)
>  rename 
> meta-oe/recipes-support/usb-modeswitch/{usb-modeswitch-data_20140529.bb => 
> usb-modeswitch-data_20170806.bb} (66%)
>  rename meta-oe/recipes-support/usb-modeswitch/{usb-modeswitch_2.2.0.bb => 
> usb-modeswitch_2.5.1.bb} (79%)
>
> diff --git 
> a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20140529.bb 
> b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170806.bb
> similarity index 66%
> rename from 
> meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20140529.bb
> rename to 
> meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170806.bb
> index a265411..3926feb 100644
> --- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20140529.bb
> +++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170806.bb
> @@ -5,13 +5,13 @@ LIC_FILES_CHKSUM = 
> "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
>  inherit allarch
>
>  SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2;
> -SRC_URI[md5sum] = "dff94177781298aaf0b3c2a3c3dea6b2"
> -SRC_URI[sha256sum] = 
> "53889157937109e04dafe897c098ec94f3f44f9c0c83fc6ec8417aa9a587e536"
> +SRC_URI[md5sum] = "fb50d15b52e909d742dd16f0a9882316"
> +SRC_URI[sha256sum] = 
> "ce413ef2a50e648e9c81bc3ea6110e7324a8bf981034fc9ec4467d3562563c2c"
>
>  do_install() {
>  oe_runmake install DESTDIR=${D}
>  }
>
> -RDEPENDS_${PN} = "usb-modeswitch (>= 2.2.0)"
> +RDEPENDS_${PN} = "usb-modeswitch (>= 2.4.0)"

is versions specific dep still needed.

>  FILES_${PN} += "${base_libdir}/udev/rules.d/ \
>  ${datadir}/usb_modeswitch"
> diff --git a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb 
> b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
> similarity index 79%
> rename from meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb
> rename to meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
> index 425f66b..e2d211b 100644
> --- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb
> +++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
> @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = 
> "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
>  DEPENDS = "libusb1"
>
>  SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2;
> -SRC_URI[md5sum] = "f323fe700edd6ea404c40934ddf32b22"
> -SRC_URI[sha256sum] = 
> "2752103de171ed5f6c8d6a6e3e73e16c9ee3e8e394dd39c5991f7680eb908a3a"
> +SRC_URI[md5sum] = "7e6435a2afe7aed8574fe59cf09a3503"
> +SRC_URI[sha256sum] = 
> "f6e44bfc6e8d531ac6759791cf79ee9c618e7894fcf37170c8a5559718f9abd2"
>
>  EXTRA_OEMAKE = "TCL=${bindir}/tclsh"
>
> --
> 2.1.4
>
> --
> ___
> 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


Re: [oe] [PATCH] [meta-networking][PATCH] packagegroup-samba: new add

2017-12-07 Thread Andreas Oberritter
On Thu, 7 Dec 2017 01:20:58 +
"Zheng, Ruoqin"  wrote:

> Hi Andreas!
> Thank you for your description.
> And what about samba-server?

It's called "samba". If it's confusing, maybe adding a comment inside the recipe
or to the package summary of "samba" might help.

Regards,
Andreas


> 
> --
> Zheng Ruoqin
> Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
> ADDR.: No.6 Wenzhu Road, Software Avenue,
>Nanjing, 210012, China
> MAIL : zhengrq.f...@cn.fujistu.com
> 
> 
> -Original Message-
> From: Andreas Oberritter [mailto:o...@opendreambox.org] 
> Sent: Wednesday, December 06, 2017 7:14 PM
> To: Zheng, Ruoqin/郑 若钦 
> Cc: openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [PATCH] [meta-networking][PATCH] packagegroup-samba: new add
> 
> Hi Zheng,
> 
> On Wed, 6 Dec 2017 03:30:32 +
> "Zheng, Ruoqin"  wrote:
> 
> > Hi Andreas!
> >I have some questions here:
> > 
> >1. Why don't you just create a samba-client meta package inside the 
> > samba recipe instead?
> >   Well, I don't know how to create a samba-client meta package, and 
> > could you help me?  
> 
> do it the same way you did here, but put it into samba_*.bb, i.e. add 
> ${PN}-client to PACKAGES and create RDEPENDS_${PN}-client.
> 
> You may need to add ALLOW_EMPTY_${PN}-client = "1", because the package won't 
> contain any files.
> 
> Don't forget to remove samba-common.
> 
> > 
> >2. All samba libraries already depend on samba-common, so samba depends 
> > on it indirectly. Therefore this "package group" doesn't seem to be 
> > necessary.
> >Yes, I found it, thank you.
> >   
> > > +
> > > +SUMMARY_${PN}-ctdb-tests = " samba ctdb-tests"
> > > +RDEPENDS_${PN}-ctdb-tests = "samba-ctdb-tests"
> > > +
> > > +SUMMARY_${PN}-pidl = "samba-pidl"
> > > +RDEPENDS_${PN}-pidl = "samba-pidl"
> > 
> >3. These two seem to be unnecessary, too.
> >   Testsuite for samba is unnecessary for the packagegroup, why?
> >   And can you give me a advice about how to deal with samba-pidl?Put it 
> > into client?  
> 
> Put it nowhere. Installing packagegroup-samba-pidl is in no way easier than 
> installing samba-pidl directly. The summary doesn't add any value either.
> 
> The same holds true for samba-ctdb-tests.
> 
> Generally, package groups are meta packages that combine many packages from 
> different recipes. They don't make sense if they install only one package, 
> and they aren't necessary if all used packages come from exactly one recipe.
> 
> Regards,
> Andreas
> 
> > 
> > 
> > --
> > Zheng Ruoqin
> > Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
> > ADDR.: No.6 Wenzhu Road, Software Avenue,
> >Nanjing, 210012, China
> > MAIL : zhengrq.f...@cn.fujistu.com
> > 
> > 
> > -Original Message-
> > From: openembedded-devel-boun...@lists.openembedded.org 
> > [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf 
> > Of Andreas Oberritter
> > Sent: Tuesday, December 05, 2017 9:29 PM
> > To: openembedded-devel@lists.openembedded.org
> > Subject: Re: [oe] [PATCH] [meta-networking][PATCH] packagegroup-samba: 
> > new add
> > 
> > Hi Zheng,
> > 
> > On Tue, 5 Dec 2017 17:33:07 +0800
> > zhengrq  wrote:
> >   
> > > Add packagegroup for samba, for there are too many rpms in samba and it's 
> > > hard to manage.
> > > 
> > > Signed-off-by: Zheng Ruoqin 
> > > ---
> > >  .../packagegroups/packagegroup-samba.bb| 28 
> > > ++
> > >  1 file changed, 28 insertions(+)
> > >  create mode 100644
> > > meta-networking/recipes-connectivity/packagegroups/packagegroup-samba.
> > > bb
> > > 
> > > diff --git
> > > a/meta-networking/recipes-connectivity/packagegroups/packagegroup-sa
> > > mb
> > > a.bb
> > > b/meta-networking/recipes-connectivity/packagegroups/packagegroup-sa
> > > mb
> > > a.bb
> > > new file mode 100644
> > > index 000..6177691
> > > --- /dev/null
> > > +++ b/meta-networking/recipes-connectivity/packagegroups/packagegrou
> > > +++ p-
> > > +++ samba.bb
> > > @@ -0,0 +1,28 @@
> > > +SUMMARY = "samba package groups"
> > > +PV = "1.0"
> > > +PR = "r2"
> > > +
> > > +inherit packagegroup
> > > +
> > > +PROVIDES = "${PACKAGES}"
> > > +PACKAGES = "${PN}-server ${PN}-client ${PN}-ctdb-tests ${PN}-pidl"
> > > +
> > > +SUMMARY_${PN}-client = " samba client"
> > > +RDEPENDS_${PN}-client = "\
> > > +smbclient \
> > > +samba-common \
> > > +winbind \
> > > +registry-tools \
> > > +"
> > 
> > Why don't you just create a samba-client meta package inside the samba 
> > recipe instead?
> >   
> > > +
> > > +SUMMARY_${PN}-server = " samba server"
> > > +RDEPENDS_${PN}-server = "\
> > > +samba \
> > > +samba-common \
> > > +"
> > 
> > All samba libraries 

Re: [oe] [PATCH] sstate.bbclass: Add progress bars when removing from the sysroots

2017-12-07 Thread Peter Kjellerstedt
And this was of course intended to go to the openembedded-core list.

//Peter

> -Original Message-
> From: openembedded-devel-boun...@lists.openembedded.org
> [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of
> Peter Kjellerstedt
> Sent: den 7 december 2017 15:40
> To: openembedded-devel@lists.openembedded.org
> Subject: [oe] [PATCH] sstate.bbclass: Add progress bars when removing
> from the sysroots
> 
> If there are many recipes that should be cleaned out from the
> sysroots, it can actually take some time. This adds a progress bar to
> give a visual clue that the clean up is actually progressing.
> 
> Signed-off-by: Peter Kjellerstedt 
> ---
>  meta/classes/sstate.bbclass | 36 ++--
>  1 file changed, 22 insertions(+), 14 deletions(-)
> 
> diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
> index e30fbe1280..6e41b56861 100644
> --- a/meta/classes/sstate.bbclass
> +++ b/meta/classes/sstate.bbclass
> @@ -845,7 +845,7 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash,
> sq_hashfn, d, siginfo=False):
>  missed.append(task)
>  bb.debug(2, "SState: Unsuccessful fetch test for %s" %
> srcuri)
>  pass
> -bb.event.fire(bb.event.ProcessProgress("Checking sstate
> mirror object availability", len(tasklist) -
> thread_worker.tasks.qsize()), d)
> +bb.event.fire(bb.event.ProcessProgress(msg, len(tasklist)
> - thread_worker.tasks.qsize()), d)
> 
>  tasklist = []
>  for task in range(len(sq_fn)):
> @@ -856,7 +856,8 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash,
> sq_hashfn, d, siginfo=False):
>  tasklist.append((task, sstatefile))
> 
>  if tasklist:
> -bb.event.fire(bb.event.ProcessStarted("Checking sstate
> mirror object availability", len(tasklist)), d)
> +msg = "Checking sstate mirror object availability"
> +bb.event.fire(bb.event.ProcessStarted(msg, len(tasklist)),
> d)
> 
>  import multiprocessing
>  nproc = min(multiprocessing.cpu_count(), len(tasklist))
> @@ -870,7 +871,7 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash,
> sq_hashfn, d, siginfo=False):
>  pool.wait_completion()
>  bb.event.disable_threadlock()
> 
> -bb.event.fire(bb.event.ProcessFinished("Checking sstate
> mirror object availability"), d)
> +bb.event.fire(bb.event.ProcessFinished(msg), d)
> 
>  inheritlist = d.getVar("INHERIT")
>  if "toaster" in inheritlist:
> @@ -1038,18 +1039,25 @@ python sstate_eventhandler2() {
>  seen.append(stamp)
> 
>  if toremove:
> -bb.note("There are %d recipes to be removed from sysroot
> %s, removing..." % (len(toremove), a))
> +msg = "Removing %d recipes from the %s sysroot" %
> (len(toremove), a)
> +bb.event.fire(bb.event.ProcessStarted(msg, len(toremove)),
> d)
> +
> +removed = 0
> +for r in toremove:
> +(stamp, manifest, workdir) = r.split()
> +for m in glob.glob(manifest + ".*"):
> +if m.endswith(".postrm"):
> +continue
> +sstate_clean_manifest(m, d)
> +bb.utils.remove(stamp + "*")
> +if removeworkdir:
> +bb.utils.remove(workdir, recurse = True)
> +lines.remove(r)
> +removed = removed + 1
> +bb.event.fire(bb.event.ProcessProgress(msg, removed),
> d)
> +
> +bb.event.fire(bb.event.ProcessFinished(msg), d)
> 
> -for r in toremove:
> -(stamp, manifest, workdir) = r.split()
> -for m in glob.glob(manifest + ".*"):
> -if m.endswith(".postrm"):
> -continue
> -sstate_clean_manifest(m, d)
> -bb.utils.remove(stamp + "*")
> -if removeworkdir:
> -bb.utils.remove(workdir, recurse = True)
> -lines.remove(r)
>  with open(i, "w") as f:
>  for l in lines:
>  f.write(l)
> --
> 2.12.0
> 
> --
> ___
> 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


[oe] [PATCH] sstate.bbclass: Add progress bars when removing from the sysroots

2017-12-07 Thread Peter Kjellerstedt
If there are many recipes that should be cleaned out from the
sysroots, it can actually take some time. This adds a progress bar to
give a visual clue that the clean up is actually progressing.

Signed-off-by: Peter Kjellerstedt 
---
 meta/classes/sstate.bbclass | 36 ++--
 1 file changed, 22 insertions(+), 14 deletions(-)

diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass
index e30fbe1280..6e41b56861 100644
--- a/meta/classes/sstate.bbclass
+++ b/meta/classes/sstate.bbclass
@@ -845,7 +845,7 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash, sq_hashfn, 
d, siginfo=False):
 missed.append(task)
 bb.debug(2, "SState: Unsuccessful fetch test for %s" % srcuri)
 pass
-bb.event.fire(bb.event.ProcessProgress("Checking sstate mirror 
object availability", len(tasklist) - thread_worker.tasks.qsize()), d)
+bb.event.fire(bb.event.ProcessProgress(msg, len(tasklist) - 
thread_worker.tasks.qsize()), d)
 
 tasklist = []
 for task in range(len(sq_fn)):
@@ -856,7 +856,8 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash, sq_hashfn, 
d, siginfo=False):
 tasklist.append((task, sstatefile))
 
 if tasklist:
-bb.event.fire(bb.event.ProcessStarted("Checking sstate mirror 
object availability", len(tasklist)), d)
+msg = "Checking sstate mirror object availability"
+bb.event.fire(bb.event.ProcessStarted(msg, len(tasklist)), d)
 
 import multiprocessing
 nproc = min(multiprocessing.cpu_count(), len(tasklist))
@@ -870,7 +871,7 @@ def sstate_checkhashes(sq_fn, sq_task, sq_hash, sq_hashfn, 
d, siginfo=False):
 pool.wait_completion()
 bb.event.disable_threadlock()
 
-bb.event.fire(bb.event.ProcessFinished("Checking sstate mirror 
object availability"), d)
+bb.event.fire(bb.event.ProcessFinished(msg), d)
 
 inheritlist = d.getVar("INHERIT")
 if "toaster" in inheritlist:
@@ -1038,18 +1039,25 @@ python sstate_eventhandler2() {
 seen.append(stamp)
 
 if toremove:
-bb.note("There are %d recipes to be removed from sysroot %s, 
removing..." % (len(toremove), a))
+msg = "Removing %d recipes from the %s sysroot" % (len(toremove), 
a)
+bb.event.fire(bb.event.ProcessStarted(msg, len(toremove)), d)
+
+removed = 0
+for r in toremove:
+(stamp, manifest, workdir) = r.split()
+for m in glob.glob(manifest + ".*"):
+if m.endswith(".postrm"):
+continue
+sstate_clean_manifest(m, d)
+bb.utils.remove(stamp + "*")
+if removeworkdir:
+bb.utils.remove(workdir, recurse = True)
+lines.remove(r)
+removed = removed + 1
+bb.event.fire(bb.event.ProcessProgress(msg, removed), d)
+
+bb.event.fire(bb.event.ProcessFinished(msg), d)
 
-for r in toremove:
-(stamp, manifest, workdir) = r.split()
-for m in glob.glob(manifest + ".*"):
-if m.endswith(".postrm"):
-continue
-sstate_clean_manifest(m, d)
-bb.utils.remove(stamp + "*")
-if removeworkdir:
-bb.utils.remove(workdir, recurse = True)
-lines.remove(r)
 with open(i, "w") as f:
 for l in lines:
 f.write(l)
-- 
2.12.0

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


[oe] [meta-oe][PATCH] usb-modeswitch: Upgrade to latest version

2017-12-07 Thread Dmitri Vorobiev
Use the latest version of usb-modeswitch (2.5.1) and
usb-modeswitch-data (20170806).

Signed-off-by: Dmitri Vorobiev 
---
 ...-modeswitch-data_20140529.bb => usb-modeswitch-data_20170806.bb} | 6 +++---
 .../{usb-modeswitch_2.2.0.bb => usb-modeswitch_2.5.1.bb}| 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-support/usb-modeswitch/{usb-modeswitch-data_20140529.bb 
=> usb-modeswitch-data_20170806.bb} (66%)
 rename meta-oe/recipes-support/usb-modeswitch/{usb-modeswitch_2.2.0.bb => 
usb-modeswitch_2.5.1.bb} (79%)

diff --git 
a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20140529.bb 
b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170806.bb
similarity index 66%
rename from 
meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20140529.bb
rename to meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170806.bb
index a265411..3926feb 100644
--- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20140529.bb
+++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch-data_20170806.bb
@@ -5,13 +5,13 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 inherit allarch
 
 SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2;
-SRC_URI[md5sum] = "dff94177781298aaf0b3c2a3c3dea6b2"
-SRC_URI[sha256sum] = 
"53889157937109e04dafe897c098ec94f3f44f9c0c83fc6ec8417aa9a587e536"
+SRC_URI[md5sum] = "fb50d15b52e909d742dd16f0a9882316"
+SRC_URI[sha256sum] = 
"ce413ef2a50e648e9c81bc3ea6110e7324a8bf981034fc9ec4467d3562563c2c"
 
 do_install() {
 oe_runmake install DESTDIR=${D}
 }
 
-RDEPENDS_${PN} = "usb-modeswitch (>= 2.2.0)"
+RDEPENDS_${PN} = "usb-modeswitch (>= 2.4.0)"
 FILES_${PN} += "${base_libdir}/udev/rules.d/ \
 ${datadir}/usb_modeswitch"
diff --git a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb 
b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
similarity index 79%
rename from meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb
rename to meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
index 425f66b..e2d211b 100644
--- a/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.2.0.bb
+++ b/meta-oe/recipes-support/usb-modeswitch/usb-modeswitch_2.5.1.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = 
"file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f"
 DEPENDS = "libusb1"
 
 SRC_URI = "http://www.draisberghof.de/usb_modeswitch/${BP}.tar.bz2;
-SRC_URI[md5sum] = "f323fe700edd6ea404c40934ddf32b22"
-SRC_URI[sha256sum] = 
"2752103de171ed5f6c8d6a6e3e73e16c9ee3e8e394dd39c5991f7680eb908a3a"
+SRC_URI[md5sum] = "7e6435a2afe7aed8574fe59cf09a3503"
+SRC_URI[sha256sum] = 
"f6e44bfc6e8d531ac6759791cf79ee9c618e7894fcf37170c8a5559718f9abd2"
 
 EXTRA_OEMAKE = "TCL=${bindir}/tclsh"
 
-- 
2.1.4

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