Changeset d18d285 for lfs-latest-git.php


Ignore:
Timestamp:
11/08/2021 04:14:24 PM (2 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, arm, bdubbs/gcc13, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
0fc1b27, a150e738
Parents:
3328dfd
Message:

Update currency to use https everywhere

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lfs-latest-git.php

    r3328dfd rd18d285  
    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.