diff options
| author | Mark Asselstine <mark.asselstine@windriver.com> | 2016-01-14 16:01:28 -0500 |
|---|---|---|
| committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2016-01-15 09:40:41 -0500 |
| commit | 850d27022a3685ee6821bf5856b02f54c58204a8 (patch) | |
| tree | 1459c27cb7630e928d30860154f11f960aeede60 | |
| parent | 50cb4944b92ca3acaa71b2bee94549a4a961cb21 (diff) | |
| download | meta-cloud-services-850d27022a3685ee6821bf5856b02f54c58204a8.tar.gz | |
python-wrapt: switch to using git
In an effort to make things easier to uprev whenever possible we
should use git in our recipes. This has some negative implications if
there is a versioned recipe in another layer (without using
PREFERRED_VERSION the versioned recipe is used) but overall is the
best solution.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb | 11 | ||||
| -rw-r--r-- | meta-openstack/recipes-devtools/python/python-wrapt_git.bb | 15 |
2 files changed, 15 insertions, 11 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb b/meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb deleted file mode 100644 index 5a8d0e7..0000000 --- a/meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb +++ /dev/null | |||
| @@ -1,11 +0,0 @@ | |||
| 1 | DESCRIPTION = "A Python module for decorators, wrappers and monkey patching." | ||
| 2 | HOMEPAGE = "https://pypi.python.org/pypi/wrapt/" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "BSD-2-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=848d45ec255e411c0ff82b034a49d8a0" | ||
| 6 | |||
| 7 | SRC_URI[md5sum] = "79732bbc096235704e7523d3bacd202c" | ||
| 8 | SRC_URI[sha256sum] = "99cbb4e3a3ea964df0cb1437261fc1198616ec872e7b501622f3f7f92fcd0833" | ||
| 9 | |||
| 10 | inherit pypi | ||
| 11 | |||
diff --git a/meta-openstack/recipes-devtools/python/python-wrapt_git.bb b/meta-openstack/recipes-devtools/python/python-wrapt_git.bb new file mode 100644 index 0000000..a2def9a --- /dev/null +++ b/meta-openstack/recipes-devtools/python/python-wrapt_git.bb | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | DESCRIPTION = "A Python module for decorators, wrappers and monkey patching." | ||
| 2 | HOMEPAGE = "https://github.com/GrahamDumpleton/wrapt" | ||
| 3 | SECTION = "devel/python" | ||
| 4 | LICENSE = "BSD-2-Clause" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=848d45ec255e411c0ff82b034a49d8a0" | ||
| 6 | |||
| 7 | PV = "1.10.5" | ||
| 8 | SRCREV = "42af0563bf88e84d215dea9ea6f989cb867e930e" | ||
| 9 | |||
| 10 | SRCNAME = "wrapt" | ||
| 11 | SRC_URI = "git://github.com/GrahamDumpleton/${SRCNAME}.git" | ||
| 12 | |||
| 13 | S = "${WORKDIR}/git" | ||
| 14 | |||
| 15 | inherit setuptools | ||
