Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/quazip/
Date: Tue, 02 Jul 2019 14:07:32
Message-Id: 1562076433.4ac67447dd76e377ace3616300f2fb83cf8e1ad5.asturm@gentoo
1 commit: 4ac67447dd76e377ace3616300f2fb83cf8e1ad5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 2 13:41:06 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 2 14:07:13 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ac67447
7
8 dev-libs/quazip: Drop 0.7.6
9
10 Package-Manager: Portage-2.3.68, Repoman-2.3.16
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/quazip/Manifest | 1 -
14 dev-libs/quazip/quazip-0.7.6.ebuild | 48 -------------------------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/dev-libs/quazip/Manifest b/dev-libs/quazip/Manifest
18 index 3a2e764d596..b6da0d2bc9a 100644
19 --- a/dev-libs/quazip/Manifest
20 +++ b/dev-libs/quazip/Manifest
21 @@ -1,2 +1 @@
22 -DIST quazip-0.7.6.tar.gz 149029 BLAKE2B 7eb99f550dc06d8d2911b22214294accaa5126657598bfd60614267715ea968790f470cea2820e1a78a8581ab0d4b75c90589c0da1ae815067e083e389020762 SHA512 4325a69918216bb66c6a7c53589ef73473c3752151522a135dd9c92dbf722b29656aea7be0314c84399a214391eca79296ecda5811ab31845d8cf53c010110d1
23 DIST quazip-0.8.1.tar.gz 150584 BLAKE2B 4a1d61b65b01eee06e1292ee88b543675c77ac922d0fb1726ac0afd447d74e8c8154db82da0ce95c2f2c303c036f2795e8938a412dc22e921ee09a0ef99278f6 SHA512 d65dab16c2cbc4d8bb23dae5b2fdff5ef787aaff2653b8e75c3fc8ba1701f5568a52bdde39009f83c5069a9fe3331cd1a49cf965822c4180e88bbc341faa2bfb
24
25 diff --git a/dev-libs/quazip/quazip-0.7.6.ebuild b/dev-libs/quazip/quazip-0.7.6.ebuild
26 deleted file mode 100644
27 index 5e502d2c03b..00000000000
28 --- a/dev-libs/quazip/quazip-0.7.6.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit cmake-utils flag-o-matic qmake-utils
37 -
38 -DESCRIPTION="Simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package"
39 -HOMEPAGE="https://stachenov.github.io/quazip/"
40 -SRC_URI="https://github.com/stachenov/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="LGPL-2.1-with-linking-exception"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm ~hppa ppc ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux"
45 -IUSE="static-libs"
46 -
47 -RDEPEND="
48 - dev-qt/qtcore:5
49 - dev-qt/qtnetwork:5
50 - sys-libs/zlib[minizip]
51 -"
52 -DEPEND="${RDEPEND}"
53 -
54 -src_prepare() {
55 - if ! use static-libs ; then
56 - sed -e "/^install/ s/quazip_static//" -i CMakeLists.txt || die
57 - fi
58 - cmake-utils_src_prepare
59 -}
60 -
61 -src_configure() {
62 - local libdir=$(get_libdir)
63 - local -x CXXFLAGS="${CXXFLAGS}"
64 - append-cxxflags -std=c++11 -fPIC
65 -
66 - local mycmakeargs=(
67 - -DBUILD_WITH_QT4=OFF
68 - -DLIB_SUFFIX=${libdir/lib/}
69 - )
70 - cmake-utils_src_configure
71 -}
72 -
73 -src_install() {
74 - cmake-utils_src_install
75 -
76 - # compatibility with not yet fixed rdeps (Gentoo bug #598136)
77 - dosym libquazip5.so /usr/$(get_libdir)/libquazip.so
78 -}