summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jolly <Matt.Jolly@footclan.ninja>2023-05-14 22:44:28 +1000
committerSam James <sam@gentoo.org>2023-05-17 02:33:27 +0100
commit8745a841c5ee453ba51a47a26083ad161e105298 (patch)
tree241812f6ccb2342d152ec5ef0899c9edaa47bbe0
parentapp-arch/zchunk: add 1.3.1 (diff)
downloadgentoo-8745a841c5ee453ba51a47a26083ad161e105298.tar.gz
gentoo-8745a841c5ee453ba51a47a26083ad161e105298.tar.bz2
gentoo-8745a841c5ee453ba51a47a26083ad161e105298.zip
app-arch/zchunk: drop 1.2.3
Signed-off-by: Matt Jolly <Matt.Jolly@footclan.ninja> Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--app-arch/zchunk/Manifest1
-rw-r--r--app-arch/zchunk/zchunk-1.2.3.ebuild37
2 files changed, 0 insertions, 38 deletions
diff --git a/app-arch/zchunk/Manifest b/app-arch/zchunk/Manifest
index 14e50d9711c3..d498557c5ecd 100644
--- a/app-arch/zchunk/Manifest
+++ b/app-arch/zchunk/Manifest
@@ -1,2 +1 @@
-DIST zchunk-1.2.3.tar.gz 1508271 BLAKE2B 7432289f3730083d0634c32f03d1daf2570c21e94ebab0aabeee4527f7ba56aef5cc567dfdb8ede701bea5d0cda4f248f0cf0fdb04e4f5ee1effb888a2907ec9 SHA512 5e46d8c3e36034de8424937cdfac59acdfaf332203e6e5d8b290614cbbe0340998d53b0583b0ef93189f41dc89219a75f50572757ebcea9abd83bd9aad861a73
DIST zchunk-1.3.1.tar.gz 1508699 BLAKE2B a0c6c277b8fd940602c6de680ee3418decdb0f83e3ea345f0c884f704bda67938539ec15a3b0fb1f5e498bb7fa1c420637091c752d8dea6094de3eb98503efb1 SHA512 5eec3ee084f3192291f5956dc797275986ebaa004df580be73de18ff22a781b6c5362bedc6263c9ae3569e5fa12cf5225d87aed7ec4ddfa6210f5c92763566e5
diff --git a/app-arch/zchunk/zchunk-1.2.3.ebuild b/app-arch/zchunk/zchunk-1.2.3.ebuild
deleted file mode 100644
index e89d8926554d..000000000000
--- a/app-arch/zchunk/zchunk-1.2.3.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="File format designed for highly efficient deltas with good compression"
-HOMEPAGE="https://github.com/zchunk/zchunk"
-
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/zchunk/zchunk.git"
-else
- SRC_URI="https://github.com/zchunk/zchunk/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
- app-arch/zstd:=
- net-misc/curl
- dev-libs/openssl:=
-"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local emesonargs=(
- $(meson_use test tests)
- )
-
- meson_src_configure
-}