# HG changeset patch # User Pascal Bellard # Date 1620675184 0 # Node ID c1a1d1f23e078398803874a06de8fd394fd167bf # Parent 8d938c826a9b756a518a724ab0c891e8364fce6f Up ipxe (1.21.1), rsync (3.2.3) diff -r 8d938c826a9b -r c1a1d1f23e07 ipxe-pxe/receipt --- a/ipxe-pxe/receipt Fri May 07 14:52:36 2021 +0000 +++ b/ipxe-pxe/receipt Mon May 10 19:33:04 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ipxe-pxe" -VERSION="1.20.1" +VERSION="1.21.1" CATEGORY="system-tools" SHORT_DESC="Open source network boot firmware for pxe server." MAINTAINER="pascal.bellard@slitaz.org" diff -r 8d938c826a9b -r c1a1d1f23e07 ipxe/receipt --- a/ipxe/receipt Fri May 07 14:52:36 2021 +0000 +++ b/ipxe/receipt Mon May 10 19:33:04 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ipxe" -VERSION="1.20.1" +VERSION="1.21.1" CATEGORY="system-tools" SHORT_DESC="Open source network boot firmware." MAINTAINER="pascal.bellard@slitaz.org" @@ -10,9 +10,16 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WGET_URL="https://github.com/ipxe/ipxe/archive/v$VERSION.tar.gz" +SPLIT="ipxe-pxe ipxelinux" DEPENDS="" BUILD_DEPENDS="perl wget liblzma-dev syslinux" +current_version() +{ + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 8d938c826a9b -r c1a1d1f23e07 ipxelinux/receipt --- a/ipxelinux/receipt Fri May 07 14:52:36 2021 +0000 +++ b/ipxelinux/receipt Mon May 10 19:33:04 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="ipxelinux" -VERSION="1.20.1" +VERSION="1.21.1" CATEGORY="system-tools" SHORT_DESC="Open source network boot firmware for pxe server." MAINTAINER="pascal.bellard@slitaz.org" diff -r 8d938c826a9b -r c1a1d1f23e07 linld/stuff/src/_BEG.ASM --- a/linld/stuff/src/_BEG.ASM Fri May 07 14:52:36 2021 +0000 +++ b/linld/stuff/src/_BEG.ASM Mon May 10 19:33:04 2021 +0000 @@ -134,10 +134,10 @@ ; Check for oldies push bx ; < 286 : flags[12..15] are forced 1 - popf ; = 286 : flags[12..15] are forced 0, cld + popf ; = 286 : flags[12..15] are forced 0, cld, cli pushf ; > 286 : only flags[15] is forced 0 pop dx - add dh,bh ; NS=386+, S+NC=286, S+C=86/186 + add dh,bh ; 160:NS=386+, 0F0:NC=286, 1E0:NP=86/186 ifndef NO386 mov bx,offset msg_badcpu js godie ;it is not a 386+, die diff -r 8d938c826a9b -r c1a1d1f23e07 rsync/receipt --- a/rsync/receipt Fri May 07 14:52:36 2021 +0000 +++ b/rsync/receipt Mon May 10 19:33:04 2021 +0000 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="rsync" -VERSION="3.1.3" +VERSION="3.2.3" CATEGORY="network" SHORT_DESC="Utility that provides fast incremental." MAINTAINER="pankso@slitaz.org" @@ -14,8 +14,8 @@ TAGS="sync copy secure" HOST_ARCH="i486 arm" -DEPENDS="popt attr acl" -BUILD_DEPENDS="popt-dev attr-dev acl-dev" +DEPENDS="popt attr acl xxhash" +BUILD_DEPENDS="popt-dev attr-dev acl-dev xxhash-dev" # TazPanel TAZPANEL_DAEMON="man::rsync|help::rsync|edit|options|web::$WEB_SITE" diff -r 8d938c826a9b -r c1a1d1f23e07 xxhash-dev/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xxhash-dev/receipt Mon May 10 19:33:04 2021 +0000 @@ -0,0 +1,21 @@ +# SliTaz package receipt. + +PACKAGE="xxhash-dev" +VERSION="0.8.0" +CATEGORY="development" +SHORT_DESC="Extremely fast non-cryptographic hash algorithm, development files." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD GPL2" +WEB_SITE="http://cyan4973.github.io/xxHash/" +WANTED="xxhash" + +DEPENDS="xxhash pkg-config" + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/include $fs/usr/include + cp -a $install/usr/lib/*.a $fs/usr/lib/ + cp -a $install/usr/lib/pkgconfig $fs/usr/lib/ +} diff -r 8d938c826a9b -r c1a1d1f23e07 xxhash/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/xxhash/receipt Mon May 10 19:33:04 2021 +0000 @@ -0,0 +1,33 @@ +# SliTaz package receipt. + +PACKAGE="xxhash" +VERSION="0.8.0" +CATEGORY="misc" +SHORT_DESC="Extremely fast non-cryptographic hash algorithm." +MAINTAINER="pascal.bellard@slitaz.org" +LICENSE="BSD GPL2" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WEB_SITE="http://cyan4973.github.io/xxHash/" +WGET_URL="https://github.com/Cyan4973/xxHash/archive/refs/tags/v$VERSION.tar.gz" + +current_version() +{ + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' +} + +# Rules to configure and make the package. +compile_rules() +{ + sed -i 's|/local||' Makefile + make && + make DESTDIR=$DESTDIR install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/lib + cp -a $install/usr/bin $fs/usr/ + cp -a $install/usr/lib/*.so* $fs/usr/lib/ +}