# HG changeset patch # User Pascal Bellard # Date 1551087248 -3600 # Node ID fbcc503400dc868621c495ad863abceae609d670 # Parent aa514ab6f5bfbac4e75c946837516b000b051bec Update some WEB_SITE diff -r aa514ab6f5bf -r fbcc503400dc blogotext/receipt --- a/blogotext/receipt Sun Feb 24 17:33:44 2019 +0100 +++ b/blogotext/receipt Mon Feb 25 10:34:08 2019 +0100 @@ -6,9 +6,9 @@ SHORT_DESC="Simple blog engine." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="MIT" -WEB_SITE="https://lehollandaisvolant.net/blogotext" +WEB_SITE="https://github.com/BlogoText/blogotext" TARBALL="$PACKAGE-$VERSION.zip" -URL="$WEB_SITE/archives/$TARBALL" +URL="https://lehollandaisvolant.net/blogotext/archives/$TARBALL" DEPENDS="php-gd" BUILD_DEPENDS="" diff -r aa514ab6f5bf -r fbcc503400dc perl-test-tester/receipt --- a/perl-test-tester/receipt Sun Feb 24 17:33:44 2019 +0100 +++ b/perl-test-tester/receipt Mon Feb 25 10:34:08 2019 +0100 @@ -6,7 +6,7 @@ SHORT_DESC="Ease testing test modules built with Test::Builder" MAINTAINER="slaxemulator@gmail.com" LICENSE="GPL" -WEB_SITE="https://metacpan.org/release/Test-Tester" +WEB_SITE="http://search.cpan.org/dist/Test-Tester" SOURCE="Test-Tester" TARBALL="$SOURCE-$VERSION.tar.gz" WGET_URL="http://www.cpan.org/authors/id/F/FD/FDALY/$TARBALL" diff -r aa514ab6f5bf -r fbcc503400dc perl-xml-entities/receipt --- a/perl-xml-entities/receipt Sun Feb 24 17:33:44 2019 +0100 +++ b/perl-xml-entities/receipt Mon Feb 25 10:34:08 2019 +0100 @@ -10,7 +10,7 @@ BUILD_DEPENDS="perl perl-libwww perl-uri" SOURCE="XML-Entities" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://metacpan.org/release/XML-Entities/lib/XML/Entities.pm" +WEB_SITE="https://metacpan.org/release/XML-Entities" WGET_URL="https://metacpan.org/CPAN/authors/id/S/SI/SIXTEASE/$TARBALL" # Rules to configure and make the package. diff -r aa514ab6f5bf -r fbcc503400dc python-pyyaml/receipt --- a/python-pyyaml/receipt Sun Feb 24 17:33:44 2019 +0100 +++ b/python-pyyaml/receipt Mon Feb 25 10:34:08 2019 +0100 @@ -8,7 +8,7 @@ LICENSE="MIT" SOURCE="PyYAML" TARBALL="$SOURCE-$VERSION.tar.gz" -WEB_SITE="https://pyyaml.org/wiki/PyYAML/" +WEB_SITE="https://pyyaml.org/wiki/PyYAML" WGET_URL="https://pyyaml.org/download/pyyaml/$TARBALL" DEPENDS="python" diff -r aa514ab6f5bf -r fbcc503400dc syslinux/stuff/iso2exe/win32.c --- a/syslinux/stuff/iso2exe/win32.c Sun Feb 24 17:33:44 2019 +0100 +++ b/syslinux/stuff/iso2exe/win32.c Mon Feb 25 10:34:08 2019 +0100 @@ -33,7 +33,7 @@ static void exec16bits(char *isoFileName) { int fdiso, fdtmp, i; - long buffer[512/4]; + char buffer[512]; char tmpFileName[MAX_PATH], *p; strcpy(tmpFileName, isoFileName); @@ -44,7 +44,11 @@ fdtmp = open(tmpFileName, O_WRONLY|O_BINARY|O_CREAT,0555); for (i = 0; i < 0x8000; i += sizeof(buffer)) { read(fdiso, (char *) buffer, sizeof(buffer)); - if (i == 0) buffer[15] = 0; // kill PE header + if (i == 0) { + buffer[2] = buffer[3] = // reset last page size + buffer[18] = buffer[19] = 0; // reset checksum + buffer[63]++; // kill PE header + } write(fdtmp, (char *) buffer, sizeof(buffer)); } close(fdiso);