diff options
author | Michał Górny <mgorny@gentoo.org> | 2019-10-14 22:04:00 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2019-10-14 22:06:58 +0200 |
commit | 48cf9f4466de549fd83cdf4040499bdeeb9242f6 (patch) | |
tree | 1e8168f02213915d656502a04290d1680c75ea91 /net-misc | |
parent | net-misc/openssh: Revbump to 8.1_p1-r1, add X509 12.3 patch (diff) | |
download | gentoo-48cf9f4466de549fd83cdf4040499bdeeb9242f6.tar.gz gentoo-48cf9f4466de549fd83cdf4040499bdeeb9242f6.tar.bz2 gentoo-48cf9f4466de549fd83cdf4040499bdeeb9242f6.zip |
net-misc/pump: Remove last-rited pkg
Bug: https://bugs.gentoo.org/694314
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/pump/Manifest | 2 | ||||
-rw-r--r-- | net-misc/pump/metadata.xml | 8 | ||||
-rw-r--r-- | net-misc/pump/pump-0.8.24-r4.ebuild | 56 |
3 files changed, 0 insertions, 66 deletions
diff --git a/net-misc/pump/Manifest b/net-misc/pump/Manifest deleted file mode 100644 index 669c26063dc4..000000000000 --- a/net-misc/pump/Manifest +++ /dev/null @@ -1,2 +0,0 @@ -DIST pump_0.8.24-7.diff.gz 29280 BLAKE2B 194df4e0dd11db6c34e50ae101ae32b21cef19db8ff37785b3d2fc9d025f122a2563e109acfbe4e95878896b293ca2d3426a41df1d7c2ad16cd48396691d3cd7 SHA512 8d70bb31f9d56d79b4cb74def6d3df2a3115b62672190d8c38b7fa628ad35481ad637dd4854e8331a4c5a649fa573c58c9b867b014bbaad7fe6c8c870a02eae2 -DIST pump_0.8.24.orig.tar.gz 79790 BLAKE2B f66e61ac240acc54027558059f628d1443a42a68873388366a07f58cc65bd6c03ec3f119c2679ccd9d5ab9d97234490728d8d474db478e33ea999e9b94a42987 SHA512 b6956f0ab2a5fbcda2320efd454d21aee651816a13a55622e21dc3a29919aef7db7c9a8d71c3b37b1969f29cff37c67d313f763a17404652fb962bc54eabcb34 diff --git a/net-misc/pump/metadata.xml b/net-misc/pump/metadata.xml deleted file mode 100644 index ef1a6e7a5e0e..000000000000 --- a/net-misc/pump/metadata.xml +++ /dev/null @@ -1,8 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> - <longdescription lang="en"> - A DHCP/BOOTP client - </longdescription> -</pkgmetadata> diff --git a/net-misc/pump/pump-0.8.24-r4.ebuild b/net-misc/pump/pump-0.8.24-r4.ebuild deleted file mode 100644 index e02eb9581e3b..000000000000 --- a/net-misc/pump/pump-0.8.24-r4.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils toolchain-funcs - -PATCHLEVEL="7" - -DESCRIPTION="This is the DHCP/BOOTP client written by RedHat" -HOMEPAGE="http://ftp.debian.org/debian/pool/main/p/pump/" -SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV}.orig.tar.gz - mirror://debian/pool/main/p/${PN}/${PN}_${PV}-${PATCHLEVEL}.diff.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm hppa ia64 ppc sparc x86" -IUSE="" - -DEPEND=">=dev-libs/popt-1.5" -RDEPEND="${DEPEND}" - -src_prepare() { - # Fix Debian patch to fit epatch logic - sed -i \ - -e 's:/debian::g' \ - -e '/^---/s:pump-0.8.24.orig/::' \ - -e '/^+++/s:pump-0.8.24/::' \ - "${WORKDIR}/${PN}_${PV}-${PATCHLEVEL}.diff" || die "sed on ${PN}_${PV}-${PATCHLEVEL}.diff failed" - - # Apply Debians pump patchset - they fix things good :) - # Debian patchset 7 include gentoo patchset too - epatch "${WORKDIR}/${PN}_${PV}-${PATCHLEVEL}.diff" - # Add LC_ALL workaround to make sure that patches are applied in right order(bug 471666) - LC_ALL=C EPATCH_FORCE="yes" EPATCH_SOURCE="patches" EPATCH_SUFFIX="patch" epatch - - # respect AR, wrt bug #458482 - tc-export AR - - epatch_user -} - -src_compile() { - emake CC="$(tc-getCC)" DEB_CFLAGS="-fPIC ${CFLAGS}" pump -} - -src_install() { - exeinto /sbin - doexe pump - - doman pump.8 - dodoc changelog CREDITS - - dolib.a libpump.a - doheader pump.h -} |