summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuss <russ@rw.id.au>2019-05-07 16:31:56 +1000
committerNatanael Copa <ncopa@alpinelinux.org>2019-07-17 12:00:11 +0000
commitbffe0efc06ccf2a7246b77d1afb7ed89e5b0ed80 (patch)
treebdc1e9dd508d88c997269fef6208af5a87650d69
parent68a054e274cb7661fc354de62d1ba8d53f2cea02 (diff)
downloadabuild-bffe0efc06ccf2a7246b77d1afb7ed89e5b0ed80.tar.bz2
abuild-bffe0efc06ccf2a7246b77d1afb7ed89e5b0ed80.tar.xz
newapkbuild: add py3-setuptools to python apkbuild
Seeing as the default python build/check/package apkbuild functions call `setup.py` and that relies on `py3-setuptools`, perhaps it should be added to the makedepends. Inspiration from https://github.com/alpinelinux/aports/pull/7641#pullrequestreview-234326397
-rw-r--r--newapkbuild.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/newapkbuild.in b/newapkbuild.in
index e119a17..64335c3 100644
--- a/newapkbuild.in
+++ b/newapkbuild.in
@@ -213,7 +213,7 @@ newaport() {
fi
case "$buildtype" in
- python) makedepends="python3-dev";;
+ python) makedepends="python3-dev py3-setuptools";;
cmake) makedepends="cmake";;
meson) makedepends="meson";;
*) makedepends="\$depends_dev";;