Add latest versions of rlwrap (#40563)

* Add latest versions of rlwrap
* rlwrap: fix URL for v0.46.1
This commit is contained in:
Eric Berquist 2023-10-16 22:28:51 -04:00 committed by GitHub
parent 361a185ddb
commit 2913cd936a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,6 +13,17 @@ class Rlwrap(AutotoolsPackage):
homepage = "https://github.com/hanslub42/rlwrap"
url = "https://github.com/hanslub42/rlwrap/releases/download/v0.43/rlwrap-0.43.tar.gz"
version("0.46.1", sha256="2711986a1248f6ac59e2aecf5586205835970040d300a42b4bf8014397e73e37")
version("0.46", sha256="b4bd79fda824426dae65236e338ba7daf3f0d0acad7c1561d4d5e6dadcfd539d")
version("0.45.2", sha256="9f8870deb46e473d21b5db89d709b6497f4ef9fa06d44eebc5f821daa00c8eca")
version("0.44", sha256="cd7ff50cde66e443cbea0049b4abf1cca64a74948371fa4f1b5d9a5bbce1e13c")
version("0.43", sha256="8e86d0b7882d9b8a73d229897a90edc207b1ae7fa0899dca8ee01c31a93feb2f")
depends_on("readline@4.2:")
def url_for_version(self, version):
if version < Version("0.46.1"):
return super().url_for_version(version)
# The latest release (0.46.1) removed the "v" prefix.
url_fmt = "https://github.com/hanslub42/rlwrap/releases/download/{0}/rlwrap-{0}.tar.gz"
return url_fmt.format(version)