dcap: add v2.47.13, v2.47.14, avoid bash for sh script (#48123)

* dcap: add v2.47.13, v2.47.14, avoid bash for sh script
* dcap: fix typo
This commit is contained in:
Wouter Deconinck 2024-12-18 19:00:13 -06:00 committed by GitHub
parent 5add010c71
commit 8b11918c1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,11 +12,13 @@ class Dcap(AutotoolsPackage):
homepage = "https://github.com/dCache/dcap"
url = "https://github.com/dCache/dcap/archive/2.47.12.tar.gz"
license("LGPL-2.0-or-later")
license("LGPL-2.0-or-later", checked_by="wdconinc")
version("2.47.14", sha256="dda98990d93cded815ee425101674ad2f48438fff76b3d4d5d3f91e380e9cc49")
version("2.47.13", sha256="ae4a3845b7dd6bc32dc8ba445105e3ce72c1a25aa11da640404f63c89378876b")
version("2.47.12", sha256="050a8d20c241abf358d5d72586f9abc43940e61d9ec9480040ac7da52ec804ac")
depends_on("c", type="build") # generated
depends_on("c", type="build")
depends_on("autoconf", type="build")
depends_on("automake", type="build")
@ -30,5 +32,4 @@ def patch(self):
filter_file("SUBDIRS = .*", "SUBDIRS = src", "Makefile.am")
def autoreconf(self, spec, prefix):
bash = which("bash")
bash("./bootstrap.sh")
Executable("./bootstrap.sh")()