public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-util/ticpp/
@ 2018-01-06 13:32 Mikle Kolyada
  0 siblings, 0 replies; 2+ messages in thread
From: Mikle Kolyada @ 2018-01-06 13:32 UTC (permalink / raw
  To: gentoo-commits

commit:     821242f604f05922133cd4058247391270806331
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  6 13:30:43 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Jan  6 13:32:00 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821242f6

dev-util/ticpp: remove last rited package:

Closes: https://bugs.gentoo.org/634536

 dev-util/ticpp/Manifest                 |  1 -
 dev-util/ticpp/metadata.xml             | 11 -------
 dev-util/ticpp/ticpp-0_p20120423.ebuild | 49 ------------------------------
 dev-util/ticpp/ticpp-9999.ebuild        | 54 ---------------------------------
 4 files changed, 115 deletions(-)

diff --git a/dev-util/ticpp/Manifest b/dev-util/ticpp/Manifest
deleted file mode 100644
index 6b3bb20a96d..00000000000
--- a/dev-util/ticpp/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ticpp-0_p20120423.tar.bz2 94818 BLAKE2B 2dd385a9d3ce224c0ae2fa491a084ca432cd453db06d9dff0d12ae5dc49a1060dd9d044ed5cc72b68d019070bd89bfa1b44e24aa180d55481bed54c7f0763d5d SHA512 3b01a57d6b08722d3f4e1592c7986719d74c9852071b6a20852e987a3534c12758263ad4310ce434ad0c483988fc77900ed4a76f1c98556fc33a35186d9cdf22

diff --git a/dev-util/ticpp/metadata.xml b/dev-util/ticpp/metadata.xml
deleted file mode 100644
index 22534e587ae..00000000000
--- a/dev-util/ticpp/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>ago@gentoo.org</email>
-		<name>Agostino Sarubbo</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="github">rjpcomputing/ticpp</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/dev-util/ticpp/ticpp-0_p20120423.ebuild b/dev-util/ticpp/ticpp-0_p20120423.ebuild
deleted file mode 100644
index bb4f925a7ac..00000000000
--- a/dev-util/ticpp/ticpp-0_p20120423.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="A completely new interface to TinyXML that uses MANY of the C++ strengths"
-HOMEPAGE="https://github.com/rjpcomputing/ticpp"
-SRC_URI="https://dev.gentoo.org/~ago/distfiles/${P}.tar.bz2"
-
-LICENSE="MIT"
-KEYWORDS="amd64 ~ppc x86"
-SLOT="0"
-IUSE="debug doc"
-
-DEPEND="dev-util/premake:4
-	doc? ( app-doc/doxygen )"
-RDEPEND=""
-
-src_prepare() {
-	premake4 gmake || die
-
-	sed -i "s:\$(ARCH)::g" TiCPP.make || die
-}
-
-src_compile() {
-	local myconf
-	use !debug && myconf="config=release"
-	emake ${myconf}
-
-	if use doc ; then
-		sed -i -e '/GENERATE_HTMLHELP/s:YES:NO:' dox || die
-		doxygen dox || die
-	fi
-}
-
-src_install () {
-	insinto /usr/include/ticpp
-	doins *.h
-
-	if use debug ; then
-		dolib lib/libticppd.a
-	else
-		dolib lib/libticpp.a
-	fi
-
-	dodoc {changes,readme,tutorial_gettingStarted,tutorial_ticpp}.txt
-
-	use doc && dohtml -r docs/*
-}

diff --git a/dev-util/ticpp/ticpp-9999.ebuild b/dev-util/ticpp/ticpp-9999.ebuild
deleted file mode 100644
index 4b63f1ecff2..00000000000
--- a/dev-util/ticpp/ticpp-9999.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit subversion
-
-ESVN_REPO_URI="https://${PN}.googlecode.com/svn/trunk/"
-MY_PV=cvs
-
-DESCRIPTION="A completely new interface to TinyXML that uses MANY of the C++ strengths"
-HOMEPAGE="https://github.com/rjpcomputing/ticpp"
-SRC_URI=""
-
-LICENSE="MIT"
-KEYWORDS=""
-SLOT="0"
-IUSE="debug doc"
-
-DEPEND="dev-util/premake:4
-	doc? ( app-doc/doxygen )"
-RDEPEND=""
-
-src_prepare() {
-	premake4 gmake || die
-
-	sed -i "s:\$(ARCH)::g" TiCPP.make || die
-}
-
-src_compile() {
-	local myconf
-	use !debug && myconf="config=release"
-	emake ${myconf}
-
-	if use doc ; then
-		sed -i -e '/GENERATE_HTMLHELP/s:YES:NO:' dox || die
-		doxygen dox || die
-	fi
-}
-
-src_install () {
-	insinto /usr/include/ticpp
-	doins *.h
-
-	if use debug ; then
-		dolib lib/libticppd.a
-	else
-		dolib lib/libticpp.a
-	fi
-
-	dodoc {changes,readme,tutorial_gettingStarted,tutorial_ticpp}.txt
-
-	use doc && dohtml -r docs/*
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-util/ticpp/
@ 2015-09-01 19:43 Tobias Klausmann
  0 siblings, 0 replies; 2+ messages in thread
From: Tobias Klausmann @ 2015-09-01 19:43 UTC (permalink / raw
  To: gentoo-commits

commit:     bee3629f51f48729c408b23c14c93bb861b75a8b
Author:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
AuthorDate: Tue Sep  1 19:32:01 2015 +0000
Commit:     Tobias Klausmann <klausman <AT> gentoo <DOT> org>
CommitDate: Tue Sep  1 19:32:01 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bee3629f

dev-util/ticpp: Fixing HOMEPAGE move due to code.google.com shutdown

Package-Manager: portage-2.2.20.1

 dev-util/ticpp/ticpp-0_p20120423.ebuild | 2 +-
 dev-util/ticpp/ticpp-9999.ebuild        | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/ticpp/ticpp-0_p20120423.ebuild b/dev-util/ticpp/ticpp-0_p20120423.ebuild
index e466864..b174995 100644
--- a/dev-util/ticpp/ticpp-0_p20120423.ebuild
+++ b/dev-util/ticpp/ticpp-0_p20120423.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 DESCRIPTION="A completely new interface to TinyXML that uses MANY of the C++ strengths"
-HOMEPAGE="https://code.google.com/p/ticpp/"
+HOMEPAGE="https://github.com/rjpcomputing/ticpp"
 SRC_URI="https://dev.gentoo.org/~ago/distfiles/${P}.tar.bz2"
 
 LICENSE="MIT"

diff --git a/dev-util/ticpp/ticpp-9999.ebuild b/dev-util/ticpp/ticpp-9999.ebuild
index edf0803..358a188 100644
--- a/dev-util/ticpp/ticpp-9999.ebuild
+++ b/dev-util/ticpp/ticpp-9999.ebuild
@@ -10,7 +10,7 @@ ESVN_REPO_URI="https://${PN}.googlecode.com/svn/trunk/"
 MY_PV=cvs
 
 DESCRIPTION="A completely new interface to TinyXML that uses MANY of the C++ strengths"
-HOMEPAGE="https://code.google.com/p/ticpp/"
+HOMEPAGE="https://github.com/rjpcomputing/ticpp"
 SRC_URI=""
 
 LICENSE="MIT"


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-01-06 13:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-06 13:32 [gentoo-commits] repo/gentoo:master commit in: dev-util/ticpp/ Mikle Kolyada
  -- strict thread matches above, loose matches on Subject: below --
2015-09-01 19:43 Tobias Klausmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox