summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2013-07-21 10:12:16 +0000
committerPacho Ramos <pacho@gentoo.org>2013-07-21 10:12:16 +0000
commitf36b174d4c028ea3056b7872e40948598323e31e (patch)
tree7591ee53a8b6541c57e81a3961e9ef7c52b71f30 /app-text/xmlformat
parentCleanup due http://gentoo.2317880.n4.nabble.com/sgml-herd-has-no-maintainers-... (diff)
downloadgentoo-2-f36b174d4c028ea3056b7872e40948598323e31e.tar.gz
gentoo-2-f36b174d4c028ea3056b7872e40948598323e31e.tar.bz2
gentoo-2-f36b174d4c028ea3056b7872e40948598323e31e.zip
Cleanup due http://gentoo.2317880.n4.nabble.com/sgml-herd-has-no-maintainers-again-td259655.html
(Portage version: 2.1.12.13/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-text/xmlformat')
-rw-r--r--app-text/xmlformat/ChangeLog10
-rw-r--r--app-text/xmlformat/metadata.xml2
-rw-r--r--app-text/xmlformat/xmlformat-1.03.ebuild44
3 files changed, 8 insertions, 48 deletions
diff --git a/app-text/xmlformat/ChangeLog b/app-text/xmlformat/ChangeLog
index 8833054d5301..12ee1d78c11b 100644
--- a/app-text/xmlformat/ChangeLog
+++ b/app-text/xmlformat/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/xmlformat
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/ChangeLog,v 1.11 2010/08/07 13:23:52 graaff Exp $
+# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/ChangeLog,v 1.12 2013/07/21 10:12:16 pacho Exp $
+
+ 21 Jul 2013; Pacho Ramos <pacho@gentoo.org> -xmlformat-1.03.ebuild,
+ metadata.xml:
+ Cleanup due http://gentoo.2317880.n4.nabble.com/sgml-herd-has-no-maintainers-
+ again-td259655.html
07 Aug 2010; Hans de Graaff <graaff@gentoo.org> xmlformat-1.03.ebuild,
xmlformat-1.04.ebuild:
@@ -39,4 +44,3 @@
+xmlformat-1.03.ebuild:
Initial import. Ebuild submitted by Dennis Nienhüser <fragfred@gmx.de>,
closing bug #52440.
-
diff --git a/app-text/xmlformat/metadata.xml b/app-text/xmlformat/metadata.xml
index e96086477315..4538a68724a6 100644
--- a/app-text/xmlformat/metadata.xml
+++ b/app-text/xmlformat/metadata.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>sgml</herd>
+<maintainer><email>maintainer-needed@gentoo.org</email></maintainer>
</pkgmetadata>
diff --git a/app-text/xmlformat/xmlformat-1.03.ebuild b/app-text/xmlformat/xmlformat-1.03.ebuild
deleted file mode 100644
index 25ffa0181ceb..000000000000
--- a/app-text/xmlformat/xmlformat-1.03.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/xmlformat/xmlformat-1.03.ebuild,v 1.7 2010/08/07 13:23:52 graaff Exp $
-
-DESCRIPTION="Reformat XML documents to your custom style"
-SRC_URI="http://www.kitebird.com/software/${PN}/${P}.tar.gz"
-HOMEPAGE="http://www.kitebird.com/software/xmlformat/"
-
-SLOT="0"
-LICENSE="xmlformat"
-KEYWORDS="~amd64 ~ppc ~x86"
-
-DEPEND="ruby? ( =dev-lang/ruby-1.8* )
- !ruby? ( dev-lang/perl )"
-IUSE="ruby doc"
-
-src_install() {
- dobin xmlformat.pl
-
- if use ruby
- then
- dobin xmlformat.rb
- dosym /usr/bin/xmlformat.rb /usr/bin/xmlformat
- else
- dosym /usr/bin/xmlformat.pl /usr/bin/xmlformat
- fi
-
- dodoc BUGS ChangeLog LICENSE README TODO
-
- if use doc
- then
- # APIs
- cp -R docs/* ${D}/usr/share/doc/${PF}
- fi
-}
-
-src_test() {
- if use ruby
- then
- ./runtest all || die "runtest for ruby failed."
- else
- ./runtest -p all || die "runtest for perl failed."
- fi
-}