summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2020-09-19 22:38:07 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2020-09-19 22:39:47 +0200
commitaad7789ea25d25b104eada3ec476413a13358db4 (patch)
treef420296ce31cb94d152940d6622de8a6e7de19c8 /dev-libs/quazip
parentmedia-video/vlc: Drop 3.0.10-r1 and 3.0.11 (diff)
downloadgentoo-aad7789ea25d25b104eada3ec476413a13358db4.tar.gz
gentoo-aad7789ea25d25b104eada3ec476413a13358db4.tar.bz2
gentoo-aad7789ea25d25b104eada3ec476413a13358db4.zip
dev-libs/quazip: Drop 0.8.1
Package-Manager: Portage-3.0.7, Repoman-3.0.1 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-libs/quazip')
-rw-r--r--dev-libs/quazip/Manifest1
-rw-r--r--dev-libs/quazip/quazip-0.8.1.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/dev-libs/quazip/Manifest b/dev-libs/quazip/Manifest
index 107af5e1dde0..1a64e0457692 100644
--- a/dev-libs/quazip/Manifest
+++ b/dev-libs/quazip/Manifest
@@ -1,2 +1 @@
-DIST quazip-0.8.1.tar.gz 150584 BLAKE2B 4a1d61b65b01eee06e1292ee88b543675c77ac922d0fb1726ac0afd447d74e8c8154db82da0ce95c2f2c303c036f2795e8938a412dc22e921ee09a0ef99278f6 SHA512 d65dab16c2cbc4d8bb23dae5b2fdff5ef787aaff2653b8e75c3fc8ba1701f5568a52bdde39009f83c5069a9fe3331cd1a49cf965822c4180e88bbc341faa2bfb
DIST quazip-0.9.1.tar.gz 155775 BLAKE2B 76710f94d055e86e1885f74b85f3e6b25f053eedbb73b4b11163e243d003ea3bad50cf1568fd2dbd37bc5db05fd0a6f8d49f48bd5df22d30b1aad3747e8ab780 SHA512 db31f3c7e3d7e95c25090ceb8379643e0b49ed69ece009dd015bee120b2b60f42e73408f580caed3138fa19ca64dcd23a05f16435abb54e2b8df21105c7b42c0
diff --git a/dev-libs/quazip/quazip-0.8.1.ebuild b/dev-libs/quazip/quazip-0.8.1.ebuild
deleted file mode 100644
index 8e60145ea615..000000000000
--- a/dev-libs/quazip/quazip-0.8.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic qmake-utils
-
-DESCRIPTION="Simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package"
-HOMEPAGE="https://stachenov.github.io/quazip/"
-SRC_URI="https://github.com/stachenov/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
-IUSE="static-libs"
-
-RDEPEND="
- dev-qt/qtcore:5
- dev-qt/qtnetwork:5
- sys-libs/zlib[minizip]
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- cmake_src_prepare
- if ! use static-libs ; then
- sed -e "/^install/ s/quazip_static//" -i quazip/CMakeLists.txt || die
- fi
-}
-
-src_configure() {
- local libdir=$(get_libdir)
- local -x CXXFLAGS="${CXXFLAGS}"
- append-cxxflags -std=c++11 -fPIC
-
- local mycmakeargs=(
- -DBUILD_WITH_QT4=OFF
- -DLIB_SUFFIX=${libdir/lib/}
- )
- cmake_src_configure
-}
-
-src_install() {
- cmake_src_install
-
- # compatibility with not yet fixed rdeps (Gentoo bug #598136)
- dosym libquazip5.so /usr/$(get_libdir)/libquazip.so
-}