squashfuse: remove url_for_version (#40862)
0.5.0 tarball now has the 'v' removed from the name
This commit is contained in:
parent
0f1898c82a
commit
70171d6caf
1 changed files with 1 additions and 8 deletions
|
@ -10,6 +10,7 @@ class Squashfuse(AutotoolsPackage):
|
||||||
"""squashfuse - Mount SquashFS archives using FUSE"""
|
"""squashfuse - Mount SquashFS archives using FUSE"""
|
||||||
|
|
||||||
homepage = "https://github.com/vasi/squashfuse"
|
homepage = "https://github.com/vasi/squashfuse"
|
||||||
|
url = "https://github.com/vasi/squashfuse/releases/download/0.1.104/squashfuse-0.1.104.tar.gz"
|
||||||
git = "https://github.com/vasi/squashfuse.git"
|
git = "https://github.com/vasi/squashfuse.git"
|
||||||
|
|
||||||
maintainers("haampie")
|
maintainers("haampie")
|
||||||
|
@ -51,14 +52,6 @@ class Squashfuse(AutotoolsPackage):
|
||||||
depends_on("automake", type="build", when="@master")
|
depends_on("automake", type="build", when="@master")
|
||||||
depends_on("libtool", type="build", when="@master")
|
depends_on("libtool", type="build", when="@master")
|
||||||
|
|
||||||
def url_for_version(self, version):
|
|
||||||
url = "https://github.com/vasi/squashfuse/releases/download/"
|
|
||||||
if version == Version("0.5.0"):
|
|
||||||
url += "v{}/squashfuse-{}.tar.gz"
|
|
||||||
else:
|
|
||||||
url += "{}/squashfuse-{}.tar.gz"
|
|
||||||
return url.format(version, version)
|
|
||||||
|
|
||||||
def flag_handler(self, name, flags):
|
def flag_handler(self, name, flags):
|
||||||
if name == "cflags" and "+min_size" in self.spec:
|
if name == "cflags" and "+min_size" in self.spec:
|
||||||
if "-Os" in self.compiler.opt_flags:
|
if "-Os" in self.compiler.opt_flags:
|
||||||
|
|
Loading…
Reference in a new issue