Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/pv: ChangeLog pv-1.5.3.ebuild
Date: Tue, 06 May 2014 02:50:52
Message-Id: 20140506025049.58DB02004E@flycatcher.gentoo.org
1 jer 14/05/06 02:50:49
2
3 Modified: ChangeLog
4 Added: pv-1.5.3.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A792A613)
9
10 Revision Changes Path
11 1.86 sys-apps/pv/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/ChangeLog?rev=1.86&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/ChangeLog?rev=1.86&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/ChangeLog?r1=1.85&r2=1.86
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v
20 retrieving revision 1.85
21 retrieving revision 1.86
22 diff -u -r1.85 -r1.86
23 --- ChangeLog 20 Apr 2014 11:19:25 -0000 1.85
24 +++ ChangeLog 6 May 2014 02:50:49 -0000 1.86
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-apps/pv
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.85 2014/04/20 11:19:25 ago Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/ChangeLog,v 1.86 2014/05/06 02:50:49 jer Exp $
30 +
31 +*pv-1.5.3 (06 May 2014)
32 +
33 + 06 May 2014; Jeroen Roovers <jer@g.o> +pv-1.5.3.ebuild:
34 + Version bump.
35
36 20 Apr 2014; Agostino Sarubbo <ago@g.o> pv-1.5.2.ebuild:
37 Stable for ppc64, wrt bug #504508
38
39
40
41 1.1 sys-apps/pv/pv-1.5.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/pv-1.5.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/pv/pv-1.5.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pv-1.5.3.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-apps/pv/pv-1.5.3.ebuild,v 1.1 2014/05/06 02:50:49 jer Exp $
51
52 EAPI=5
53 inherit toolchain-funcs
54
55 DESCRIPTION="Pipe Viewer: a tool for monitoring the progress of data through a pipe"
56 HOMEPAGE="http://www.ivarch.com/programs/pv.shtml"
57 SRC_URI="http://www.ivarch.com/programs/sources/${P}.tar.bz2"
58
59 LICENSE="Artistic-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris"
62 IUSE="debug nls"
63
64 PV_LINGUAS=( de fr pl pt )
65 IUSE+=" ${PV_LINGUAS[@]/#/linguas_}"
66
67 DOCS=( README doc/NEWS doc/TODO )
68
69 src_prepare() {
70 sed -i configure -e 's|CFLAGS="-g -Wall"|:|g' || die
71 # These should produce the same end result (working `pv`).
72 sed -i \
73 -e 's:$(LD) $(LDFLAGS) -o:$(AR) rc:' \
74 autoconf/make/modules.mk~ || die
75 }
76
77 src_configure() {
78 tc-export AR
79 local lingua
80 for lingua in ${PV_LINGUAS[@]}; do
81 if ! use linguas_${lingua}; then
82 sed -i configure -e "/ALL_LINGUAS=/s:${lingua}::g" || die
83 fi
84 done
85 econf $(use_enable debug debugging) $(use_enable nls)
86 }
87
88 src_test() {
89 sed -i -e 's:usleep 200000 || ::g' tests/019-remote-cksum || die
90 default
91 }