Gentoo Archives: gentoo-commits

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