aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Lloro <ivan.lloro.boada@gmail.com>2024-06-30 00:13:50 +0200
committerIvan Lloro <ivan.lloro.boada@gmail.com>2024-06-30 00:13:50 +0200
commit15a574302826f97722e7f7a5eca7bdb1edfca251 (patch)
treef21c54deb2fd67ae1337b3454103be192ee5ed07 /app-crypt
parentmail-filter/opensmtpd-filter-dkimsign: treeclean, moved to ::gentoo (diff)
downloadguru-15a574302826f97722e7f7a5eca7bdb1edfca251.tar.gz
guru-15a574302826f97722e7f7a5eca7bdb1edfca251.tar.bz2
guru-15a574302826f97722e7f7a5eca7bdb1edfca251.zip
app-crypt/autofirma: Included fallback method for automatically downloading source file.
Signed-off-by: Ivan Lloro <ivan.lloro.boada@gmail.com>
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/autofirma/autofirma-1.8.3.ebuild9
1 files changed, 8 insertions, 1 deletions
diff --git a/app-crypt/autofirma/autofirma-1.8.3.ebuild b/app-crypt/autofirma/autofirma-1.8.3.ebuild
index 3d2d98588..f9d8c773f 100644
--- a/app-crypt/autofirma/autofirma-1.8.3.ebuild
+++ b/app-crypt/autofirma/autofirma-1.8.3.ebuild
@@ -11,7 +11,8 @@ HOMEPAGE="
https://github.com/ctt-gob-es/clienteafirma
"
-# Upstream blocks wget with no User Agent.
+# Upstream blocks wget with no User Agent. It can be addressed globally (see https://wiki.gentoo.org/wiki/FETCHCOMMAND).
+# If Gentoo's default configuration is in place, pkg_pretend() and pkg_nofetch() provide fallback options.
SRC_URI="https://estaticos.redsara.es/comunes/autofirma/$(ver_rs 1- /)/AutoFirma_Linux_Fedora.zip -> ${P}.zip"
S=${WORKDIR}
@@ -23,6 +24,12 @@ KEYWORDS="~amd64"
RDEPEND="virtual/jre:1.8"
BDEPEND="app-arch/unzip"
+pkg_pretend() {
+ # Upstream blocks vanilla wget, so we set up a browser User-Agent as a fallback.
+ URI="https://estaticos.redsara.es/comunes/autofirma/$(ver_rs 1- /)/AutoFirma_Linux_Fedora.zip"
+ /usr/sbin/wget --user-agent="Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0" "${URI}" -O "${PORTAGE_ACTUAL_DISTDIR}"/"${P}".zip
+}
+
pkg_nofetch() {
einfo "Please download:"
einfo " https://estaticos.redsara.es/comunes/autofirma/$(ver_rs 1- /)/AutoFirma_Linux_Fedora.zip"