diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2017-05-19 12:52:56 -0400 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-06-05 11:01:42 +0200 |
commit | 27f872142d7da625286d929d341bb82ee240d621 (patch) | |
tree | 1abb02ab8b81f73bdbfc30f3896aded6cfebb31c /meta-python/recipes-devtools/python/python-zopeinterface.inc | |
parent | 38d11cb2932e53a07b44c989fb5f54cb13cbd11f (diff) | |
download | meta-openembedded-27f872142d7da625286d929d341bb82ee240d621.tar.gz |
python3-zopeinterface: add python3 packaging
Matching what has been done with other python packages, move the
existing recipe into a .inc file and then create python and python3
specific bb files to allow the generation of python2 or python3
versions.
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-zopeinterface.inc')
-rw-r--r-- | meta-python/recipes-devtools/python/python-zopeinterface.inc | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python-zopeinterface.inc b/meta-python/recipes-devtools/python/python-zopeinterface.inc new file mode 100644 index 0000000000..1ea6114634 --- /dev/null +++ b/meta-python/recipes-devtools/python/python-zopeinterface.inc | |||
@@ -0,0 +1,20 @@ | |||
1 | SUMMARY = "Interface definitions for Zope products" | ||
2 | LICENSE = "ZPL-2.1" | ||
3 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423ec128974bd9d46" | ||
4 | |||
5 | SRC_URI[md5sum] = "ba3f32eacaea66094b7e2ae2788cec89" | ||
6 | SRC_URI[sha256sum] = "8780ef68ca8c3fe1abb30c058a59015129d6e04a6b02c2e56b9c7de6078dfa88" | ||
7 | |||
8 | PYPI_PACKAGE = "zope.interface" | ||
9 | |||
10 | PACKAGES =. "${PN}-test " | ||
11 | |||
12 | RPROVIDES_${PN} += "zope-interfaces" | ||
13 | |||
14 | FILES_${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*.egg/*/*/.debug" | ||
15 | FILES_${PN}-dev += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.c" | ||
16 | FILES_${PN}-doc += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.txt" | ||
17 | FILES_${PN}-test += " \ | ||
18 | ${PYTHON_SITEPACKAGES_DIR}/zope/interface/tests \ | ||
19 | ${PYTHON_SITEPACKAGES_DIR}/zope/interface/common/tests \ | ||
20 | " | ||