summaryrefslogtreecommitdiffstats
path: root/meta-openstack/recipes-devtools
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@windriver.com>2013-11-07 13:33:33 -0500
committerBruce Ashfield <bruce.ashfield@windriver.com>2013-11-25 15:25:37 -0500
commit5a79acd58af3e9ba07a7b91f8bc456dd869edbbd (patch)
treec3f626015d41db744d8c5e7618ff454ccfb695dd /meta-openstack/recipes-devtools
parent14ae924050b81df097e0868b67cf9632305e3c3f (diff)
downloadmeta-cloud-services-5a79acd58af3e9ba07a7b91f8bc456dd869edbbd.tar.gz
python-beautifulsoup4: introduce recipe to meet ceilometer requirements
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta-openstack/recipes-devtools')
-rw-r--r--meta-openstack/recipes-devtools/python/python-beautifulsoup4_4.3.2.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-openstack/recipes-devtools/python/python-beautifulsoup4_4.3.2.bb b/meta-openstack/recipes-devtools/python/python-beautifulsoup4_4.3.2.bb
new file mode 100644
index 0000000..2d3cddb
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-beautifulsoup4_4.3.2.bb
@@ -0,0 +1,23 @@
1DESCRIPTION = "Screen-scraping library"
2HOMEPAGE = "https://pypi.python.org/pypi/beautifulsoup4/"
3SECTION = "devel/python"
4LICENSE = "Apache-2.0"
5LIC_FILES_CHKSUM = "file://COPYING.txt;md5=83e365dc17176bd72ba7d08ca0555efa"
6
7PR = "r0"
8SRCNAME = "beautifulsoup4"
9
10SRC_URI = "https://pypi.python.org/packages/source/b/${SRCNAME}/${SRCNAME}-${PV}.tar.gz"
11
12SRC_URI[md5sum] = "b8d157a204d56512a4cc196e53e7d8ee"
13SRC_URI[sha256sum] = "a2b29bd048ca2fe54a046b29770964738872a9747003a371344a93eedf7ad58e"
14
15S = "${WORKDIR}/${SRCNAME}-${PV}"
16
17inherit setuptools
18
19# avoid "error: option --single-version-externally-managed not recognized"
20DISTUTILS_INSTALL_ARGS = "--root=${D} \
21 --prefix=${prefix} \
22 --install-lib=${PYTHON_SITEPACKAGES_DIR} \
23 --install-data=${datadir}"