summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2014-03-29 00:32:47 +0000
committerTim Harder <radhermit@gentoo.org>2014-03-29 00:32:47 +0000
commit41b2bc1876efd206dc688aaf734f6b888ae765ba (patch)
tree5566dbb2e2b1a15a33c01a7433d6b345d8f66c28 /dev-libs/tinyxml2
parentVersion bump (bug #506102). (diff)
downloadgentoo-2-41b2bc1876efd206dc688aaf734f6b888ae765ba.tar.gz
gentoo-2-41b2bc1876efd206dc688aaf734f6b888ae765ba.tar.bz2
gentoo-2-41b2bc1876efd206dc688aaf734f6b888ae765ba.zip
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'dev-libs/tinyxml2')
-rw-r--r--dev-libs/tinyxml2/ChangeLog6
-rw-r--r--dev-libs/tinyxml2/files/tinyxml2-1.0.1_p20120531-test.patch20
-rw-r--r--dev-libs/tinyxml2/tinyxml2-1.0.1_p20120531.ebuild35
3 files changed, 5 insertions, 56 deletions
diff --git a/dev-libs/tinyxml2/ChangeLog b/dev-libs/tinyxml2/ChangeLog
index 244b49d9c3df..5194d72373db 100644
--- a/dev-libs/tinyxml2/ChangeLog
+++ b/dev-libs/tinyxml2/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-libs/tinyxml2
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/tinyxml2/ChangeLog,v 1.9 2014/03/29 00:30:49 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/tinyxml2/ChangeLog,v 1.10 2014/03/29 00:32:47 radhermit Exp $
+
+ 29 Mar 2014; Tim Harder <radhermit@gentoo.org>
+ -tinyxml2-1.0.1_p20120531.ebuild, -files/tinyxml2-1.0.1_p20120531-test.patch:
+ Remove old.
*tinyxml2-2.0.2 (29 Mar 2014)
diff --git a/dev-libs/tinyxml2/files/tinyxml2-1.0.1_p20120531-test.patch b/dev-libs/tinyxml2/files/tinyxml2-1.0.1_p20120531-test.patch
deleted file mode 100644
index 01eb2bfd49bd..000000000000
--- a/dev-libs/tinyxml2/files/tinyxml2-1.0.1_p20120531-test.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- tinyxml2-1.0.1_p20120531/CMakeLists.txt
-+++ tinyxml2-1.0.1_p20120531/CMakeLists.txt
-@@ -55,10 +55,13 @@
- VERSION "${GENERIC_LIB_VERSION}"
- SOVERSION "${GENERIC_LIB_SOVERSION}")
-
--add_executable(test xmltest.cpp)
--add_dependencies(test tinyxml2)
--add_dependencies(test ${TARGET_DATA_COPY})
--target_link_libraries(test tinyxml2)
-+set(BUILD_TEST OFF CACHE BOOL "Set to ON to build tests")
-+if(BUILD_TEST)
-+ add_executable(test xmltest.cpp)
-+ add_dependencies(test tinyxml2)
-+ add_dependencies(test ${TARGET_DATA_COPY})
-+ target_link_libraries(test tinyxml2)
-+endif(BUILD_TEST)
-
-
- if(BUILD_STATIC_LIBS)
diff --git a/dev-libs/tinyxml2/tinyxml2-1.0.1_p20120531.ebuild b/dev-libs/tinyxml2/tinyxml2-1.0.1_p20120531.ebuild
deleted file mode 100644
index fa13a0cc9b07..000000000000
--- a/dev-libs/tinyxml2/tinyxml2-1.0.1_p20120531.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/tinyxml2/tinyxml2-1.0.1_p20120531.ebuild,v 1.5 2012/09/20 12:39:00 radhermit Exp $
-
-EAPI="4"
-CMAKE_MIN_VERSION="2.8.5"
-
-inherit cmake-utils
-
-DESCRIPTION="A simple, small, efficient, C++ XML parser"
-HOMEPAGE="http://www.grinninglizard.com/tinyxml2/"
-SRC_URI="http://dev.gentoo.org/~radhermit/distfiles/${P}.tar.bz2"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="static-libs test"
-
-PATCHES=(
- "${FILESDIR}"/${P}-test.patch
- "${FILESDIR}"/${P}-test-return-status.patch
-)
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use_build static-libs STATIC_LIBS)
- $(cmake-utils_use_build test TEST)
- )
- cmake-utils_src_configure
-}
-
-src_test() {
- cmake-utils_src_test
- ./test || die "Tests failed"
-}