diff options
author | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-10-14 10:13:52 -0700 |
---|---|---|
committer | Georgy Yakovlev <gyakovlev@gentoo.org> | 2021-10-14 10:13:52 -0700 |
commit | 3108dda67f197a3dad11085e66442075b6d890a2 (patch) | |
tree | 79ae181e7ce092b32b00f6bec4dae28212791a70 /sys-apps/pv | |
parent | sys-apps/pv: keyword 1.6.20 for ~riscv (diff) | |
download | gentoo-3108dda67f197a3dad11085e66442075b6d890a2.tar.gz gentoo-3108dda67f197a3dad11085e66442075b6d890a2.tar.bz2 gentoo-3108dda67f197a3dad11085e66442075b6d890a2.zip |
sys-apps/pv: drop 1.6.6
Signed-off-by: Georgy Yakovlev <gyakovlev@gentoo.org>
Diffstat (limited to 'sys-apps/pv')
-rw-r--r-- | sys-apps/pv/Manifest | 1 | ||||
-rw-r--r-- | sys-apps/pv/pv-1.6.6.ebuild | 53 |
2 files changed, 0 insertions, 54 deletions
diff --git a/sys-apps/pv/Manifest b/sys-apps/pv/Manifest index e5464135645f..57d6f41631aa 100644 --- a/sys-apps/pv/Manifest +++ b/sys-apps/pv/Manifest @@ -1,2 +1 @@ DIST pv-1.6.20.tar.bz2 115310 BLAKE2B b50623f623231e8e8615f960bad83d10e12d5274c57d23ea843d16fce30b3e690284b2d9b01f82a16b9790e2bf26f80f560e226589a62ca677a2cf90ea007691 SHA512 e445f91b298ed285ddab54a3f8a6b5d5297e2e2eb8ad7b2ee2cbacca4adda9c6ca2bf3c77bf2a93373d3875c5b3b0b345d3945cbd91fc2647c6c25f1661a6752 -DIST pv-1.6.6.tar.bz2 109220 BLAKE2B 1cfb60e49f6301f0d990467a58013522bbc1e28e2936a1a2141918af05149b59b6cc494f290d99ee7072247b8f0e230b799cd5dae6f8aa59d116691319e952cb SHA512 cc841b4bd00e4e8fcaed97da094ebac4a11af1c3f843ce5f73d0c3ab20aca29498c6b1a224c653d40127304d8269d96f413df66b980809e9278ff9544c834a26 diff --git a/sys-apps/pv/pv-1.6.6.ebuild b/sys-apps/pv/pv-1.6.6.ebuild deleted file mode 100644 index 6b7c79cfe1ab..000000000000 --- a/sys-apps/pv/pv-1.6.6.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -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 ~x64-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() { - default - - 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 -} |