diff options
author | Richard Berger <richard.berger@outlook.com> | 2024-09-14 12:31:15 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-14 13:31:15 -0500 |
commit | 5398b1be15245e1be480c5aa4706f57795208505 (patch) | |
tree | b5e1d098f138cb945b3610c67b35caf89664aa9e | |
parent | a80d2d42d6a9fe1cc1e71b7f8a84b50e084cf1b9 (diff) | |
download | spack-5398b1be15245e1be480c5aa4706f57795208505.tar.gz spack-5398b1be15245e1be480c5aa4706f57795208505.tar.bz2 spack-5398b1be15245e1be480c5aa4706f57795208505.tar.xz spack-5398b1be15245e1be480c5aa4706f57795208505.zip |
texlive: add new versions (#46374)
* texlive: use https
* texlive: add 20230313 and 20240312 versions
-rw-r--r-- | var/spack/repos/builtin/packages/texlive/package.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/texlive/package.py b/var/spack/repos/builtin/packages/texlive/package.py index 27e580cf4c..909aade861 100644 --- a/var/spack/repos/builtin/packages/texlive/package.py +++ b/var/spack/repos/builtin/packages/texlive/package.py @@ -19,8 +19,8 @@ class Texlive(AutotoolsPackage): homepage = "https://www.tug.org/texlive" url = "https://ftp.math.utah.edu/pub/tex/historic/systems/texlive/2020/texlive-20200406-source.tar.xz" - base_url = "http://ftp.math.utah.edu/pub/tex/historic/systems/texlive/{year}/texlive-{version}-{dist}.tar.xz" - list_url = "http://ftp.math.utah.edu/pub/tex/historic/systems/texlive" + base_url = "https://ftp.math.utah.edu/pub/tex/historic/systems/texlive/{year}/texlive-{version}-{dist}.tar.xz" + list_url = "https://ftp.math.utah.edu/pub/tex/historic/systems/texlive" list_depth = 1 license("GPL-2.0-or-later AND GPL-3.0-or-later", checked_by="tgamblin") @@ -28,6 +28,18 @@ class Texlive(AutotoolsPackage): # Add information for new versions below. releases = [ { + "version": "20240312", + "year": "2024", + "sha256_source": "7b6d87cf01661670fac45c93126bed97b9843139ed510f975d047ea938b6fe96", + "sha256_texmf": "c8eae2deaaf51e86d93baa6bbcc4e94c12aa06a0d92893df474cc7d2a012c7a7", + }, + { + "version": "20230313", + "year": "2023", + "sha256_source": "3878aa0e1ed0301c053b0e2ee4e9ad999c441345f4882e79bdd1c8f4ce9e79b9", + "sha256_texmf": "4c4dc77a025acaad90fb6140db2802cdb7ca7a9a2332b5e3d66aa77c43a81253", + }, + { "version": "20220321", "year": "2022", "sha256_source": "5ffa3485e51eb2c4490496450fc69b9d7bd7cb9e53357d92db4bcd4fd6179b56", |