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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CFF4D15823F for ; Sun, 19 Nov 2023 10:19:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC50A2BC038; Sun, 19 Nov 2023 10:19:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BD0112BC038 for ; Sun, 19 Nov 2023 10:19:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2BB1335CEA for ; Sun, 19 Nov 2023 10:19:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14BD013A7 for ; Sun, 19 Nov 2023 10:19:29 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1700388791.7d2122271dd7806d96792f92efce64758718be7f.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/taptap/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/taptap/Manifest net-misc/taptap/taptap-1.0.ebuild X-VCS-Directories: net-misc/taptap/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 7d2122271dd7806d96792f92efce64758718be7f X-VCS-Branch: master Date: Sun, 19 Nov 2023 10:19:29 +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: 3f9ab6a0-dff4-4ddd-abc1-0d3f6b636aa2 X-Archives-Hash: 1886eaa1ea307ac42ce5a2b0aaa70c50 commit: 7d2122271dd7806d96792f92efce64758718be7f Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sat Sep 16 17:05:33 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Nov 19 10:13:11 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d212227 net-misc/taptap: remove old Signed-off-by: Michael Mair-Keimberger levelnine.at> Signed-off-by: Ulrich Müller gentoo.org> net-misc/taptap/Manifest | 1 - net-misc/taptap/taptap-1.0.ebuild | 28 ---------------------------- 2 files changed, 29 deletions(-) diff --git a/net-misc/taptap/Manifest b/net-misc/taptap/Manifest index e82c8f5e056e..71a3aea69f6d 100644 --- a/net-misc/taptap/Manifest +++ b/net-misc/taptap/Manifest @@ -1,2 +1 @@ DIST taptap-1.0.c 2665 BLAKE2B 3c857770fd016c1837a3cdf6b8244965cd4128c9d260ab584ffa2e6e7e6deac4e35cb3800aec81f4950e0cd891bc7391be0a5a7b926681595ddde671d571d9bf SHA512 74ec6012cc34f5f4b5e2d16aff3840e842b7a7f297df5277b8ee7305fed900a16d25a853b8e9544b464037f9946ca1588959e5faafeff3afd14813ac419551e1 -DIST taptap-1.0.tar.bz2 1640 BLAKE2B ae2bea178439991057dca6dfd2478f4927e0c762da96f8358eeb029a97cce051c894c4181801daf70681b4a3a1257ab3371a4f9ee039df2157cac226cced846b SHA512 ab9264823c470fd76530258fa3b8993799bd1170269b1e8e143ef072ac5749cc51716cd53ffec285b3a3266e4503be8d0d91094f82c30dd85607ef8cd368f53e diff --git a/net-misc/taptap/taptap-1.0.ebuild b/net-misc/taptap/taptap-1.0.ebuild deleted file mode 100644 index f95f52794ab5..000000000000 --- a/net-misc/taptap/taptap-1.0.ebuild +++ /dev/null @@ -1,28 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -inherit toolchain-funcs - -DESCRIPTION="A program to link two /dev/net/tun to form virtual ethernet" -HOMEPAGE="http://www.munted.org.uk/programming/taptap/" -SRC_URI="http://www.munted.org.uk/programming/${PN}/${P}.tar.bz2" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~sparc ~x86" -IUSE="" - -S=${WORKDIR}/${PN} - -src_prepare() { - default - sed -i \ - -e 's:= -Wall -s:+= -Wall:' \ - -e 's:$(CFLAGS):$(LDFLAGS) &:' \ - Makefile || die -} - -src_compile() { - emake CC="$(tc-getCC)" -}