Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/csvfix: ChangeLog csvfix-1.3.ebuild
Date: Thu, 31 May 2012 18:25:51
Message-Id: 20120531182541.F09F82004B@flycatcher.gentoo.org
1 radhermit 12/05/31 18:25:41
2
3 Modified: ChangeLog
4 Added: csvfix-1.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 app-text/csvfix/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/csvfix/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/csvfix/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/csvfix/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/csvfix/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 14 Dec 2011 03:56:06 -0000 1.5
24 +++ ChangeLog 31 May 2012 18:25:41 -0000 1.6
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-text/csvfix
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/csvfix/ChangeLog,v 1.5 2011/12/14 03:56:06 radhermit Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/csvfix/ChangeLog,v 1.6 2012/05/31 18:25:41 radhermit Exp $
31 +
32 +*csvfix-1.3 (31 May 2012)
33 +
34 + 31 May 2012; Tim Harder <radhermit@g.o> +csvfix-1.3.ebuild,
35 + +files/csvfix-1.3-make.patch:
36 + Version bump.
37
38 *csvfix-1.20 (14 Dec 2011)
39
40
41
42
43 1.1 app-text/csvfix/csvfix-1.3.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/csvfix/csvfix-1.3.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/csvfix/csvfix-1.3.ebuild?rev=1.1&content-type=text/plain
47
48 Index: csvfix-1.3.ebuild
49 ===================================================================
50 # Copyright 1999-2012 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-text/csvfix/csvfix-1.3.ebuild,v 1.1 2012/05/31 18:25:41 radhermit Exp $
53
54 EAPI="4"
55
56 inherit eutils toolchain-funcs versionator
57
58 MY_PV="$(delete_all_version_separators)"
59 DESCRIPTION="A stream editor for manipulating CSV files"
60 HOMEPAGE="http://code.google.com/p/csvfix/"
61 SRC_URI="http://dev.gentoo.org/~radhermit/dist/${P}.tar.bz2
62 doc? ( http://csvfix.googlecode.com/files/CSVfix_man_html_${MY_PV}0.zip )"
63
64 LICENSE="MIT"
65 SLOT="0"
66 KEYWORDS="~amd64 ~x86"
67 IUSE="doc"
68
69 RDEPEND="dev-libs/expat"
70 DEPEND="${RDEPEND}
71 doc? ( app-arch/unzip )"
72
73 src_prepare() {
74 epatch "${FILESDIR}"/${P}-make.patch
75 epatch "${FILESDIR}"/${PN}-1.10a-tests.patch
76
77 edos2unix $(find csvfix/tests -type f)
78 }
79
80 src_compile() {
81 emake CC="$(tc-getCXX)" AR="$(tc-getAR)" lin
82 }
83
84 src_test() {
85 cd ${PN}/tests
86 chmod +x run1 runtests
87 ./runtests || die "tests failed"
88 }
89
90 src_install() {
91 dobin csvfix/bin/csvfix
92 use doc && dohtml -r "${WORKDIR}"/${PN}${MY_PV}/*
93 }