All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] python-babel: add python-pytz to (R)EPENDS
@ 2013-12-04 17:49 Denis Carikli
  2013-12-04 17:49 ` [PATCH 2/2] python-babel: add native support Denis Carikli
  0 siblings, 1 reply; 4+ messages in thread
From: Denis Carikli @ 2013-12-04 17:49 UTC (permalink / raw)
  To: meta-virtualization

Signed-off-by: Denis Carikli <denis@eukrea.com>
---
 .../recipes-devtools/python/python-babel_1.3.bb    |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-babel_1.3.bb b/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
index 390a3c5..cf2b7a8 100644
--- a/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
+++ b/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
@@ -3,6 +3,8 @@ HOMEPAGE = "http://babel.edgewall.org/"
 SECTION = "devel/python"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e6eeaabc92cfc2d03f53e789324d7292"
+DEPENDS += "python-pytz"
+RDEPENDS_${PN} += "python-pytz"
 
 PR = "r0"
 SRCNAME = "Babel"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/2] python-babel: add native support.
  2013-12-04 17:49 [PATCH 1/2] python-babel: add python-pytz to (R)EPENDS Denis Carikli
@ 2013-12-04 17:49 ` Denis Carikli
  2013-12-05 19:10   ` Bruce Ashfield
  0 siblings, 1 reply; 4+ messages in thread
From: Denis Carikli @ 2013-12-04 17:49 UTC (permalink / raw)
  To: meta-virtualization

Signed-off-by: Denis Carikli <denis@eukrea.com>
---
 .../recipes-devtools/python/python-babel_1.3.bb    |    1 +
 .../recipes-devtools/python/python-pytz_2013.8.bb  |    2 ++
 2 files changed, 3 insertions(+)

diff --git a/meta-openstack/recipes-devtools/python/python-babel_1.3.bb b/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
index cf2b7a8..11b79d8 100644
--- a/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
+++ b/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
@@ -18,3 +18,4 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
 
 inherit setuptools
 
+BBCLASSEXTEND = "native"
diff --git a/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb b/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb
index cee4fc2..c5c3fce 100644
--- a/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb
+++ b/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb
@@ -16,3 +16,5 @@ SRC_URI[sha256sum] = "58552e870aa2c0a1fa3b4ef923f00fbf3e55afaa87f8d31244d44f188d
 S = "${WORKDIR}/${SRCNAME}-${PV}"
 
 inherit setuptools 
+
+BBCLASSEXTEND = "native"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] python-babel: add native support.
  2013-12-04 17:49 ` [PATCH 2/2] python-babel: add native support Denis Carikli
@ 2013-12-05 19:10   ` Bruce Ashfield
  2013-12-06  8:24     ` Denis Carikli
  0 siblings, 1 reply; 4+ messages in thread
From: Bruce Ashfield @ 2013-12-05 19:10 UTC (permalink / raw)
  To: Denis Carikli; +Cc: meta-virtualization@yoctoproject.org

Out of curiosity, what is using the native version of the package ? I'd like
to get that in the commit log.

Bruce

On Wed, Dec 4, 2013 at 12:49 PM, Denis Carikli <denis@eukrea.com> wrote:
> Signed-off-by: Denis Carikli <denis@eukrea.com>
> ---
>  .../recipes-devtools/python/python-babel_1.3.bb    |    1 +
>  .../recipes-devtools/python/python-pytz_2013.8.bb  |    2 ++
>  2 files changed, 3 insertions(+)
>
> diff --git a/meta-openstack/recipes-devtools/python/python-babel_1.3.bb b/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
> index cf2b7a8..11b79d8 100644
> --- a/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
> +++ b/meta-openstack/recipes-devtools/python/python-babel_1.3.bb
> @@ -18,3 +18,4 @@ S = "${WORKDIR}/${SRCNAME}-${PV}"
>
>  inherit setuptools
>
> +BBCLASSEXTEND = "native"
> diff --git a/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb b/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb
> index cee4fc2..c5c3fce 100644
> --- a/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb
> +++ b/meta-openstack/recipes-devtools/python/python-pytz_2013.8.bb
> @@ -16,3 +16,5 @@ SRC_URI[sha256sum] = "58552e870aa2c0a1fa3b4ef923f00fbf3e55afaa87f8d31244d44f188d
>  S = "${WORKDIR}/${SRCNAME}-${PV}"
>
>  inherit setuptools
> +
> +BBCLASSEXTEND = "native"
> --
> 1.7.9.5
>
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization



-- 
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 2/2] python-babel: add native support.
  2013-12-05 19:10   ` Bruce Ashfield
@ 2013-12-06  8:24     ` Denis Carikli
  0 siblings, 0 replies; 4+ messages in thread
From: Denis Carikli @ 2013-12-06  8:24 UTC (permalink / raw)
  To: Bruce Ashfield; +Cc: meta-virtualization@yoctoproject.org

On 12/05/2013 08:10 PM, Bruce Ashfield wrote:
> Out of curiosity, what is using the native version of the package ? I'd like
> to get that in the commit log.
Any python package with a setup.py that uses 
babel.messages.frontend.extract_messages and 
babel.messages.frontend.compile_catalog will need that.

Denis.


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-12-06  8:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-04 17:49 [PATCH 1/2] python-babel: add python-pytz to (R)EPENDS Denis Carikli
2013-12-04 17:49 ` [PATCH 2/2] python-babel: add native support Denis Carikli
2013-12-05 19:10   ` Bruce Ashfield
2013-12-06  8:24     ` Denis Carikli

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.