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 A81EB138334 for ; Sat, 15 Sep 2018 12:47:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92110E0AF0; Sat, 15 Sep 2018 12:47:18 +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 6CEE3E0AF0 for ; Sat, 15 Sep 2018 12:47:18 +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 4DA44335C5B for ; Sat, 15 Sep 2018 12:47:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDDE73C1 for ; Sat, 15 Sep 2018 12:47:15 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1537015600.23e17d289e0689f8167e7b68190104ccc94b577c.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netpipe/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild net-misc/netpipe/netpipe-1.0.0_beta2.ebuild X-VCS-Directories: net-misc/netpipe/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 23e17d289e0689f8167e7b68190104ccc94b577c X-VCS-Branch: master Date: Sat, 15 Sep 2018 12:47:15 +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-Archives-Salt: d491a429-7933-4031-bc27-fb2741f378b5 X-Archives-Hash: 06e5880713c13144cddb3a60dfa28919 commit: 23e17d289e0689f8167e7b68190104ccc94b577c Author: Mikle Kolyada gentoo org> AuthorDate: Sat Sep 15 12:46:40 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Sep 15 12:46:40 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23e17d28 net-misc/netpipe: Drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild | 31 ----------------------- net-misc/netpipe/netpipe-1.0.0_beta2.ebuild | 34 -------------------------- 2 files changed, 65 deletions(-) diff --git a/net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild b/net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild deleted file mode 100644 index af216cb7ee0..00000000000 --- a/net-misc/netpipe/netpipe-1.0.0_beta2-r1.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs - -DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques" -HOMEPAGE="https://www.wudika.de/~jan/netpipe/" -SRC_URI="https://www.wudika.de/~jan/${PN}/${PN}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i \ - -e "s:^OPT=.*:OPT = ${CFLAGS} ${LDFLAGS}:" \ - -e "s:^CC=.*:CC = $(tc-getCC):" \ - Makefile || die "sed failed" -} - -src_install() { - dobin netpipe || die "dobin failed" - dodoc DOCUMENTATION INSTALL TECH-NOTES || die -} diff --git a/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild b/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild deleted file mode 100644 index 4c8855a3fed..00000000000 --- a/net-misc/netpipe/netpipe-1.0.0_beta2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit toolchain-funcs - -DESCRIPTION="tool to reliably distribute binary data using UDP broadcasting techniques" -HOMEPAGE="https://www.wudika.de/~jan/netpipe/" -SRC_URI="https://www.wudika.de/~jan/netpipe/${PN}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="ppc x86" -IUSE="" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}/${PN}" - -src_unpack() { - unpack ${A} - cd "${S}" - sed -i \ - -e "s:^OPT=.*:OPT = ${CFLAGS}:" \ - -e "s:^CC=.*:CC = $(tc-getCC):" \ - Makefile -} - -src_install() { - dobin netpipe || die "dobin failed" - dodoc DOCUMENTATION INSTALL TECH-NOTES -}