diff options
author | Dominik Holland <dominik.holland@pelagicore.com> | 2017-07-14 11:21:59 +0200 |
---|---|---|
committer | Dominik Holland <dominik.holland@pelagicore.com> | 2017-07-18 20:07:23 +0000 |
commit | ab097355d593244bf0b5ea5a62ee7b04d1a0a5a3 (patch) | |
tree | 2207838fe5ef951263eae56dbdab683903ddb012 | |
parent | e9a9002eac0e6d667826c18cb6f0d96e536eacd0 (diff) | |
download | meta-boot2qt-ab097355d593244bf0b5ea5a62ee7b04d1a0a5a3.tar.gz |
python3-virtualenv: Add a recipe for python3-virtualenv
The recipe also supports native and nativsdk builds
Change-Id: Iab2b66b7969a1ca7f444eece2f7a74ed3760364b
Reviewed-by: Gordan Markus <gordan.markus@pelagicore.com>
-rw-r--r-- | recipes/python/python3-virtualenv.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/recipes/python/python3-virtualenv.bb b/recipes/python/python3-virtualenv.bb new file mode 100644 index 0000000..cc091b8 --- /dev/null +++ b/recipes/python/python3-virtualenv.bb | |||
@@ -0,0 +1,21 @@ | |||
1 | SUMMARY = "Virtual Python Environment builder" | ||
2 | HOMEPAGE = "http://github.com/gitpython-developers/GitPython" | ||
3 | SECTION = "devel/python" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=51910050bd6ad04a50033f3e15d6ce43" | ||
6 | |||
7 | PV="15.1.0" | ||
8 | SRC_URI = "https://files.pythonhosted.org/packages/source/v/virtualenv/virtualenv-15.1.0.tar.gz" | ||
9 | |||
10 | SRC_URI[md5sum] = "44e19f4134906fe2d75124427dc9b716" | ||
11 | SRC_URI[sha256sum] = "02f8102c2436bb03b3ee6dede1919d1dac8a427541652e5ec95171ec8adbc93a" | ||
12 | |||
13 | UPSTREAM_CHECK_URI = "https://pypi.python.org/pypi/virtualenv/" | ||
14 | UPSTREAM_CHECK_REGEX = "/virtualenv/(?P<pver>(\d+[\.\-_]*)+)" | ||
15 | |||
16 | S = "${WORKDIR}/virtualenv-${PV}" | ||
17 | |||
18 | BBCLASSEXTEND = "native nativesdk" | ||
19 | |||
20 | inherit setuptools3 | ||
21 | |||