Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pv/
Date: Tue, 29 Dec 2020 23:35:29
Message-Id: 1609284917.d6c39222ccdfe05655f3c3c29c5f25612a0cd42b.sam@gentoo
1 commit: d6c39222ccdfe05655f3c3c29c5f25612a0cd42b
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 23:35:17 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 23:35:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6c39222
7
8 sys-apps/pv: cleanup old
9
10 Package-Manager: Portage-3.0.9, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sys-apps/pv/Manifest | 1 -
14 sys-apps/pv/pv-1.6.0-r1.ebuild | 50 ------------------------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/sys-apps/pv/Manifest b/sys-apps/pv/Manifest
18 index fde8ea7d5eb..097373f51d7 100644
19 --- a/sys-apps/pv/Manifest
20 +++ b/sys-apps/pv/Manifest
21 @@ -1,2 +1 @@
22 -DIST pv-1.6.0.tar.bz2 107723 BLAKE2B 95118fc6406f73e800e99468457ba00f0b8f0345eef58f7ff7f4e10b90419cb36b37af094dbe5bd84b7832dfcc96e536dfb845a061f99a0b118192e90821fdc1 SHA512 bd405901812ca50b910adbcf1d2c540dc0b8612f03687866734a79cfa5b5b8100024c18a1d1413c6613e1f2085989cbb77907da89bec7eda37cdeaa7597129d5
23 DIST pv-1.6.6.tar.bz2 109220 BLAKE2B 1cfb60e49f6301f0d990467a58013522bbc1e28e2936a1a2141918af05149b59b6cc494f290d99ee7072247b8f0e230b799cd5dae6f8aa59d116691319e952cb SHA512 cc841b4bd00e4e8fcaed97da094ebac4a11af1c3f843ce5f73d0c3ab20aca29498c6b1a224c653d40127304d8269d96f413df66b980809e9278ff9544c834a26
24
25 diff --git a/sys-apps/pv/pv-1.6.0-r1.ebuild b/sys-apps/pv/pv-1.6.0-r1.ebuild
26 deleted file mode 100644
27 index 607576c83a6..00000000000
28 --- a/sys-apps/pv/pv-1.6.0-r1.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -inherit linux-info toolchain-funcs
36 -
37 -DESCRIPTION="Pipe Viewer: a tool for monitoring the progress of data through a pipe"
38 -HOMEPAGE="https://www.ivarch.com/programs/pv.shtml"
39 -SRC_URI="https://www.ivarch.com/programs/sources/${P}.tar.bz2"
40 -
41 -LICENSE="Artistic-2"
42 -SLOT="0"
43 -KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris"
44 -IUSE="debug nls"
45 -
46 -PV_LINGUAS=( de fr pl pt )
47 -
48 -DOCS=( README doc/NEWS doc/TODO )
49 -
50 -pkg_setup() {
51 - if use kernel_linux; then
52 - CONFIG_CHECK="~SYSVIPC"
53 - ERROR_SYSVIPC="You will need to enable CONFIG_SYSVIPC in your kernel to use the --remote option."
54 - linux-info_pkg_setup
55 - fi
56 -}
57 -
58 -src_prepare() {
59 - sed -i configure -e 's|CFLAGS="-g -Wall"|:|g' || die
60 - # These should produce the same end result (working `pv`).
61 - sed -i \
62 - -e 's:$(LD) $(LDFLAGS) -o:$(AR) rc:' \
63 - autoconf/make/modules.mk~ || die
64 -}
65 -
66 -src_configure() {
67 - tc-export AR
68 - local lingua
69 - for lingua in ${PV_LINGUAS[@]}; do
70 - if ! has ${lingua} ${LINGUAS-${lingua}}; then
71 - sed -i configure -e "/ALL_LINGUAS=/s:${lingua}::g" || die
72 - fi
73 - done
74 - econf $(use_enable debug debugging) $(use_enable nls)
75 -}
76 -
77 -src_test() {
78 - sed -i -e 's:usleep 200000 || ::g' tests/019-remote-cksum || die
79 - default
80 -}