Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/svn2cl: svn2cl-0.11.ebuild ChangeLog
Date: Sun, 01 Mar 2009 18:10:15
Message-Id: E1Ldq7B-0006I0-38@stork.gentoo.org
1 patrick 09/03/01 18:10:13
2
3 Modified: ChangeLog
4 Added: svn2cl-0.11.ebuild
5 Log:
6 Bump to 0.11, closes #256339
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 dev-util/svn2cl/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/svn2cl/ChangeLog?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/svn2cl/ChangeLog?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/svn2cl/ChangeLog?r1=1.6&r2=1.7
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/svn2cl/ChangeLog,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- ChangeLog 15 Nov 2008 12:08:04 -0000 1.6
23 +++ ChangeLog 1 Mar 2009 18:10:12 -0000 1.7
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/svn2cl
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/svn2cl/ChangeLog,v 1.6 2008/11/15 12:08:04 maekke Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/svn2cl/ChangeLog,v 1.7 2009/03/01 18:10:12 patrick Exp $
30 +
31 +*svn2cl-0.11 (01 Mar 2009)
32 +
33 + 01 Mar 2009; Patrick Lauer <patrick@g.o> +svn2cl-0.11.ebuild:
34 + Bump to 0.11, closes #256339
35
36 15 Nov 2008; Markus Meier <maekke@g.o> svn2cl-0.9.ebuild:
37 amd64/x86 stable, bug #228987
38
39
40
41 1.1 dev-util/svn2cl/svn2cl-0.11.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/svn2cl/svn2cl-0.11.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/svn2cl/svn2cl-0.11.ebuild?rev=1.1&content-type=text/plain
45
46 Index: svn2cl-0.11.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/svn2cl/svn2cl-0.11.ebuild,v 1.1 2009/03/01 18:10:12 patrick Exp $
51
52 inherit eutils
53
54 DESCRIPTION="Create a GNU-style ChangeLog from subversion's svn log --xml output"
55 HOMEPAGE="http://ch.tudelft.nl/~arthur/svn2cl/"
56 SRC_URI="${HOMEPAGE}/${P}.tar.gz"
57
58 LICENSE="BSD"
59 SLOT="0"
60 KEYWORDS="~amd64 ~mips ~x86"
61 IUSE=""
62
63 RDEPEND="dev-libs/libxslt
64 dev-util/subversion"
65
66 src_unpack() {
67 unpack ${A}
68 cd "${S}"
69 # the wrapper script looks for the xsl files in the
70 # same directory as the script.
71 epatch "${FILESDIR}"/0.9-wrapper.patch
72 }
73
74 src_install() {
75 newbin svn2cl.sh svn2cl || die "failed to install wrapper script"
76 insinto /usr/share/svn2cl
77 doins svn2cl.xsl svn2html.xsl || die
78 dodoc README NEWS TODO ChangeLog authors.xml svn2html.css || die
79 doman svn2cl.1 || die
80 }
81
82 pkg_postinst() {
83 einfo "You can find samples of svn2html.css and authors.xml in"
84 einfo "/usr/share/doc/${PF}/"
85 einfo "Read man page for details."
86 }