Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/convmv: ChangeLog convmv-1.14.ebuild
Date: Sun, 28 Jun 2009 09:35:13
Message-Id: E1MKqn0-0003lU-8d@stork.gentoo.org
1 patrick 09/06/28 09:35:10
2
3 Modified: ChangeLog
4 Added: convmv-1.14.ebuild
5 Log:
6 Bump to 1.14, fixes #272747
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.36 app-text/convmv/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/convmv/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/convmv/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/convmv/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/convmv/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 7 Jun 2008 01:53:58 -0000 1.35
23 +++ ChangeLog 28 Jun 2009 09:35:10 -0000 1.36
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/convmv
26 -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/ChangeLog,v 1.35 2008/06/07 01:53:58 robbat2 Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/convmv/ChangeLog,v 1.36 2009/06/28 09:35:10 patrick Exp $
30 +
31 +*convmv-1.14 (28 Jun 2009)
32 +
33 + 28 Jun 2009; Patrick Lauer <patrick@g.o> +convmv-1.14.ebuild:
34 + Bump to 1.14, fixes #272747
35
36 07 Jun 2008; Robin H. Johnson <robbat2@g.o> -convmv-1.05.ebuild,
37 -convmv-1.08.ebuild, -convmv-1.09.ebuild:
38
39
40
41 1.1 app-text/convmv/convmv-1.14.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/convmv/convmv-1.14.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/convmv/convmv-1.14.ebuild?rev=1.1&content-type=text/plain
45
46 Index: convmv-1.14.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/app-text/convmv/convmv-1.14.ebuild,v 1.1 2009/06/28 09:35:10 patrick Exp $
51
52 inherit eutils
53
54 DESCRIPTION="convert filenames to utf8 or any other charset"
55 HOMEPAGE="http://j3e.de/linux/convmv"
56 SRC_URI="http://j3e.de/linux/${PN}/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
61 IUSE=""
62
63 DEPEND="dev-lang/perl"
64
65 src_compile() {
66 emake || die "emake failed"
67 }
68
69 src_install() {
70 einstall DESTDIR="${D}" PREFIX=/usr || die "einstall failed"
71 dodoc CREDITS Changes TODO VERSION
72 }
73
74 src_test() {
75 unpack ./testsuite.tar
76
77 # Patch merged by upstream
78 # Never make assumptions as to the ordering of files inside a directory!
79 #EPATCH_OPTS="-d ${S}/suite/" epatch "${FILESDIR}"/${PN}-1.10-testcase-cleanup.patch
80
81 cd "${S}"/suite
82 ./dotests.sh || die "Tests failed"
83 }