Ignore:
Timestamp:
11/09/2021 04:45:14 AM (2 years ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
384c707
Parents:
b08c451 (diff), d18d285 (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

    rb08c451 ra150e738  
    111111if ( $package == "bc"         ) $dirpath = "https://github.com/gavinhoward/bc/releases";
    112112if ( $package == "check"      ) $dirpath = "https://github.com/libcheck/check/releases";
    113 if ( $package == "e2fsprogs"  ) $dirpath = "https://sourceforge.net/projects/e2fsprogs/files/e2fsprogs/";
    114 if ( $package == "expat"      ) $dirpath = "http://sourceforge.net/projects/expat/files";
     113if ( $package == "e2fsprogs"  ) $dirpath = "https://sourceforge.net/projects/e2fsprogs/files/e2fsprogs";
     114if ( $package == "expat"      ) $dirpath = "https://sourceforge.net/projects/expat/files";
    115115if ( $package == "elfutils"   ) $dirpath = "https://sourceware.org/ftp/elfutils";
    116 if ( $package == "expect"     ) $dirpath = "http://sourceforge.net/projects/expect/files";
     116if ( $package == "expect"     ) $dirpath = "https://sourceforge.net/projects/expect/files";
    117117if ( $package == "file"       ) $dirpath = "https://github.com/file/file/tags";
    118118if ( $package == "flex"       ) $dirpath = "https://github.com/westes/flex/releases";
     
    123123if ( $package == "meson"      ) $dirpath = "https://github.com/mesonbuild/meson/releases";
    124124if ( $package == "mpc"        ) $dirpath = "https://ftp.gnu.org/gnu/mpc";
    125 if ( $package == "mpfr"       ) $dirpath = "http://mpfr.loria.fr/mpfr-current";
     125if ( $package == "mpfr"       ) $dirpath = "https://mpfr.loria.fr/mpfr-current";
     126if ( $package == "ncurses"    ) $dirpath = "https://invisible-mirror.net/archives/ncurses";
    126127if ( $package == "ninja"      ) $dirpath = "https://github.com/ninja-build/ninja/releases";
    127128if ( $package == "procps-ng"  ) $dirpath = "https://gitlab.com/procps-ng/procps/-/tags";
     
    132133if ( $package == "Jinja"      ) $dirpath = "https://pypi.python.org/pypi/Jinja2/";
    133134if ( $package == "systemd"    ) $dirpath = "https://github.com/systemd/systemd/releases";
    134 if ( $package == "tcl"        ) $dirpath = "http://sourceforge.net/projects/tcl/files";
     135if ( $package == "tcl"        ) $dirpath = "https://sourceforge.net/projects/tcl/files";
    135136if ( $package == "util-linux" ) $dirpath = max_parent( $dirpath, "v." );
    136137if ( $package == "vim"        ) $dirpath = "https://github.com/vim/vim/tags";
    137138if ( $package == "zstd"       ) $dirpath = "https://github.com/facebook/zstd/releases";
    138 //if ( $package == "vim"        ) $dirpath = "ftp://ftp.vim.org/pub/vim/unix";
    139139
    140140  // Check for ftp
    141141  if ( preg_match( "/^ftp/", $dirpath ) )
    142142  {
     143    echo "ftp should not occur\n";
     144  /*
    143145    $dirpath  = substr( $dirpath, 6 );           // Remove ftp://
    144146    $dirpath  = rtrim ( $dirpath, "/" );         // Trim any trailing slash
     
    186188    $lines = ftp_rawlist ($conn, $path);
    187189    ftp_close( $conn );
     190*/
    188191  }
    189192  else // http(s)
     
    411414
    412415   exec ( "echo '$message' | mailx -r $from -s '$subject' $to" );
    413    //echo $message;
    414416}
    415417
Note: See TracChangeset for help on using the changeset viewer.