Changeset 13342a0


Ignore:
Timestamp:
09/17/2022 08:43:51 PM (19 months ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, bdubbs/gcc13, multilib, renodr/libudev-from-systemd, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
4fb696f
Parents:
ea94a21
Message:

Currency updates.
Fix currency for iana-etc, meson, and shadow due to the way github
changes when accessing pages via wget.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lfs-latest-git.php

    rea94a21 r13342a0  
    3535     // Isolate the version and put in an array
    3636     $slice = preg_replace( $regex_replace, "$1", $line );
    37      if ( $slice == $line ) continue;
     37     if ( strcmp( $slice, $line ) == 0 ) continue;
    3838
    3939     array_push( $a, $slice );
     
    267267     return find_max( $lines, "/^\d/", "/^(\d[\d\.]+\d)\/.*$/" );
    268268
     269  if ( $package == "iana-etc" )
     270     return find_max( $lines, "/^\s*20\d\d/", "/^\s+(\d+).*$/" );
     271
     272  if ( $package == "meson" )
     273     return find_max( $lines, "/^\s+\d\./", "/^\s+([\d\.]+)$/" );
     274
     275  if ( $package == "shadow" )
     276     return find_max( $lines, "/^\s+\d\./", "/^\s+([\d\.]+)$/" );
     277
    269278  if ( $package == "XML-Parser" )
    270279  {
Note: See TracChangeset for help on using the changeset viewer.