sed: add v4.8.0, set gnu_mirror_path per version (#30666)

This commit is contained in:
Alex Hedges 2022-05-17 03:43:01 -04:00 committed by GitHub
parent 5153c9e98c
commit 446cbf4b5a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,12 +11,20 @@
class Sed(AutotoolsPackage, GNUMirrorPackage): class Sed(AutotoolsPackage, GNUMirrorPackage):
"""GNU implementation of the famous stream editor.""" """GNU implementation of the famous stream editor."""
homepage = "https://www.gnu.org/software/sed/" homepage = "https://www.gnu.org/software/sed/"
gnu_mirror_path = "sed/sed-4.2.2.tar.bz2" gnu_mirror_path = "sed/sed-4.8.tar.xz"
version('4.8', sha256='f79b0cfea71b37a8eeec8490db6c5f7ae7719c35587f21edb0617f370eeff633')
version('4.2.2', sha256='f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7') version('4.2.2', sha256='f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7')
executables = ['^sed$'] executables = ['^sed$']
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)
elif version < Version("4.2"):
self.gnu_mirror_path = "sed/sed-{0}.tar.gz".format(version)
return super(Sed, self).url_for_version(version)
@classmethod @classmethod
def determine_version(cls, exe): def determine_version(cls, exe):
output = Executable(exe)('--version', output=str, error=str) output = Executable(exe)('--version', output=str, error=str)