All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] python-mock: add missing dependencies
@ 2017-02-16  2:49 jackie.huang
  2017-02-16  2:49 ` [PATCH 1/2] python-funcsigs: add now recipe jackie.huang
  2017-02-16  2:49 ` [PATCH 2/2] python-mock: add RDEPENDS on python-pbr and python-funcsigs jackie.huang
  0 siblings, 2 replies; 4+ messages in thread
From: jackie.huang @ 2017-02-16  2:49 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

--
The following changes since commit 044e5189549de11b2a94efd29a6009a76162b8f1:

  smbnetfs gnome-disk-utility contacts kexecboot initramfs-kexecboot-klibc-image system-config-keyboard system-setup-keyboard geany geany-plugins efivar efibootmgr gimp system-config-keyboard tumbler: Blacklist (2017-02-13 20:34:21 +0100)

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib.git jhuang0/d_python-mock_170216
  http://git.pokylinux.org/cgit.cgi//log/?h=jhuang0/d_python-mock_170216

Jackie Huang (2):
  python-funcsigs: add now recipe
  python-mock: add RDEPENDS on python-pbr and python-funcsigs

 .../recipes-devtools/python/python-funcsigs_1.0.2.bb   | 18 ++++++++++++++++++
 .../recipes-devtools/python/python-mock_2.0.0.bb       |  5 ++++-
 2 files changed, 22 insertions(+), 1 deletion(-)
 create mode 100644 meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb

-- 
2.8.3



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

* [PATCH 1/2] python-funcsigs: add now recipe
  2017-02-16  2:49 [PATCH 0/2] python-mock: add missing dependencies jackie.huang
@ 2017-02-16  2:49 ` jackie.huang
  2017-02-16  3:27   ` Huang, Jie (Jackie)
  2017-02-16  2:49 ` [PATCH 2/2] python-mock: add RDEPENDS on python-pbr and python-funcsigs jackie.huang
  1 sibling, 1 reply; 4+ messages in thread
From: jackie.huang @ 2017-02-16  2:49 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

python-funcsigs is required by python-mock.

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 .../recipes-devtools/python/python-funcsigs_1.0.2.bb   | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb

diff --git a/meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb b/meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb
new file mode 100644
index 0000000..dad15ee
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb
@@ -0,0 +1,18 @@
+SUMMARY = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+"
+DESCRPTION = " \
+funcsigs is a backport of the `PEP 362`_ function signature features from \
+Python 3.3's `inspect`_ module. The backport is compatible with Python 2.6, \
+2.7 as well as 3.3 and up. 3.2 was supported by version 0.4, but with \
+setuptools and pip no longer supporting 3.2, we cannot make any statement \
+about 3.2 compatibility. \
+"
+
+HOMEPAGE = "http://funcsigs.readthedocs.org"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d6bc91dc8e5793892189fe7481a2d354"
+
+SRC_URI[md5sum] = "7e583285b1fb8a76305d6d68f4ccc14e"
+SRC_URI[sha256sum] = "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
+
+inherit pypi setuptools
-- 
2.8.3



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

* [PATCH 2/2] python-mock: add RDEPENDS on python-pbr and python-funcsigs
  2017-02-16  2:49 [PATCH 0/2] python-mock: add missing dependencies jackie.huang
  2017-02-16  2:49 ` [PATCH 1/2] python-funcsigs: add now recipe jackie.huang
@ 2017-02-16  2:49 ` jackie.huang
  1 sibling, 0 replies; 4+ messages in thread
From: jackie.huang @ 2017-02-16  2:49 UTC (permalink / raw)
  To: openembedded-devel

From: Jackie Huang <jackie.huang@windriver.com>

python-pbr and python-funcsigs are required by python-mock,
or it fails with:

>>> import mock
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib64/python2.7/site-packages/mock/__init__.py", line 2, in <module>
    import mock.mock as _mock
  File "/usr/lib64/python2.7/site-packages/mock/mock.py", line 69, in <module>
    from pbr.version import VersionInfo
ImportError: No module named pbr.version

>>> import mock
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/usr/lib64/python2.7/site-packages/mock/__init__.py", line 2, in <module>
    import mock.mock as _mock
  File "/usr/lib64/python2.7/site-packages/mock/mock.py", line 80, in <module>
    import funcsigs
ImportError: No module named funcsigs

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta-python/recipes-devtools/python/python-mock_2.0.0.bb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

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 b4557b7..840c36e 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
@@ -16,4 +16,7 @@ RDEPENDS_${PN} += " \
     python-pyparsing \
     python-mccabe \
     python-pep8 \
-    python-pyflakes"
+    python-pyflakes \
+    python-pbr \
+    python-funcsigs \
+"
-- 
2.8.3



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

* Re: [PATCH 1/2] python-funcsigs: add now recipe
  2017-02-16  2:49 ` [PATCH 1/2] python-funcsigs: add now recipe jackie.huang
@ 2017-02-16  3:27   ` Huang, Jie (Jackie)
  0 siblings, 0 replies; 4+ messages in thread
From: Huang, Jie (Jackie) @ 2017-02-16  3:27 UTC (permalink / raw)
  To: openembedded-devel



> -----Original Message-----
> From: openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-
> bounces@lists.openembedded.org] On Behalf Of jackie.huang@windriver.com
> Sent: Thursday, February 16, 2017 10:49 AM
> To: openembedded-devel@lists.openembedded.org
> Subject: [oe] [PATCH 1/2] python-funcsigs: add now recipe

s/now/new/

Sorry for the typo, I will send v2 for this.

Thanks,
Jackie

> 
> From: Jackie Huang <jackie.huang@windriver.com>
> 
> python-funcsigs is required by python-mock.
> 
> Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
> ---
>  .../recipes-devtools/python/python-funcsigs_1.0.2.bb   | 18 ++++++++++++++++++
>  1 file changed, 18 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb
> 
> diff --git a/meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb b/meta-python/recipes-
> devtools/python/python-funcsigs_1.0.2.bb
> new file mode 100644
> index 0000000..dad15ee
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-funcsigs_1.0.2.bb
> @@ -0,0 +1,18 @@
> +SUMMARY = "Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+"
> +DESCRPTION = " \
> +funcsigs is a backport of the `PEP 362`_ function signature features from \
> +Python 3.3's `inspect`_ module. The backport is compatible with Python 2.6, \
> +2.7 as well as 3.3 and up. 3.2 was supported by version 0.4, but with \
> +setuptools and pip no longer supporting 3.2, we cannot make any statement \
> +about 3.2 compatibility. \
> +"
> +
> +HOMEPAGE = "http://funcsigs.readthedocs.org"
> +SECTION = "devel/python"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=d6bc91dc8e5793892189fe7481a2d354"
> +
> +SRC_URI[md5sum] = "7e583285b1fb8a76305d6d68f4ccc14e"
> +SRC_URI[sha256sum] = "a7bb0f2cf3a3fd1ab2732cb49eba4252c2af4240442415b4abce3b87022a8f50"
> +
> +inherit pypi setuptools
> --
> 2.8.3
> 
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel


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

end of thread, other threads:[~2017-02-16  3:27 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-16  2:49 [PATCH 0/2] python-mock: add missing dependencies jackie.huang
2017-02-16  2:49 ` [PATCH 1/2] python-funcsigs: add now recipe jackie.huang
2017-02-16  3:27   ` Huang, Jie (Jackie)
2017-02-16  2:49 ` [PATCH 2/2] python-mock: add RDEPENDS on python-pbr and python-funcsigs jackie.huang

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.