Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-python][PATCH] Add some python packages bb
@ 2016-06-29  8:22 mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 1/5] python-pbr: Add python-pbr bb mingli.yu
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: mingli.yu @ 2016-06-29  8:22 UTC (permalink / raw)
  To: openembedded-devel

1, Add python-pbr bb file as python-mock depends on
   python-pbr-native

2, Update python-mock bb to add python-pbr-native dependency 
   for python-mock

3, Update python-mccabe bb to add python-pytest-runner 
   dependency for python-mccabe

4, Add python-pytest-runner bb as python-mccabe depends
   on python-pytest-runner

5, Add python-setuptools-scm bb as python-pytest-runner depends
   on python-setuptools-scm


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

* [meta-python][PATCH 1/5] python-pbr: Add python-pbr bb
  2016-06-29  8:22 [meta-python][PATCH] Add some python packages bb mingli.yu
@ 2016-06-29  8:22 ` mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 2/5] python-mock: Add python-pbr-native dependency mingli.yu
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: mingli.yu @ 2016-06-29  8:22 UTC (permalink / raw)
  To: openembedded-devel

From: Mingli Yu <mingli.yu@windriver.com>

* Add python-pbr bb file as python-mock depends on
  python-pbr-native

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta-python/recipes-devtools/python/python-pbr_1.10.0.bb | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-pbr_1.10.0.bb

diff --git a/meta-python/recipes-devtools/python/python-pbr_1.10.0.bb b/meta-python/recipes-devtools/python/python-pbr_1.10.0.bb
new file mode 100644
index 0000000..fd35197
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pbr_1.10.0.bb
@@ -0,0 +1,16 @@
+DESCRIPTION = "Python Build Reasonableness: PBR is a library that injects some useful and sensible default behaviors into your setuptools run"
+HOMEPAGE = "https://pypi.python.org/pypi/pbr"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+SRC_URI[md5sum] = "8e4968c587268f030e38329feb9c8f17"
+SRC_URI[sha256sum] = "186428c270309e6fdfe2d5ab0949ab21ae5f7dea831eab96701b86bd666af39c"
+
+inherit pypi setuptools
+
+DEPENDS_class-target += " \
+        python-pip \
+        "
+
+BBCLASSEXTEND = "native"
-- 
2.8.1



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

* [meta-python][PATCH 2/5] python-mock: Add python-pbr-native dependency
  2016-06-29  8:22 [meta-python][PATCH] Add some python packages bb mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 1/5] python-pbr: Add python-pbr bb mingli.yu
@ 2016-06-29  8:22 ` mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 3/5] python-mccabe: Add python-pytest-runner dependency mingli.yu
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: mingli.yu @ 2016-06-29  8:22 UTC (permalink / raw)
  To: openembedded-devel

From: Mingli Yu <mingli.yu@windriver.com>

* Add python-pbr-native dependency for python-mock

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta-python/recipes-devtools/python/python-mock_2.0.0.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-mock_2.0.0.bb b/meta-python/recipes-devtools/python/python-mock_2.0.0.bb
index eb473d2..849c99e 100644
--- a/meta-python/recipes-devtools/python/python-mock_2.0.0.bb
+++ b/meta-python/recipes-devtools/python/python-mock_2.0.0.bb
@@ -8,6 +8,9 @@ PYPI_PACKAGE_HASH = "0c53014354fc93c591ccc4abff12c473ad565a2eb24dcd82490fae33dbf
 
 inherit pypi setuptools
 
+DEPENDS += " \
+    python-pbr-native"
+
 RDEPENDS_${PN} += " \
     python-prettytable \
     python-cmd2 \
-- 
2.8.1



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

* [meta-python][PATCH 3/5] python-mccabe: Add python-pytest-runner dependency
  2016-06-29  8:22 [meta-python][PATCH] Add some python packages bb mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 1/5] python-pbr: Add python-pbr bb mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 2/5] python-mock: Add python-pbr-native dependency mingli.yu
@ 2016-06-29  8:22 ` mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 4/5] python-pytest-runner: Add python-pytest-runner bb mingli.yu
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: mingli.yu @ 2016-06-29  8:22 UTC (permalink / raw)
  To: openembedded-devel

From: Mingli Yu <mingli.yu@windriver.com>

* Add python-pytest-runner dependency for python-mccabe

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 meta-python/recipes-devtools/python/python-mccabe_0.4.0.bb | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-mccabe_0.4.0.bb b/meta-python/recipes-devtools/python/python-mccabe_0.4.0.bb
index 0958f75..ba966eb 100644
--- a/meta-python/recipes-devtools/python/python-mccabe_0.4.0.bb
+++ b/meta-python/recipes-devtools/python/python-mccabe_0.4.0.bb
@@ -8,6 +8,9 @@ SRC_URI[sha256sum] = "9a2b12ebd876e77c72e41ebf401cc2e7c5b566649d50105ca498226886
 
 inherit pypi setuptools
 
+DEPENDS += " \
+    python-pytest-runner"
+
 RDEPENDS_${PN} += " \
     python-prettytable \
     python-cmd2 \
-- 
2.8.1



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

* [meta-python][PATCH 4/5] python-pytest-runner: Add python-pytest-runner bb
  2016-06-29  8:22 [meta-python][PATCH] Add some python packages bb mingli.yu
                   ` (2 preceding siblings ...)
  2016-06-29  8:22 ` [meta-python][PATCH 3/5] python-mccabe: Add python-pytest-runner dependency mingli.yu
@ 2016-06-29  8:22 ` mingli.yu
  2016-06-29  8:22 ` [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb mingli.yu
  2016-06-29 16:39 ` [meta-python][PATCH] Add some python packages bb Tim Orling
  5 siblings, 0 replies; 10+ messages in thread
From: mingli.yu @ 2016-06-29  8:22 UTC (permalink / raw)
  To: openembedded-devel

From: Mingli Yu <mingli.yu@windriver.com>

* Add python-pytest-runner bb as python-mccabe depends
  on python-pytest-runner

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 .../recipes-devtools/python/python-pytest-runner_2.8.bb     | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-pytest-runner_2.8.bb

diff --git a/meta-python/recipes-devtools/python/python-pytest-runner_2.8.bb b/meta-python/recipes-devtools/python/python-pytest-runner_2.8.bb
new file mode 100644
index 0000000..e091e01
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-pytest-runner_2.8.bb
@@ -0,0 +1,13 @@
+SUMMARY = "Invoke py.test as distutils command with dependency resolution"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=e38b971c2b4c33b978d1b9c9ece9ae63"
+
+SRC_URI[md5sum] = "041f3624f450d87a242e3907d7f90e8f"
+SRC_URI[sha256sum] = "1ec44deddaa551f85fd563c40a4c483a2609aca1f284a95399566a74d0680d5c"
+
+DEPENDS += " \
+    python-setuptools-scm"
+
+RDEPENDS_${PN} = "python-py python-setuptools python-argparse python-debugger python-json"
+
+inherit pypi setuptools
-- 
2.8.1



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

* [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb
  2016-06-29  8:22 [meta-python][PATCH] Add some python packages bb mingli.yu
                   ` (3 preceding siblings ...)
  2016-06-29  8:22 ` [meta-python][PATCH 4/5] python-pytest-runner: Add python-pytest-runner bb mingli.yu
@ 2016-06-29  8:22 ` mingli.yu
  2016-06-29 20:04   ` Martin Jansa
  2016-06-29 16:39 ` [meta-python][PATCH] Add some python packages bb Tim Orling
  5 siblings, 1 reply; 10+ messages in thread
From: mingli.yu @ 2016-06-29  8:22 UTC (permalink / raw)
  To: openembedded-devel

From: Mingli Yu <mingli.yu@windriver.com>

* Add python-setuptools-scm bb as python-pytest-runner depends
  on python-setuptools-scm

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
---
 .../python/python-setuptools-scm_1.11.1.bb             | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-setuptools-scm_1.11.1.bb

diff --git a/meta-python/recipes-devtools/python/python-setuptools-scm_1.11.1.bb b/meta-python/recipes-devtools/python/python-setuptools-scm_1.11.1.bb
new file mode 100644
index 0000000..0b306f4
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-setuptools-scm_1.11.1.bb
@@ -0,0 +1,18 @@
+SUMMARY = "the blessed package to manage your versions by scm tags"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=838c366f69b72c5df05c96dff79b35f2"
+
+inherit pypi setuptools
+
+SRCNAME = "setuptools_scm"
+
+SRC_URI = "https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
+
+SRC_URI[md5sum] = "4d19b2bc9580016d991f665ac20e2e8f"
+SRC_URI[sha256sum] = "8c45f738a23410c5276b0ed9294af607f491e4260589f1eb90df8312e23819bf"
+
+S = "${WORKDIR}/${SRCNAME}-${PV}"
+
+RDEPENDS_${PN} = "python-py python-setuptools python-argparse python-debugger python-json"
+
+
-- 
2.8.1



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

* Re: [meta-python][PATCH] Add some python packages bb
  2016-06-29  8:22 [meta-python][PATCH] Add some python packages bb mingli.yu
                   ` (4 preceding siblings ...)
  2016-06-29  8:22 ` [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb mingli.yu
@ 2016-06-29 16:39 ` Tim Orling
  5 siblings, 0 replies; 10+ messages in thread
From: Tim Orling @ 2016-06-29 16:39 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

Hi Mingli,

In the future, when you send a second version of a patch, you should have
[PATCH v2] etc. in the subject line. Again, remember that these patches are
being consumed by automated processes. If you look at
https://patchwork-next.openembedded.org/project/oe/series/?ordering=-last_updated
you can get an idea about how the patches are organized by the automatic
patchwork service.

These are the guidelines for submitting patches:
http://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded

Thank you for contributing.

Cheers,

Tim

On Wed, Jun 29, 2016 at 1:22 AM, <mingli.yu@windriver.com> wrote:

> 1, Add python-pbr bb file as python-mock depends on
>    python-pbr-native
>
> 2, Update python-mock bb to add python-pbr-native dependency
>    for python-mock
>
> 3, Update python-mccabe bb to add python-pytest-runner
>    dependency for python-mccabe
>
> 4, Add python-pytest-runner bb as python-mccabe depends
>    on python-pytest-runner
>
> 5, Add python-setuptools-scm bb as python-pytest-runner depends
>    on python-setuptools-scm
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb
  2016-06-29  8:22 ` [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb mingli.yu
@ 2016-06-29 20:04   ` Martin Jansa
  2016-06-29 20:11     ` Tim Orling
  0 siblings, 1 reply; 10+ messages in thread
From: Martin Jansa @ 2016-06-29 20:04 UTC (permalink / raw)
  To: openembedded-devel

ERROR: python-setuptools-scm-1.11.1-r0 do_fetch: Fetcher failure:
Fetch command failed with exit code 8,
output:https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-1.11.1.tar.gz:
2016-06-29 07:45:31 ERROR 404: Not Found.

ERROR: python-setuptools-scm-1.11.1-r0 do_fetch: Function failed:
Fetcher failure for URL:
'https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-1.11.1.tar.gz'.
Unable to fetch URL from any source.
ERROR: Logfile of failure stored in:
/home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/python-setuptools-scm/1.11.1-r0/temp/log.do_fetch.7515


On Wed, Jun 29, 2016 at 10:22 AM, <mingli.yu@windriver.com> wrote:

> From: Mingli Yu <mingli.yu@windriver.com>
>
> * Add python-setuptools-scm bb as python-pytest-runner depends
>   on python-setuptools-scm
>
> Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
> ---
>  .../python/python-setuptools-scm_1.11.1.bb             | 18
> ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/
> python-setuptools-scm_1.11.1.bb
>
> diff --git a/meta-python/recipes-devtools/python/
> python-setuptools-scm_1.11.1.bb b/meta-python/recipes-devtools/python/
> python-setuptools-scm_1.11.1.bb
> new file mode 100644
> index 0000000..0b306f4
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-setuptools-scm_1.11.1.bb
> @@ -0,0 +1,18 @@
> +SUMMARY = "the blessed package to manage your versions by scm tags"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=838c366f69b72c5df05c96dff79b35f2"
> +
> +inherit pypi setuptools
> +
> +SRCNAME = "setuptools_scm"
> +
> +SRC_URI = "
> https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz
> "
> +
> +SRC_URI[md5sum] = "4d19b2bc9580016d991f665ac20e2e8f"
> +SRC_URI[sha256sum] =
> "8c45f738a23410c5276b0ed9294af607f491e4260589f1eb90df8312e23819bf"
> +
> +S = "${WORKDIR}/${SRCNAME}-${PV}"
> +
> +RDEPENDS_${PN} = "python-py python-setuptools python-argparse
> python-debugger python-json"
> +
> +
> --
> 2.8.1
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

* Re: [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb
  2016-06-29 20:04   ` Martin Jansa
@ 2016-06-29 20:11     ` Tim Orling
  2016-06-29 20:14       ` Martin Jansa
  0 siblings, 1 reply; 10+ messages in thread
From: Tim Orling @ 2016-06-29 20:11 UTC (permalink / raw)
  To: openembedded-devel@lists.openembedded.org

Has pypi changed it's URL format?
https://pypi.python.org/packages/84/aa/c693b5d41da513fed3f0ee27f1bf02a303caa75bbdfa5c8cc233a1d778c4/setuptools_scm-1.11.1.tar.gz#md5=4d19b2bc9580016d991f665ac20e2e8f

is the link on pypi....

On Wed, Jun 29, 2016 at 1:04 PM, Martin Jansa <martin.jansa@gmail.com>
wrote:

> ERROR: python-setuptools-scm-1.11.1-r0 do_fetch: Fetcher failure:
> Fetch command failed with exit code 8,
> output:
> https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-1.11.1.tar.gz
> :
> 2016-06-29 07:45:31 ERROR 404: Not Found.
>
> ERROR: python-setuptools-scm-1.11.1-r0 do_fetch: Function failed:
> Fetcher failure for URL:
> '
> https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-1.11.1.tar.gz
> '.
> Unable to fetch URL from any source.
> ERROR: Logfile of failure stored in:
>
> /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/python-setuptools-scm/1.11.1-r0/temp/log.do_fetch.7515
>
>
> On Wed, Jun 29, 2016 at 10:22 AM, <mingli.yu@windriver.com> wrote:
>
> > From: Mingli Yu <mingli.yu@windriver.com>
> >
> > * Add python-setuptools-scm bb as python-pytest-runner depends
> >   on python-setuptools-scm
> >
> > Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
> > ---
> >  .../python/python-setuptools-scm_1.11.1.bb             | 18
> > ++++++++++++++++++
> >  1 file changed, 18 insertions(+)
> >  create mode 100644 meta-python/recipes-devtools/python/
> > python-setuptools-scm_1.11.1.bb
> >
> > diff --git a/meta-python/recipes-devtools/python/
> > python-setuptools-scm_1.11.1.bb b/meta-python/recipes-devtools/python/
> > python-setuptools-scm_1.11.1.bb
> > new file mode 100644
> > index 0000000..0b306f4
> > --- /dev/null
> > +++ b/meta-python/recipes-devtools/python/
> python-setuptools-scm_1.11.1.bb
> > @@ -0,0 +1,18 @@
> > +SUMMARY = "the blessed package to manage your versions by scm tags"
> > +LICENSE = "MIT"
> > +LIC_FILES_CHKSUM = "file://LICENSE;md5=838c366f69b72c5df05c96dff79b35f2"
> > +
> > +inherit pypi setuptools
> > +
> > +SRCNAME = "setuptools_scm"
> > +
> > +SRC_URI = "
> >
> https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz
> > "
> > +
> > +SRC_URI[md5sum] = "4d19b2bc9580016d991f665ac20e2e8f"
> > +SRC_URI[sha256sum] =
> > "8c45f738a23410c5276b0ed9294af607f491e4260589f1eb90df8312e23819bf"
> > +
> > +S = "${WORKDIR}/${SRCNAME}-${PV}"
> > +
> > +RDEPENDS_${PN} = "python-py python-setuptools python-argparse
> > python-debugger python-json"
> > +
> > +
> > --
> > 2.8.1
> >
> > --
> > _______________________________________________
> > 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] 10+ messages in thread

* Re: [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb
  2016-06-29 20:11     ` Tim Orling
@ 2016-06-29 20:14       ` Martin Jansa
  0 siblings, 0 replies; 10+ messages in thread
From: Martin Jansa @ 2016-06-29 20:14 UTC (permalink / raw)
  To: openembedded-devel

It might be related to this:
http://lists.openembedded.org/pipermail/openembedded-devel/2016-June/107959.html

On Wed, Jun 29, 2016 at 10:11 PM, Tim Orling <ticotimo@gmail.com> wrote:

> Has pypi changed it's URL format?
>
> https://pypi.python.org/packages/84/aa/c693b5d41da513fed3f0ee27f1bf02a303caa75bbdfa5c8cc233a1d778c4/setuptools_scm-1.11.1.tar.gz#md5=4d19b2bc9580016d991f665ac20e2e8f
>
> is the link on pypi....
>
> On Wed, Jun 29, 2016 at 1:04 PM, Martin Jansa <martin.jansa@gmail.com>
> wrote:
>
> > ERROR: python-setuptools-scm-1.11.1-r0 do_fetch: Fetcher failure:
> > Fetch command failed with exit code 8,
> > output:
> >
> https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-1.11.1.tar.gz
> > :
> > 2016-06-29 07:45:31 ERROR 404: Not Found.
> >
> > ERROR: python-setuptools-scm-1.11.1-r0 do_fetch: Function failed:
> > Fetcher failure for URL:
> > '
> >
> https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-1.11.1.tar.gz
> > '.
> > Unable to fetch URL from any source.
> > ERROR: Logfile of failure stored in:
> >
> >
> /home/jenkins/oe/world/shr-core/tmp-glibc/work/i586-oe-linux/python-setuptools-scm/1.11.1-r0/temp/log.do_fetch.7515
> >
> >
> > On Wed, Jun 29, 2016 at 10:22 AM, <mingli.yu@windriver.com> wrote:
> >
> > > From: Mingli Yu <mingli.yu@windriver.com>
> > >
> > > * Add python-setuptools-scm bb as python-pytest-runner depends
> > >   on python-setuptools-scm
> > >
> > > Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
> > > ---
> > >  .../python/python-setuptools-scm_1.11.1.bb             | 18
> > > ++++++++++++++++++
> > >  1 file changed, 18 insertions(+)
> > >  create mode 100644 meta-python/recipes-devtools/python/
> > > python-setuptools-scm_1.11.1.bb
> > >
> > > diff --git a/meta-python/recipes-devtools/python/
> > > python-setuptools-scm_1.11.1.bb b/meta-python/recipes-devtools/python/
> > > python-setuptools-scm_1.11.1.bb
> > > new file mode 100644
> > > index 0000000..0b306f4
> > > --- /dev/null
> > > +++ b/meta-python/recipes-devtools/python/
> > python-setuptools-scm_1.11.1.bb
> > > @@ -0,0 +1,18 @@
> > > +SUMMARY = "the blessed package to manage your versions by scm tags"
> > > +LICENSE = "MIT"
> > > +LIC_FILES_CHKSUM =
> "file://LICENSE;md5=838c366f69b72c5df05c96dff79b35f2"
> > > +
> > > +inherit pypi setuptools
> > > +
> > > +SRCNAME = "setuptools_scm"
> > > +
> > > +SRC_URI = "
> > >
> >
> https://pypi.python.org/packages/source/s/${SRCNAME}/${SRCNAME}-${PV}.tar.gz
> > > "
> > > +
> > > +SRC_URI[md5sum] = "4d19b2bc9580016d991f665ac20e2e8f"
> > > +SRC_URI[sha256sum] =
> > > "8c45f738a23410c5276b0ed9294af607f491e4260589f1eb90df8312e23819bf"
> > > +
> > > +S = "${WORKDIR}/${SRCNAME}-${PV}"
> > > +
> > > +RDEPENDS_${PN} = "python-py python-setuptools python-argparse
> > > python-debugger python-json"
> > > +
> > > +
> > > --
> > > 2.8.1
> > >
> > > --
> > > _______________________________________________
> > > 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
> >
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>


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

end of thread, other threads:[~2016-06-29 20:14 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-29  8:22 [meta-python][PATCH] Add some python packages bb mingli.yu
2016-06-29  8:22 ` [meta-python][PATCH 1/5] python-pbr: Add python-pbr bb mingli.yu
2016-06-29  8:22 ` [meta-python][PATCH 2/5] python-mock: Add python-pbr-native dependency mingli.yu
2016-06-29  8:22 ` [meta-python][PATCH 3/5] python-mccabe: Add python-pytest-runner dependency mingli.yu
2016-06-29  8:22 ` [meta-python][PATCH 4/5] python-pytest-runner: Add python-pytest-runner bb mingli.yu
2016-06-29  8:22 ` [meta-python][PATCH 5/5] python-setuptools-scm: Add python-setuptools-scm bb mingli.yu
2016-06-29 20:04   ` Martin Jansa
2016-06-29 20:11     ` Tim Orling
2016-06-29 20:14       ` Martin Jansa
2016-06-29 16:39 ` [meta-python][PATCH] Add some python packages bb Tim Orling

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox