From 3f174923c7da9ec2805672f933e20729f8ed1e7c Mon Sep 17 00:00:00 2001 From: Mark Asselstine Date: Wed, 3 Feb 2016 20:40:57 -0500 Subject: python-oslo*: convert to 'git' and uprev These python-oslo* recipes did not previously use git so switching them to make future uprevs simpler. While we are at it uprev to the version required for the liberty release. Signed-off-by: Mark Asselstine Signed-off-by: Bruce Ashfield --- .../python/python-oslo.concurrency_1.9.0.bb | 28 ---------------- .../python/python-oslo.concurrency_git.bb | 36 ++++++++++++++++++++ .../python/python-oslo.config_1.14.0.bb | 23 ------------- .../python/python-oslo.config_git.bb | 27 +++++++++++++++ .../python/python-oslo.db_1.9.0.bb | 33 ------------------- .../recipes-devtools/python/python-oslo.db_git.bb | 36 ++++++++++++++++++++ .../python/python-oslo.i18n_1.6.0.bb | 29 ----------------- .../python/python-oslo.i18n_git.bb | 29 +++++++++++++++++ .../python/python-oslo.middleware_1.1.0.bb | 28 ---------------- .../python/python-oslo.middleware_git.bb | 38 ++++++++++++++++++++++ .../python/python-oslo.policy_0.4.0.bb | 29 ----------------- .../python/python-oslo.policy_git.bb | 30 +++++++++++++++++ .../python/python-oslo.rootwrap_1.7.0.bb | 28 ---------------- .../python/python-oslo.rootwrap_git.bb | 28 ++++++++++++++++ .../python/python-oslo.vmware_1.19.0.bb | 25 -------------- .../python/python-oslo.vmware_git.bb | 37 +++++++++++++++++++++ .../python/python-oslotest_1.6.0.bb | 34 ------------------- .../recipes-devtools/python/python-oslotest_git.bb | 32 ++++++++++++++++++ 18 files changed, 293 insertions(+), 257 deletions(-) delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.9.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.config_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.db_1.9.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.db_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.i18n_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.middleware_1.1.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.middleware_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.policy_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.7.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.rootwrap_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.vmware_1.19.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslo.vmware_git.bb delete mode 100644 meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb create mode 100644 meta-openstack/recipes-devtools/python/python-oslotest_git.bb diff --git a/meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.9.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.9.0.bb deleted file mode 100644 index c82f6ba..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.concurrency_1.9.0.bb +++ /dev/null @@ -1,28 +0,0 @@ -DESCRIPTION = "oslo.concurrency library" -HOMEPAGE = "http://launchpad.net/oslo" -SECTION = "devel/python" -LICENSE = "Apache-2" -LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" - - -SRCNAME = "oslo.concurrency" -SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "32d21336b17086521599f5e15891a2bb" -SRC_URI[sha256sum] = "6b47dfdc8213226053b95def19ed3c7fc492b3d4c1b3c0a61381cddf8dbbf67c" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -# DEPENDS_default: python-pip - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -# RDEPENDS_default: -RDEPENDS_${PN} += " \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb new file mode 100644 index 0000000..6956504 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.concurrency_git.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "oslo.concurrency library" +HOMEPAGE = "http://launchpad.net/oslo" +SECTION = "devel/python" +LICENSE = "Apache-2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" + +PV = "2.8.0+git${SRCPV}" +SRCREV = "28fb7e8bb0dfc39e9f5ed46ade65ea85048efc34" + +SRCNAME = "oslo.concurrency" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +# DEPENDS_default: python-pip + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +# RDEPENDS_default: +RDEPENDS_${PN} += " \ + python-pbr \ + python-fasteners \ + python-babel \ + python-iso8601 \ + python-oslo.config \ + python-oslo.i18n \ + python-oslo.utils \ + python-six \ + python-retrying \ + python-enum34 \ + " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb deleted file mode 100644 index fd4f9fe..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.config_1.14.0.bb +++ /dev/null @@ -1,23 +0,0 @@ -DESCRIPTION = "API supporting parsing command line arguments and .ini style configuration files." -HOMEPAGE = "https://pypi.python.org/pypi/oslo.config/1.1.0" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8" - -SRCNAME = "oslo.config" - -SRC_URI = "https://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "1ef0fb7c6ec5c8bdb0e0340a2e404967" -SRC_URI[sha256sum] = "0f9b5a12dae4f26aa8a82e71523a20ce183269b56722ccf3fd2149b1bba7d46a" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += " \ - python-pbr \ - python-pip \ - " - -RDEPENDS_${PN} += "python-pbr" diff --git a/meta-openstack/recipes-devtools/python/python-oslo.config_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.config_git.bb new file mode 100644 index 0000000..abd3269 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.config_git.bb @@ -0,0 +1,27 @@ +DESCRIPTION = "API supporting parsing command line arguments and .ini style configuration files." +HOMEPAGE = "https://pypi.python.org/pypi/oslo.config/2.6.0" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8" + +PV = "2.6.0+git${SRCPV}" +SRCREV = "ee2bab65e9a2f38bb915f106a4da1520e4b5060c" + +SRCNAME = "oslo.config" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools rmargparse + +DEPENDS += " \ + python-pbr \ + python-pip \ + " + +RDEPENDS_${PN} += " \ + python-pbr \ + python-netaddr \ + python-six \ + python-stevedore \ + " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.db_1.9.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.db_1.9.0.bb deleted file mode 100644 index 30f98f5..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.db_1.9.0.bb +++ /dev/null @@ -1,33 +0,0 @@ -DESCRIPTION = "oslo.db library" -HOMEPAGE = "http://launchpad.net/oslo" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" - - -SRCNAME = "oslo.db" -SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "1ab1e83d18761b8411f44983ae749da1" -SRC_URI[sha256sum] = "028ed6a38c1ed6d39d04f3dc2d7b7e2e0aca3cf53e72e145c3c07a5a0fb80eb8" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -RDEPENDS_${PN} += " \ - python-alembic \ - python-babel \ - python-iso8601 \ - python-lockfile \ - python-oslo.config \ - python-sqlalchemy \ - python-sqlalchemy-migrate \ - python-stevedore \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.db_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.db_git.bb new file mode 100644 index 0000000..f3f7074 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.db_git.bb @@ -0,0 +1,36 @@ +DESCRIPTION = "oslo.db library" +HOMEPAGE = "http://launchpad.net/oslo" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" + +PV = "3.1.0+git${SRCPV}" +SRCREV = "3afd58f6ab0fc2acb1dd92f652cec48e87763cf6" + +SRCNAME = "oslo.db" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +RDEPENDS_${PN} += " \ + python-six \ + python-alembic \ + python-babel \ + python-iso8601 \ + python-lockfile \ + python-oslo.config \ + python-oslo.i18n \ + python-oslo.context \ + python-oslo.utils \ + python-sqlalchemy \ + python-sqlalchemy-migrate \ + python-stevedore \ + python-pbr \ + " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb deleted file mode 100644 index 2b47833..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.i18n_1.6.0.bb +++ /dev/null @@ -1,29 +0,0 @@ -DESCRIPTION = "oslo.i18n library" -HOMEPAGE = "http://launchpad.net/oslo" -SECTION = "devel/python" -LICENSE = "Apache-2" -LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" - - -SRCNAME = "oslo.i18n" -SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "c109e20b99bb0ec8d85a583bf503e6a5" -SRC_URI[sha256sum] = "29be916f3f4c79cca76d57e604a187b3020354a2ca89d486647b79d8a9adbb9e" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -# DEPENDS_default: python-pip - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -# RDEPENDS_default: -RDEPENDS_${PN} += " \ - python-babel \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.i18n_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.i18n_git.bb new file mode 100644 index 0000000..84aab41 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.i18n_git.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "oslo.i18n library" +HOMEPAGE = "http://launchpad.net/oslo" +SECTION = "devel/python" +LICENSE = "Apache-2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" + +PV = "2.6.0+git${SRCPV}" +SRCREV = "4417d33a9fa6f3c414d72d162a4d0d3715ffe256" + +SRCNAME = "oslo.i18n" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +# DEPENDS_default: python-pip + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +# RDEPENDS_default: +RDEPENDS_${PN} += " \ + python-babel \ + python-pbr \ + python-six \ + " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.middleware_1.1.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.middleware_1.1.0.bb deleted file mode 100644 index 5c891f3..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.middleware_1.1.0.bb +++ /dev/null @@ -1,28 +0,0 @@ -DESCRIPTION = "Oslo Middleware library" -HOMEPAGE = "http://launchpad.net/oslo" -SECTION = "devel/python" -LICENSE = "Apache-2" -LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" - - -SRCNAME = "oslo.middleware" -SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "c5ba484ce671a81fa8620bac008796e3" -SRC_URI[sha256sum] = "0647456ebf1611e2a0efc445673af3583780b0ccf694f61a8830d54fb5d6f63c" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -# DEPENDS_default: python-pip - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -# RDEPENDS_default: -RDEPENDS_${PN} += " \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.middleware_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.middleware_git.bb new file mode 100644 index 0000000..ef624f3 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.middleware_git.bb @@ -0,0 +1,38 @@ +DESCRIPTION = "Oslo Middleware library" +HOMEPAGE = "http://launchpad.net/oslo" +SECTION = "devel/python" +LICENSE = "Apache-2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" + +PV = "2.10.0+git${SRCPV}" +SRCREV = "8a892308e706b46620e3b73aa16a8e969ee80739" + +SRCNAME = "oslo.middleware" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +# DEPENDS_default: python-pip + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +# RDEPENDS_default: +RDEPENDS_${PN} += " \ + python-pbr \ + python-ordereddict \ + python-babel \ + python-jinja2 \ + python-oslo.config \ + python-oslo.context \ + python-oslo.i18n \ + python-oslo.utils \ + python-six \ + python-stevedore \ + python-webob \ + python-debtcollector \ + " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb deleted file mode 100644 index bfd6953..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb +++ /dev/null @@ -1,29 +0,0 @@ -SUMMARY = "Oslo Policy library" -DESCRIPTION = "The Oslo Policy library provides support for RBAC policy enforcement across all OpenStack services." -HOMEPAGE = "https://pypi.python.org/pypi/oslo.policy" -SECTION = "devel/python" -LICENSE = "Apache-2" -LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" - - -SRCNAME = "oslo.policy" -SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "a0ddfa5782191c218e1e100234550295" -SRC_URI[sha256sum] = "7e8a82e617516722043f437825ed5ada422632ee432cc64ede7c4854209cd329" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += " \ - python-pip \ - python-pbr \ -" - -RDEPENDS_${PN} += " \ - python-oslo.config \ - python-oslo.i18n \ - python-oslo.serialization \ - python-pbr \ -" diff --git a/meta-openstack/recipes-devtools/python/python-oslo.policy_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.policy_git.bb new file mode 100644 index 0000000..01a9491 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.policy_git.bb @@ -0,0 +1,30 @@ +SUMMARY = "Oslo Policy library" +DESCRIPTION = "The Oslo Policy library provides support for RBAC policy enforcement across all OpenStack services." +HOMEPAGE = "https://github.com/openstack/oslo.policy" +SECTION = "devel/python" +LICENSE = "Apache-2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" + +PV = "0.12.0+git${SRCPV}" +SRCREV = "dee7171326e138128486f1d2c3f7e639af875198" + +SRCNAME = "oslo.policy" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +DEPENDS += " \ + python-pip \ + python-pbr \ +" + +RDEPENDS_${PN} += " \ + python-oslo.config \ + python-oslo.i18n \ + python-oslo.serialization \ + python-oslo.utils \ + python-six \ + python-requests \ +" diff --git a/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.7.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.7.0.bb deleted file mode 100644 index d391ed3..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_1.7.0.bb +++ /dev/null @@ -1,28 +0,0 @@ -DESCRIPTION = "Oslo Rootwrap" -HOMEPAGE = "https://launchpad.net/oslo" -SECTION = "devel/python" -LICENSE = "Apache-2" -LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8" - - -SRCNAME = "oslo.rootwrap" -SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "ad58d59df829a672d8ab41f47761f6a7" -SRC_URI[sha256sum] = "d84305c63bfab0e0bc3d120ce686f66468b02d60ecd5985257f1263cd1468d0b" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -# DEPENDS_default: python-pip - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -# RDEPENDS_default: -RDEPENDS_${PN} += " \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_git.bb new file mode 100644 index 0000000..3cae4c9 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.rootwrap_git.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Oslo Rootwrap" +HOMEPAGE = "https://launchpad.net/oslo" +SECTION = "devel/python" +LICENSE = "Apache-2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8" + +PV = "2.5.0+git${SRCPV}" +SRCREV = "31cfdbd4076bb6556cf9612171ba43fa44475d71" + +SRCNAME = "oslo.rootwrap" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +# DEPENDS_default: python-pip + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +# RDEPENDS_default: +RDEPENDS_${PN} += " \ + python-pbr \ + python-six \ + " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.vmware_1.19.0.bb b/meta-openstack/recipes-devtools/python/python-oslo.vmware_1.19.0.bb deleted file mode 100644 index f39ff57..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslo.vmware_1.19.0.bb +++ /dev/null @@ -1,25 +0,0 @@ -DESCRIPTION = "oslo.vmware library" -HOMEPAGE = "http://launchpad.net/oslo" -SECTION = "devel/python" -LICENSE = "Apache-2.0" -LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" - - -SRCNAME = "oslo.vmware" -SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" - -SRC_URI[md5sum] = "3115d6922ed7119cf3737af708a7984d" -SRC_URI[sha256sum] = "d342420fa272bd80ac9c39e876ee1a518b975d21cff1c179a91da48305c9b3b4" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += " \ - python-pip \ - python-pbr \ - " - -RDEPENDS_${PN} += " \ - python-pbr \ - " diff --git a/meta-openstack/recipes-devtools/python/python-oslo.vmware_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.vmware_git.bb new file mode 100644 index 0000000..8ffe7ee --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.vmware_git.bb @@ -0,0 +1,37 @@ +DESCRIPTION = "oslo.vmware library" +HOMEPAGE = "http://launchpad.net/oslo" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" + +PV = "1.23.0+git${SRCPV}" +SRCREV = "9fa40986c259d22a3dee8155b4bce793505d53e1" + +SRCNAME = "oslo.vmware" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +DEPENDS += " \ + python-pip \ + python-pbr \ + " + +RDEPENDS_${PN} += " \ + python-pbr \ + python-stevedore \ + python-netaddr \ + python-iso8601 \ + python-six \ + python-oslo.i18n \ + python-oslo.utils \ + python-oslo.concurrency \ + python-babel \ + python-pyyaml \ + python-suds-jurko \ + python-eventlet \ + python-requests \ + python-urllib3 \ + " diff --git a/meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb b/meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb deleted file mode 100644 index 6f4f766..0000000 --- a/meta-openstack/recipes-devtools/python/python-oslotest_1.6.0.bb +++ /dev/null @@ -1,34 +0,0 @@ -DESCRIPTION = "OpenStack test framework and test fixtures. \ -The oslotest package can be cross-tested against its consuming projects to ensure \ -that no changes to the library break the tests in those other projects." -HOMEPAGE = "https://pypi.python.org/pypi/oslotest" -SECTION = "devel/python" -LICENSE = "BSD" -LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" - -SRCNAME = "oslotest" - -SRC_URI = "https://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ -" - -SRC_URI[md5sum] = "54ba62e2e13619616ddce772fb267106" -SRC_URI[sha256sum] = "cb65b53b753375b669dcdb4717c362a205d19e3d16ca26310c0916cfd359354c" - -S = "${WORKDIR}/${SRCNAME}-${PV}" - -inherit setuptools - -DEPENDS += "\ - python-pbr \ - " - -RDEPENDS_${PN} = "python-fixtures \ - python-subunit \ - python-testrepository \ - python-testscenarios \ - python-testtools \ - python-mock \ - python-mox \ - python-pbr \ - bash \ -" diff --git a/meta-openstack/recipes-devtools/python/python-oslotest_git.bb b/meta-openstack/recipes-devtools/python/python-oslotest_git.bb new file mode 100644 index 0000000..58b79b6 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslotest_git.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "OpenStack test framework and test fixtures. \ +The oslotest package can be cross-tested against its consuming projects to ensure \ +that no changes to the library break the tests in those other projects." +HOMEPAGE = "https://pypi.python.org/pypi/oslotest" +SECTION = "devel/python" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658" + +PV = "1.12.0+git${SRCPV}" +SRCREV = "b5e355fcecdf7727fe33e355c4f87d1971b5fef5" + +SRCNAME = "oslotest" +SRC_URI = "git://github.com/openstack/${SRCNAME}.git" + +S = "${WORKDIR}/git" + +inherit setuptools + +DEPENDS += "\ + python-pbr \ + " + +RDEPENDS_${PN} = "python-fixtures \ + python-subunit \ + python-testrepository \ + python-testscenarios \ + python-testtools \ + python-mock \ + python-mox \ + python-pbr \ + bash \ +" -- cgit v1.2.3-54-g00ecf