From 2bb8d652aff41aeb31310225f841d61792434895 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 27 Mar 2023 09:20:03 -0300 Subject: [PATCH] [Dependency Downloader][Fixed] Problems with Ghostscript 10 release - No Linux binaries are currently available --- kibot/dep_downloader.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kibot/dep_downloader.py b/kibot/dep_downloader.py index c0f8a461..5a346008 100644 --- a/kibot/dep_downloader.py +++ b/kibot/dep_downloader.py @@ -496,7 +496,9 @@ def gs_downloader(dep, system, plat): logger.debug('- No binary for this system') return None, None # Get the download page - url = 'https://api.github.com/repos/ArtifexSoftware/ghostpdl-downloads/releases/latest' + # url = 'https://api.github.com/repos/ArtifexSoftware/ghostpdl-downloads/releases/latest' + # 2023-03-27: 10.x doesn't contain Linux binaries (yet?) + url = 'https://api.github.com/repos/ArtifexSoftware/ghostpdl-downloads/releases/tags/gs9561' r = get_request(url) if r.status_code != 200: logger.debug('- Failed to download `{}`'.format(dep.url_down))