From 3dd375570e0c1bc3a94d1d821946c511b17b1382 Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Wed, 3 Feb 2016 20:41:06 -0500 Subject: python-*: uprev to versions required for liberty This is a collection of recipe uprevs that bring various packages up to the version required to support the liberty release. These uprevs are mostly trivial with the expected SRC_URI and CHECKSUM updates along with updates to the list of dependencies. Where possible recipes have been updated to use git to facilitate future uprevs. For python-futures we need to add a PREFERRED_VERSION to ensure the git version will take precedence over a versioned recipe found in another layer. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- .../python/python-alembic_0.7.5.post2.bb | 19 ---------- .../python/python-alembic_0.8.3.bb | 22 +++++++++++ .../recipes-devtools/python/python-cliff_1.13.0.bb | 27 -------------- .../recipes-devtools/python/python-cliff_1.15.0.bb | 34 +++++++++++++++++ .../python/python-futures_2.2.0.bb | 25 ------------- .../recipes-devtools/python/python-futures_git.bb | 25 +++++++++++++ .../python/python-memcached_1.53.bb | 18 --------- .../python/python-memcached_git.bb | 23 ++++++++++++ .../recipes-devtools/python/python-pbr_1.4.0.bb | 27 -------------- .../recipes-devtools/python/python-pbr_1.8.1.bb | 26 +++++++++++++ .../recipes-devtools/python/python-pycadf_0.9.0.bb | 34 ----------------- .../recipes-devtools/python/python-pycadf_git.bb | 33 +++++++++++++++++ .../python/python-pysaml2_2.4.0.bb | 23 ------------ .../recipes-devtools/python/python-pysaml2_git.bb | 24 ++++++++++++ .../recipes-devtools/python/python-routes_2.1.bb | 18 --------- .../recipes-devtools/python/python-routes_git.bb | 17 +++++++++ .../python/python-stevedore_1.6.0.bb | 25 ------------- .../python/python-stevedore_1.9.0.bb | 26 +++++++++++++ .../recipes-devtools/python/python-taskflow_git.bb | 17 +++++++-- .../recipes-devtools/python/python-tooz_0.15.0.bb | 32 ---------------- .../recipes-devtools/python/python-tooz_1.25.0.bb | 43 ++++++++++++++++++++++ 21 files changed, 286 insertions(+), 252 deletions(-) delete mode 100644 meta-openstack/recipes-devtools/python/python-alembic_0.7.5.post2.bb create mode 100644 meta-openstack/recipes-devtools/python/python-alembic_0.8.3.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-cliff_1.15.0.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-futures_2.2.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-futures_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-memcached_1.53.bb create mode 100644 meta-openstack/recipes-devtools/python/python-memcached_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-pbr_1.8.1.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-pycadf_0.9.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-pycadf_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-pysaml2_2.4.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-pysaml2_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-routes_2.1.bb create mode 100644 meta-openstack/recipes-devtools/python/python-routes_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-stevedore_1.9.0.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-tooz_0.15.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-tooz_1.25.0.bb (limited to 'meta-openstack/recipes-devtools/python') diff --git a/meta-openstack/recipes-devtools/python/python-alembic_0.7.5.post2.bb b/meta-openstack/recipes-devtools/python/python-alembic_0.7.5.post2.bb deleted file mode 100644 index 51b0934..0000000 --- a/meta-openstack/recipes-devtools/python/python-alembic_0.7.5.post2.bb +++ /dev/null @@ -1,19 +0,0 @@ -DESCRIPTION = "A database migration tool for SQLAlchemy." -HOMEPAGE = "http://bitbucket.org/zzzeek/alembic" -SECTION = "devel/python" -LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=8faea05c89b6ff4ad5a9fa082f540719" - -SRCNAME = "alembic" - -SRC_URI = "https://pypi.python.org/packages/source/a/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "1814563f5042b28c5c452f2faa895d8e" -SRC_URI[sha256sum] = "f998184b8cd6d522249e88bb0e7f6ccd80cdd73df50189e85c7c35740b17e7d4" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -RDEPENDS_${PN} += "python-sqlalchemy" - diff --git a/meta-openstack/recipes-devtools/python/python-alembic_0.8.3.bb b/meta-openstack/recipes-devtools/python/python-alembic_0.8.3.bb new file mode 100644 index 0000000..01214e4 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-alembic_0.8.3.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "A database migration tool for SQLAlchemy." +HOMEPAGE = "http://bitbucket.org/zzzeek/alembic" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=8faea05c89b6ff4ad5a9fa082f540719" + +SRCNAME = "alembic" + +SRC_URI = "https://pypi.python.org/packages/source/a/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "2e4ef17675316af9f09d749b0aee390e" +SRC_URI[sha256sum] = "eeac36589c1bf393e2040de01514a0d101ef17039957300209b0b44f3ddffce9" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools + +RDEPENDS_${PN} += " \ + python-sqlalchemy \ + python-python-editor \ + " + diff --git a/meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb b/meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb deleted file mode 100644 index 49d4186..0000000 --- a/meta-openstack/recipes-devtools/python/python-cliff_1.13.0.bb +++ /dev/null @@ -1,27 +0,0 @@ -DESCRIPTION = "Command Line Interface Formulation Framework" -HOMEPAGE = "https://github.com/dreamhost/cliff" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" - -SRCNAME = "cliff" - -SRC_URI = "https://pypi.python.org/packages/source/c/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "188212b80ee152ee65b2018975193418" -SRC_URI[sha256sum] = "2b92d12cf1aa59c0cf1914b4b6b02b78daadac890a53d0e6b71b5220661ab9e0" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += "\ - python-pbr \ - " - -RDEPENDS_${PN} += "python-prettytable \ - python-cmd2 \ - python-pbr \ - python-pyparsing" - -CLEANBROKEN = "1" diff --git a/meta-openstack/recipes-devtools/python/python-cliff_1.15.0.bb b/meta-openstack/recipes-devtools/python/python-cliff_1.15.0.bb new file mode 100644 index 0000000..c241ab4 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-cliff_1.15.0.bb @@ -0,0 +1,34 @@ +DESCRIPTION = "Command Line Interface Formulation Framework" +HOMEPAGE = "https://github.com/dreamhost/cliff" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" + +SRCNAME = "cliff" + +SRC_URI = "https://pypi.python.org/packages/source/c/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "23f9187d6d7ffa70d8f725381bb1094f" +SRC_URI[sha256sum] = "f5ba6fe0940547549947d5a24ca3354145a603d3a9ba054f209d20b66dc02be7" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools rmargparse + +DEPENDS += "\ + python-pbr \ + " + +RDEPENDS_${PN} += "python-prettytable \ + python-cmd2 \ + python-pbr \ + python-pyparsing \ + python-prettytable \ + python-pyparsing \ + python-six \ + python-stevedore \ + python-unicodecsv \ + python-pyyaml \ +" + +CLEANBROKEN = "1" diff --git a/meta-openstack/recipes-devtools/python/python-futures_2.2.0.bb b/meta-openstack/recipes-devtools/python/python-futures_2.2.0.bb deleted file mode 100644 index 7369231..0000000 --- a/meta-openstack/recipes-devtools/python/python-futures_2.2.0.bb +++ /dev/null @@ -1,25 +0,0 @@ -DESCRIPTION = "Backport of the concurrent.futures package from Python 3.2" -HOMEPAGE = "http://code.google.com/p/pythonfutures" -SECTION = "devel/python" -LICENSE = "BSD" -LIC_FILES_CHKSUM = "file://LICENSE;md5=dd6708d05936d3f6c4e20ed14c87b5e3" - -SRCNAME = "futures" -SRC_URI = "http://pypi.python.org/packages/source/f/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "310e446de8609ddb59d0886e35edb534" -SRC_URI[sha256sum] = "151c057173474a3a40f897165951c0e33ad04f37de65b6de547ddef107fd0ed3" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -# DEPENDS_default: python-pip - -DEPENDS += " \ - python-pip \ - " - -# RDEPENDS_default: -RDEPENDS_${PN} += " \ - " diff --git a/meta-openstack/recipes-devtools/python/python-futures_git.bb b/meta-openstack/recipes-devtools/python/python-futures_git.bb new file mode 100644 index 0000000..f26be9a --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-futures_git.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Backport of the concurrent.futures package from Python 3.2" +HOMEPAGE = "https://github.com/agronholm/pythonfutures" +SECTION = "devel/python" +LICENSE = "BSD" +LIC_FILES_CHKSUM = "file://LICENSE;md5=dd6708d05936d3f6c4e20ed14c87b5e3" + +PV = "3.0.3+git${SRCPV}" +SRCREV = "6532a7449d8102c172ea5011f1552fcc163c09f1" + +SRCNAME = "futures" +SRC_URI = "git://github.com/agronholm/python${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +# DEPENDS_default: python-pip + +DEPENDS += " \ + python-pip \ + " + +# RDEPENDS_default: +RDEPENDS_${PN} += " \ + " diff --git a/meta-openstack/recipes-devtools/python/python-memcached_1.53.bb b/meta-openstack/recipes-devtools/python/python-memcached_1.53.bb deleted file mode 100644 index 20be545..0000000 --- a/meta-openstack/recipes-devtools/python/python-memcached_1.53.bb +++ /dev/null @@ -1,18 +0,0 @@ -SUMMARY = "Pure python memcached client" -DESCRIPTION = "\ - This software is a 100% Python interface to the memcached memory cache daemon. \ - It is the client side software which allows storing values in one or more, possibly remote, \ - memcached servers. Search google for memcached for more information." -HOMEPAGE = "https://pypi.python.org/pypi/python-memcached/" -SECTION = "devel/python" -LICENSE = "PSF" -LIC_FILES_CHKSUM = "file://PSF.LICENSE;md5=7dd786e8594f1e787da94a946557b40e" - -PR = "r0" - -SRC_URI = "http://ftp.tummy.com/pub/python-memcached/old-releases/${PN}-${PV}.tar.gz" - -SRC_URI[md5sum] = "e0e2b44613bb5443e3411b20f16664e0" -SRC_URI[sha256sum] = "af04ea031b271a54f085166773e028fe053fc1d9a58cd8b3c3a57945990bfb48" - -inherit setuptools diff --git a/meta-openstack/recipes-devtools/python/python-memcached_git.bb b/meta-openstack/recipes-devtools/python/python-memcached_git.bb new file mode 100644 index 0000000..9237af3 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-memcached_git.bb @@ -0,0 +1,23 @@ +SUMMARY = "Pure python memcached client" +DESCRIPTION = "\ + This software is a 100% Python interface to the memcached memory cache daemon. \ + It is the client side software which allows storing values in one or more, possibly remote, \ + memcached servers. Search google for memcached for more information." +HOMEPAGE = "https://pypi.python.org/pypi/python-memcached/" +SECTION = "devel/python" +LICENSE = "PSF" +LIC_FILES_CHKSUM = "file://PSF.LICENSE;md5=7dd786e8594f1e787da94a946557b40e" + +PV = "1.57+git${SRCPV}" +SRCREV = "664bd3e23fe500fbde4c70636e2d24c8fd2f35af" + +SRC_URI = "git://github.com/linsomniac/${BPN}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +RDEPENDS_${PN} += " \ + python-six \ + " + diff --git a/meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb b/meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb deleted file mode 100644 index 273fdd4..0000000 --- a/meta-openstack/recipes-devtools/python/python-pbr_1.4.0.bb +++ /dev/null @@ -1,27 +0,0 @@ -DESCRIPTION = "Python Build Reasonableness: PBR is a library that injects some useful and sensible default behaviors into your setuptools run" -HOMEPAGE = "https://pypi.python.org/pypi/pbr" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" - -PR = "r0" -SRCNAME = "pbr" - -SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "21f847dd9d3f9bd37db402067024be98" -SRC_URI[sha256sum] = "f080232fb6b208615b4c1854bf4277bb097d19c9ef89f94f203c1436fe600e92" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -# DEPENDS_default: python-pip - -DEPENDS += " \ - python-pip \ - " - -# RDEPENDS_default: -RDEPENDS_${PN} += " \ - " diff --git a/meta-openstack/recipes-devtools/python/python-pbr_1.8.1.bb b/meta-openstack/recipes-devtools/python/python-pbr_1.8.1.bb new file mode 100644 index 0000000..fdf80b3 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pbr_1.8.1.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "Python Build Reasonableness: PBR is a library that injects some useful and sensible default behaviors into your setuptools run" +HOMEPAGE = "https://pypi.python.org/pypi/pbr" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" + +SRCNAME = "pbr" + +SRC_URI = "https://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "c8f9285e1a4ca6f9654c529b158baa3a" +SRC_URI[sha256sum] = "e2127626a91e6c885db89668976db31020f0af2da728924b56480fc7ccf09649" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools + +# DEPENDS_default: python-pip + +DEPENDS += " \ + python-pip \ + " + +# RDEPENDS_default: +RDEPENDS_${PN} += " \ + " diff --git a/meta-openstack/recipes-devtools/python/python-pycadf_0.9.0.bb b/meta-openstack/recipes-devtools/python/python-pycadf_0.9.0.bb deleted file mode 100644 index afdc99b..0000000 --- a/meta-openstack/recipes-devtools/python/python-pycadf_0.9.0.bb +++ /dev/null @@ -1,34 +0,0 @@ -DESCRIPTION = "CADF Library" -HOMEPAGE = "https://launchpad.net/pycadf" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8" - - -SRCNAME = "pycadf" -SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "cadda6f685a31abf18a0efe40541fec8" -SRC_URI[sha256sum] = "3bda0f95b6defd0d0c6afc827617002ddd0688bed5ccc93a25965aa1d6b40094" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -FILES_${PN} += "${datadir}/etc/${SRCNAME}/*" - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -RDEPENDS_${PN} += " \ - python-babel \ - python-iso8601 \ - python-netaddr \ - python-posix-ipc \ - python-pytz \ - python-six \ - python-webob \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-pycadf_git.bb b/meta-openstack/recipes-devtools/python/python-pycadf_git.bb new file mode 100644 index 0000000..44b4498 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pycadf_git.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "CADF Library" +HOMEPAGE = "https://launchpad.net/pycadf" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8" + +PV = "1.1.0+git${SRCPV}" +SRCREV = "c5dc0d9577e455f149edb5331a6e493def6928d5" + +SRCNAME = "pycadf" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +FILES_${PN} += "${datadir}/etc/${SRCNAME}/*" + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +RDEPENDS_${PN} += " \ + python-babel \ + python-iso8601 \ + python-netaddr \ + python-posix-ipc \ + python-pytz \ + python-six \ + python-webob \ + python-pbr \ + " diff --git a/meta-openstack/recipes-devtools/python/python-pysaml2_2.4.0.bb b/meta-openstack/recipes-devtools/python/python-pysaml2_2.4.0.bb deleted file mode 100644 index d4cb7fa..0000000 --- a/meta-openstack/recipes-devtools/python/python-pysaml2_2.4.0.bb +++ /dev/null @@ -1,23 +0,0 @@ -DESCRIPTION = "Python implementation of SAML Version 2 to be used in a WSGI environment" -HOMEPAGE = "https://github.com/rohe/pysaml2" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=64573b44c7c80d328f0c1a830b44df84" - - -SRCNAME = "pysaml2" -SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "9045eb4bd58f6f647de3dd33fe6dfa29" -SRC_URI[sha256sum] = "a26804150ddc5da803d0df4b7026b613a3571c387fd6d107f6263aabf2c84ec6" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += " \ - python-pip \ - " - -RDEPENDS_${PN} += " \ - " diff --git a/meta-openstack/recipes-devtools/python/python-pysaml2_git.bb b/meta-openstack/recipes-devtools/python/python-pysaml2_git.bb new file mode 100644 index 0000000..08bb0d6 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pysaml2_git.bb @@ -0,0 +1,24 @@ +DESCRIPTION = "Python implementation of SAML Version 2 to be used in a WSGI environment" +HOMEPAGE = "https://github.com/rohe/pysaml2" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e53b335c47f863b1e324a1c9f2e8e3f3" + +PV = "3.0.2+git${SRCPV}" +SRCREV = "248c629aa570b16fdc79c5a5eb2b3c4c0ee52916" + +SRCNAME = "pysaml2" +SRC_URI = "git://github.com/rohe/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +DEPENDS += " \ + python-pip \ + " + +RDEPENDS_${PN} += " \ + python-zopeinterface \ + python-repoze.who \ + " diff --git a/meta-openstack/recipes-devtools/python/python-routes_2.1.bb b/meta-openstack/recipes-devtools/python/python-routes_2.1.bb deleted file mode 100644 index ad459c7..0000000 --- a/meta-openstack/recipes-devtools/python/python-routes_2.1.bb +++ /dev/null @@ -1,18 +0,0 @@ -DESCRIPTION = "A Python re-implementation of the Rails routes system." -HOMEPAGE = "http://routes.groovie.org" -SECTION = "devel/python" -LICENSE = "BSD" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=151dabc4f4b91d0ac53e87d5326787fd" - -SRCNAME = "Routes" - -SRC_URI = "http://pypi.python.org/packages/source/R/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "e6e463318a9dc6ad2f1b3040e998f0b4" -SRC_URI[sha256sum] = "ebf4126e244cf11414653b5ba5f27ed4abfad38b906a01e5d4c93d3ce5568ea3" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -RDEPENDS_${PN} += "python-repoze.lru" diff --git a/meta-openstack/recipes-devtools/python/python-routes_git.bb b/meta-openstack/recipes-devtools/python/python-routes_git.bb new file mode 100644 index 0000000..814339b --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-routes_git.bb @@ -0,0 +1,17 @@ +DESCRIPTION = "A Python re-implementation of the Rails routes system." +HOMEPAGE = "http://routes.groovie.org" +SECTION = "devel/python" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE;md5=aa6285dc7b7c93b3905bb2757f33eb62" + +PV = "1.13+git${SRCPV}" +SRCREV = "467501d5fcfa265b3dfae615e7f0dcda8ce79d4e" + +SRCNAME = "Routes" +SRC_URI = "git://github.com/bbangert/routes.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +RDEPENDS_${PN} += "python-repoze.lru" diff --git a/meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb b/meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb deleted file mode 100644 index de04105..0000000 --- a/meta-openstack/recipes-devtools/python/python-stevedore_1.6.0.bb +++ /dev/null @@ -1,25 +0,0 @@ -DESCRIPTION = "Manage dynamic plugins for Python applications" -HOMEPAGE = "https://github.com/dreamhost/stevedore" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" - - -SRCNAME = "stevedore" -SRC_URI = "http://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "c53fc7d4408f715339e7fd3e8189ca4e" -SRC_URI[sha256sum] = "dab2aa31ec742f651e6a2fe0429560aebbbe0fb7fc462fa0ff565c8f5ff2ec25" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -RDEPENDS_${PN} += " \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-stevedore_1.9.0.bb b/meta-openstack/recipes-devtools/python/python-stevedore_1.9.0.bb new file mode 100644 index 0000000..bdacb14 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-stevedore_1.9.0.bb @@ -0,0 +1,26 @@ +DESCRIPTION = "Manage dynamic plugins for Python applications" +HOMEPAGE = "https://github.com/dreamhost/stevedore" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57" + + +SRCNAME = "stevedore" +SRC_URI = "http://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "53e2bc3b49dd9c920cfce7f63822b1a5" +SRC_URI[sha256sum] = "cc19908840498ed5f7cb5cf59bbe47b41aa9d65821548e2b3c8a99a571cbec06" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools rmargparse + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +RDEPENDS_${PN} += " \ + python-pbr \ + python-argparse \ + " diff --git a/meta-openstack/recipes-devtools/python/python-taskflow_git.bb b/meta-openstack/recipes-devtools/python/python-taskflow_git.bb index 287a311..088d4d1 100644 --- a/meta-openstack/recipes-devtools/python/python-taskflow_git.bb +++ b/meta-openstack/recipes-devtools/python/python-taskflow_git.bb @@ -4,14 +4,12 @@ SECTION = "devel/python" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=4476c4be31402271e101d9a4a3430d52" -PR = "r0" - SRC_URI = "\ git://git.openstack.org/openstack/taskflow.git;branch=master \ " -PV="0.2+git${SRCPV}" -SRCREV="8800572da240b1f1856898952ce804936dafe49f" +PV="1.21.0+git${SRCPV}" +SRCREV="52bd5e89fdddec49907a45e83a7a4b1abd1d1291" S = "${WORKDIR}/git" inherit setuptools @@ -30,4 +28,15 @@ RDEPENDS_${PN} += " \ python-babel \ python-stevedore \ python-futures \ + python-futurist \ + python-fasteners \ + python-contextlib2 \ + python-monotonic \ + python-jsonschema \ + python-automaton \ + python-oslo.utils \ + python-oslo.serialization \ + python-cachetools \ + python-debtcollector \ + python-enum34 \ " diff --git a/meta-openstack/recipes-devtools/python/python-tooz_0.15.0.bb b/meta-openstack/recipes-devtools/python/python-tooz_0.15.0.bb deleted file mode 100644 index 75e921e..0000000 --- a/meta-openstack/recipes-devtools/python/python-tooz_0.15.0.bb +++ /dev/null @@ -1,32 +0,0 @@ -DESCRIPTION = "Coordination library for distributed systems." -HOMEPAGE = "https://pypi.python.org/pypi/tooz" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" - - -SRCNAME = "tooz" -SRC_URI = "http://pypi.python.org/packages/source/t/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "741a416818c47b26a6017152daad22ce" -SRC_URI[sha256sum] = "3a6ae76d8eae96092db0ed340c6ab4bf4d1418eaa19d659a7a56a92227134eb3" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -# DEPENDS_default: python-pip - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -# RDEPENDS_default: -RDEPENDS_${PN} += " \ - python-kazoo \ - python-zake \ - python-sysv-ipc \ - python-memcache \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-tooz_1.25.0.bb b/meta-openstack/recipes-devtools/python/python-tooz_1.25.0.bb new file mode 100644 index 0000000..a2c4f52 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-tooz_1.25.0.bb @@ -0,0 +1,43 @@ +DESCRIPTION = "Coordination library for distributed systems." +HOMEPAGE = "https://pypi.python.org/pypi/tooz" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" + + +SRCNAME = "tooz" +SRC_URI = "http://pypi.python.org/packages/source/t/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" + +SRC_URI[md5sum] = "939eaf6c5e49d3a41e8c9f2e92126cfc" +SRC_URI[sha256sum] = "d61639640b8e4fc64195306f8fae92cf271a002c690bf693ee51f9790cf8141e" + +S = "${WORKDIR}/${SRCNAME}-${PV}" + +inherit setuptools + +# DEPENDS_default: python-pip + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +# RDEPENDS_default: +RDEPENDS_${PN} += " \ + python-kazoo \ + python-zake \ + python-sysv-ipc \ + python-memcache \ + python-pbr \ + python-babel \ + python-stevedore \ + python-six \ + python-iso8601 \ + python-msgpack \ + python-fasteners \ + python-retrying \ + python-futurist \ + python-oslo.utils \ + python-oslo.serialization \ + python-futures \ + " -- cgit v1.2.3-54-g00ecf