# HG changeset patch # User Pascal Bellard # Date 1550226571 -3600 # Node ID 8685ee90f6aad86472c2025939de9520164efdb8 # Parent 03507e8ec4b95403b4a37e4b474e94da21a0b340 Update some WEB_SITE diff -r 03507e8ec4b9 -r 8685ee90f6aa aspell-dev/receipt --- a/aspell-dev/receipt Thu Feb 14 18:37:56 2019 +0100 +++ b/aspell-dev/receipt Fri Feb 15 11:29:31 2019 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="aspell-dev" -VERSION="0.60.6" +VERSION="0.60.6.1" CATEGORY="development" SHORT_DESC="GNU spell checker devel files." MAINTAINER="paul@slitaz.org" diff -r 03507e8ec4b9 -r 8685ee90f6aa libiec61883-dev/receipt --- a/libiec61883-dev/receipt Thu Feb 14 18:37:56 2019 +0100 +++ b/libiec61883-dev/receipt Fri Feb 15 11:29:31 2019 +0100 @@ -7,7 +7,7 @@ MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" WANTED="libiec61883" -WEB_SITE="http://www.linux1394.org/" +WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" DEPENDS="pkg-config" diff -r 03507e8ec4b9 -r 8685ee90f6aa libiec61883/receipt --- a/libiec61883/receipt Thu Feb 14 18:37:56 2019 +0100 +++ b/libiec61883/receipt Fri Feb 15 11:29:31 2019 +0100 @@ -8,7 +8,7 @@ LICENSE="LGPL2.1" #TARBALL="$PACKAGE-$VERSION.tar.gz" TARBALL="${PACKAGE}_$VERSION.orig.tar.gz" -WEB_SITE="http://www.linux1394.org/" +WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" #WGET_URL="http://www.linux1394.org/dl/$TARBALL" WGET_URL="http://ftp.debian.org/pool/main/libi/$PACKAGE/$TARBALL" diff -r 03507e8ec4b9 -r 8685ee90f6aa libraw1394-dev/receipt --- a/libraw1394-dev/receipt Thu Feb 14 18:37:56 2019 +0100 +++ b/libraw1394-dev/receipt Fri Feb 15 11:29:31 2019 +0100 @@ -7,7 +7,7 @@ MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" WANTED="libraw1394" -WEB_SITE="http://www.linux1394.org/" +WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" DEPENDS="libraw1394 pkg-config" diff -r 03507e8ec4b9 -r 8685ee90f6aa libraw1394/receipt --- a/libraw1394/receipt Thu Feb 14 18:37:56 2019 +0100 +++ b/libraw1394/receipt Fri Feb 15 11:29:31 2019 +0100 @@ -7,7 +7,7 @@ MAINTAINER="pankso@slitaz.org" LICENSE="LGPL2.1" TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.linux1394.org/" +WEB_SITE="https://ieee1394.wiki.kernel.org/index.php/Main_Page" WGET_URL="https://www.kernel.org/pub/linux/libs/ieee1394/$TARBALL" # Rules to configure and make the package. diff -r 03507e8ec4b9 -r 8685ee90f6aa linld/receipt --- a/linld/receipt Thu Feb 14 18:37:56 2019 +0100 +++ b/linld/receipt Fri Feb 15 11:29:31 2019 +0100 @@ -45,7 +45,8 @@ cp TAZBOOT/TAZBOOT.COM tazboot.com objdump -D -b binary -mi386 -Maddr16,data16 --adjust-vma=0x100 \ linld.com > linld.lst - for f in linld.com tazboot.com ; do + [ $(stat -c %s linld.com) -gt 4096 ] && linld=linld.com || linld= + for f in $linld tazboot.com ; do cp $f tmp.com for i in $(seq 1 9); do upx -$i --8086 tmp.com @@ -55,7 +56,7 @@ done > /dev/null 2>&1 rm tmp.com done - upx -l linld.com tazboot.com + upx -l $linld tazboot.com cc -o tobzimage.o -Wa,-algms=tobzimage.lst -c $stuff/tobzimage.S objcopy -O binary tobzimage.o tobzimage.bin cp $stuff/tobzimage . diff -r 03507e8ec4b9 -r 8685ee90f6aa linld/stuff/src/CRTL.ASM --- a/linld/stuff/src/CRTL.ASM Thu Feb 14 18:37:56 2019 +0100 +++ b/linld/stuff/src/CRTL.ASM Fri Feb 15 11:29:31 2019 +0100 @@ -69,29 +69,27 @@ xor cx,cx endif push si - xchg ax,bx ; b - xchg ax,si ; a + xchg ax,si ; b ifdef EXTRA jcxz @@nocat endif + dec bx @@catlp: - lodsb ; a=si - or al,al + inc bx + cmp [byte bx],0 ; a=bx jne @@catlp - dec si + ifdef EXTRA mov al,20h - ifdef EXTRA loop @@cpyhead else - jmp @@cpyhead + db 0b8h,20h ; mov ax,??20h endif @@nocat: @@cpylp: - mov al,[bx] + lodsb +@@cpyhead: + mov [bx],al inc bx -@@cpyhead: - mov [si],al - inc si or al,al jne @@cpylp strfound: diff -r 03507e8ec4b9 -r 8685ee90f6aa linld/stuff/src/XMM.ASM --- a/linld/stuff/src/XMM.ASM Thu Feb 14 18:37:56 2019 +0100 +++ b/linld/stuff/src/XMM.ASM Fri Feb 15 11:29:31 2019 +0100 @@ -98,7 +98,7 @@ global @xmm_alloc$qp11image_himem:near proc @xmm_alloc$qp11image_himem near - ret ; TO BE FIXED +ifdef TO_BE_FIXED ifndef NO386 mov edx,[(image_himem bx).size] ; m->size ;dec edx @@ -131,6 +131,7 @@ jnz @@err mov [word (image_himem bx).buf],ax ; lo m->buf mov [word (image_himem bx+2).buf],dx ; hi m->buf +endif ; TO_BE_FIXED @@err: ret diff -r 03507e8ec4b9 -r 8685ee90f6aa zonecheck/receipt --- a/zonecheck/receipt Thu Feb 14 18:37:56 2019 +0100 +++ b/zonecheck/receipt Fri Feb 15 11:29:31 2019 +0100 @@ -6,7 +6,7 @@ SHORT_DESC="Check that a zone or domain name is correctly configured in the DNS." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL3" -WEB_SITE="http://www.zonecheck.fr" +WEB_SITE="https://www.zonemaster.fr/" TARBALL="$PACKAGE-$VERSION.tgz" WGET_URL="$WEB_SITE/download/$TARBALL" CONFIG_FILES="/etc/zonecheck"