diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-05-13 16:51:09 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-05-13 16:51:09 -0400 |
commit | ab3432d7ff4ea9b7fd3dd4e04376d2b67e467eb6 (patch) | |
tree | 64737b24f22eb9e1eaaf2774f79b025a578be6ae | |
parent | 183baafc12b846cb3dff19b380ad98c2c49fb671 (diff) | |
parent | f7765042a4cdfb52f467869904ef92e644c4129d (diff) | |
download | meta-cloud-services-ab3432d7ff4ea9b7fd3dd4e04376d2b67e467eb6.tar.gz |
Merge branch 'master' into kilo
14 files changed, 137 insertions, 14 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-cmd2_0.6.8.bb b/meta-openstack/recipes-devtools/python/python-cmd2_0.6.8.bb index 9558cc6..0794a4e 100644 --- a/meta-openstack/recipes-devtools/python/python-cmd2_0.6.8.bb +++ b/meta-openstack/recipes-devtools/python/python-cmd2_0.6.8.bb | |||
@@ -4,13 +4,12 @@ SECTION = "devel/python" | |||
4 | LICENSE = "MIT" | 4 | LICENSE = "MIT" |
5 | LIC_FILES_CHKSUM = "file://setup.py;beginline=21;endline=21;md5=a00047b7e92e0781452d0beba4e7b44e" | 5 | LIC_FILES_CHKSUM = "file://setup.py;beginline=21;endline=21;md5=a00047b7e92e0781452d0beba4e7b44e" |
6 | 6 | ||
7 | PR = "r0" | ||
8 | SRCNAME = "cmd2" | 7 | SRCNAME = "cmd2" |
9 | 8 | ||
10 | SRC_URI = "http://pypi.python.org/packages/source/c/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | 9 | SRC_URI = "http://pypi.python.org/packages/source/c/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" |
11 | 10 | ||
12 | SRC_URI[md5sum] = "842df29ff2f72d64d7f0d917039c0e51" | 11 | SRC_URI[md5sum] = "c32c9a897e010c977b50c1ddc13f09fe" |
13 | SRC_URI[sha256sum] = "8e98c7a1cfd106183559240b269e7cd9fe97e8342b5c05295f591aab6fd2f4f0" | 12 | SRC_URI[sha256sum] = "ac780d8c31fc107bf6b4edcbcea711de4ff776d59d89bb167f8819d2d83764a8" |
14 | 13 | ||
15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 14 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
16 | 15 | ||
diff --git a/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb b/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb index f665d00..43dbc9f 100644 --- a/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb +++ b/meta-openstack/recipes-devtools/python/python-django-pyscss_2.0.1.bb | |||
@@ -25,4 +25,5 @@ DEPENDS += " \ | |||
25 | RDEPENDS_${PN} += " \ | 25 | RDEPENDS_${PN} += " \ |
26 | python-django \ | 26 | python-django \ |
27 | python-pyscss \ | 27 | python-pyscss \ |
28 | python-pathlib \ | ||
28 | " | 29 | " |
diff --git a/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb b/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb index 36302fd..b462e4d 100644 --- a/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb +++ b/meta-openstack/recipes-devtools/python/python-django_1.7.5.bb | |||
@@ -2,20 +2,19 @@ DESCRIPTION = "A high-level Python Web framework" | |||
2 | HOMEPAGE = "http://www.djangoproject.com/" | 2 | HOMEPAGE = "http://www.djangoproject.com/" |
3 | SECTION = "devel/python" | 3 | SECTION = "devel/python" |
4 | LICENSE = "BSD" | 4 | LICENSE = "BSD" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=fa8608154dcdd4029ae653131d4b7365" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f09eb47206614a4954c51db8a94840fa" |
6 | 6 | ||
7 | PR = "r1" | ||
8 | SRCNAME = "Django" | 7 | SRCNAME = "Django" |
9 | 8 | ||
10 | SRC_URI = "https://pypi.python.org/packages/source/D/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ | 9 | SRC_URI = "https://pypi.python.org/packages/source/D/${SRCNAME}/${SRCNAME}-${PV}.tar.gz \ |
11 | " | 10 | " |
12 | 11 | ||
13 | SRC_URI[md5sum] = "e33355ee4bb2cbb4ab3954d3dff5eddd" | 12 | SRC_URI[md5sum] = "e76c70a5dd7d56a511974b28ab38df20" |
14 | SRC_URI[sha256sum] = "6ae69c1dfbfc9d0c44ae80e2fbe48e59bbbbb70e8df66ad2b7029bd39947d71d" | 13 | SRC_URI[sha256sum] = "1c391f9349c97df503dac3461599f24235e4d04393498e6060e74dd2721460bc" |
15 | 14 | ||
16 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
17 | 16 | ||
18 | inherit distutils | 17 | inherit setuptools |
19 | 18 | ||
20 | FILES_${PN} += "${datadir}/django/*" | 19 | FILES_${PN} += "${datadir}/django/*" |
21 | 20 | ||
diff --git a/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb b/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb new file mode 100644 index 0000000..4671a59 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb | |||
@@ -0,0 +1,25 @@ | |||
1 | SUMMARY = "Robust enumerated type support in Python" | ||
2 | DESCRIPTION = "This package provides a module for robust enumerations in Python." | ||
3 | HOMEPAGE = "https://pypi.python.org/pypi/enum" | ||
4 | SECTION = "devel/python" | ||
5 | LICENSE = "GPLv2 | PSFv2" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=4325afd396febcb659c36b49533135d4 \ | ||
7 | file://LICENSE.PSF;md5=1ad8a43fc3bbfea1585223c99f4c3e6f \ | ||
8 | " | ||
9 | |||
10 | SRCNAME = "enum" | ||
11 | SRC_URI = "http://pypi.python.org/packages/source/e/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
12 | |||
13 | SRC_URI[md5sum] = "ce75c7c3c86741175a84456cc5bd531e" | ||
14 | SRC_URI[sha256sum] = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff" | ||
15 | |||
16 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
17 | |||
18 | inherit setuptools | ||
19 | |||
20 | DEPENDS += " \ | ||
21 | python-pip \ | ||
22 | " | ||
23 | |||
24 | RDEPENDS_${PN} += " \ | ||
25 | " | ||
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 index 9dca758..7369231 100644 --- a/meta-openstack/recipes-devtools/python/python-futures_2.2.0.bb +++ b/meta-openstack/recipes-devtools/python/python-futures_2.2.0.bb | |||
@@ -4,13 +4,11 @@ SECTION = "devel/python" | |||
4 | LICENSE = "BSD" | 4 | LICENSE = "BSD" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dd6708d05936d3f6c4e20ed14c87b5e3" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=dd6708d05936d3f6c4e20ed14c87b5e3" |
6 | 6 | ||
7 | PR = "r0" | ||
8 | |||
9 | SRCNAME = "futures" | 7 | SRCNAME = "futures" |
10 | SRC_URI = "http://pypi.python.org/packages/source/f/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | 8 | SRC_URI = "http://pypi.python.org/packages/source/f/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" |
11 | 9 | ||
12 | SRC_URI[md5sum] = "cfab9ac3cd55d6c7ddd0546a9f22f453" | 10 | SRC_URI[md5sum] = "310e446de8609ddb59d0886e35edb534" |
13 | SRC_URI[sha256sum] = "33f39102b631fa0a030b24c4341ba1f48558e435946d6735d47fe1f739d757c4" | 11 | SRC_URI[sha256sum] = "151c057173474a3a40f897165951c0e33ad04f37de65b6de547ddef107fd0ed3" |
14 | 12 | ||
15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 13 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
16 | 14 | ||
diff --git a/meta-openstack/recipes-devtools/python/python-horizon_git.bb b/meta-openstack/recipes-devtools/python/python-horizon_git.bb index 55a2a38..9dd764f 100644 --- a/meta-openstack/recipes-devtools/python/python-horizon_git.bb +++ b/meta-openstack/recipes-devtools/python/python-horizon_git.bb | |||
@@ -39,6 +39,7 @@ RDEPENDS_${PN} += " python-django \ | |||
39 | python-xstatic-angular-cookies \ | 39 | python-xstatic-angular-cookies \ |
40 | python-xstatic-angular-mock \ | 40 | python-xstatic-angular-mock \ |
41 | python-xstatic-angular-bootstrap \ | 41 | python-xstatic-angular-bootstrap \ |
42 | python-xstatic-angular-irdragndrop \ | ||
42 | python-xstatic-d3 \ | 43 | python-xstatic-d3 \ |
43 | python-xstatic-hogan \ | 44 | python-xstatic-hogan \ |
44 | python-xstatic-jasmine \ | 45 | python-xstatic-jasmine \ |
diff --git a/meta-openstack/recipes-devtools/python/python-jsonpointer_1.7.bb b/meta-openstack/recipes-devtools/python/python-jsonpointer_1.7.bb index d7b976b..14d38fd 100644 --- a/meta-openstack/recipes-devtools/python/python-jsonpointer_1.7.bb +++ b/meta-openstack/recipes-devtools/python/python-jsonpointer_1.7.bb | |||
@@ -14,4 +14,4 @@ SRC_URI[sha256sum] = "46b2016b5e4f2b5cd2edf07c60ca8fe7dd91204ca848f98964be61b3c4 | |||
14 | 14 | ||
15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | 15 | S = "${WORKDIR}/${SRCNAME}-${PV}" |
16 | 16 | ||
17 | inherit distutils | 17 | inherit setuptools |
diff --git a/meta-openstack/recipes-devtools/python/python-keystone_git.bb b/meta-openstack/recipes-devtools/python/python-keystone_git.bb index b13d36b..8fbf996 100644 --- a/meta-openstack/recipes-devtools/python/python-keystone_git.bb +++ b/meta-openstack/recipes-devtools/python/python-keystone_git.bb | |||
@@ -281,6 +281,7 @@ RDEPENDS_${PN} += " \ | |||
281 | python-dogpile.cache \ | 281 | python-dogpile.cache \ |
282 | python-pbr \ | 282 | python-pbr \ |
283 | python-pysaml2 \ | 283 | python-pysaml2 \ |
284 | python-oslo.policy \ | ||
284 | python-oslo.utils \ | 285 | python-oslo.utils \ |
285 | python-oauthlib \ | 286 | python-oauthlib \ |
286 | python-fixtures \ | 287 | python-fixtures \ |
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 new file mode 100644 index 0000000..2816559 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-oslo.policy_0.4.0.bb | |||
@@ -0,0 +1,27 @@ | |||
1 | SUMMARY = "Oslo Policy library" | ||
2 | DESCRIPTION = "The Oslo Policy library provides support for RBAC policy enforcement across all OpenStack services." | ||
3 | HOMEPAGE = "https://pypi.python.org/pypi/oslo.policy" | ||
4 | SECTION = "devel/python" | ||
5 | LICENSE = "Apache-2" | ||
6 | LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2" | ||
7 | |||
8 | |||
9 | SRCNAME = "oslo.policy" | ||
10 | SRC_URI = "http://pypi.python.org/packages/source/o/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
11 | |||
12 | SRC_URI[md5sum] = "a0ddfa5782191c218e1e100234550295" | ||
13 | SRC_URI[sha256sum] = "7e8a82e617516722043f437825ed5ada422632ee432cc64ede7c4854209cd329" | ||
14 | |||
15 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
16 | |||
17 | inherit setuptools | ||
18 | |||
19 | DEPENDS += " \ | ||
20 | python-pip \ | ||
21 | " | ||
22 | |||
23 | RDEPENDS_${PN} += " \ | ||
24 | python-oslo.config \ | ||
25 | python-oslo.i18n \ | ||
26 | python-oslo.serialization \ | ||
27 | " | ||
diff --git a/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb b/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb new file mode 100644 index 0000000..ae26da1 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-pathlib_1.0.1.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "Object-oriented filesystem paths" | ||
2 | DESCRIPTION = "pathlib offers a set of classes to handle filesystem paths. \ | ||
3 | It offers the following advantages over using string objects: \ | ||
4 | - No more cumbersome use of os and os.path functions. \ | ||
5 | - Embodies the semantics of different path types. \ | ||
6 | - Well-defined semantics, eliminating any warts or ambiguities. \ | ||
7 | " | ||
8 | HOMEPAGE = "https://pypi.python.org/pypi/pathlib" | ||
9 | SECTION = "devel/python" | ||
10 | LICENSE = "MIT" | ||
11 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b6557c860f0fc867aeab30afd649753" | ||
12 | |||
13 | |||
14 | SRCNAME = "pathlib" | ||
15 | SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
16 | |||
17 | SRC_URI[md5sum] = "5099ed48be9b1ee29b31c82819240537" | ||
18 | SRC_URI[sha256sum] = "6940718dfc3eff4258203ad5021090933e5c04707d5ca8cc9e73c94a7894ea9f" | ||
19 | |||
20 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
21 | |||
22 | inherit setuptools | ||
23 | |||
24 | DEPENDS += " \ | ||
25 | python-pip \ | ||
26 | " | ||
27 | |||
28 | RDEPENDS_${PN} += " \ | ||
29 | " | ||
diff --git a/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb b/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb index f26352a..72ea639 100644 --- a/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb +++ b/meta-openstack/recipes-devtools/python/python-pyscss_1.3.4.bb | |||
@@ -25,6 +25,7 @@ DEPENDS += " \ | |||
25 | 25 | ||
26 | # RDEPENDS_default: | 26 | # RDEPENDS_default: |
27 | RDEPENDS_${PN} += " \ | 27 | RDEPENDS_${PN} += " \ |
28 | python-enum \ | ||
28 | " | 29 | " |
29 | 30 | ||
30 | CLEANBROKEN = "1" | 31 | CLEANBROKEN = "1" |
diff --git a/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb b/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb new file mode 100644 index 0000000..60a749f --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-repoze.lru_0.6.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | SUMMARY = "A tiny LRU cache implementation and decorator" | ||
2 | DESCRIPTION = "repoze.lru is a LRU (least recently used) cache implementation. \ | ||
3 | Keys and values that are not used frequently will be evicted from the cache faster \ | ||
4 | than keys and values that are used frequently. \ | ||
5 | " | ||
6 | HOMEPAGE = "https://pypi.python.org/pypi/repoze.lru" | ||
7 | SECTION = "devel/python" | ||
8 | LICENSE = "BSD-derived" | ||
9 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2c33cdbc6bc9ae6e5d64152fdb754292" | ||
10 | |||
11 | SRCNAME = "repoze.lru" | ||
12 | |||
13 | SRC_URI = "http://pypi.python.org/packages/source/r/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
14 | |||
15 | SRC_URI[md5sum] = "2c3b64b17a8e18b405f55d46173e14dd" | ||
16 | SRC_URI[sha256sum] = "0f7a323bf716d3cb6cb3910cd4fccbee0b3d3793322738566ecce163b01bbd31" | ||
17 | |||
18 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
19 | |||
20 | inherit setuptools | ||
diff --git a/meta-openstack/recipes-devtools/python/python-routes_2.1.bb b/meta-openstack/recipes-devtools/python/python-routes_2.1.bb index dbf6e17..ad459c7 100644 --- a/meta-openstack/recipes-devtools/python/python-routes_2.1.bb +++ b/meta-openstack/recipes-devtools/python/python-routes_2.1.bb | |||
@@ -15,4 +15,4 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
15 | 15 | ||
16 | inherit setuptools | 16 | inherit setuptools |
17 | 17 | ||
18 | 18 | RDEPENDS_${PN} += "python-repoze.lru" | |
diff --git a/meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb b/meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb new file mode 100644 index 0000000..2ad3e55 --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-xstatic-angular-irdragndrop_1.0.2.2.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "IrDragNDrop javascript library packaged for setuptools" | ||
2 | HOMEPAGE = "https://pypi.python.org/pypi/XStatic-Angular-IrDragNDrop" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "MIT" | ||
5 | LIC_FILES_CHKSUM = "file://PKG-INFO;md5=9acc2dfc3a0345c175df08104bd22298" | ||
6 | |||
7 | SRCNAME = "XStatic-Angular-IrDragNDrop" | ||
8 | SRC_URI = "http://pypi.python.org/packages/source/X/${SRCNAME}/${SRCNAME}-${PV}.tar.gz" | ||
9 | |||
10 | SRC_URI[md5sum] = "6ea8809bae94014aef699d58836dba84" | ||
11 | SRC_URI[sha256sum] = "5595f4a98ac8f8468f7e56dc916e10c0fc5f0197567899a75755f99fe8b5bd6d" | ||
12 | |||
13 | S = "${WORKDIR}/${SRCNAME}-${PV}" | ||
14 | |||
15 | inherit setuptools | ||
16 | |||
17 | DEPENDS += " \ | ||
18 | python-pip \ | ||
19 | " | ||
20 | |||
21 | RDEPENDS_${PN} += " \ | ||
22 | " | ||