commit:     c2f6fa469df675273b452aaf2b7e74d251f39af5
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 27 15:04:18 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Feb 27 16:13:31 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f6fa46

dev-libs/quazip: Drop old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-libs/quazip/Manifest               |  1 -
 dev-libs/quazip/quazip-0.7.2-r1.ebuild | 93 ----------------------------------
 dev-libs/quazip/quazip-0.7.3.ebuild    | 93 ----------------------------------
 3 files changed, 187 deletions(-)

diff --git a/dev-libs/quazip/Manifest b/dev-libs/quazip/Manifest
index 90ff561cac6..d767f3003b2 100644
--- a/dev-libs/quazip/Manifest
+++ b/dev-libs/quazip/Manifest
@@ -1,2 +1 @@
-DIST quazip-0.7.2.tar.gz 466915 BLAKE2B 
fe96398e86e9066ddeea09d225b775371fc72479291f4cdefa9b5657adb2646e42b7cfbc2de920c4a4cdd024e9dcf1dfc12f30caec8f78494b1c7128847ca66d
 SHA512 
669efb01edefee084ae755728aa2392bf160331fb13db62b7fac5e91bd45c29bb824a41ec63dd4a74c4a9780848d3308c0dcdb503f907a0fcccfbe969c291dd0
 DIST quazip-0.7.3.tar.gz 439536 BLAKE2B 
7b91d12f14e060f3554e6d9b4041aef56f269c3e5cc3a4e67eaa415cf990f474da8581a248037d2b741117c5f83c514f3dc4e30310dccc954cf363435acfc4c6
 SHA512 
d4b55bd040e47e97e7bd5d080399ae4aa5fbc4985d6ab5979b468abc852c91b2e3e5d35af90d4b4de3bb01ea9135d0247473d6eab0413392b1c8567dc799a9fe

diff --git a/dev-libs/quazip/quazip-0.7.2-r1.ebuild 
b/dev-libs/quazip/quazip-0.7.2-r1.ebuild
deleted file mode 100644
index e5fda1cb8c7..00000000000
--- a/dev-libs/quazip/quazip-0.7.2-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils flag-o-matic multibuild qmake-utils
-
-DESCRIPTION="A simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package"
-HOMEPAGE="http://quazip.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ppc ppc64 x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
-IUSE="qt4 +qt5 static-libs test"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
-       sys-libs/zlib[minizip]
-       qt4? ( dev-qt/qtcore:4 )
-       qt5? (
-               dev-qt/qtcore:5
-               dev-qt/qtnetwork:5
-       )
-"
-DEPEND="${RDEPEND}
-       test? (
-               qt4? ( dev-qt/qttest:4 )
-       )
-"
-
-DOCS=( NEWS.txt README.txt )
-HTML_DOCS=( doc/html/. )
-
-pkg_setup() {
-       MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_prepare() {
-       if ! use static-libs ; then
-               sed -e "/^install/ s/quazip_static//" -i quazip/CMakeLists.txt 
|| die
-       fi
-       cmake-utils_src_prepare
-}
-
-src_configure() {
-       myconfigure() {
-               local libdir=$(get_libdir)
-               local mycmakeargs=(
-                       -DLIB_SUFFIX=${libdir/lib/}
-               )
-               unset libdir
-               if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
-                       mycmakeargs+=( -DBUILD_WITH_QT4=ON )
-               fi
-               if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
-                       local -x CXXFLAGS="${CXXFLAGS}"
-                       append-cxxflags -std=c++11 -fPIC
-                       mycmakeargs+=( -DBUILD_WITH_QT4=OFF )
-               fi
-               cmake-utils_src_configure
-       }
-
-       multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
-       multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_test() {
-       cd "${S}"/qztest || die
-       mytest() {
-               if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
-                       eqmake4 \
-                               LIBS+="-L${WORKDIR}/${P}-qt4"
-                       emake
-                       LD_LIBRARY_PATH="${WORKDIR}/${P}-qt4" ./qztest || die
-               fi
-       }
-
-       multibuild_foreach_variant mytest
-}
-
-src_install() {
-       multibuild_foreach_variant cmake-utils_src_install
-
-       # compatibility with not yet fixed rdeps (Gentoo bug #598136)
-       if ! use qt4; then
-               dosym libquazip5.so /usr/$(get_libdir)/libquazip.so
-       fi
-}

diff --git a/dev-libs/quazip/quazip-0.7.3.ebuild 
b/dev-libs/quazip/quazip-0.7.3.ebuild
deleted file mode 100644
index e3a070a0450..00000000000
--- a/dev-libs/quazip/quazip-0.7.3.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils flag-o-matic multibuild qmake-utils
-
-DESCRIPTION="A simple C++ wrapper over Gilles Vollant's ZIP/UNZIP package"
-HOMEPAGE="http://quazip.sourceforge.net/";
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1-with-linking-exception"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
-IUSE="qt4 +qt5 static-libs test"
-
-REQUIRED_USE="|| ( qt4 qt5 )"
-
-RDEPEND="
-       sys-libs/zlib[minizip]
-       qt4? ( dev-qt/qtcore:4 )
-       qt5? (
-               dev-qt/qtcore:5
-               dev-qt/qtnetwork:5
-       )
-"
-DEPEND="${RDEPEND}
-       test? (
-               qt4? ( dev-qt/qttest:4 )
-       )
-"
-
-DOCS=( NEWS.txt README.txt )
-HTML_DOCS=( doc/html/. )
-
-pkg_setup() {
-       MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) )
-}
-
-src_prepare() {
-       if ! use static-libs ; then
-               sed -e "/^install/ s/quazip_static//" -i quazip/CMakeLists.txt 
|| die
-       fi
-       cmake-utils_src_prepare
-}
-
-src_configure() {
-       myconfigure() {
-               local libdir=$(get_libdir)
-               local mycmakeargs=(
-                       -DLIB_SUFFIX=${libdir/lib/}
-               )
-               unset libdir
-               if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
-                       mycmakeargs+=( -DBUILD_WITH_QT4=ON )
-               fi
-               if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
-                       local -x CXXFLAGS="${CXXFLAGS}"
-                       append-cxxflags -std=c++11 -fPIC
-                       mycmakeargs+=( -DBUILD_WITH_QT4=OFF )
-               fi
-               cmake-utils_src_configure
-       }
-
-       multibuild_foreach_variant myconfigure
-}
-
-src_compile() {
-       multibuild_foreach_variant cmake-utils_src_compile
-}
-
-src_test() {
-       cd "${S}"/qztest || die
-       mytest() {
-               if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
-                       eqmake4 \
-                               LIBS+="-L${WORKDIR}/${P}-qt4"
-                       emake
-                       LD_LIBRARY_PATH="${WORKDIR}/${P}-qt4" ./qztest || die
-               fi
-       }
-
-       multibuild_foreach_variant mytest
-}
-
-src_install() {
-       multibuild_foreach_variant cmake-utils_src_install
-
-       # compatibility with not yet fixed rdeps (Gentoo bug #598136)
-       if ! use qt4; then
-               dosym libquazip5.so /usr/$(get_libdir)/libquazip.so
-       fi
-}

Reply via email to