Ebuild
February 10, 2011, 21:36
Create a GNU-style ChangeLog from subversion's svn log --xml output
| alpha | amd64 | arm | hppa | ia64 | m68k | mips | ppc | ppc64 | s390 | sh | sparc | x86 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0.9 | – | + | – | – | – | – | ~ | – | – | – | – | – | + |
PACKAGE DESCRIPTION:
Create a GNU-style ChangeLog from subversion's svn log --xml output
Category:
CHANGELOG
# ChangeLog for dev-vcs/svn2cl # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 # $Header: /var/cvsroot/gentoo-x86/dev-vcs/svn2cl/ChangeLog,v 1.3 2011/12/21 09:00:13 phajdan.jr Exp $ 21 Dec 2011; Pawel Hajdan jr (phajdan.jr) svn2cl-0.12.ebuild: x86 stable wrt bug #393957 17 Dec 2011; Agostino Sarubbo (ago) svn2cl-0.12.ebuild: Stable for AMD64, wrt bug #393957 10 Feb 2011; Ulrich Mueller (ulm) +files/0.9-wrapper.patch, +svn2cl-0.9.ebuild, +svn2cl-0.12.ebuild, +metadata.xml: Move package from dev-util to dev-vcs, bug 56967. 22 Jun 2010; Arfrever Frehtes Taifersar Arahesis (arfrever) svn2cl-0.9.ebuild, svn2cl-0.12.ebuild: dev-util/subversion renamed to dev-vcs/subversion. *svn2cl-0.12 (09 Oct 2009) 09 Oct 2009; Zac Medico (zmedico) +svn2cl-0.12.ebuild: 0.12 version bump. 20 Mar 2009; Joseph Jezak (josejx) svn2cl-0.11.ebuild: Marked ~ppc for bug #256341. *svn2cl-0.11 (01 Mar 2009) 01 Mar 2009; Patrick Lauer (patrick) +svn2cl-0.11.ebuild: Bump to 0.11, closes #256339 15 Nov 2008; Markus Meier (maekke) svn2cl-0.9.ebuild: amd64/x86 stable, bug #228987 *svn2cl-0.10 (10 Nov 2008) 10 Nov 2008; Mike Frysinger (vapier) +svn2cl-0.10.ebuild: Version bump #228985 by Robert Buchholz. *svn2cl-0.9 (07 May 2007) 07 May 2007; Petteri Räty (betelgeuse) +files/0.9-wrapper.patch, +svn2cl-0.9.ebuild: Version bump. Thanks to everyone in bug #126615. 19 Mar 2007; Bryan Østergaard (kloeri) metadata.xml: Remove ka0ttic from metadata.xml due to retirement. 29 Jan 2007; Christian Parpart (trapni) svn2cl-0.3.ebuild: adding to ~amd64 *svn2cl-0.3 (03 Oct 2005) 03 Oct 2005; Aaron Walker (ka0ttic) +files/svn2cl-no-same-dir-xsl.diff, +metadata.xml, +svn2cl-0.3.ebuild: Initial commit.
BUGS
No bugs found
Notes: This list is taken from a snapshot, and is not a reliable reference. Search bugzilla for accurate results.
USE FLAGS
No Use Flags
RUNTIME DEPENDENCIES
| dev-libs/libxslt | XSLT libraries and tools |
| dev-vcs/subversion | Advanced version control system |
SOURCE CODE
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/svn2cl/svn2cl-0.9.ebuild,v 1.1
2011/02/10 21:36:38 ulm Exp $
inherit eutils
DESCRIPTION="Create a GNU-style ChangeLog from subversion's svn log --xml
output."
HOMEPAGE="http://ch.tudelft.nl/~arthur/svn2cl/"
SRC_URI="${HOMEPAGE}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~mips x86"
IUSE=""
RDEPEND="dev-libs/libxslt
dev-vcs/subversion"
src_unpack() {
unpack ${A}
cd "${S}"
# the wrapper script looks for the xsl files in the
# same directory as the script.
epatch "${FILESDIR}"/0.9-wrapper.patch
}
src_install() {
newbin svn2cl.sh svn2cl || die "failed to install wrapper script"
insinto /usr/share/svn2cl
doins svn2cl.xsl svn2html.xsl || die
dodoc README NEWS TODO ChangeLog authors.xml svn2html.css || die
doman svn2cl.1 || die
}
pkg_postinst() {
einfo "You can find samples of svn2html.css and authors.xml in"
einfo "/usr/share/doc/${PF}/"
einfo "Read man page for details."
}