# HG changeset patch # User Pascal Bellard # Date 1640946374 0 # Node ID f95bb62ba57ce2b9e7fdc2604e85529f2661d817 # Parent 39fe2d0cb7fb9c2c544a41a9e62cde257c1421a8 syslinux: add apple partitions (again) diff -r 39fe2d0cb7fb -r f95bb62ba57c perl-file-sharedir-install/receipt --- a/perl-file-sharedir-install/receipt Fri Dec 31 06:39:49 2021 +0100 +++ b/perl-file-sharedir-install/receipt Fri Dec 31 10:26:14 2021 +0000 @@ -16,6 +16,12 @@ DEPENDS="perl" BUILD_DEPENDS="perl" +current_version() +{ + wget -O - $WEB_SITE 2>/dev/null | \ + sed '/release-name/!d;s|.*-v*||;s|<.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 39fe2d0cb7fb -r f95bb62ba57c perl-ipc-system-simple/receipt --- a/perl-ipc-system-simple/receipt Fri Dec 31 06:39:49 2021 +0100 +++ b/perl-ipc-system-simple/receipt Fri Dec 31 10:26:14 2021 +0000 @@ -16,6 +16,12 @@ DEPENDS="perl" BUILD_DEPENDS="perl" +current_version() +{ + wget -O - $WEB_SITE 2>/dev/null | \ + sed '/release-name/!d;s|.*-v*||;s|<.*||;q' +} + # Rules to configure and make the package. compile_rules() { diff -r 39fe2d0cb7fb -r f95bb62ba57c syslinux/receipt --- a/syslinux/receipt Fri Dec 31 06:39:49 2021 +0100 +++ b/syslinux/receipt Fri Dec 31 10:26:14 2021 +0000 @@ -14,7 +14,7 @@ TAGS="boot" BUILD_DEPENDS="wget kbd-base perl nasm dev86 lzma mingw32-gcc upx posixovl \ -util-linux-uuid-dev advancecomp libidn linld" +util-linux-uuid-dev advancecomp libidn linld e2fsprogs" current_version() { diff -r 39fe2d0cb7fb -r f95bb62ba57c syslinux/stuff/iso2exe/iso2exe.sh --- a/syslinux/stuff/iso2exe/iso2exe.sh Fri Dec 31 06:39:49 2021 +0100 +++ b/syslinux/stuff/iso2exe/iso2exe.sh Fri Dec 31 10:26:14 2021 +0000 @@ -97,7 +97,7 @@ ddn if=/tmp/exe$$ of=$1 bs=1 skip=$cut seek=$((n+cut)) printf "Adding bootiso head at %04X...\n" 0 store 510 $((0xAA55)) $1 - while read adrs sz; do + while read adrs sz rem; do ddn if=/tmp/bin$$ of=$1 bs=1 count=$((0x$sz)) seek=$((0x$adrs)) skip=$((0x$adrs)) done <