diff options
author | Piotr Karbowski <slashbeast@gentoo.org> | 2020-06-06 23:17:05 +0200 |
---|---|---|
committer | Piotr Karbowski <slashbeast@gentoo.org> | 2020-06-06 23:17:32 +0200 |
commit | 9247fcd98b8728fa1aced9119bf5290c19c60254 (patch) | |
tree | ba2bbde4438d2acfe7931fef03317b7d90911af4 /net-misc/axel | |
parent | media-gfx/inkscape: Drop old (diff) | |
download | gentoo-9247fcd98b8728fa1aced9119bf5290c19c60254.tar.gz gentoo-9247fcd98b8728fa1aced9119bf5290c19c60254.tar.bz2 gentoo-9247fcd98b8728fa1aced9119bf5290c19c60254.zip |
net-misc/axel: 2.17.7 drop.
Bug: https://bugs.gentoo.org/725632
Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
Diffstat (limited to 'net-misc/axel')
-rw-r--r-- | net-misc/axel/Manifest | 1 | ||||
-rw-r--r-- | net-misc/axel/axel-2.17.7.ebuild | 48 |
2 files changed, 0 insertions, 49 deletions
diff --git a/net-misc/axel/Manifest b/net-misc/axel/Manifest index 13a1f6526d2b..4c4c4c48fb79 100644 --- a/net-misc/axel/Manifest +++ b/net-misc/axel/Manifest @@ -1,2 +1 @@ -DIST axel-2.17.7.tar.xz 202632 BLAKE2B 2d799ad39c0742e2edfa09dd19f9d941c54c6136f4d5ec5a95f85d338bdebcc79545205cd1dde6ef25d28c89f494ae3cc278c73e375c9f4a96dabff73b139257 SHA512 ed1815199a7cc78897a820e1938a80dba72b83e1b40e6c1e81c6d3457aaa17faf20148a82383768524d61bbabda5b00cdcb2c15ff8ae5ed74e415da0b53be3aa DIST axel-2.17.8.tar.xz 201224 BLAKE2B 0a10187013aa888ae8fa7f165b88955f5a7d63241157f552778c042eaecc7873e10e27537a8c7a26a09df5e655097845037f23a6c39f4d46328d633f944a316a SHA512 9158cc0f1c7b54d84e5c15331ddcf6056b5eb654c0ad068e058eedbea99bb87c1b2e759b57872a86d76d83d6807500989ad6bbf87f1c0210db2d4dab100933ea diff --git a/net-misc/axel/axel-2.17.7.ebuild b/net-misc/axel/axel-2.17.7.ebuild deleted file mode 100644 index 72e5d4d16651..000000000000 --- a/net-misc/axel/axel-2.17.7.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools - -DESCRIPTION="Light Unix download accelerator" -HOMEPAGE="https://github.com/axel-download-accelerator/axel" -SRC_URI="https://github.com/axel-download-accelerator/axel/releases/download/v${PV}/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~hppa ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc64-solaris" -IUSE="debug libressl nls ssl" - -CDEPEND=" - ssl? ( - !libressl? ( dev-libs/openssl:0= ) - libressl? ( dev-libs/libressl:0= ) - ) -" -DEPEND="${CDEPEND} - nls? ( sys-devel/gettext )" -RDEPEND="${CDEPEND} - nls? ( virtual/libintl virtual/libiconv )" - -DOCS=( doc/. ) - -src_configure() { - econf \ - $(use_enable nls) \ - $(use_with ssl) -} - -pkg_postinst() { - einfo 'To use axel with portage, create a script in' - einfo '/usr/local/bin/fetchwrapper.sh with the following content:' - einfo - einfo ' #!/bin/bash' - einfo ' set -e' - einfo ' /usr/bin/axel -o "$1.axel" "$2"' - einfo ' mv "$1.axel" "$1"' - einfo - einfo 'and then add the following to your make.conf:' - einfo ' FETCHCOMMAND='\''/usr/local/bin/fetchwrapper.sh "\${DISTDIR}/\${FILE}" "\${URI}"'\' - einfo ' RESUMECOMMAND="${FETCHCOMMAND}"' -} |