Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/innoextract/
Date: Mon, 31 Dec 2018 21:14:55
Message-Id: 1546290824.07877618211b9642a96509077b993167da9506cc.asturm@gentoo
1 commit: 07877618211b9642a96509077b993167da9506cc
2 Author: Daniel Scharrer <daniel <AT> constexpr <DOT> org>
3 AuthorDate: Wed Dec 12 19:11:18 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 31 21:13:44 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07877618
7
8 app-arch/innoextract: Drop old
9
10 Signed-off-by: Daniel Scharrer <daniel <AT> constexpr.org>
11 Closes: https://github.com/gentoo/gentoo/pull/10625
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 app-arch/innoextract/Manifest | 1 -
15 app-arch/innoextract/innoextract-1.6.ebuild | 35 -----------------------------
16 2 files changed, 36 deletions(-)
17
18 diff --git a/app-arch/innoextract/Manifest b/app-arch/innoextract/Manifest
19 index 20c9a908547..4ecec7c6a20 100644
20 --- a/app-arch/innoextract/Manifest
21 +++ b/app-arch/innoextract/Manifest
22 @@ -1,2 +1 @@
23 -DIST innoextract-1.6.tar.gz 183380 BLAKE2B 581c0e28ececbabc8785f50472f312bc39c62d9174c1902645a961f06877c3e702ce0386aa611fe954c412997a1a69355e441cc33e243abd1828ff5e9d2ff8a2 SHA512 4c1b50a050d45e1a56d7236150a801cb85d15de8c80f5f1fd94750f3dd2392bdfb3f0e98c214e9504fe6132c7dce3a0dfbe0815ede438aa0f76a88380ceeef62
24 DIST innoextract-1.7.tar.gz 195123 BLAKE2B 5dffb49da7ec3f8e48a70d0809e059179e84610dd50397b8ca472b9f5a96a5edd0cf36898f0e513b3f70685829e2b8edbd7d7932c9f1b47706c2929f596867e5 SHA512 5e92625a411a4351dd4639d4b63e8664519c6697122a0679c010412e94a1e5da95324c33be16211f91c2b25b8cea40fe4ba4da5e19c12d0c27a4916159465ca4
25
26 diff --git a/app-arch/innoextract/innoextract-1.6.ebuild b/app-arch/innoextract/innoextract-1.6.ebuild
27 deleted file mode 100644
28 index 509f67a4b24..00000000000
29 --- a/app-arch/innoextract/innoextract-1.6.ebuild
30 +++ /dev/null
31 @@ -1,35 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=5
36 -
37 -inherit cmake-utils
38 -
39 -DESCRIPTION="A tool to unpack installers created by Inno Setup"
40 -HOMEPAGE="http://constexpr.org/innoextract/"
41 -SRC_URI="http://constexpr.org/innoextract/files/${P}.tar.gz"
42 -
43 -LICENSE="ZLIB"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="debug +iconv +lzma"
47 -
48 -RDEPEND="
49 - dev-libs/boost:=
50 - iconv? ( virtual/libiconv )
51 - lzma? ( app-arch/xz-utils )"
52 -DEPEND="${RDEPEND}"
53 -
54 -DOCS=( README.md CHANGELOG )
55 -
56 -src_configure() {
57 - local mycmakeargs=(
58 - $(cmake-utils_use_use lzma LZMA)
59 - $(cmake-utils_use debug DEBUG)
60 - -DSET_OPTIMIZATION_FLAGS=OFF
61 - -DSTRICT_USE=ON
62 - -DWITH_CONV=$(usex iconv iconv builtin)
63 - )
64 -
65 - cmake-utils_src_configure
66 -}