Author: bdubbs
Date: Fri Sep 18 21:09:24 2020
New Revision: 23727

Log:
Fix currency for rust and ImageMagick

Modified:
   trunk/scripts/blfs-chapter11.php
   trunk/scripts/blfs-chapter13.php
   trunk/scripts/blfs-include.php

Modified: trunk/scripts/blfs-chapter11.php
==============================================================================
--- trunk/scripts/blfs-chapter11.php    Fri Sep 18 14:30:13 2020        (r23726)
+++ trunk/scripts/blfs-chapter11.php    Fri Sep 18 21:09:24 2020        (r23727)
@@ -39,6 +39,10 @@
           'match'   => '^ftp:\/\/ftp.gnome',
           'replace' => "http://ftp.gnome"; ),
 
+   array( 'pkg'     => 'ImageMagick',
+          'match'   => '^.*$', 
+          'replace' => "https://www.imagemagick.org/download/releases"; ),
+
    array( 'pkg'     => 'iso-codes',
           'match'   => '^.*$', 
           'replace' => 
"https://salsa.debian.org/iso-codes-team/iso-codes/tags"; ),

Modified: trunk/scripts/blfs-chapter13.php
==============================================================================
--- trunk/scripts/blfs-chapter13.php    Fri Sep 18 14:30:13 2020        (r23726)
+++ trunk/scripts/blfs-chapter13.php    Fri Sep 18 21:09:24 2020        (r23727)
@@ -630,7 +630,7 @@
 
   if ( $package == "rustc" )
   {
-    $max = find_max( $lines, "/release/", "/^.* (\d[\d\.]+\d) release.*$/" );
+    $max = find_max( $lines, "/Rust/", "/^.*Rust (\d[\d\.]+\d).*$/" );
     return $max;
   }
   if ( $book_index == "swig" )

Modified: trunk/scripts/blfs-include.php
==============================================================================
--- trunk/scripts/blfs-include.php      Fri Sep 18 14:30:13 2020        (r23726)
+++ trunk/scripts/blfs-include.php      Fri Sep 18 21:09:24 2020        (r23727)
@@ -138,6 +138,7 @@
   // Do not strip tags
   if ( preg_match( "/gpm/",      $url ) ||
        preg_match( "/libvdpau/", $url ) ||
+       preg_match( "/imagemagick/", $url ) ||
        preg_match( "/alsa/",     $url ) )
   {
      exec( "wget -q --no-check-certificate -O- $url", $dir );
-- 
http://lists.linuxfromscratch.org/listinfo/blfs-book
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Reply via email to