Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/plzip/
Date: Thu, 26 Dec 2019 10:53:32
Message-Id: 1577357599.5c62d9d31160330e8277c15f9beab02c79fbea31.mgorny@gentoo
1 commit: 5c62d9d31160330e8277c15f9beab02c79fbea31
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 26 10:50:05 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 26 10:53:19 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c62d9d3
7
8 app-arch/plzip: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-arch/plzip/Manifest | 1 -
13 app-arch/plzip/plzip-1.6.ebuild | 31 -------------------------------
14 2 files changed, 32 deletions(-)
15
16 diff --git a/app-arch/plzip/Manifest b/app-arch/plzip/Manifest
17 index 6b472e35175..ac879667e47 100644
18 --- a/app-arch/plzip/Manifest
19 +++ b/app-arch/plzip/Manifest
20 @@ -1,2 +1 @@
21 -DIST plzip-1.6.tar.gz 66214 BLAKE2B 8f3865b8170c456cd37ac550b68e0846316f4c7329dda4470b3298d139ca392d000a357a1ec52c0f7c2303e6612ea4a1204e93c2fa487e70f387d9cffe96c21b SHA512 14f794e290eb58bcdf1fc5699c08c36f57473e36eeb3920dff519741c4265883f8ee348095a9315562812574c3f5ece7bd7ef4a11fbd955fe2ee54e361900f77
22 DIST plzip-1.8.tar.gz 72365 BLAKE2B 66b8881b6c70932c66e40edab22235103d671a870c980c0b0b08754e94fbc1b2d0f2eeb26deac4f27fbc89d69c3b588bd51cb973b7b59cbb2d0f6ab4cc9a115d SHA512 e8e822f8ae77e06178538b62075fa1c5d9cbc76c78bee7ad595a4637cd4077f53fd9e3fe61ca3fbddaa8b950e739d97527dc8fbecae04de1ac3ef83d0d5f13b4
23
24 diff --git a/app-arch/plzip/plzip-1.6.ebuild b/app-arch/plzip/plzip-1.6.ebuild
25 deleted file mode 100644
26 index 1d8e4b07cda..00000000000
27 --- a/app-arch/plzip/plzip-1.6.ebuild
28 +++ /dev/null
29 @@ -1,31 +0,0 @@
30 -# Copyright 1999-2017 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -
35 -inherit toolchain-funcs
36 -
37 -DESCRIPTION="Parallel lzip compressor"
38 -HOMEPAGE="http://www.nongnu.org/lzip/plzip.html"
39 -SRC_URI="http://download.savannah.gnu.org/releases/lzip/${PN}/${P}.tar.gz"
40 -
41 -LICENSE="GPL-3"
42 -SLOT="0"
43 -KEYWORDS="~amd64 ~x86"
44 -IUSE=""
45 -
46 -RDEPEND="app-arch/lzlib:0="
47 -DEPEND=${RDEPEND}
48 -
49 -src_configure() {
50 - local myconf=(
51 - --prefix="${EPREFIX}"/usr
52 - CXX="$(tc-getCXX)"
53 - CPPFLAGS="${CPPFLAGS}"
54 - CXXFLAGS="${CXXFLAGS}"
55 - LDFLAGS="${LDFLAGS}"
56 - )
57 -
58 - # not autotools-based
59 - ./configure "${myconf[@]}" || die
60 -}