diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-11-14 10:31:59 -0600 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2022-11-14 10:31:59 -0600 |
commit | 8ffb2771fe68a32357879afdafa3b9d0d63b97ce (patch) | |
tree | 59a32cf63959ef8998b0020f10692d45af62d91a | |
parent | 8e8f87ef14616123ea8ad17ed8bf8cafab2a5692 (diff) |
Update currency for sysvinitwq
-rw-r--r-- | lfs-latest-git.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lfs-latest-git.php b/lfs-latest-git.php index d4f331697..2b3c9ab47 100644 --- a/lfs-latest-git.php +++ b/lfs-latest-git.php @@ -139,6 +139,7 @@ if ( $package == "procps-ng" ) $dirpath = "https://gitlab.com/procps-ng/procps/ if ( $package == "psmisc" ) $dirpath = "https://gitlab.com/psmisc/psmisc/-/tags"; if ( $package == "Python" ) $dirpath = "https://www.python.org/downloads/source/"; if ( $package == "shadow" ) $dirpath = "https://github.com/shadow-maint/shadow/releases"; +if ( $package == "sysvinit" ) $dirpath = "https://github.com/slicer69/sysvinit/releases"; if ( $package == "MarkupSafe" ) $dirpath = "https://pypi.python.org/pypi/MarkupSafe/"; if ( $package == "Jinja" ) $dirpath = "https://pypi.python.org/pypi/Jinja2/"; if ( $package == "systemd" ) $dirpath = "https://github.com/systemd/systemd/releases"; @@ -275,6 +276,9 @@ if ( $package == "zstd" ) $dirpath = "https://github.com/facebook/zstd/rel if ( $package == "shadow" ) return find_max( $lines, "/^\s+\d\./", "/^\s+([\d\.]+)$/" ); + if ( $package == "sysvinit" ) + return find_max( $lines, "/^\s+\d\./", "/^\s+([\d\.]+)$/" ); + if ( $package == "XML-Parser" ) { $max = find_max( $lines, "/$package/", "/^.*$package-([\d\._]*\d).tar.*$/" ); |