wok-6.x diff python-idle/receipt @ rev 24782
Up alpine (2.25)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Mar 20 12:08:15 2022 +0000 (2022-03-20) |
parents | 6135577f4d08 |
children | 401ca84be53a |
line diff
1.1 --- a/python-idle/receipt Sat Jan 26 12:26:47 2019 +0100 1.2 +++ b/python-idle/receipt Sun Mar 20 12:08:15 2022 +0000 1.3 @@ -1,22 +1,24 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="python-idle" 1.7 -VERSION="2.7.15" 1.8 +VERSION="2.7.17" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Python GUI IDE using TK Toolkit" 1.11 +SHORT_DESC="Python GUI IDE using TK Toolkit." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="PSL" 1.14 WEB_SITE="https://www.python.org/" 1.15 + 1.16 +DEPENDS="python tcl tk" 1.17 +WANTED="python" 1.18 + 1.19 HOST_ARCH="i486 arm" 1.20 1.21 -WANTED="python" 1.22 -DEPENDS="python tcl tk" 1.23 - 1.24 # Rules to gen a SliTaz package suitable for Tazpkg. 1.25 genpkg_rules() 1.26 { 1.27 - mkdir -p $fs/usr/bin $fs/usr/lib/python2.7 1.28 - cp -a $install/usr/bin/idle $fs/usr/bin 1.29 - cp -a $install/usr/lib/python2.7/idlelib $fs/usr/lib/python2.7 1.30 + mkdir -p $fs/usr/bin 1.31 + mkdir -p $fs/usr/lib/python2.7 1.32 + 1.33 + cp -a $install/usr/bin/idle $fs/usr/bin 1.34 + cp -a $install/usr/lib/python2.7/idlelib $fs/usr/lib/python2.7 1.35 } 1.36 -