mark more things as build-tools (#42110)

This commit is contained in:
Tom Scogland 2024-01-16 17:33:23 -08:00 committed by GitHub
parent c4d2f11368
commit c05ed2c31a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 8 additions and 2 deletions

View File

@ -18,6 +18,7 @@ class Gettext(AutotoolsPackage, GNUMirrorPackage):
maintainers("michaelkuhn")
executables = [r"^gettext$"]
tags = ["build-tools"]
license("GPL-3.0-or-later AND LGPL-2.1-or-later AND MIT")

View File

@ -16,6 +16,7 @@ class Gnuconfig(Package):
homepage = "https://www.gnu.org/software/config/"
git = "https://github.com/spack/gnuconfig.git"
url = "https://github.com/spack/gnuconfig/releases/download/2021-08-14/gnuconfig-2021-08-14.tar.gz"
tags = ["build-tools"]
maintainers("haampie")

View File

@ -11,6 +11,7 @@ class Libxcrypt(AutotoolsPackage):
homepage = "https://github.com/besser82/libxcrypt"
url = "https://github.com/besser82/libxcrypt/releases/download/v4.4.30/libxcrypt-4.4.30.tar.xz"
tags = ["build-tools"]
maintainers("haampie")
def url_for_version(self, version):

View File

@ -30,7 +30,7 @@ class Perl(Package): # Perl doesn't use Autotools, it should subclass Package
homepage = "https://www.perl.org"
# URL must remain http:// so Spack can bootstrap curl
url = "http://www.cpan.org/src/5.0/perl-5.34.0.tar.gz"
tags = ["windows"]
tags = ["windows", "build-tools"]
maintainers("LydDeb")

View File

@ -15,6 +15,7 @@ class Pkgconf(AutotoolsPackage):
homepage = "http://pkgconf.org/"
# URL must remain http:// so Spack can bootstrap curl
url = "https://distfiles.ariadne.space/pkgconf/pkgconf-1.6.3.tar.xz"
tags = ["build-tools"]
license("ISC")

View File

@ -30,7 +30,7 @@ class Python(Package):
url = "https://www.python.org/ftp/python/3.8.0/Python-3.8.0.tgz"
list_url = "https://www.python.org/ftp/python/"
list_depth = 1
tags = ["windows"]
tags = ["windows", "build-tools"]
maintainers("adamjstewart", "skosukhin", "scheibelp")

View File

@ -25,6 +25,8 @@ class Sed(AutotoolsPackage, GNUMirrorPackage):
executables = ["^sed$"]
tags = ["build-tools"]
def url_for_version(self, version):
if Version("4.2") <= version < Version("4.3.0"):
self.gnu_mirror_path = "sed/sed-{0}.tar.bz2".format(version)