diff options
author | Narrat | 2024-12-28 23:16:58 +0100 |
---|---|---|
committer | Narrat | 2024-12-28 23:16:58 +0100 |
commit | bfa10fa881b96f1f087fc5d7d6f86c86c63db31a (patch) | |
tree | dc494ef2f57272dc10bbba98faf2375264ea2118 | |
parent | 18babc2719a42049c150672e2d40912d482bdb06 (diff) | |
download | aur-idlex.tar.gz |
idlex: add version constraint on python
as of now idlex cannot be used with python3.12 and onwards
-rw-r--r-- | .SRCINFO | 5 | ||||
-rw-r--r-- | PKGBUILD | 5 |
2 files changed, 6 insertions, 4 deletions
@@ -1,11 +1,12 @@ pkgbase = idlex pkgdesc = Extensions to IDLE, the Python IDE pkgver = 1.22 - pkgrel = 1 + pkgrel = 2 url = http://idlex.sourceforge.net/ arch = any license = NCSA - depends = python + makedepends = python-setuptools + depends = python<=3.11 depends = tk options = !emptydirs source = idlex.desktop @@ -4,12 +4,13 @@ pkgname=idlex pkgver=1.22 -pkgrel=1 +pkgrel=2 pkgdesc="Extensions to IDLE, the Python IDE" arch=('any') url="http://idlex.sourceforge.net/" license=('NCSA') -depends=('python' 'tk') +depends=('python<=3.11' 'tk') +makedepends=('python-setuptools') options=(!emptydirs) source=($pkgname.desktop "https://downloads.sourceforge.net/project/idlex/$pkgname-$pkgver.zip") md5sums=('94c7662b5e4bf4bf94121a8f7c374d6d' |