Author: krejzi Date: Fri Aug 25 05:15:41 2017 New Revision: 19089 Log: Fix currency for libnsl and rpcsvc-proto
Modified: trunk/BOOK/networking/netlibs/libnsl.xml trunk/scripts/blfs-chapter17.php Modified: trunk/BOOK/networking/netlibs/libnsl.xml ============================================================================== --- trunk/BOOK/networking/netlibs/libnsl.xml Fri Aug 25 04:57:58 2017 (r19088) +++ trunk/BOOK/networking/netlibs/libnsl.xml Fri Aug 25 05:15:41 2017 (r19089) @@ -4,7 +4,7 @@ <!ENTITY % general-entities SYSTEM "../../general.ent"> %general-entities; - <!ENTITY libnsl-download-http "https://github.com/thkukuk/libnsl/archive/&libnsl-version;.tar.gz"> + <!ENTITY libnsl-download-http "https://github.com/thkukuk/libnsl/archive/&libnsl-version;/libnsl-&libnsl-version;.tar.gz"> <!ENTITY libnsl-download-ftp " "> <!ENTITY libnsl-md5sum "af13f06000c691bc19dfc82822ab5374"> <!ENTITY libnsl-size "212 KB"> Modified: trunk/scripts/blfs-chapter17.php ============================================================================== --- trunk/scripts/blfs-chapter17.php Fri Aug 25 04:57:58 2017 (r19088) +++ trunk/scripts/blfs-chapter17.php Fri Aug 25 05:15:41 2017 (r19089) @@ -16,11 +16,13 @@ //$current="lynx"; $regex = array(); -$regex[ 'w3m' ] = "/^.*Download w3m-(\d[\d\.]+\d).tar.*$/"; -$regex[ 'serf' ] = "/^.*Serf is ([\d\.]+\d).*$/"; -$regex[ 'neon' ] = "/^.*Source code: neon-(\d[\d\.]*).tar.*$/"; -$regex[ 'libevent' ] = "/^.*release-(\d[\d\.]*)-stable.*$/"; -$regex[ 'fetchmail' ] = "/^.*Download fetchmail-(\d[\d\.]*).tar.*$/"; +$regex[ 'w3m' ] = "/^.*Download w3m-(\d[\d\.]+\d).tar.*$/"; +$regex[ 'serf' ] = "/^.*Serf is ([\d\.]+\d).*$/"; +$regex[ 'neon' ] = "/^.*Source code: neon-(\d[\d\.]*).tar.*$/"; +$regex[ 'libevent' ] = "/^.*release-(\d[\d\.]*)-stable.*$/"; +$regex[ 'fetchmail' ] = "/^.*Download fetchmail-(\d[\d\.]*).tar.*$/"; +$regex[ 'libnsl' ] = "/^.*libnsl ([\d\.]+\d)*$/"; +$regex[ 'rpcsvc-proto' ] = "/^.*Version ([\d\.]+\d)*$/"; $url_fix = array ( @@ -78,12 +80,15 @@ array( 'pkg' => 'libnl', 'match' => '^.*$', - 'replace' => "http://pkgs.fedoraproject.org/repo/pkgs/libnl3/" ), + 'replace' => "https://github.com/thom311/libnl/releases" ), - array( 'pkg' => 'libnl-doc', + array( 'pkg' => 'libnsl', 'match' => '^.*$', - 'replace' => "http://pkgs.fedoraproject.org/repo/pkgs/libnl3/" ), + 'replace' => "https://github.com/thkukuk/libnsl/releases" ), + array( 'pkg' => 'rpcsvc-proto', + 'match' => '^.*$', + 'replace' => "https://github.com/thkukuk/rpcsvc-proto/releases" ), ); function get_packages( $package, $dirpath ) -- http://lists.linuxfromscratch.org/listinfo/blfs-book FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
