wok rev 20881

Update some WEB_SITE
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 25 10:34:08 2019 +0100 (2019-02-25)
parents aa514ab6f5bf
children 92b9429ba668
files blogotext/receipt perl-test-tester/receipt perl-xml-entities/receipt python-pyyaml/receipt syslinux/stuff/iso2exe/win32.c
line diff
     1.1 --- a/blogotext/receipt	Sun Feb 24 17:33:44 2019 +0100
     1.2 +++ b/blogotext/receipt	Mon Feb 25 10:34:08 2019 +0100
     1.3 @@ -6,9 +6,9 @@
     1.4  SHORT_DESC="Simple blog engine."
     1.5  MAINTAINER="pascal.bellard@slitaz.org"
     1.6  LICENSE="MIT"
     1.7 -WEB_SITE="https://lehollandaisvolant.net/blogotext"
     1.8 +WEB_SITE="https://github.com/BlogoText/blogotext"
     1.9  TARBALL="$PACKAGE-$VERSION.zip"
    1.10 -URL="$WEB_SITE/archives/$TARBALL"
    1.11 +URL="https://lehollandaisvolant.net/blogotext/archives/$TARBALL"
    1.12  
    1.13  DEPENDS="php-gd"
    1.14  BUILD_DEPENDS=""
     2.1 --- a/perl-test-tester/receipt	Sun Feb 24 17:33:44 2019 +0100
     2.2 +++ b/perl-test-tester/receipt	Mon Feb 25 10:34:08 2019 +0100
     2.3 @@ -6,7 +6,7 @@
     2.4  SHORT_DESC="Ease testing test modules built with Test::Builder"
     2.5  MAINTAINER="slaxemulator@gmail.com"
     2.6  LICENSE="GPL"
     2.7 -WEB_SITE="https://metacpan.org/release/Test-Tester"
     2.8 +WEB_SITE="http://search.cpan.org/dist/Test-Tester"
     2.9  SOURCE="Test-Tester"
    2.10  TARBALL="$SOURCE-$VERSION.tar.gz"
    2.11  WGET_URL="http://www.cpan.org/authors/id/F/FD/FDALY/$TARBALL"
     3.1 --- a/perl-xml-entities/receipt	Sun Feb 24 17:33:44 2019 +0100
     3.2 +++ b/perl-xml-entities/receipt	Mon Feb 25 10:34:08 2019 +0100
     3.3 @@ -10,7 +10,7 @@
     3.4  BUILD_DEPENDS="perl perl-libwww perl-uri"
     3.5  SOURCE="XML-Entities"
     3.6  TARBALL="$SOURCE-$VERSION.tar.gz"
     3.7 -WEB_SITE="https://metacpan.org/release/XML-Entities/lib/XML/Entities.pm"
     3.8 +WEB_SITE="https://metacpan.org/release/XML-Entities"
     3.9  WGET_URL="https://metacpan.org/CPAN/authors/id/S/SI/SIXTEASE/$TARBALL"
    3.10  
    3.11  # Rules to configure and make the package.
     4.1 --- a/python-pyyaml/receipt	Sun Feb 24 17:33:44 2019 +0100
     4.2 +++ b/python-pyyaml/receipt	Mon Feb 25 10:34:08 2019 +0100
     4.3 @@ -8,7 +8,7 @@
     4.4  LICENSE="MIT"
     4.5  SOURCE="PyYAML"
     4.6  TARBALL="$SOURCE-$VERSION.tar.gz"
     4.7 -WEB_SITE="https://pyyaml.org/wiki/PyYAML/"
     4.8 +WEB_SITE="https://pyyaml.org/wiki/PyYAML"
     4.9  WGET_URL="https://pyyaml.org/download/pyyaml/$TARBALL"
    4.10  
    4.11  DEPENDS="python"
     5.1 --- a/syslinux/stuff/iso2exe/win32.c	Sun Feb 24 17:33:44 2019 +0100
     5.2 +++ b/syslinux/stuff/iso2exe/win32.c	Mon Feb 25 10:34:08 2019 +0100
     5.3 @@ -33,7 +33,7 @@
     5.4  static void exec16bits(char *isoFileName)
     5.5  {
     5.6  	int fdiso, fdtmp, i;
     5.7 -	long buffer[512/4];
     5.8 +	char buffer[512];
     5.9  	char tmpFileName[MAX_PATH], *p;
    5.10  
    5.11  	strcpy(tmpFileName, isoFileName);
    5.12 @@ -44,7 +44,11 @@
    5.13  	fdtmp = open(tmpFileName, O_WRONLY|O_BINARY|O_CREAT,0555);
    5.14  	for (i = 0; i < 0x8000; i += sizeof(buffer)) {
    5.15  		read(fdiso, (char *) buffer, sizeof(buffer));
    5.16 -		if (i == 0) buffer[15] = 0;	// kill PE header
    5.17 +		if (i == 0) {
    5.18 +			buffer[2] =  buffer[3]  =	// reset last page size
    5.19 +			buffer[18] = buffer[19] = 0;	// reset checksum
    5.20 +			buffer[63]++;			// kill PE header
    5.21 +		}
    5.22  		write(fdtmp, (char *) buffer, sizeof(buffer));
    5.23  	}
    5.24  	close(fdiso);