summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-10-19 11:50:24 +0200
committerMichał Górny <mgorny@gentoo.org>2018-10-19 11:50:24 +0200
commit0bf57ce3366e4e29927b4c3e6ccdd0e2d6455036 (patch)
tree3f21b7db7d964e8409e82c2ccdcd739f8bb7ffe9
parentbf7b36dfdbf7c6d88bd2e86c4c1e92a07b11a295 (diff)
downloadgentoo-0bf57ce3366e4e29927b4c3e6ccdd0e2d6455036.tar.gz
gentoo-0bf57ce3366e4e29927b4c3e6ccdd0e2d6455036.tar.xz
dev-util/squashdelta: Drop old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--dev-util/squashdelta/Manifest1
-rw-r--r--dev-util/squashdelta/squashdelta-0.1.ebuild35
2 files changed, 0 insertions, 36 deletions
diff --git a/dev-util/squashdelta/Manifest b/dev-util/squashdelta/Manifest
index 82dff9aaff5..2eff03e6287 100644
--- a/dev-util/squashdelta/Manifest
+++ b/dev-util/squashdelta/Manifest
@@ -1,2 +1 @@
DIST squashdelta-0.1.1.tar.bz2 78504 BLAKE2B f9aa13b3af35bd97650b31fac718837763b73c2817548a3fde75841993092d717ea78826a3e29d472290d4f9164f8cfcc9f9999613f199c21251080584dbd9f7 SHA512 efe90831e412ed6627d44390054dc89339e85bcd3be452f16fb32d00989bbdc9480dbefcea624941b4866a686a356b0371c33de31903afa70af26eecbe902844
-DIST squashdelta-0.1.tar.bz2 77702 BLAKE2B c36a90e5bb0c22519fdd6229131039b881ccda82117a8180959e463debf767bc2382cc7e38645003cb23ae8e58492aaed849d1951adaedea56837900fda0025f SHA512 1ce93b59b6c51be49aaaee9576049677c8ba146fa3a17c7d3552440a1c0ebe93fb4d8cbe1182db691e2c9552713ecfeef0e50d95f7e94218c341c51364bf724f
diff --git a/dev-util/squashdelta/squashdelta-0.1.ebuild b/dev-util/squashdelta/squashdelta-0.1.ebuild
deleted file mode 100644
index 64d10780342..00000000000
--- a/dev-util/squashdelta/squashdelta-0.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools-utils
-
-DESCRIPTION="Efficient (partially uncompressed) SquashFS binary delta tool"
-HOMEPAGE="https://github.com/mgorny/squashdelta/"
-SRC_URI="https://www.github.com/mgorny/${PN}/releases/download/v${PV}/${P}.tar.bz2"
-
-# uses public-domain murmurhash3
-LICENSE="BSD public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="lz4 +lzo"
-
-COMMON_DEPEND="
- lz4? ( app-arch/lz4:0= )
- lzo? ( dev-libs/lzo:2= )"
-RDEPEND="${COMMON_DEPEND}
- dev-util/xdelta:3"
-DEPEND=${COMMON_DEPEND}
-
-# SquashDelta does not make much sense without a compression algo.
-REQUIRED_USE="|| ( lz4 lzo )"
-
-src_configure() {
- local myeconfargs=(
- $(use_enable lz4)
- $(use_enable lzo)
- )
-
- autotools-utils_src_configure
-}