Changeset c093e6b for lfs-latest-git.php


Ignore:
Timestamp:
10/01/2022 10:30:12 PM (19 months ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
f3b2f16
Parents:
f29824e (diff), 4349661 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lfs-latest-git.php

    rf29824e rc093e6b  
    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  {
     
    292301     return str_replace( "_", ".", $max );
    293302  }
     303
     304  if ( $package == "libffi" )
     305     return find_max( $lines, "/v\d/", "/^.*v([\d\.]+)$/" );
    294306
    295307  if ( $package == "procps-ng" )
Note: See TracChangeset for help on using the changeset viewer.