* [m-c-s][PATCH 1/2] python-wrapt: add recipe
@ 2016-01-14 21:01 Mark Asselstine
2016-01-14 21:01 ` [m-c-s][PATCH 2/2] python-wrapt: switch to using git Mark Asselstine
2016-01-15 14:41 ` [m-c-s][PATCH 1/2] python-wrapt: add recipe Bruce Ashfield
0 siblings, 2 replies; 3+ messages in thread
From: Mark Asselstine @ 2016-01-14 21:01 UTC (permalink / raw)
To: bruce.ashfield, meta-virtualization
From: Josep Puigdemont <josep.puigdemont@enea.com>
Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
** cherry-picked from fido-kilo **
meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb | 11 +++++++++++
1 file changed, 11 insertions(+)
create mode 100644 meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb
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
new file mode 100644
index 0000000..5a8d0e7
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb
@@ -0,0 +1,11 @@
+DESCRIPTION = "A Python module for decorators, wrappers and monkey patching."
+HOMEPAGE = "https://pypi.python.org/pypi/wrapt/"
+SECTION = "devel/python"
+LICENSE = "BSD-2-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=848d45ec255e411c0ff82b034a49d8a0"
+
+SRC_URI[md5sum] = "79732bbc096235704e7523d3bacd202c"
+SRC_URI[sha256sum] = "99cbb4e3a3ea964df0cb1437261fc1198616ec872e7b501622f3f7f92fcd0833"
+
+inherit pypi
+
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [m-c-s][PATCH 2/2] python-wrapt: switch to using git
2016-01-14 21:01 [m-c-s][PATCH 1/2] python-wrapt: add recipe Mark Asselstine
@ 2016-01-14 21:01 ` Mark Asselstine
2016-01-15 14:41 ` [m-c-s][PATCH 1/2] python-wrapt: add recipe Bruce Ashfield
1 sibling, 0 replies; 3+ messages in thread
From: Mark Asselstine @ 2016-01-14 21:01 UTC (permalink / raw)
To: bruce.ashfield, meta-virtualization
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>
---
.../python/{python-wrapt_1.10.5.bb => python-wrapt_git.bb} | 12 ++++++++----
1 file changed, 8 insertions(+), 4 deletions(-)
rename meta-openstack/recipes-devtools/python/{python-wrapt_1.10.5.bb => python-wrapt_git.bb} (46%)
diff --git a/meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb b/meta-openstack/recipes-devtools/python/python-wrapt_git.bb
similarity index 46%
rename from meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb
rename to meta-openstack/recipes-devtools/python/python-wrapt_git.bb
index 5a8d0e7..a2def9a 100644
--- a/meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb
+++ b/meta-openstack/recipes-devtools/python/python-wrapt_git.bb
@@ -1,11 +1,15 @@
DESCRIPTION = "A Python module for decorators, wrappers and monkey patching."
-HOMEPAGE = "https://pypi.python.org/pypi/wrapt/"
+HOMEPAGE = "https://github.com/GrahamDumpleton/wrapt"
SECTION = "devel/python"
LICENSE = "BSD-2-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=848d45ec255e411c0ff82b034a49d8a0"
-SRC_URI[md5sum] = "79732bbc096235704e7523d3bacd202c"
-SRC_URI[sha256sum] = "99cbb4e3a3ea964df0cb1437261fc1198616ec872e7b501622f3f7f92fcd0833"
+PV = "1.10.5"
+SRCREV = "42af0563bf88e84d215dea9ea6f989cb867e930e"
-inherit pypi
+SRCNAME = "wrapt"
+SRC_URI = "git://github.com/GrahamDumpleton/${SRCNAME}.git"
+S = "${WORKDIR}/git"
+
+inherit setuptools
--
2.1.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [m-c-s][PATCH 1/2] python-wrapt: add recipe
2016-01-14 21:01 [m-c-s][PATCH 1/2] python-wrapt: add recipe Mark Asselstine
2016-01-14 21:01 ` [m-c-s][PATCH 2/2] python-wrapt: switch to using git Mark Asselstine
@ 2016-01-15 14:41 ` Bruce Ashfield
1 sibling, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2016-01-15 14:41 UTC (permalink / raw)
To: Mark Asselstine, meta-virtualization
merged to master.
Bruce
On 16-01-14 04:01 PM, Mark Asselstine wrote:
> From: Josep Puigdemont <josep.puigdemont@enea.com>
>
> Signed-off-by: Josep Puigdemont <josep.puigdemont@enea.com>
> Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
> ---
>
> ** cherry-picked from fido-kilo **
>
> meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb | 11 +++++++++++
> 1 file changed, 11 insertions(+)
> create mode 100644 meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb
>
> 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
> new file mode 100644
> index 0000000..5a8d0e7
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python-wrapt_1.10.5.bb
> @@ -0,0 +1,11 @@
> +DESCRIPTION = "A Python module for decorators, wrappers and monkey patching."
> +HOMEPAGE = "https://pypi.python.org/pypi/wrapt/"
> +SECTION = "devel/python"
> +LICENSE = "BSD-2-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=848d45ec255e411c0ff82b034a49d8a0"
> +
> +SRC_URI[md5sum] = "79732bbc096235704e7523d3bacd202c"
> +SRC_URI[sha256sum] = "99cbb4e3a3ea964df0cb1437261fc1198616ec872e7b501622f3f7f92fcd0833"
> +
> +inherit pypi
> +
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-01-15 14:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-14 21:01 [m-c-s][PATCH 1/2] python-wrapt: add recipe Mark Asselstine
2016-01-14 21:01 ` [m-c-s][PATCH 2/2] python-wrapt: switch to using git Mark Asselstine
2016-01-15 14:41 ` [m-c-s][PATCH 1/2] python-wrapt: add recipe Bruce Ashfield
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.