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