wok diff python-dev/receipt @ rev 24133
Up tazinst (115)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Oct 23 15:17:56 2021 +0000 (2021-10-23) |
parents | 6135577f4d08 |
children | 401ca84be53a |
line diff
1.1 --- a/python-dev/receipt Sat Jan 26 12:26:47 2019 +0100 1.2 +++ b/python-dev/receipt Sat Oct 23 15:17:56 2021 +0000 1.3 @@ -1,27 +1,29 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="python-dev" 1.7 -VERSION="2.7.15" 1.8 +VERSION="2.7.17" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="The Python programming language devel files." 1.11 +SHORT_DESC="The Python programming language - development files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="PSL" 1.14 +WEB_SITE="https://www.python.org/" 1.15 + 1.16 +SOURCE="Python" 1.17 +DEPENDS="python" 1.18 WANTED="python" 1.19 -SOURCE="Python" 1.20 -WEB_SITE="https://www.python.org/" 1.21 + 1.22 HOST_ARCH="i486 arm" 1.23 1.24 -DEPENDS="python" 1.25 - 1.26 # Rules to gen a SliTaz package suitable for Tazpkg. 1.27 genpkg_rules() 1.28 { 1.29 mkdir -p $fs/usr/bin 1.30 - cp -a $install/usr/include $fs/usr 1.31 - cp -a $install/usr/bin/*-config $fs/usr/bin 1.32 - chmod 755 $fs/usr/bin/*-config 1.33 + 1.34 + cp -a $install/usr/include $fs/usr 1.35 + cp -a $install/usr/bin/*-config $fs/usr/bin 1.36 + chmod 755 $fs/usr/bin/*-config 1.37 + 1.38 # in python package now 1.39 python_version=${VERSION:0:3} 1.40 - rm $fs/usr/include/${WANTED}$python_version/pyconfig.h 1.41 + rm $fs/usr/include/${WANTED}$python_version/pyconfig.h 1.42 } 1.43 -