summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2020-12-29 23:35:17 +0000
committerSam James <sam@gentoo.org>2020-12-29 23:35:17 +0000
commitd6c39222ccdfe05655f3c3c29c5f25612a0cd42b (patch)
tree2f2ffaae32ead85ce29b4a9ce98760ffa0001ada /sys-apps/pv
parentnet-misc/iperf: cleanup old (diff)
downloadgentoo-d6c39222ccdfe05655f3c3c29c5f25612a0cd42b.tar.gz
gentoo-d6c39222ccdfe05655f3c3c29c5f25612a0cd42b.tar.bz2
gentoo-d6c39222ccdfe05655f3c3c29c5f25612a0cd42b.zip
sys-apps/pv: cleanup old
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/pv')
-rw-r--r--sys-apps/pv/Manifest1
-rw-r--r--sys-apps/pv/pv-1.6.0-r1.ebuild50
2 files changed, 0 insertions, 51 deletions
diff --git a/sys-apps/pv/Manifest b/sys-apps/pv/Manifest
index fde8ea7d5eb6..097373f51d70 100644
--- a/sys-apps/pv/Manifest
+++ b/sys-apps/pv/Manifest
@@ -1,2 +1 @@
-DIST pv-1.6.0.tar.bz2 107723 BLAKE2B 95118fc6406f73e800e99468457ba00f0b8f0345eef58f7ff7f4e10b90419cb36b37af094dbe5bd84b7832dfcc96e536dfb845a061f99a0b118192e90821fdc1 SHA512 bd405901812ca50b910adbcf1d2c540dc0b8612f03687866734a79cfa5b5b8100024c18a1d1413c6613e1f2085989cbb77907da89bec7eda37cdeaa7597129d5
DIST pv-1.6.6.tar.bz2 109220 BLAKE2B 1cfb60e49f6301f0d990467a58013522bbc1e28e2936a1a2141918af05149b59b6cc494f290d99ee7072247b8f0e230b799cd5dae6f8aa59d116691319e952cb SHA512 cc841b4bd00e4e8fcaed97da094ebac4a11af1c3f843ce5f73d0c3ab20aca29498c6b1a224c653d40127304d8269d96f413df66b980809e9278ff9544c834a26
diff --git a/sys-apps/pv/pv-1.6.0-r1.ebuild b/sys-apps/pv/pv-1.6.0-r1.ebuild
deleted file mode 100644
index 607576c83a62..000000000000
--- a/sys-apps/pv/pv-1.6.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit linux-info toolchain-funcs
-
-DESCRIPTION="Pipe Viewer: a tool for monitoring the progress of data through a pipe"
-HOMEPAGE="https://www.ivarch.com/programs/pv.shtml"
-SRC_URI="https://www.ivarch.com/programs/sources/${P}.tar.bz2"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris ~x86-solaris"
-IUSE="debug nls"
-
-PV_LINGUAS=( de fr pl pt )
-
-DOCS=( README doc/NEWS doc/TODO )
-
-pkg_setup() {
- if use kernel_linux; then
- CONFIG_CHECK="~SYSVIPC"
- ERROR_SYSVIPC="You will need to enable CONFIG_SYSVIPC in your kernel to use the --remote option."
- linux-info_pkg_setup
- fi
-}
-
-src_prepare() {
- sed -i configure -e 's|CFLAGS="-g -Wall"|:|g' || die
- # These should produce the same end result (working `pv`).
- sed -i \
- -e 's:$(LD) $(LDFLAGS) -o:$(AR) rc:' \
- autoconf/make/modules.mk~ || die
-}
-
-src_configure() {
- tc-export AR
- local lingua
- for lingua in ${PV_LINGUAS[@]}; do
- if ! has ${lingua} ${LINGUAS-${lingua}}; then
- sed -i configure -e "/ALL_LINGUAS=/s:${lingua}::g" || die
- fi
- done
- econf $(use_enable debug debugging) $(use_enable nls)
-}
-
-src_test() {
- sed -i -e 's:usleep 200000 || ::g' tests/019-remote-cksum || die
- default
-}