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