mark more things as build-tools (#42110)
This commit is contained in:
parent
c4d2f11368
commit
c05ed2c31a
@ -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")
|
||||
|
||||
|
@ -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")
|
||||
|
||||
|
@ -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):
|
||||
|
@ -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")
|
||||
|
||||
|
@ -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")
|
||||
|
||||
|
@ -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")
|
||||
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user