summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Jolly <Matt.Jolly@footclan.ninja>2023-11-03 10:05:38 +1000
committerSam James <sam@gentoo.org>2023-11-25 03:59:23 +0000
commitdf2bd4cb4c28062f2a837fff476dc9b5cdfb054d (patch)
tree963884e89acd633a40b3d50f545a7f08619c0462 /app-arch
parentapp-arch/zchunk: add 1.3.2 (diff)
downloadgentoo-df2bd4cb4c28062f2a837fff476dc9b5cdfb054d.tar.gz
gentoo-df2bd4cb4c28062f2a837fff476dc9b5cdfb054d.tar.bz2
gentoo-df2bd4cb4c28062f2a837fff476dc9b5cdfb054d.zip
app-arch/zchunk: drop 1.3.1
Signed-off-by: Matt Jolly <Matt.Jolly@footclan.ninja> Closes: https://github.com/gentoo/gentoo/pull/33655 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r--app-arch/zchunk/Manifest1
-rw-r--r--app-arch/zchunk/zchunk-1.3.1.ebuild37
2 files changed, 0 insertions, 38 deletions
diff --git a/app-arch/zchunk/Manifest b/app-arch/zchunk/Manifest
index 5e3a484be5a3..43c8549fedd5 100644
--- a/app-arch/zchunk/Manifest
+++ b/app-arch/zchunk/Manifest
@@ -1,2 +1 @@
-DIST zchunk-1.3.1.tar.gz 1508699 BLAKE2B a0c6c277b8fd940602c6de680ee3418decdb0f83e3ea345f0c884f704bda67938539ec15a3b0fb1f5e498bb7fa1c420637091c752d8dea6094de3eb98503efb1 SHA512 5eec3ee084f3192291f5956dc797275986ebaa004df580be73de18ff22a781b6c5362bedc6263c9ae3569e5fa12cf5225d87aed7ec4ddfa6210f5c92763566e5
DIST zchunk-1.3.2.tar.gz 1508683 BLAKE2B a8b866d28e3a0f5bf5fda3b44f5f1d0589c374dd700d8c64497d729758e35ed1215367ff8b1114e436a776a419f1aa329f429016981f11c19fd0896db3520811 SHA512 32f3167db747a494373c03941450e8b6b7eb6ad6a07633ccb9dbd3176ffb79073746bbdf3f132605ad51de23b3b20434d1580cf7cd72e0b658263bb32359f5bc
diff --git a/app-arch/zchunk/zchunk-1.3.1.ebuild b/app-arch/zchunk/zchunk-1.3.1.ebuild
deleted file mode 100644
index e89d8926554d..000000000000
--- a/app-arch/zchunk/zchunk-1.3.1.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
-}