From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2D3811382C5 for ; Sun, 29 Nov 2020 09:56:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0BDD6E0884; Sun, 29 Nov 2020 09:56:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7727E0884 for ; Sun, 29 Nov 2020 09:56:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 327EC340E73 for ; Sun, 29 Nov 2020 09:56:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7438B472 for ; Sun, 29 Nov 2020 09:56:08 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1606643715.17e026bfd8bf2adfb13be3384a2f216c6077015d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pipes/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/pipes/pipes-1.16.1.ebuild X-VCS-Directories: net-misc/pipes/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 17e026bfd8bf2adfb13be3384a2f216c6077015d X-VCS-Branch: master Date: Sun, 29 Nov 2020 09:56:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 52c836dc-2380-42c6-a6c9-a719cdbde9f1 X-Archives-Hash: 5e6eb60fd0edd5884becac13bb83da4c commit: 17e026bfd8bf2adfb13be3384a2f216c6077015d Author: David Seifert gentoo org> AuthorDate: Sun Nov 29 09:55:15 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Nov 29 09:55:15 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17e026bf net-misc/pipes: Remove old Package-Manager: Portage-3.0.10, Repoman-3.0.2 Signed-off-by: David Seifert gentoo.org> net-misc/pipes/pipes-1.16.1.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/net-misc/pipes/pipes-1.16.1.ebuild b/net-misc/pipes/pipes-1.16.1.ebuild deleted file mode 100644 index 99191300b44..00000000000 --- a/net-misc/pipes/pipes-1.16.1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils toolchain-funcs - -DESCRIPTION="Very versatile TCP pipes" -HOMEPAGE="https://bisqwit.iki.fi/source/pipes.html" -SRC_URI="https://bisqwit.iki.fi/src/arch/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc s390 x86" - -src_prepare() { - # Prevent the build system from looking for dependencies - touch .depend || die -} - -src_compile() { - emake CC=$(tc-getCC) OPTIM="${CFLAGS}" LDFLAGS="${CFLAGS} ${LDFLAGS}" -} - -src_install() { - dobin plis - dosym /usr/bin/plis /usr/bin/pcon - dodoc Examples ChangeLog - dohtml README.html -}