summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-30 21:00:19 +0100
committerAndreas K. Hüttel <dilfridge@gentoo.org>2024-10-30 21:02:20 +0100
commitf2ec35aec6da740e2ac2cca261a3be873be4caa5 (patch)
tree024f57860457397804a1beb576d8bf21eca796c6 /net-misc/zsync
parentx11-terms/kitty: add 0.37.0 (diff)
downloadgentoo-f2ec35aec6da740e2ac2cca261a3be873be4caa5.tar.gz
gentoo-f2ec35aec6da740e2ac2cca261a3be873be4caa5.tar.bz2
gentoo-f2ec35aec6da740e2ac2cca261a3be873be4caa5.zip
net-misc/zsync: drop 0.6.2-r2
Bug: https://bugs.gentoo.org/898062 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to 'net-misc/zsync')
-rw-r--r--net-misc/zsync/zsync-0.6.2-r2.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/net-misc/zsync/zsync-0.6.2-r2.ebuild b/net-misc/zsync/zsync-0.6.2-r2.ebuild
deleted file mode 100644
index 1c720f6dd78f..000000000000
--- a/net-misc/zsync/zsync-0.6.2-r2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-ZLIB_PV=1.2.3
-ZLIB_P="zlib-${ZLIB_PV}"
-
-DESCRIPTION="Partial/differential file download client over HTTP using the rsync algorithm"
-HOMEPAGE="http://zsync.moria.org.uk/"
-SRC_URI="
- http://zsync.moria.org.uk/download/${P}.tar.bz2
- http://www.gzip.org/zlib/${ZLIB_P}.tar.bz2
- http://www.zlib.net/${ZLIB_P}.tar.bz2"
-ZLIB_S="${WORKDIR}/${ZLIB_P}"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 x86"
-
-src_prepare() {
- default
- # Move old zlib-1.2.11 out the way
- mv "${S}"/zlib zlib-1.2.11-modified || die
-
- cd "${ZLIB_S}" || die
- # I am not sure how many other zlib patches we will need to port as well
- # This covers the security vuln in 1.2.11
- eapply "${FILESDIR}"/${P}-${ZLIB_P}-support.patch
- rm Makefile || die
-
- cd "${S}" || die
- cp -a "${ZLIB_S}" "${ZLIB_P}-modified" || die
- ln -s "${ZLIB_P}-modified" zlib || die
-
- eautoreconf
-}
-
-src_install() {
- dobin zsync zsyncmake
- dodoc NEWS README
- doman doc/zsync.1 doc/zsyncmake.1
-}