mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-02-24 17:40:26 +00:00
meta-python: move recipes from meta-oe
* Move recipes from meta-openembedded/meta-oe that are not
depended upon by recipes already in meta-oe (e.g. gateone,
anki)
* Recipes NOT moved:
python-futures
python-pyopenssl
python-simplejson
python-tornado
python-pyqt
python-sip
Signed-off-by: Tim Orling <TicoTimo@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
This commit is contained in:
12
meta-python/recipes-python/python/pyrtm_0.2.bb
Normal file
12
meta-python/recipes-python/python/pyrtm_0.2.bb
Normal file
@@ -0,0 +1,12 @@
|
||||
SUMMARY = "Python interface for Remember The Milk API"
|
||||
AUTHOR = "Sridhar Ratnakumar / srid"
|
||||
HOMEPAGE = "http://pypi.python.org/pypi/pyrtm"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=a53cbc7cb75660694e138ba973c148df"
|
||||
DEPENDS = "python-native"
|
||||
|
||||
inherit distutils
|
||||
|
||||
SRC_URI = "http://pypi.python.org/packages/source/p/${BPN}/${BP}.tar.gz"
|
||||
SRC_URI[md5sum] = "34423f39caf7df8a9db8e243be9cf1a0"
|
||||
SRC_URI[sha256sum] = "d9d46d096a38cb692b55f4ee9f364d54348298e9497b11c1ef057539b5de1567"
|
||||
19
meta-python/recipes-python/python/python-autobahn_0.8.6.bb
Normal file
19
meta-python/recipes-python/python/python-autobahn_0.8.6.bb
Normal file
@@ -0,0 +1,19 @@
|
||||
DESCRIPTION = "AutobahnPython provides a WebSocket (RFC6455, Hybi-10 to -17, Hixie-76) framework for creating WebSocket-based clients and servers. \
|
||||
AutobahnPython also includes an implementation of WAMP (The WebSockets Application Messaging Protocol), a light-weight, \
|
||||
asynchronous RPC/PubSub over JSON/WebSocket protocol."
|
||||
HOMEPAGE = "http://autobahn.ws/python"
|
||||
SECTION = "console/network"
|
||||
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = " file://autobahn/__init__.py;beginline=1;endline=17;md5=1fdeccf6e5b70cda64cc1345597c18e3"
|
||||
|
||||
SRC_URI = "https://pypi.python.org/packages/source/a/autobahn/autobahn-${PV}.zip"
|
||||
SRC_URI[md5sum] = "160429e7fb043940e79aa7f4ebbab57a"
|
||||
SRC_URI[sha256sum] = "94ae5c6f37f9fe7c9d3f12c170fcc273afed4104a1c5508b26d6014bb9e6373e"
|
||||
|
||||
S = "${WORKDIR}/autobahn-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
RDEPENDS_${PN} = "python python-pprint python-twisted-protocols python-netserver python-twisted-web"
|
||||
|
||||
21
meta-python/recipes-python/python/python-cheetah_2.4.4.bb
Normal file
21
meta-python/recipes-python/python/python-cheetah_2.4.4.bb
Normal file
@@ -0,0 +1,21 @@
|
||||
SUMMARY = "Python template engine and code generation tool"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=aff1107514aa6aae948f9fe71fdc393b"
|
||||
|
||||
SRCNAME = "Cheetah"
|
||||
|
||||
PR = "r3"
|
||||
|
||||
SRC_URI = "http://pypi.python.org/packages/source/C/Cheetah/Cheetah-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
RDEPENDS_${PN} = "python-pickle python-pprint"
|
||||
RDEPENDS_${PN}_class-native = ""
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
SRC_URI[md5sum] = "853917116e731afbc8c8a43c37e6ddba"
|
||||
SRC_URI[sha256sum] = "be308229f0c1e5e5af4f27d7ee06d90bb19e6af3059794e5fd536a6f29a9b550"
|
||||
35
meta-python/recipes-python/python/python-cloudeebus_0.6.0.bb
Normal file
35
meta-python/recipes-python/python/python-cloudeebus_0.6.0.bb
Normal file
@@ -0,0 +1,35 @@
|
||||
DESCRIPTION = "A component which enables calling DBus methods and registering on DBus signals from Javascript"
|
||||
HOMEPAGE = "https://github.com/01org/cloudeebus"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=2ee41112a44fe7014dce33e26468ba93"
|
||||
|
||||
SRC_URI = "git://github.com/01org/cloudeebus.git;protocol=http;branch=master "
|
||||
SRCREV = "b5cc957eeabfe98cb996baf8e5a0ac848993c3d4"
|
||||
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
inherit distutils
|
||||
|
||||
DEPENDS_${PN} = "python python-distribute"
|
||||
RDEPENDS_${PN} = "python python-dbus python-json python-argparse python-pygobject python-autobahn python-twisted python-subprocess"
|
||||
|
||||
do_install_prepend() {
|
||||
install -d ${D}${PYTHON_SITEPACKAGES_DIR}/${PN}
|
||||
}
|
||||
|
||||
DISTUTILS_INSTALL_ARGS = "--root=${D} \
|
||||
--single-version-externally-managed \
|
||||
--prefix=${prefix} \
|
||||
--install-lib=${PYTHON_SITEPACKAGES_DIR} \
|
||||
--install-data=${datadir}"
|
||||
|
||||
do_install_append() {
|
||||
distutils_do_install
|
||||
install -d ${D}${datadir}/doc/${BPN}/
|
||||
install -m 0644 ${S}/README.md ${D}${datadir}/doc/${BPN}/
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/cloudeebus"
|
||||
FILES_${PN} += "${sysconfdir}/dbus-1/system.d/org.cloudeebus.conf"
|
||||
|
||||
16
meta-python/recipes-python/python/python-cython_0.20.2.bb
Normal file
16
meta-python/recipes-python/python/python-cython_0.20.2.bb
Normal file
@@ -0,0 +1,16 @@
|
||||
DESCRIPTION = "Cython is a language specially designed for writing Python extension modules. \
|
||||
It's designed to bridge the gap between the nice, high-level, easy-to-use world of Python \
|
||||
and the messy, low-level world of C."
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
|
||||
SRCNAME = "Cython"
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
SRC_URI = "http://www.cython.org/release/${SRCNAME}-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
SRC_URI[md5sum] = "7fc13e1c665bdf7cea19ad08906af91f"
|
||||
SRC_URI[sha256sum] = "ed13b606a2aeb5bd6c235f8ed6c9988c99d01a033d0d21d56137c13d5c7be63f"
|
||||
|
||||
inherit setuptools
|
||||
22
meta-python/recipes-python/python/python-dateutil_1.5.bb
Normal file
22
meta-python/recipes-python/python/python-dateutil_1.5.bb
Normal file
@@ -0,0 +1,22 @@
|
||||
SUMMARY = "Extensions to the standard Python date/time support"
|
||||
HOMEPAGE = "http://labix.org/python-dateutil"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "PSF"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=d82268718c68bda0b091006ec6e583c6"
|
||||
SRCNAME = "${BPN}"
|
||||
|
||||
SRC_URI = "http://labix.org/download/python-dateutil/${SRCNAME}-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
PACKAGES =+ "${PN}-zoneinfo"
|
||||
FILES_${PN}-zoneinfo = "${libdir}/${PYTHON_DIR}/site-packages/dateutil/zoneinfo"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
python-core \
|
||||
python-datetime \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "35f3732db3f2cc4afdc68a8533b60a52"
|
||||
SRC_URI[sha256sum] = "c08aca7d85f8f8eed61e83b3423b829262c596a9a78f7ca3de0bcee2217d0e3b"
|
||||
18
meta-python/recipes-python/python/python-epydoc_3.0.1.bb
Normal file
18
meta-python/recipes-python/python/python-epydoc_3.0.1.bb
Normal file
@@ -0,0 +1,18 @@
|
||||
DESCRIPTION = "Epydoc is a tool for generating API documentation for Python modules, based on their docstrings"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=011c0d78eb6054d731c879132d7313f0"
|
||||
HOMEPAGE = "http://epydoc.sourceforge.net/"
|
||||
SRCNAME = "epydoc"
|
||||
DEPENDS += "python"
|
||||
DEPENDS_virtclass-native += "python-native"
|
||||
|
||||
SRC_URI = "http://downloads.sourceforge.net/project/${SRCNAME}/${SRCNAME}/${PV}/${SRCNAME}-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "cdd6f6c76dd8bab5e653a343a0544294"
|
||||
SRC_URI[sha256sum] = "d4e5c8d90937d01b05170f592c1fa9b29e9ed0498dfe7f0eb2a3af61725b6ad1"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit distutils
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
14
meta-python/recipes-python/python/python-feedparser_5.1.3.bb
Normal file
14
meta-python/recipes-python/python/python-feedparser_5.1.3.bb
Normal file
@@ -0,0 +1,14 @@
|
||||
SUMMARY = "Python Atom and RSS feed parser"
|
||||
HOMEPAGE = "http://code.google.com/p/feedparser"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "BSD-2-Clause"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=f5fbe7f8b71b4019eca5ac5f900fd8ad"
|
||||
|
||||
SRC_URI = "http://feedparser.googlecode.com/files/feedparser-${PV}.tar.bz2"
|
||||
SRC_URI[md5sum] = "6fb6372a1dc2f56d4d79d740b8f49f25"
|
||||
SRC_URI[sha256sum] = "7f6507d400d07edfd1ea8205da36808009b0c539f5b8a6e0ab54337b955e6dc3"
|
||||
|
||||
S = "${WORKDIR}/feedparser-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
18
meta-python/recipes-python/python/python-gdata_1.2.4.bb
Normal file
18
meta-python/recipes-python/python/python-gdata_1.2.4.bb
Normal file
@@ -0,0 +1,18 @@
|
||||
SUMMARY = "Google Data APIs Python Client Library"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://README.txt;md5=473bd4dff0ddca1f958244b2dc7a162c"
|
||||
HOMEPAGE = "http://code.google.com/p/gdata-python-client/"
|
||||
|
||||
inherit distutils
|
||||
|
||||
SRC_URI = "http://gdata-python-client.googlecode.com/files/gdata.py-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "521f33a377d64f8a6505ba119415b787"
|
||||
SRC_URI[sha256sum] = "fc5ddb8f76b17abd728721a0e0177ea35f55a70106f44dc9010b22eceb06abde"
|
||||
|
||||
S = "${WORKDIR}/gdata.py-${PV}"
|
||||
|
||||
FILES_${PN} += "${datadir}"
|
||||
|
||||
RDEPENDS_${PN} = "python-elementtree"
|
||||
|
||||
19
meta-python/recipes-python/python/python-gevent_0.13.8.bb
Normal file
19
meta-python/recipes-python/python/python-gevent_0.13.8.bb
Normal file
@@ -0,0 +1,19 @@
|
||||
SUMMARY = "A coroutine-based Python networking library"
|
||||
DESCRIPTION = "gevent is a coroutine-based Python networking library that uses greenlet to provide \
|
||||
a high-level synchronous API on top of the libevent event loop."
|
||||
HOMEPAGE = "http://www.gevent.org"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "MIT & BSD"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=2dbb33d00e1fd31c7041460a81ac0bd2 \
|
||||
file://LICENSE.pyevent;md5=718070c63de243053e2c616268b00fdd"
|
||||
DEPENDS += "python-greenlet libevent"
|
||||
RDEPENDS_${PN} += "python-greenlet python-mime python-pprint python-re"
|
||||
|
||||
SRC_URI = "http://pypi.python.org/packages/source/g/gevent/gevent-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "ca9dcaa7880762d8ebbc266b11252960"
|
||||
SRC_URI[sha256sum] = "54b8d26300ce408c0916a3e63ef6cd3e6aca76230833558deb7de15196ed955e"
|
||||
|
||||
S = "${WORKDIR}/gevent-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
14
meta-python/recipes-python/python/python-greenlet_0.4.1.bb
Normal file
14
meta-python/recipes-python/python/python-greenlet_0.4.1.bb
Normal file
@@ -0,0 +1,14 @@
|
||||
SUMMARY = "Python lightweight in-process concurrent programming"
|
||||
HOMEPAGE = "http://pypi.python.org/pypi/greenlet"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "MIT & PSF"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=03143d7a1a9f5d8a0fee825f24ca9c36 \
|
||||
file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
|
||||
SRC_URI = "http://pypi.python.org/packages/source/g/greenlet/greenlet-${PV}.zip"
|
||||
SRC_URI[md5sum] = "c2deda75bdda59c38cae12a77cc53adc"
|
||||
SRC_URI[sha256sum] = "ea671592f8460541286b133ed46a6cf5311a6b75051cc31b53e2bc38992b775a"
|
||||
|
||||
S = "${WORKDIR}/greenlet-${PV}"
|
||||
|
||||
inherit distutils
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
--- python-ldap-2.3.9/setup.cfg.orig 2009-08-13 11:07:23.000000000 +0200
|
||||
+++ python-ldap-2.3.9/setup.cfg 2009-08-13 11:07:37.000000000 +0200
|
||||
@@ -1,9 +1,9 @@
|
||||
[_ldap]
|
||||
extra_objects =
|
||||
extra_compile_args =
|
||||
-libs = ldap_r lber sasl2 ssl crypto
|
||||
+libs = ldap_r lber ssl crypto
|
||||
library_dirs = /opt/openldap-RE24/lib
|
||||
-include_dirs = /opt/openldap-RE24/include /usr/include/sasl
|
||||
+include_dirs = /opt/openldap-RE24/include
|
||||
|
||||
[egg_info]
|
||||
tag_build =
|
||||
13
meta-python/recipes-python/python/python-ldap_2.3.9.bb
Normal file
13
meta-python/recipes-python/python/python-ldap_2.3.9.bb
Normal file
@@ -0,0 +1,13 @@
|
||||
DESCRIPTION = "LDAP client API for Python, C wrapper module around OpenLDAP 2.x with an object-oriented API"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "Python-style"
|
||||
LIC_FILES_CHKSUM = "file://LICENCE;md5=a41c82edffa04912007cae1d20cac555"
|
||||
HOMEPAGE = "http://www.python-ldap.org/"
|
||||
DEPENDS = "python openldap"
|
||||
|
||||
SRC_URI = "http://pypi.python.org/packages/source/p/${BPN}/${BP}.tar.gz \
|
||||
file://setup.cfg.patch"
|
||||
SRC_URI[md5sum] = "a9f9f16338288d118a1ae6266c993247"
|
||||
SRC_URI[sha256sum] = "62f75b21c5ee744408c9d8b59878328b3bdf47899d30e8abf0c09b3ffb893ed4"
|
||||
|
||||
inherit setuptools
|
||||
33
meta-python/recipes-python/python/python-lxml_3.0.2.bb
Normal file
33
meta-python/recipes-python/python/python-lxml_3.0.2.bb
Normal file
@@ -0,0 +1,33 @@
|
||||
SUMMARY = "Python XML bindings for libxml2 and libxslt"
|
||||
DESCRIPTION = "Powerful and Pythonic XML processing library combining \
|
||||
libxml2/libxslt with the ElementTree API."
|
||||
HOMEPAGE = "http://codespeak.net/lxml"
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://LICENSES.txt;md5=f9f1dc24f720c143c2240df41fe5073b"
|
||||
SRCNAME = "lxml"
|
||||
|
||||
DEPENDS = "libxml2 libxslt"
|
||||
|
||||
SRC_URI = "http://pypi.python.org/packages/source/l/${SRCNAME}/${SRCNAME}-${PV}.tar.gz;name=lxml"
|
||||
SRC_URI[lxml.md5sum] = "38b15b0dd5e9292cf98be800e84a3ce4"
|
||||
SRC_URI[lxml.sha256sum] = "cadba4cf0e235127795f76a6f7092cb035da23a6e9ec4c93f8af43a6784cd101"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
DISTUTILS_BUILD_ARGS += " \
|
||||
--with-xslt-config='${STAGING_BINDIR_NATIVE}/pkg-config libxslt' \
|
||||
--with-xml2-config='${STAGING_BINDIR_CROSS}/xml2-config' \
|
||||
"
|
||||
|
||||
DISTUTILS_INSTALL_ARGS += " \
|
||||
--with-xslt-config='${STAGING_BINDIR_NATIVE}/pkg-config libxslt' \
|
||||
--with-xml2-config='${STAGING_BINDIR_CROSS}/xml2-config' \
|
||||
"
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
|
||||
RDEPENDS_${PN} += "libxml2 libxslt python-compression"
|
||||
RDEPENDS_${PN}_virtclass-native = "libxml2-native libxslt-native"
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
From f11b9c71080513f9b867ba8f40613ba2ebc6e960 Mon Sep 17 00:00:00 2001
|
||||
From: Koen Kooi <koen@dominion.thruhere.net>
|
||||
Date: Fri, 29 Mar 2013 15:17:17 +0100
|
||||
Subject: [PATCH] setup.py: link in sysroot, not in host directories
|
||||
|
||||
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
||||
|
||||
Upstream-status: Unknown
|
||||
---
|
||||
setup.py | 6 +++---
|
||||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index e7c49eb..8deaa34 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -40,7 +40,7 @@ class _M2CryptoBuildExt(build_ext.build_ext):
|
||||
self.openssl = 'c:\\pkg'
|
||||
else:
|
||||
self.libraries = ['ssl', 'crypto']
|
||||
- self.openssl = '/usr'
|
||||
+ self.openssl = os.environ.get( "STAGING_DIR" )
|
||||
|
||||
|
||||
def finalize_options(self):
|
||||
@@ -49,8 +49,8 @@ class _M2CryptoBuildExt(build_ext.build_ext):
|
||||
|
||||
build_ext.build_ext.finalize_options(self)
|
||||
|
||||
- opensslIncludeDir = os.path.join(self.openssl, 'include')
|
||||
- opensslLibraryDir = os.path.join(self.openssl, 'lib')
|
||||
+ opensslIncludeDir = os.environ.get( "STAGING_INCDIR" )
|
||||
+ opensslLibraryDir = os.environ.get( "STAGING_LIBDIR" )
|
||||
|
||||
self.swig_opts = ['-I%s' % i for i in self.include_dirs + \
|
||||
[opensslIncludeDir]]
|
||||
--
|
||||
1.8.1.4
|
||||
|
||||
44
meta-python/recipes-python/python/python-m2crypto_0.21.1.bb
Normal file
44
meta-python/recipes-python/python/python-m2crypto_0.21.1.bb
Normal file
@@ -0,0 +1,44 @@
|
||||
SUMMARY = "A Python crypto and SSL toolkit"
|
||||
HOMEPAGE = "http://chandlerproject.org/bin/view/Projects/MeTooCrypto"
|
||||
|
||||
DEPENDS = "openssl swig-native python"
|
||||
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://LICENCE;md5=b0e1f0b7d0ce8a62c18b1287b991800e"
|
||||
|
||||
SRC_URI = "http://pypi.python.org/packages/source/M/M2Crypto/M2Crypto-${PV}.tar.gz \
|
||||
file://0001-setup.py-link-in-sysroot-not-in-host-directories.patch"
|
||||
|
||||
SRC_URI[md5sum] = "f93d8462ff7646397a9f77a2fe602d17"
|
||||
SRC_URI[sha256sum] = "25b94498505c2d800ee465db0cc1aff097b1615adc3ac042a1c85ceca264fc0a"
|
||||
|
||||
S = "${WORKDIR}/M2Crypto-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
SWIG_FEATURES_x86-64 = "-D__x86_64__"
|
||||
SWIG_FEATURES ?= ""
|
||||
export SWIG_FEATURES
|
||||
|
||||
# Get around a problem with swig, but only if the
|
||||
# multilib header file exists.
|
||||
#
|
||||
do_compile_prepend() {
|
||||
if [ "${SITEINFO_BITS}" = "64" ];then
|
||||
bit="64"
|
||||
else
|
||||
bit="32"
|
||||
fi
|
||||
|
||||
if [ -e ${STAGING_INCDIR}/openssl/opensslconf-${bit}.h ] ;then
|
||||
for i in SWIG/_ec.i SWIG/_evp.i; do
|
||||
sed -i -e "s/opensslconf.*\./opensslconf-${bit}\./" "$i"
|
||||
done
|
||||
elif [ -e ${STAGING_INCDIR}/openssl/opensslconf-n${bit}.h ] ;then
|
||||
for i in SWIG/_ec.i SWIG/_evp.i; do
|
||||
sed -i -e "s/opensslconf.*\./opensslconf-n${bit}\./" "$i"
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
@@ -0,0 +1,29 @@
|
||||
This fixes the dependency checks inside of setup.py since things like
|
||||
'import numpy' won't work with bitbake.
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index 2f13821..e6d6ed0 100644
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -113,12 +113,6 @@ if 1:
|
||||
baseline_images = [chop_package(f) for f in baseline_images]
|
||||
package_data['matplotlib'].extend(baseline_images)
|
||||
|
||||
-if not check_for_numpy():
|
||||
- sys.exit(1)
|
||||
-
|
||||
-if not check_for_freetype():
|
||||
- sys.exit(1)
|
||||
-
|
||||
build_ft2font(ext_modules, packages)
|
||||
build_ttconv(ext_modules, packages)
|
||||
build_contour(ext_modules, packages)
|
||||
@@ -129,7 +123,7 @@ build_tri(ext_modules, packages)
|
||||
|
||||
print_raw("")
|
||||
print_raw("OPTIONAL BACKEND DEPENDENCIES")
|
||||
-has_libpng = check_for_libpng()
|
||||
+has_libpng = True
|
||||
|
||||
if has_libpng and options['build_agg']:
|
||||
build_agg(ext_modules, packages)
|
||||
@@ -0,0 +1,29 @@
|
||||
This fixes the numpy import problem in setupext.py using a hard-coded path.
|
||||
|
||||
diff --git a/setupext.py b/setupext.py
|
||||
index 962cedc..82297c4 100644
|
||||
--- a/setupext.py
|
||||
+++ b/setupext.py
|
||||
@@ -176,10 +176,7 @@ if os.path.exists(setup_cfg):
|
||||
except: pass
|
||||
|
||||
# For get_base_flags:
|
||||
-if options['basedirlist']:
|
||||
- basedirlist = options['basedirlist'].split()
|
||||
-else:
|
||||
- basedirlist = basedir[sys.platform]
|
||||
+basedirlist = [os.environ['STAGING_LIBDIR']]
|
||||
print("basedirlist is: %s" % basedirlist)
|
||||
|
||||
if options['display_status']:
|
||||
@@ -555,8 +552,8 @@ def check_for_numpy():
|
||||
|
||||
def add_numpy_flags(module):
|
||||
"Add the modules flags to build extensions which use numpy"
|
||||
- import numpy
|
||||
- module.include_dirs.append(numpy.get_include())
|
||||
+ # Hard-coded path for OE since I know this is where numpy's include dir will be
|
||||
+ module.include_dirs.append(os.path.join(os.environ['STAGING_LIBDIR'], 'python2.7/site-packages/numpy/core/include/'))
|
||||
|
||||
def add_png_flags(module):
|
||||
try_pkgconfig(module, 'libpng', 'png')
|
||||
36
meta-python/recipes-python/python/python-matplotlib_1.1.0.bb
Normal file
36
meta-python/recipes-python/python/python-matplotlib_1.1.0.bb
Normal file
@@ -0,0 +1,36 @@
|
||||
DESCRIPTION = "matplotlib is a python 2D plotting library which produces publication quality figures in a variety of hardcopy formats"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "PSF"
|
||||
LIC_FILES_CHKSUM = "file://README.txt;md5=83c5bf8b16a5f99507f2f47a21ae3b81"
|
||||
PR = "r1"
|
||||
|
||||
DEPENDS += "python-numpy freetype libpng"
|
||||
RDEPENDS_${PN} = "python-core python-distutils python-numpy freetype libpng"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/matplotlib/matplotlib-${PV}.tar.gz \
|
||||
file://fix_setup.patch \
|
||||
file://fix_setupext.patch \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/matplotlib-${PV}"
|
||||
|
||||
EXTRA_OECONF = "--disable-docs --with-python-includes=${STAGING_INCDIR}/../"
|
||||
|
||||
inherit distutils
|
||||
|
||||
do_compile_prepend() {
|
||||
BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} \
|
||||
${STAGING_BINDIR_NATIVE}/python setup.py build ${DISTUTILS_BUILD_ARGS} || \
|
||||
true
|
||||
}
|
||||
|
||||
# need to export these variables for python-config to work
|
||||
export PYTHONPATH
|
||||
export BUILD_SYS
|
||||
export HOST_SYS
|
||||
export STAGING_INCDIR
|
||||
export STAGING_LIBDIR
|
||||
|
||||
|
||||
SRC_URI[md5sum] = "57a627f30b3b27821f808659889514c2"
|
||||
SRC_URI[sha256sum] = "be37e1d86c65ecacae6683f8805e051e9904e5f2e02bf2b7a34262c46a6d06a7"
|
||||
@@ -0,0 +1,33 @@
|
||||
|
||||
#
|
||||
# Patch managed by http://www.holgerschurig.de/patcher.html
|
||||
#
|
||||
|
||||
--- Numeric-23.7/setup.py~nolapack
|
||||
+++ Numeric-23.7/setup.py
|
||||
@@ -32,7 +32,7 @@
|
||||
mathlibs = []
|
||||
|
||||
# delete all but the first one in this list if using your own LAPACK/BLAS
|
||||
-sourcelist = [os.path.join('Src', 'lapack_litemodule.c'),
|
||||
+sourcelist = [
|
||||
#os.path.join('Src', 'blas_lite.c'),
|
||||
#os.path.join('Src', 'f2c_lite.c'),
|
||||
#os.path.join('Src', 'zlapack_lite.c'),
|
||||
@@ -40,12 +40,12 @@
|
||||
]
|
||||
# set these to use your own BLAS;
|
||||
|
||||
-library_dirs_list = ['/usr/lib/atlas']
|
||||
-libraries_list = ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c']
|
||||
+library_dirs_list = []
|
||||
+libraries_list = []
|
||||
|
||||
# set to true (1), if you also want BLAS optimized matrixmultiply/dot/innerproduct
|
||||
-use_dotblas = 1
|
||||
-include_dirs = ['/usr/include/atlas']
|
||||
+use_dotblas = 0
|
||||
+include_dirs = []
|
||||
# You may need to set this to find cblas.h
|
||||
# e.g. on UNIX using ATLAS this should be ['/usr/include/atlas']
|
||||
extra_link_args = []
|
||||
14
meta-python/recipes-python/python/python-numeric_24.2.bb
Normal file
14
meta-python/recipes-python/python/python-numeric_24.2.bb
Normal file
@@ -0,0 +1,14 @@
|
||||
SUMMARY = "A sophisticated Numeric Processing Package for Python"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "PSF & LLNL"
|
||||
LIC_FILES_CHKSUM = "file://Legal.htm;md5=e3ce75dedd4043918d15979ae43e312e"
|
||||
|
||||
PR = "ml3"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/numpy/Numeric-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/Numeric-${PV}"
|
||||
|
||||
inherit distutils
|
||||
|
||||
SRC_URI[md5sum] = "2ae672656e06716a149acb048cca3093"
|
||||
SRC_URI[sha256sum] = "5f72e729eb6ff57442f2a38bfc9931738b59e5077928e2e70d22b4610ff15258"
|
||||
23
meta-python/recipes-python/python/python-pexpect_2.3.bb
Normal file
23
meta-python/recipes-python/python/python-pexpect_2.3.bb
Normal file
@@ -0,0 +1,23 @@
|
||||
SUMMARY = "A Pure Python Expect like Module for Python"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "PSF"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=04a2bf11b85ce49d4a8c0c413fd34404"
|
||||
SRCNAME = "pexpect"
|
||||
PR = "ml3"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit distutils
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
python-core \
|
||||
python-io \
|
||||
python-terminal \
|
||||
python-resource \
|
||||
python-fcntl \
|
||||
"
|
||||
|
||||
|
||||
SRC_URI[md5sum] = "bf107cf54e67bc6dec5bea1f3e6a65c3"
|
||||
SRC_URI[sha256sum] = "d315e7f3a8544fd85034d7e17fd7c5854e8f0828f5791f83cf313f8fa5740b75"
|
||||
14
meta-python/recipes-python/python/python-pip_1.3.1.bb
Normal file
14
meta-python/recipes-python/python/python-pip_1.3.1.bb
Normal file
@@ -0,0 +1,14 @@
|
||||
SUMMARY = "PIP is a tool for installing and managing Python packages"
|
||||
LICENSE = "MIT & GPL"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=cd00425a3465a0e4c81929b94241d3de"
|
||||
|
||||
SRC_URI = "https://pypi.python.org/packages/source/p/pip/pip-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "cbb27a191cebc58997c4da8513863153"
|
||||
SRC_URI[sha256sum] = "145eaa5d1ea1b062663da1f3a97780d7edea4c63c68a37c463b1deedf7bb4957"
|
||||
|
||||
S = "${WORKDIR}/pip-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
# Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works
|
||||
RDEPENDS_${PN} = "python-modules"
|
||||
14
meta-python/recipes-python/python/python-psutil_0.6.1.bb
Normal file
14
meta-python/recipes-python/python/python-psutil_0.6.1.bb
Normal file
@@ -0,0 +1,14 @@
|
||||
SUMMARY = "A cross-platform process and system utilities module for Python"
|
||||
SECTION = "devel/python"
|
||||
HOMEPAGE = "http://code.google.com/p/psutil"
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=0f02e99f7f3c9a7fe8ecfc5d44c2be62"
|
||||
|
||||
SRC_URI = "http://psutil.googlecode.com/files/psutil-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "3cfcbfb8525f6e4c70110e44a85e907e"
|
||||
SRC_URI[sha256sum] = "d665a4cc58c9a5d207fb0dc9869fc0ee10f4f66ad885e84886ef6339ccce0a6f"
|
||||
|
||||
S = "${WORKDIR}/psutil-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
15
meta-python/recipes-python/python/python-pyalsaaudio_0.4.bb
Normal file
15
meta-python/recipes-python/python/python-pyalsaaudio_0.4.bb
Normal file
@@ -0,0 +1,15 @@
|
||||
SUMMARY = "Support for the Linux 2.6.x ALSA Sound System"
|
||||
SECTION = "devel/python"
|
||||
DEPENDS = "alsa-lib"
|
||||
LICENSE = "PSF"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=1a3b161aa0fcec32a0c8907a2219ad9d"
|
||||
SRCNAME = "pyalsaaudio"
|
||||
PR = "ml2"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/pyalsaaudio/${SRCNAME}-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit distutils
|
||||
|
||||
SRC_URI[md5sum] = "b312c28efba7db0494836a79f0a49898"
|
||||
SRC_URI[sha256sum] = "07148ce16024724b17cc24c51d0f4fb78af214b09b7dc8dcb7b06e5647f4c582"
|
||||
22
meta-python/recipes-python/python/python-pyserial_2.4.bb
Normal file
22
meta-python/recipes-python/python/python-pyserial_2.4.bb
Normal file
@@ -0,0 +1,22 @@
|
||||
SUMMARY = "Serial Port Support for Python"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "PSF"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=7424386ffe323e815ee62ee9ad591dd8"
|
||||
SRCNAME = "pyserial"
|
||||
PR = "ml4"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
# FIXME might stop packaging serialwin32 and serialjava files
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
python-fcntl \
|
||||
python-io \
|
||||
python-stringold \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "eec19df59fd75ba5a136992897f8e468"
|
||||
SRC_URI[sha256sum] = "6b6a9e3d2fd5978c92c843e0109918a4bcac481eecae316254481c0e0f7e73c8"
|
||||
25
meta-python/recipes-python/python/python-pyudev_0.16.1.bb
Normal file
25
meta-python/recipes-python/python/python-pyudev_0.16.1.bb
Normal file
@@ -0,0 +1,25 @@
|
||||
SUMMARY = "A libudev binding"
|
||||
HOMEPAGE = "http://pypi.python.org/pypi/pyudev"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=a6f89e2100d9b6cdffcea4f398e37343"
|
||||
|
||||
SRCNAME = "pyudev"
|
||||
SRC_URI = "http://pypi.python.org/packages/source/p/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "4034de584b6d9efcbfc590a047c63285"
|
||||
SRC_URI[sha256sum] = "765d1c14bd9bd031f64e2612225621984cb2bbb8cbc0c03538bcc4c735ff1c95"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i "/import pyudev/d" ${S}/setup.py
|
||||
sed -i "s/str(pyudev.__version__)/'${PV}'/g" ${S}/setup.py
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
python-ctypes \
|
||||
python-subprocess \
|
||||
python-misc \
|
||||
"
|
||||
18
meta-python/recipes-python/python/python-pyusb_1.0.0a2.bb
Normal file
18
meta-python/recipes-python/python/python-pyusb_1.0.0a2.bb
Normal file
@@ -0,0 +1,18 @@
|
||||
SUMMARY = "PyUSB provides USB access on the Python language"
|
||||
HOMEPAGE = "http://pyusb.sourceforge.net/"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "BSD"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=a53a9c39efcfb812e2464af14afab013"
|
||||
DEPENDS = "libusb1"
|
||||
PR = "r1"
|
||||
|
||||
SRC_URI = "\
|
||||
${SOURCEFORGE_MIRROR}/pyusb/${SRCNAME}-${PV}.tar.gz \
|
||||
"
|
||||
SRC_URI[md5sum] = "9136b3dc019272c62a5b6d4eb624f89f"
|
||||
SRC_URI[sha256sum] = "dacbf7d568c0bb09a974d56da66d165351f1ba3c4d5169ab5b734266623e1736"
|
||||
|
||||
SRCNAME = "pyusb"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit distutils
|
||||
64
meta-python/recipes-python/python/python-pyyaml/setup.py
Normal file
64
meta-python/recipes-python/python/python-pyyaml/setup.py
Normal file
@@ -0,0 +1,64 @@
|
||||
NAME = 'PyYAML'
|
||||
VERSION = '3.06'
|
||||
DESCRIPTION = "YAML parser and emitter for Python"
|
||||
LONG_DESCRIPTION = """\
|
||||
YAML is a data serialization format designed for human readability and
|
||||
interaction with scripting languages. PyYAML is a YAML parser and
|
||||
emitter for Python.
|
||||
|
||||
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
|
||||
support, capable extension API, and sensible error messages. PyYAML
|
||||
supports standard YAML tags and provides Python-specific tags that allow
|
||||
to represent an arbitrary Python object.
|
||||
|
||||
PyYAML is applicable for a broad range of tasks from complex
|
||||
configuration files to object serialization and persistance."""
|
||||
AUTHOR = "Kirill Simonov"
|
||||
AUTHOR_EMAIL = 'xi@resolvent.net'
|
||||
LICENSE = "MIT"
|
||||
PLATFORMS = "Any"
|
||||
URL = "http://pyyaml.org/wiki/PyYAML"
|
||||
DOWNLOAD_URL = "http://pyyaml.org/download/pyyaml/%s-%s.tar.gz" % (NAME, VERSION)
|
||||
CLASSIFIERS = [
|
||||
"Development Status :: 5 - Production/Stable",
|
||||
"Intended Audience :: Developers",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python",
|
||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||
"Topic :: Text Processing :: Markup",
|
||||
]
|
||||
|
||||
from distutils.core import setup
|
||||
from distutils.extension import Extension
|
||||
from Cython.Distutils import build_ext
|
||||
|
||||
import sys, os.path
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
setup(
|
||||
name=NAME,
|
||||
version=VERSION,
|
||||
description=DESCRIPTION,
|
||||
long_description=LONG_DESCRIPTION,
|
||||
author=AUTHOR,
|
||||
author_email=AUTHOR_EMAIL,
|
||||
license=LICENSE,
|
||||
platforms=PLATFORMS,
|
||||
url=URL,
|
||||
download_url=DOWNLOAD_URL,
|
||||
classifiers=CLASSIFIERS,
|
||||
|
||||
package_dir={'': 'lib'},
|
||||
packages=['yaml'],
|
||||
|
||||
ext_modules = [
|
||||
Extension( "_yaml", ["ext/_yaml.pyx"], libraries = ["yaml"] )
|
||||
],
|
||||
|
||||
cmdclass={
|
||||
'build_ext': build_ext,
|
||||
},
|
||||
)
|
||||
22
meta-python/recipes-python/python/python-pyyaml_3.10.bb
Normal file
22
meta-python/recipes-python/python/python-pyyaml_3.10.bb
Normal file
@@ -0,0 +1,22 @@
|
||||
SUMMARY = "Python support for YAML"
|
||||
HOMEPAGE = "http://www.pyyaml.org"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=6015f088759b10e0bc2bf64898d4ae17"
|
||||
DEPENDS = "libyaml python-cython-native"
|
||||
|
||||
SRC_URI = "http://pyyaml.org/download/pyyaml/PyYAML-${PV}.tar.gz \
|
||||
file://setup.py \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "74c94a383886519e9e7b3dd1ee540247"
|
||||
SRC_URI[sha256sum] = "e713da45c96ca53a3a8b48140d4120374db622df16ab71759c9ceb5b8d46fe7c"
|
||||
|
||||
S = "${WORKDIR}/PyYAML-${PV}"
|
||||
|
||||
inherit distutils
|
||||
|
||||
do_configure_prepend() {
|
||||
# upstream setup.py overcomplicated, use ours
|
||||
install -m 0644 ${WORKDIR}/setup.py ${S}
|
||||
}
|
||||
20
meta-python/recipes-python/python/python-smbus_3.0.3.bb
Normal file
20
meta-python/recipes-python/python/python-smbus_3.0.3.bb
Normal file
@@ -0,0 +1,20 @@
|
||||
SUMMARY = "Set of i2c tools for linux - Python module"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = "file://smbusmodule.c;startline=1;endline=17;md5=fa24df321a520ff8e10f203425ab9fa8"
|
||||
|
||||
SRC_URI = "http://dl.lm-sensors.org/i2c-tools/releases/i2c-tools-${PV}.tar.bz2 \
|
||||
"
|
||||
SRC_URI[md5sum] = "511376eed04455cdb277ef19c5f73bb4"
|
||||
SRC_URI[sha256sum] = "23b28e474741834e3f1b35b0686528769a13adc92d2ff5603cbda1d6bd5e5629"
|
||||
|
||||
DEPENDS = "i2c-tools"
|
||||
|
||||
inherit distutils
|
||||
|
||||
S = "${WORKDIR}/i2c-tools-${PV}/py-smbus/"
|
||||
|
||||
do_configure_prepend() {
|
||||
# Adjust for OE header rename
|
||||
sed -i s:linux/i2c-dev.h:linux/i2c-dev-user.h: Module.mk
|
||||
sed -i s:linux/i2c-dev.h:linux/i2c-dev-user.h: smbusmodule.c
|
||||
}
|
||||
14
meta-python/recipes-python/python/python-sqlalchemy_0.7.9.bb
Normal file
14
meta-python/recipes-python/python/python-sqlalchemy_0.7.9.bb
Normal file
@@ -0,0 +1,14 @@
|
||||
DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \
|
||||
application developers the full power and flexibility of SQL"
|
||||
HOMEPAGE = "http://www.sqlalchemy.org/"
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=baffc5e5f4804c92fc9be155fed70d41"
|
||||
RDEPENDS_${PN} += "python-numbers"
|
||||
|
||||
SRCNAME = "SQLAlchemy"
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/sqlalchemy/${SRCNAME}-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "c4852d586d95a59fbc9358f4467875d5"
|
||||
SRC_URI[sha256sum] = "f7a305ad122144f364ce09a2d9ed5159d5f46ec43650653593e7dfa05d3294a1"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
222
meta-python/recipes-python/python/python-twisted_13.2.0.bb
Normal file
222
meta-python/recipes-python/python/python-twisted_13.2.0.bb
Normal file
@@ -0,0 +1,222 @@
|
||||
DESCRIPTION = "Twisted is an event-driven networking framework written in Python and licensed under the LGPL. \
|
||||
Twisted supports TCP, UDP, SSL/TLS, multicast, Unix sockets, a large number of protocols \
|
||||
(including HTTP, NNTP, IMAP, SSH, IRC, FTP, and others), and much more."
|
||||
HOMEPAGE = "http://www.twistedmatrix.com"
|
||||
SECTION = "console/network"
|
||||
|
||||
#twisted/topfiles/NEWS:655: - Relicensed: Now under the MIT license, rather than LGPL.
|
||||
LICENSE = "MIT"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=5602d7228daf59a16f0f1b2640c46bca"
|
||||
|
||||
SRC_URI = "https://pypi.python.org/packages/source/T/Twisted/Twisted-${PV}.tar.bz2"
|
||||
SRC_URI[md5sum] = "83fe6c0c911cc1602dbffb036be0ba79"
|
||||
SRC_URI[sha256sum] = "095175638c019ac7c0604f4c291724a16ff1acd062e181b01293bf4dcbc62cf3"
|
||||
|
||||
S = "${WORKDIR}/Twisted-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
do_install_append() {
|
||||
# remove some useless files before packaging
|
||||
find ${D} \( -name "*.bat" -o -name "*.c" -o -name "*.h" \) -exec rm -f {} \;
|
||||
}
|
||||
|
||||
PACKAGES += "\
|
||||
${PN}-zsh \
|
||||
${PN}-test \
|
||||
${PN}-protocols \
|
||||
${PN}-conch \
|
||||
${PN}-lore \
|
||||
${PN}-mail \
|
||||
${PN}-names \
|
||||
${PN}-news \
|
||||
${PN}-runner \
|
||||
${PN}-web \
|
||||
${PN}-words \
|
||||
${PN}-flow \
|
||||
${PN}-pair \
|
||||
${PN}-core \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} = "python-core python-zopeinterface"
|
||||
RDEPENDS_${PN} += "\
|
||||
${PN}-conch \
|
||||
${PN}-lore \
|
||||
${PN}-mail \
|
||||
${PN}-names \
|
||||
${PN}-news \
|
||||
${PN}-runner \
|
||||
${PN}-web \
|
||||
${PN}-words \
|
||||
"
|
||||
|
||||
ALLOW_EMPTY_${PN} = "1"
|
||||
FILES_${PN} = ""
|
||||
|
||||
FILES_${PN}-test = " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/test \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/test \
|
||||
"
|
||||
|
||||
FILES_${PN}-protocols = " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/*.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/gps/ \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols/mice/ \
|
||||
"
|
||||
|
||||
FILES_${PN}-zsh = " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zsh \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/twisted-completion.zsh \
|
||||
"
|
||||
|
||||
FILES_${PN}-conch = " \
|
||||
${bindir}/ckeygen \
|
||||
${bindir}/tkconch \
|
||||
${bindir}/conch \
|
||||
${bindir}/conchftp \
|
||||
${bindir}/cftp \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_conch.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/conch \
|
||||
"
|
||||
|
||||
FILES_${PN}-core = " \
|
||||
${bindir}/manhole \
|
||||
${bindir}/mktap \
|
||||
${bindir}/twistd \
|
||||
${bindir}/tap2deb \
|
||||
${bindir}/tap2rpm \
|
||||
${bindir}/tapconvert \
|
||||
${bindir}/tkmktap \
|
||||
${bindir}/trial \
|
||||
${bindir}/easy_install* \
|
||||
${bindir}/pyhtmlizer \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.so \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/__init__.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/notestplugin.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/testplugin.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_ftp.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_inet.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_manhole.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_portforward.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_socks.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_telnet.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_trial.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/dropin.cache \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/application \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/cred \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/enterprise \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/internet \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/manhole \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/persisted \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/protocols\
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python\
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/timeoutqueue.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/filepath.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dxprofile.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/plugin.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/htmlizer.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/__init__.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dispatch.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/hook.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadpool.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/otp.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/usage.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/roots.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/versions.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/urlpath.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/util.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/components.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/logfile.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/runtime.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/reflect.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/context.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/threadable.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/rebuild.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/failure.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/lockfile.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/formmethod.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/finalize.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/win32.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/dist.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/shortcut.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zipstream.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/release.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/syslog.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/log.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/compat.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/zshcomp.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/procutils.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/text.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/_twisted_zsh_stub \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/scripts/ \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/spread/ \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/tap/ \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/trial/ \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/__init__.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/_version.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/copyright.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/im.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/*.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/python/*.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/*.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/topfiles \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/Twisted*egg-info \
|
||||
"
|
||||
|
||||
FILES_${PN}-lore = " \
|
||||
${bindir}/bookify \
|
||||
${bindir}/lore \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_lore.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/lore \
|
||||
"
|
||||
|
||||
FILES_${PN}-mail = " \
|
||||
${bindir}/mailmail \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_mail.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/mail \
|
||||
"
|
||||
|
||||
FILES_${PN}-names = " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_names.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/names \
|
||||
"
|
||||
|
||||
FILES_${PN}-news = " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_news.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/news \
|
||||
"
|
||||
|
||||
FILES_${PN}-runner = " \
|
||||
${libdir}/site-packages/twisted/runner/portmap.so \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/runner\
|
||||
"
|
||||
|
||||
FILES_${PN}-web = " \
|
||||
${bindir}/websetroot \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_web.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/web\
|
||||
"
|
||||
|
||||
FILES_${PN}-words = " \
|
||||
${bindir}/im \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_words.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/words\
|
||||
"
|
||||
|
||||
FILES_${PN}-flow = " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_flow.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/flow \"
|
||||
|
||||
FILES_${PN}-pair = " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/plugins/twisted_pair.py* \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/pair \
|
||||
"
|
||||
|
||||
FILES_${PN}-dbg += " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/.debug \
|
||||
${libdir}/${PYTHON_DIR}/site-packages/twisted/*/*/.debug \
|
||||
"
|
||||
|
||||
16
meta-python/recipes-python/python/python-vobject_0.8.1c.bb
Normal file
16
meta-python/recipes-python/python/python-vobject_0.8.1c.bb
Normal file
@@ -0,0 +1,16 @@
|
||||
SUMMARY = "Python package for parsing and generating vCard and vCalendar files"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE-2.0.txt;md5=3b83ef96387f14655fc854ddc3c6bd57"
|
||||
HOMEPAGE = "http://vobject.skyhouseconsulting.com/"
|
||||
SRCNAME = "vobject"
|
||||
RDEPENDS_${PN} = "python python-dateutil"
|
||||
PR = "r4"
|
||||
|
||||
SRC_URI = "http://vobject.skyhouseconsulting.com/${SRCNAME}-${PV}.tar.gz"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
SRC_URI[md5sum] = "c9686dd74d39fdae140890d9c694c076"
|
||||
SRC_URI[sha256sum] = "594113117f2017ed837c8f3ce727616f9053baa5a5463a7420c8249b8fc556f5"
|
||||
19
meta-python/recipes-python/python/python-webdav_0.1.2.bb
Normal file
19
meta-python/recipes-python/python/python-webdav_0.1.2.bb
Normal file
@@ -0,0 +1,19 @@
|
||||
DESCRIPTION = "This project aims to provide an object-oriented Python WebDAV client-side library\
|
||||
based on Python`s standard httplib and Greg Stein`s davlib.\
|
||||
The client shall fully support RFCs 4918 (basic specification),\
|
||||
3744 (access control), and 3253 (versioning)."
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "Apache-2.0"
|
||||
LIC_FILES_CHKSUM = "file://src/webdav/WebdavClient.py;endline=15;md5=a1520fad859feb7b0d7f05277bc6ce48"
|
||||
HOMEPAGE = "http://sourceforge.net/projects/pythonwebdavlib/"
|
||||
SRCNAME = "Python_WebDAV_Library"
|
||||
DEPENDS = "python"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/pythonwebdavlib/Python%20WebDAV%20Library%20-%20${PV}/${SRCNAME}-${PV}.zip"
|
||||
SRC_URI[md5sum] = "8e49e0ecc5b4327c4f752a544ee10e1a"
|
||||
SRC_URI[sha256sum] = "72c029ad1e25de950f59c2f1812d009d2c1691b70e4b5b09f1af9006e8fd5f23"
|
||||
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
inherit distutils
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
SUMMARY = "Interface definitions for Zope products"
|
||||
SECTION = "console/network"
|
||||
|
||||
LICENSE = "ZPL-2.1"
|
||||
LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e54fd776274c1b7423ec128974bd9d46"
|
||||
|
||||
SRC_URI = "http://pypi.python.org/packages/source/z/zope.interface/zope.interface-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "edcd5f719c5eb2e18894c4d06e29b6c6"
|
||||
SRC_URI[sha256sum] = "91cba7b7cd7cb82f6f4e023fe77f94dc3df4ae5287fd55def2148dc232d0c7da"
|
||||
|
||||
S = "${WORKDIR}/zope.interface-${PV}"
|
||||
|
||||
inherit setuptools
|
||||
|
||||
RPROVIDES_${PN} += "zope-interfaces"
|
||||
FILES_${PN}-dbg += "${PYTHON_SITEPACKAGES_DIR}/*.egg/*/*/.debug"
|
||||
FILES_${PN}-dev += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.c"
|
||||
FILES_${PN}-doc += "${PYTHON_SITEPACKAGES_DIR}/zope/interface/*.txt"
|
||||
FILES_${PN}-tests = " \
|
||||
${PYTHON_SITEPACKAGES_DIR}/zope/interface/tests \
|
||||
${PYTHON_SITEPACKAGES_DIR}/zope/interface/common/tests \
|
||||
"
|
||||
Reference in New Issue
Block a user