diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-03-01 19:08:01 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2020-03-01 19:08:01 +0000 |
commit | 230ced1248d18979cbf57fbb9e23aa5c3bbcf3ac (patch) | |
tree | f9513474510d6e4b6fbf59643581e6db915c53e7 /lfs-latest.php | |
parent | 20a4d103a0f8ba47d37d7eb80ed20dfd18927e87 (diff) |
Fix currency for Python
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11765 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lfs-latest.php')
-rw-r--r-- | lfs-latest.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lfs-latest.php b/lfs-latest.php index 3d1c243e3..629ce3192 100644 --- a/lfs-latest.php +++ b/lfs-latest.php @@ -16,6 +16,7 @@ $regex[ 'check' ] = "/^.*Check (\d[\d\.]+\d).*$/"; $regex[ 'intltool' ] = "/^.*Latest version is (\d[\d\.]+\d).*$/"; $regex[ 'less' ] = "/^.*current released version is less-(\d+).*$/"; $regex[ 'mpfr' ] = "/^mpfr-([\d\.]+)\.tar.*$/"; +$regex[ 'Python' ] = "/^.*Latest Python 3.*Python (3[\d\.]+\d).*$/"; $regex[ 'systemd' ] = "/^.*v([\d]+)$/"; //$regex[ 'sysvinit' ] = "/^.*sysvinit-([\d\.]+)dsf\.tar.*$/"; $regex[ 'tzdata' ] = "/^.*tzdata([\d]+[a-z]).*$/"; @@ -124,6 +125,7 @@ if ( $package == "ninja" ) $dirpath = "https://github.com/ninja-build/ninja 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 == "Python" ) $dirpath = "https://www.python.org/downloads/source/"; 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"; |