diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-02-20 17:57:01 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-02-20 17:57:01 +0000 |
commit | 787407afaa6607e8ca45151c8ef037b30c43b6a1 (patch) | |
tree | 85e05cde61577f68e29e7db8cce2ec3e41205a43 /lfs-latest.php | |
parent | 56fb88f63d6714a11d0f62d7bd1f7784a624486e (diff) |
Update currency for procps-ng and psmisc
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11755 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lfs-latest.php')
-rw-r--r-- | lfs-latest.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lfs-latest.php b/lfs-latest.php index b1de12689..3d1c243e3 100644 --- a/lfs-latest.php +++ b/lfs-latest.php @@ -120,8 +120,10 @@ if ( $package == "meson" ) $dirpath = "https://github.com/mesonbuild/meson/ if ( $package == "mpc" ) $dirpath = "https://ftp.gnu.org/gnu/mpc"; if ( $package == "mpfr" ) $dirpath = "http://mpfr.loria.fr/mpfr-current"; if ( $package == "ninja" ) $dirpath = "https://github.com/ninja-build/ninja/releases"; -if ( $package == "procps-ng" ) $dirpath = "http://sourceforge.net/projects/procps-ng/files"; -if ( $package == "psmisc" ) $dirpath = "http://sourceforge.net/projects/$package/files"; +//if ( $package == "procps-ng" ) $dirpath = "http://sourceforge.net/projects/procps-ng/files"; +if ( $package == "procps-ng" ) $dirpath = "https://gitlab.com/procps-ng/procps/-/tags"; +//if ( $package == "psmisc" ) $dirpath = "http://sourceforge.net/projects/$package/files"; +if ( $package == "psmisc" ) $dirpath = "https://gitlab.com/psmisc/psmisc/-/tags"; if ( $package == "shadow" ) $dirpath = "https://github.com/shadow-maint/shadow/releases"; if ( $package == "systemd" ) $dirpath = "https://github.com/systemd/systemd/releases"; if ( $package == "tcl" ) $dirpath = "http://sourceforge.net/projects/tcl/files"; @@ -275,6 +277,12 @@ if ( $package == "zstd" ) $dirpath = "https://github.com/facebook/zstd/rel return str_replace( "_", ".", $max ); } + if ( $package == "procps-ng" ) + return find_max( $lines, "/release/", "/^.* ([\d\.]+).*$/" ); + + if ( $package == "psmisc" ) + return find_max( $lines, "/^v/", "/^v([\d\.]+).*$/" ); + if ( $package == "grub" ) return find_max( $lines, "/grub/", "/^.*grub-(\d\..*).tar.xz.*$/" ); |