# HG changeset patch # User Pascal Bellard # Date 1539765784 -7200 # Node ID 8e449fe1df2efbe99b26cb3477c03039e78b7a52 # Parent 8c864718b7b3f4e758878bf4d2aa83200e60d24d Typos in receipt variable names diff -r 8c864718b7b3 -r 8e449fe1df2e coova-chilli/receipt --- a/coova-chilli/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/coova-chilli/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -10,7 +10,7 @@ WEB_SITE="http://www.coova.org/CoovaChilli" WGET_URL="http://ap.coova.org/chilli/$TARBALL" -DEBENDS="libssl curl libidn" +DEPENDS="libssl curl libidn" BUILD_DEPENDS="openssl-dev curl-dev" # Rules to configure and make the package. diff -r 8c864718b7b3 -r 8e449fe1df2e dnsmasq/receipt --- a/dnsmasq/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/dnsmasq/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -9,7 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://www.thekelleys.org.uk/dnsmasq/doc.html" WGET_URL="http://www.thekelleys.org.uk/$PACKAGE/$TARBALL" -CONFIG_FILE="/etc/dnsmasq.conf" +CONFIG_FILES="/etc/dnsmasq.conf" HOST_ARCH="i486 arm" # Rules to configure and make the package. @@ -29,4 +29,3 @@ cp -a $install/etc $fs cp -a $stuff/* $fs } - diff -r 8c864718b7b3 -r 8e449fe1df2e fpc/receipt --- a/fpc/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/fpc/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -10,7 +10,7 @@ TARBALL="$SOURCE-$VERSION.tar.gz" WEB_SITE="http://www.freepascal.org/" WGET_URL="ftp://ftp.freepascal.org/pub/fpc/dist/$VERSION/source/$TARBALL" -CONFIG_FILE="/etc/fpc.cfg" +CONFIG_FILES="/etc/fpc.cfg" TAGS="compiler pascal" CROSS_BUGS="arm-slitaz-gnueabi-as: Command not found" diff -r 8c864718b7b3 -r 8e449fe1df2e frox/receipt --- a/frox/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/frox/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -10,7 +10,7 @@ WEB_SITE="http://frox.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" CONFIG_FILES="/etc/frox.conf" -TAG="ftp" +TAGS="ftp" # Rules to configure and make the package. compile_rules() diff -r 8c864718b7b3 -r 8e449fe1df2e gnome-alsamixer/receipt --- a/gnome-alsamixer/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/gnome-alsamixer/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -10,6 +10,7 @@ TARBALL="${PACKAGE}_$VERSION.orig.tar.gz" WGET_URL="http://http.debian.net/debian/pool/main/g/$PACKAGE/$TARBALL" EXTRA_URL="${WGET_URL/.orig/-5.debian}" +EXTRA_SOURCE_FILES="$(basename $EXTRA_URL)" DEPENDS="gtk+ libgnomeui libgnome-keyring" BUILD_DEPENDS="automake autoconf glib dbus-dev libgnomeui-dev libgnome-dev \ diff -r 8c864718b7b3 -r 8e449fe1df2e linld/stuff/src/JUMP.ASM --- a/linld/stuff/src/JUMP.ASM Wed Oct 17 05:16:53 2018 +0300 +++ b/linld/stuff/src/JUMP.ASM Wed Oct 17 10:43:04 2018 +0200 @@ -97,9 +97,12 @@ p8086 extrn _heap_top:word + global sssp ifdef NO386 +sssp: extrn _topseg:near call near _topseg + mov [word sssp+2],ax xchg ax,bx mov ax,[_heap_top] inc ah @@ -107,18 +110,19 @@ shr ax,cl else p386 - mov bx,9000h mov ax,[_heap_top] inc ah - shr ax,4 + ;shr ax,4 + db 0C1h,0E8h +sssp: + db 4 + mov bx,9000h endif mov es,bx mov dx,cs add ax,dx cmp ax,bx jb @@nooverflow - global sssp -sssp: ; Oops! We can stomp on our toes... better stop now mov bx,offset overflow extrn die:near @@ -128,7 +132,6 @@ push es pop ss mov sp,0A000h - mov [word sssp+2],ss extrn _csip:dword push [dword _csip] extrn _rm_size:word @@ -175,19 +178,17 @@ push ax push es dos_shutdown ; clear bx - call near @@doretf ; pop cs - push cs - pop ds + call near @@isbzimage ; pop cs ; ds=es=ss ;in al,70h ;or al,80h ; disable NMI ;out 70h,al pop dx ; move zImage pm mov ax,8 - cmp dx,ax + cmp dx,ax ; buf > 80000h ? ja @@bufhigh sub ax,dx - inc ax + inc ax ; up to 90000h-1 @@bufhigh: push ax push bx ; size=up to 512k @@ -207,8 +208,6 @@ add sp,14 ifndef noelks - push ss - pop ds ifndef NO386 cmp [dword 1E6h],'SKLE' jne @@notelks @@ -222,29 +221,29 @@ cmp [word 1E8h],'SK' jne @@notelks endif - ifdef NO386 - mov cx,120h ; CS=0120 - push cx - mov cl,0h ; DS=ES=SS=0100 - push cx - else - push 120h ; CS=0120 - push 100h ; DS=ES=SS=0100 - endif - pop es + mov cx,100h ; DS=ES=SS=0100 + mov es,cx + mov ch,05h ; 500h mini xor si,si xor di,di - mov ch,05h ; 500h mini rep movsw push es pop ss + ifdef NO386 + mov ax,120h ; CS=0120 + push ax + else + push 120h ; CS=0120 + endif push cx ; IP=0000 @@notelks: endif @@isbzimage: push ss pop ds + push ss + pop es ifndef NO386 push ss pop fs @@ -253,9 +252,6 @@ endif assume nothing assume cs:DGROUP -@@doretf: - push ss - pop es retf step19code diff -r 8c864718b7b3 -r 8e449fe1df2e logrotate/receipt --- a/logrotate/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/logrotate/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -9,7 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="https://fedorahosted.org/logrotate/" WGET_URL="https://fedorahosted.org/releases/l/o/logrotate/$TARBALL" -CONFIG_FILE="/etc/logrotate.conf" +CONFIG_FILES="/etc/logrotate.conf" DEPENDS="popt" BUILD_DEPENDS="popt-dev wget" @@ -46,4 +46,3 @@ sed -i s!.*logrotate.*!! "$1/var/spool/cron/crontabs/root" fi } - diff -r 8c864718b7b3 -r 8e449fe1df2e minidlna/receipt --- a/minidlna/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/minidlna/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -9,7 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://minidlna.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -CONFIGFILES="/etc/minidlna.conf" +CONFIG_FILES="/etc/minidlna.conf" DEPENDS="ffmpeg jpeg libsqlite libexif libid3tag libogg libvorbis flac" BUILD_DEPENDS="ffmpeg-dev jpeg-dev sqlite-dev libexif-dev libid3tag-dev \ diff -r 8c864718b7b3 -r 8e449fe1df2e python-invoice2data/receipt --- a/python-invoice2data/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/python-invoice2data/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -9,7 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="https://github.com/m3nu/invoice2data" WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" -TAGES="pdf" +TAGS="pdf" DEPENDS="python poppler-apps" BUILD_DEPENDS="python setuptools" diff -r 8c864718b7b3 -r 8e449fe1df2e rosegarden/receipt --- a/rosegarden/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/rosegarden/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -9,7 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.rosegardenmusic.com/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" -TAG="midi" +TAGS="midi" DEPENDS="libQtGui libQtXml libQtNetwork libQtCore jack-audio-connection-kit \ libsndfile liblrdf fftw libsamplerate alsa-lib xorg-libX11 zlib gcc-lib-base \ diff -r 8c864718b7b3 -r 8e449fe1df2e sysfsutils/receipt --- a/sysfsutils/receipt Wed Oct 17 05:16:53 2018 +0300 +++ b/sysfsutils/receipt Wed Oct 17 10:43:04 2018 +0200 @@ -11,12 +11,10 @@ WGET_URL="$SF_MIRROR/linux-diag/$TARBALL" DEPENDS="linux" -BLUID_DEPENDS="sysfsutils" # Rules to configure and make the package. compile_rules() { - cd $src ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS make