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 C1F0513835A for ; Thu, 7 Jan 2021 11:33:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8658BE086B; Thu, 7 Jan 2021 11:33:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 25111E086B for ; Thu, 7 Jan 2021 11:33:30 +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 E49B234137A for ; Thu, 7 Jan 2021 11:33:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4A559492 for ; Thu, 7 Jan 2021 11:33:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1610019194.92c5c3c00da38e72922b489b1afb5d6710181c87.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/mrouted/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/mrouted/Manifest net-misc/mrouted/mrouted-3.9.5-r1.ebuild X-VCS-Directories: net-misc/mrouted/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 92c5c3c00da38e72922b489b1afb5d6710181c87 X-VCS-Branch: master Date: Thu, 7 Jan 2021 11:33:27 +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: e542d20f-cfd2-4b2a-8c08-0fe9860fbf6f X-Archives-Hash: 556b50c44eebaafff96f8b50ffe61e5f commit: 92c5c3c00da38e72922b489b1afb5d6710181c87 Author: Sam James gentoo org> AuthorDate: Thu Jan 7 11:20:17 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 7 11:33:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92c5c3c0 net-misc/mrouted: cleanup old Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> net-misc/mrouted/Manifest | 1 - net-misc/mrouted/mrouted-3.9.5-r1.ebuild | 40 -------------------------------- 2 files changed, 41 deletions(-) diff --git a/net-misc/mrouted/Manifest b/net-misc/mrouted/Manifest index cee5d0e38fa..55077f32c12 100644 --- a/net-misc/mrouted/Manifest +++ b/net-misc/mrouted/Manifest @@ -1,2 +1 @@ -DIST mrouted-3.9.5.tar.bz2 112746 BLAKE2B 146d088b0fe3691c48b86a5bb4fb191c6a138fcef065c2afb549e068181953bb5ec46a6d710b2f158ba9290f8b7cc8dd3314cafeb0d681a43419a69d2cda58e4 SHA512 6ab7335fd18bcb971eb0f9af26e8fd566b1bf2e53abdfcdea847c4bd719d282496c443914678c6fcbcf754e276663ed48ac9f0ae9e940e60eff71ceb1f4622fd DIST mrouted-3.9.8.tar.bz2 112863 BLAKE2B 4a7defbb1b97be8e452881a689d99742df2878dc9c2613c79e1bdc33af398c2be1b2d21de94e90592877ee5b6aa6b2f0c64948193eda9005c828a6cc84e492c0 SHA512 50abf2271c76b604d1e356ca5c0b62a7f07487f364991502326bbee169c451b43b3dbf01b88340d6b406f16d86a6d6fd9e7bb03c6e76d6af463b46d8423a41f4 diff --git a/net-misc/mrouted/mrouted-3.9.5-r1.ebuild b/net-misc/mrouted/mrouted-3.9.5-r1.ebuild deleted file mode 100644 index 68ce9366198..00000000000 --- a/net-misc/mrouted/mrouted-3.9.5-r1.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit toolchain-funcs - -DESCRIPTION="IP multicast routing daemon" -HOMEPAGE="http://troglobit.com/mrouted.shtml" -SRC_URI="ftp://ftp.vmlinux.org/pub/People/jocke/${PN}/${P}.tar.bz2" -LICENSE="Stanford GPL-2" - -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -DEPEND="|| ( dev-util/yacc sys-devel/bison )" -RDEPEND="" - -src_prepare() { - # Respect user CFLAGS, remove upstream optimisation and -Werror - sed -i Makefile \ - -e '/^CFLAGS/{s|[[:space:]]=| +=|g;s|-O2||g;s|-Werror||g}' \ - || die - default -} - -src_compile() { - emake CC=$(tc-getCC) -} - -src_install() { - dobin mrouted - dosbin mtrace mrinfo map-mbone - doman mrouted.8 mtrace.8 mrinfo.8 map-mbone.8 - - insinto /etc - doins mrouted.conf - newinitd "${FILESDIR}"/mrouted.rc mrouted -}