cups: fix url; add v2.4.10 (#46624)

Co-authored-by: wdconinc <wdconinc@users.noreply.github.com>
This commit is contained in:
Wouter Deconinck 2024-09-30 03:47:53 -05:00 committed by GitHub
parent d48cf4ea3e
commit 6ea8079919
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,18 +14,25 @@ class Cups(AutotoolsPackage):
install."""
homepage = "https://www.cups.org/"
url = "https://github.com/apple/cups/releases/download/v2.2.3/cups-2.2.3-source.tar.gz"
url = (
"https://github.com/OpenPrinting/cups/releases/download/v2.4.10/cups-2.4.10-source.tar.gz"
)
license("Apache-2.0")
license("Apache-2.0", checked_by="wdconinc")
version("2.4.10", sha256="d75757c2bc0f7a28b02ee4d52ca9e4b1aa1ba2affe16b985854f5336940e5ad7")
version("2.3.3", sha256="261fd948bce8647b6d5cb2a1784f0c24cc52b5c4e827b71d726020bcc502f3ee")
version("2.2.3", sha256="66701fe15838f2c892052c913bde1ba106bbee2e0a953c955a62ecacce76885f")
depends_on("c", type="build") # generated
depends_on("cxx", type="build") # generated
depends_on("c", type="build")
depends_on("cxx", type="build")
depends_on("pkgconfig", type="build")
depends_on("gnutls")
depends_on("pkgconfig", type="build")
def url_for_version(self, version):
org = "apple" if version < Version("2.4") else "OpenPrinting"
return f"https://github.com/{org}/cups/releases/download/v{version}/cups-{version}-source.tar.gz"
def configure_args(self):
args = ["--enable-gnutls", "--with-components=core"]