Changeset d18d285
- Timestamp:
- 11/08/2021 04:14:24 PM (2 years ago)
- Branches:
- 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-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/parallelism, xry111/pip3, xry111/rust-wip-20221008
- Children:
- 0fc1b27, a150e738
- Parents:
- 3328dfd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r3328dfd rd18d285 3 3 version.ent 4 4 appendices/*.script 5 *.swp 5 6 -
lfs-latest-git.php
r3328dfd rd18d285 111 111 if ( $package == "bc" ) $dirpath = "https://github.com/gavinhoward/bc/releases"; 112 112 if ( $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";113 if ( $package == "e2fsprogs" ) $dirpath = "https://sourceforge.net/projects/e2fsprogs/files/e2fsprogs"; 114 if ( $package == "expat" ) $dirpath = "https://sourceforge.net/projects/expat/files"; 115 115 if ( $package == "elfutils" ) $dirpath = "https://sourceware.org/ftp/elfutils"; 116 if ( $package == "expect" ) $dirpath = "http ://sourceforge.net/projects/expect/files";116 if ( $package == "expect" ) $dirpath = "https://sourceforge.net/projects/expect/files"; 117 117 if ( $package == "file" ) $dirpath = "https://github.com/file/file/tags"; 118 118 if ( $package == "flex" ) $dirpath = "https://github.com/westes/flex/releases"; … … 123 123 if ( $package == "meson" ) $dirpath = "https://github.com/mesonbuild/meson/releases"; 124 124 if ( $package == "mpc" ) $dirpath = "https://ftp.gnu.org/gnu/mpc"; 125 if ( $package == "mpfr" ) $dirpath = "http://mpfr.loria.fr/mpfr-current"; 125 if ( $package == "mpfr" ) $dirpath = "https://mpfr.loria.fr/mpfr-current"; 126 if ( $package == "ncurses" ) $dirpath = "https://invisible-mirror.net/archives/ncurses"; 126 127 if ( $package == "ninja" ) $dirpath = "https://github.com/ninja-build/ninja/releases"; 127 128 if ( $package == "procps-ng" ) $dirpath = "https://gitlab.com/procps-ng/procps/-/tags"; … … 132 133 if ( $package == "Jinja" ) $dirpath = "https://pypi.python.org/pypi/Jinja2/"; 133 134 if ( $package == "systemd" ) $dirpath = "https://github.com/systemd/systemd/releases"; 134 if ( $package == "tcl" ) $dirpath = "http ://sourceforge.net/projects/tcl/files";135 if ( $package == "tcl" ) $dirpath = "https://sourceforge.net/projects/tcl/files"; 135 136 if ( $package == "util-linux" ) $dirpath = max_parent( $dirpath, "v." ); 136 137 if ( $package == "vim" ) $dirpath = "https://github.com/vim/vim/tags"; 137 138 if ( $package == "zstd" ) $dirpath = "https://github.com/facebook/zstd/releases"; 138 //if ( $package == "vim" ) $dirpath = "ftp://ftp.vim.org/pub/vim/unix";139 139 140 140 // Check for ftp 141 141 if ( preg_match( "/^ftp/", $dirpath ) ) 142 142 { 143 echo "ftp should not occur\n"; 144 /* 143 145 $dirpath = substr( $dirpath, 6 ); // Remove ftp:// 144 146 $dirpath = rtrim ( $dirpath, "/" ); // Trim any trailing slash … … 186 188 $lines = ftp_rawlist ($conn, $path); 187 189 ftp_close( $conn ); 190 */ 188 191 } 189 192 else // http(s) … … 411 414 412 415 exec ( "echo '$message' | mailx -r $from -s '$subject' $to" ); 413 //echo $message;414 416 } 415 417
Note:
See TracChangeset
for help on using the changeset viewer.