wok rev 22331
python-pygments: update $WEB_SITE
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Nov 15 11:56:14 2019 +0100 (2019-11-15) |
parents | ae6331238367 |
children | 0a0a4e90ac5e |
files | linld/receipt python-pygments/receipt syslinux/stuff/iso2exe/Makefile |
line diff
1.1 --- a/linld/receipt Fri Nov 15 11:30:01 2019 +0100 1.2 +++ b/linld/receipt Fri Nov 15 11:56:14 2019 +0100 1.3 @@ -52,16 +52,8 @@ 1.4 linld=linld.com 1.5 [ $(stat -c %s $linld) -le 4096 ] && ls -l $linld && linld= 1.6 for f in $linld tazboot.com ; do 1.7 - cp $f tmp.com 1.8 - for i in $(seq 1 9); do 1.9 - upx -$i --8086 tmp.com 1.10 - [ $(stat -c "%s" $f) -gt $(stat -c "%s" tmp.com) ] && 1.11 - cp tmp.com $f 1.12 - upx -d tmp.com 1.13 - done > /dev/null 2>&1 1.14 - rm tmp.com 1.15 + upx -qq --ultra-brute --8086 $f 1.16 done 1.17 - upx -l $linld tazboot.com 1.18 cc -o tobzimage.o -Wa,-algms=tobzimage.lst -c $stuff/tobzimage.S 1.19 objcopy -O binary tobzimage.o tobzimage.bin 1.20 cp $stuff/tobzimage .
2.1 --- a/python-pygments/receipt Fri Nov 15 11:30:01 2019 +0100 2.2 +++ b/python-pygments/receipt Fri Nov 15 11:56:14 2019 +0100 2.3 @@ -7,7 +7,7 @@ 2.4 MAINTAINER="claudinei@slitaz.org" 2.5 LICENSE="BSD" 2.6 TARBALL="$PACKAGE-$VERSION.tar.bz2" 2.7 -WEB_SITE="http://pygments.org/" 2.8 +WEB_SITE="https://pygments.org/" 2.9 WGET_URL="https://bitbucket.org/birkenfeld/pygments-main/get/$VERSION.tar.bz2" 2.10 2.11 DEPENDS="python python-setuptools"
3.1 --- a/syslinux/stuff/iso2exe/Makefile Fri Nov 15 11:30:01 2019 +0100 3.2 +++ b/syslinux/stuff/iso2exe/Makefile Fri Nov 15 11:56:14 2019 +0100 3.3 @@ -30,7 +30,7 @@ 3.4 ./iso2exe.sh --array ../mbr/isohdpfx.bin > $@ 3.5 3.6 iso2exe.com: iso2exe.c iso2exe.h 3.7 - $(BCC) $(BCCFLAGS) -o $@ iso2exe.c && upx -5 --8086 $@ 3.8 + $(BCC) $(BCCFLAGS) -o $@ iso2exe.c && upx --ultra-brute --8086 $@ 3.9 3.10 iso2exe.exe: iso2exe.c iso2exe.h isohybrid.res 3.11 i586-pc-mingw32-gcc -Os -s -o $@ iso2exe.c isohybrid.res -lws2_32