All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH] python-flask-bootstrap: update to version 3.3.7.1
@ 2017-01-23 16:27 Derek Straka
  2017-01-23 17:06 ` Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: Derek Straka @ 2017-01-23 16:27 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Derek Straka <derek@asterius.io>
---
 ...ask-bootstrap_3.3.6.0.bb => python-flask-bootstrap_3.3.7.1.bb} | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-python/recipes-devtools/python/{python-flask-bootstrap_3.3.6.0.bb => python-flask-bootstrap_3.3.7.1.bb} (51%)

diff --git a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.6.0.bb b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
similarity index 51%
rename from meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.6.0.bb
rename to meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
index a115f23..05a02c6 100644
--- a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.6.0.bb
+++ b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
@@ -1,15 +1,15 @@
 DESCRIPTION = "An extension that includes Bootstrap in your project, without any boilerplate code."
 LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://PKG-INFO;md5=3452e378337a5cc2092d32a140178d5a"
+LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a03749709f06118a17349deb5a210619"
 
-SRC_URI[md5sum] = "b8aedbe51f2bf511af955f2bc288cd8c"
-SRC_URI[sha256sum] = "3a7b71e22596a6d559965e059958960e0bb671adc131537a79edb491a8f31714"
+SRC_URI[md5sum] = "e40d50f5c5b6438c1c6200a6f2871f81"
+SRC_URI[sha256sum] = "cb08ed940183f6343a64e465e83b3a3f13c53e1baabb8d72b5da4545ef123ac8"
 
 PYPI_PACKAGE = "Flask-Bootstrap"
 
 inherit pypi setuptools
 
-RDEPENDS_${PN} += "\
+RDEPENDS_${PN}_class-target += "\
     ${PYTHON_PN}-dominate \
     ${PYTHON_PN}-flask \
     ${PYTHON_PN}-visitor \
-- 
2.7.4



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

* Re: [meta-python][PATCH] python-flask-bootstrap: update to version 3.3.7.1
  2017-01-23 16:27 [meta-python][PATCH] python-flask-bootstrap: update to version 3.3.7.1 Derek Straka
@ 2017-01-23 17:06 ` Khem Raj
  2017-01-23 17:24   ` Derek Straka
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2017-01-23 17:06 UTC (permalink / raw)
  To: openembeded-devel

On Mon, Jan 23, 2017 at 8:27 AM, Derek Straka <derek@asterius.io> wrote:
> Signed-off-by: Derek Straka <derek@asterius.io>
> ---
>  ...ask-bootstrap_3.3.6.0.bb => python-flask-bootstrap_3.3.7.1.bb} | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>  rename meta-python/recipes-devtools/python/{python-flask-bootstrap_3.3.6.0.bb => python-flask-bootstrap_3.3.7.1.bb} (51%)
>
> diff --git a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.6.0.bb b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
> similarity index 51%
> rename from meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.6.0.bb
> rename to meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
> index a115f23..05a02c6 100644
> --- a/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.6.0.bb
> +++ b/meta-python/recipes-devtools/python/python-flask-bootstrap_3.3.7.1.bb
> @@ -1,15 +1,15 @@
>  DESCRIPTION = "An extension that includes Bootstrap in your project, without any boilerplate code."
>  LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=3452e378337a5cc2092d32a140178d5a"
> +LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a03749709f06118a17349deb5a210619"
>
> -SRC_URI[md5sum] = "b8aedbe51f2bf511af955f2bc288cd8c"
> -SRC_URI[sha256sum] = "3a7b71e22596a6d559965e059958960e0bb671adc131537a79edb491a8f31714"
> +SRC_URI[md5sum] = "e40d50f5c5b6438c1c6200a6f2871f81"
> +SRC_URI[sha256sum] = "cb08ed940183f6343a64e465e83b3a3f13c53e1baabb8d72b5da4545ef123ac8"
>
>  PYPI_PACKAGE = "Flask-Bootstrap"
>
>  inherit pypi setuptools
>
> -RDEPENDS_${PN} += "\
> +RDEPENDS_${PN}_class-target += "\

why is this change needed ?
if its needed so that its only done for target recipes then use
_append instead of +=

>      ${PYTHON_PN}-dominate \
>      ${PYTHON_PN}-flask \
>      ${PYTHON_PN}-visitor \
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

* Re: [meta-python][PATCH] python-flask-bootstrap: update to version 3.3.7.1
  2017-01-23 17:06 ` Khem Raj
@ 2017-01-23 17:24   ` Derek Straka
  0 siblings, 0 replies; 3+ messages in thread
From: Derek Straka @ 2017-01-23 17:24 UTC (permalink / raw)
  To: openembeded-devel

It isn't needed.  That was a poor merge on my part.  Thanks for the catch.

On Mon, Jan 23, 2017 at 12:06 PM, Khem Raj <raj.khem@gmail.com> wrote:

> On Mon, Jan 23, 2017 at 8:27 AM, Derek Straka <derek@asterius.io> wrote:
> > Signed-off-by: Derek Straka <derek@asterius.io>
> > ---
> >  ...ask-bootstrap_3.3.6.0.bb => python-flask-bootstrap_3.3.7.1.bb} | 8
> ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> >  rename meta-python/recipes-devtools/python/{python-flask-
> bootstrap_3.3.6.0.bb => python-flask-bootstrap_3.3.7.1.bb} (51%)
> >
> > diff --git a/meta-python/recipes-devtools/python/python-flask-
> bootstrap_3.3.6.0.bb b/meta-python/recipes-devtools/python/python-flask-
> bootstrap_3.3.7.1.bb
> > similarity index 51%
> > rename from meta-python/recipes-devtools/python/python-flask-bootstrap_
> 3.3.6.0.bb
> > rename to meta-python/recipes-devtools/python/python-flask-bootstrap_
> 3.3.7.1.bb
> > index a115f23..05a02c6 100644
> > --- a/meta-python/recipes-devtools/python/python-flask-
> bootstrap_3.3.6.0.bb
> > +++ b/meta-python/recipes-devtools/python/python-flask-
> bootstrap_3.3.7.1.bb
> > @@ -1,15 +1,15 @@
> >  DESCRIPTION = "An extension that includes Bootstrap in your project,
> without any boilerplate code."
> >  LICENSE = "BSD"
> > -LIC_FILES_CHKSUM = "file://PKG-INFO;md5=3452e378337a5cc2092d32a140178d
> 5a"
> > +LIC_FILES_CHKSUM = "file://PKG-INFO;md5=a03749709f06118a17349deb5a2106
> 19"
> >
> > -SRC_URI[md5sum] = "b8aedbe51f2bf511af955f2bc288cd8c"
> > -SRC_URI[sha256sum] = "3a7b71e22596a6d559965e05995896
> 0e0bb671adc131537a79edb491a8f31714"
> > +SRC_URI[md5sum] = "e40d50f5c5b6438c1c6200a6f2871f81"
> > +SRC_URI[sha256sum] = "cb08ed940183f6343a64e465e83b3a
> 3f13c53e1baabb8d72b5da4545ef123ac8"
> >
> >  PYPI_PACKAGE = "Flask-Bootstrap"
> >
> >  inherit pypi setuptools
> >
> > -RDEPENDS_${PN} += "\
> > +RDEPENDS_${PN}_class-target += "\
>
> why is this change needed ?
> if its needed so that its only done for target recipes then use
> _append instead of +=
>
> >      ${PYTHON_PN}-dominate \
> >      ${PYTHON_PN}-flask \
> >      ${PYTHON_PN}-visitor \
> > --
> > 2.7.4
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

end of thread, other threads:[~2017-01-23 17:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-23 16:27 [meta-python][PATCH] python-flask-bootstrap: update to version 3.3.7.1 Derek Straka
2017-01-23 17:06 ` Khem Raj
2017-01-23 17:24   ` Derek Straka

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.