Changeset a150e738
- Timestamp:
- 11/09/2021 04:45:14 AM (23 months ago)
- 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. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rb08c451 ra150e738 3 3 version.ent 4 4 appendices/*.script 5 *.swp 5 6 -
lfs-latest-git.php
rb08c451 ra150e738 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.