diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-11-06 13:38:46 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-11-06 13:44:27 +0000 |
commit | 1e442e585b76abb5e2b8343d4b37eb501aee3db2 (patch) | |
tree | 0b97b6ec16240a7f84de7b8341e6a611c2452bb2 /main | |
parent | 46255b3d240dbe82a3609fe765113031f9f2ece1 (diff) | |
download | aports-1e442e585b76abb5e2b8343d4b37eb501aee3db2.tar.bz2 aports-1e442e585b76abb5e2b8343d4b37eb501aee3db2.tar.xz |
main/mercurial: add explicit depends on python3
Prior to python 3.8 python3-config --libs would return libpython, which
caused the python modules to pull in python as dependency. With python
3.8 this no longer happens unless you add --embed, so we need add
explictit depends on python3.
Diffstat (limited to 'main')
-rw-r--r-- | main/mercurial/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/mercurial/APKBUILD b/main/mercurial/APKBUILD index 37cafe95e2..66e0d29bd4 100644 --- a/main/mercurial/APKBUILD +++ b/main/mercurial/APKBUILD @@ -2,11 +2,12 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=mercurial pkgver=5.1.2 -pkgrel=1 +pkgrel=2 pkgdesc="Scalable distributed SCM tool" url="https://www.mercurial-scm.org" arch="all" license="GPL-2.0-or-later" +depends="python3" makedepends="python3-dev" subpackages=" $pkgname-doc |