summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2013-08-02 17:30:09 +0000
committerJohannes Huber <johu@gentoo.org>2013-08-02 17:30:09 +0000
commit8b554a2b591a9c06cf79816a1d3e7c7d1ff8a9e8 (patch)
treefd6cb4b17c98f321a79998666da7721dfa42e242
parentVersion bump. (diff)
downloadgentoo-2-8b554a2b591a9c06cf79816a1d3e7c7d1ff8a9e8.tar.gz
gentoo-2-8b554a2b591a9c06cf79816a1d3e7c7d1ff8a9e8.tar.bz2
gentoo-2-8b554a2b591a9c06cf79816a1d3e7c7d1ff8a9e8.zip
Remove old.
(Portage version: 2.2.0_alpha191/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
-rw-r--r--dev-libs/libattica/ChangeLog7
-rw-r--r--dev-libs/libattica/files/libattica-0.4.1-automagic.patch36
-rw-r--r--dev-libs/libattica/files/libattica-0.4.1-qt5.patch12
-rw-r--r--dev-libs/libattica/libattica-0.4.1.ebuild42
4 files changed, 6 insertions, 91 deletions
diff --git a/dev-libs/libattica/ChangeLog b/dev-libs/libattica/ChangeLog
index 30494bdee4f2..9fcaffdf95e0 100644
--- a/dev-libs/libattica/ChangeLog
+++ b/dev-libs/libattica/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libattica
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libattica/ChangeLog,v 1.48 2013/08/02 14:33:10 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libattica/ChangeLog,v 1.49 2013/08/02 17:30:09 johu Exp $
+
+ 02 Aug 2013; Johannes Huber <johu@gentoo.org>
+ -files/libattica-0.4.1-automagic.patch, -files/libattica-0.4.1-qt5.patch,
+ -libattica-0.4.1.ebuild:
+ Remove old.
02 Aug 2013; Agostino Sarubbo <ago@gentoo.org> libattica-0.4.2.ebuild:
Stable for ppc64, wrt bug #477634
diff --git a/dev-libs/libattica/files/libattica-0.4.1-automagic.patch b/dev-libs/libattica/files/libattica-0.4.1-automagic.patch
deleted file mode 100644
index 3c1ea1d55917..000000000000
--- a/dev-libs/libattica/files/libattica-0.4.1-automagic.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From 1d930b3b6b7c9b4d8ba94f5f390519161ad623c5 Mon Sep 17 00:00:00 2001
-From: Michael Palimaka <kensington@gentoo.org>
-Date: Thu, 4 Oct 2012 22:51:24 +1000
-Subject: [PATCH] Make the dependency check for QtTest conditional - it is
- only required to build tests.
-
-REVIEW: 106706
----
- lib/CMakeLists.txt | 4 +++-
- 1 file changed, 3 insertions(+), 1 deletion(-)
-
-diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
-index 49a74ef..a8114d9 100644
---- a/lib/CMakeLists.txt
-+++ b/lib/CMakeLists.txt
-@@ -12,7 +12,6 @@ set(QT_MIN_VERSION "4.7.0")
- find_package(Qt5Transitional REQUIRED
- Core
- Network
-- Test
- )
-
- # TODO: Remove me once fixed in ECM module
-@@ -189,6 +188,9 @@ endif(NOT WIN32)
-
- # Add the optional subdirectory with unit tests
- if (ATTICA_ENABLE_TESTS)
-+ find_package(Qt5Transitional REQUIRED
-+ Test
-+ )
- add_subdirectory(tests)
- endif (ATTICA_ENABLE_TESTS)
-
---
-1.7.12
-
diff --git a/dev-libs/libattica/files/libattica-0.4.1-qt5.patch b/dev-libs/libattica/files/libattica-0.4.1-qt5.patch
deleted file mode 100644
index cc34c8845a67..000000000000
--- a/dev-libs/libattica/files/libattica-0.4.1-qt5.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- lib/cmake/FindQt5Transitional.cmake
-+++ lib/cmake/FindQt5Transitional.cmake
-@@ -1,5 +1,8 @@
-+option(WITH_Qt5 ON)
-
--find_package(Qt5Core QUIET)
-+if (WITH_Qt5)
-+ find_package(Qt5Core QUIET)
-+endif()
-
- if (Qt5Core_FOUND)
- if (NOT Qt5Transitional_FIND_COMPONENTS)
diff --git a/dev-libs/libattica/libattica-0.4.1.ebuild b/dev-libs/libattica/libattica-0.4.1.ebuild
deleted file mode 100644
index c337f0ece1ff..000000000000
--- a/dev-libs/libattica/libattica-0.4.1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libattica/libattica-0.4.1.ebuild,v 1.11 2013/04/02 20:56:10 ago Exp $
-
-EAPI=4
-
-MY_P="${P#lib}"
-MY_PN="${PN#lib}"
-
-inherit cmake-utils
-
-DESCRIPTION="A library providing access to Open Collaboration Services"
-HOMEPAGE="http://www.kde.org/"
-SRC_URI="mirror://kde/stable/${MY_PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2 LGPL-2"
-KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
-SLOT="0"
-IUSE="debug test"
-
-RDEPEND="dev-qt/qtcore:4"
-DEPEND="${RDEPEND}
- test? (
- dev-qt/qtgui:4
- dev-qt/qttest:4
- )"
-
-DOCS=( AUTHORS ChangeLog README )
-PATCHES=(
- "${FILESDIR}/${P}-automagic.patch"
- "${FILESDIR}/${P}-qt5.patch"
-)
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_Qt5=OFF
- $(cmake-utils_use test ATTICA_ENABLE_TESTS)
- )
- cmake-utils_src_configure
-}