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 47E141382C5 for ; Tue, 17 Apr 2018 20:27:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 58B60E0A98; Tue, 17 Apr 2018 20:27:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 351DEE0A98 for ; Tue, 17 Apr 2018 20:27:55 +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 E30AF335C61 for ; Tue, 17 Apr 2018 20:27:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0ACA728D for ; Tue, 17 Apr 2018 20:27:51 +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: <1523996790.6869ee00e01d967f197e93045a943d44b1e00e9d.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/muh/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-irc/muh/muh-2.2a.ebuild X-VCS-Directories: net-irc/muh/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 6869ee00e01d967f197e93045a943d44b1e00e9d X-VCS-Branch: master Date: Tue, 17 Apr 2018 20:27:51 +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: 31b37b74-ca01-4885-9203-1213e49be354 X-Archives-Hash: b449455a06b862784aecf241035cd463 commit: 6869ee00e01d967f197e93045a943d44b1e00e9d Author: Harri Nieminen gmail com> AuthorDate: Tue Apr 17 08:37:20 2018 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Apr 17 20:26:30 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6869ee00 net-irc/muh: Clean up old Package-Manager: Portage-2.3.29, Repoman-2.3.9 net-irc/muh/muh-2.2a.ebuild | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/net-irc/muh/muh-2.2a.ebuild b/net-irc/muh/muh-2.2a.ebuild deleted file mode 100644 index 8e6aff1cf71..00000000000 --- a/net-irc/muh/muh-2.2a.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -DESCRIPTION="Persistent IRC bouncer" -HOMEPAGE="http://mind.riot.org/muh/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha ~amd64 ~hppa ~mips ppc ~sparc x86" -IUSE="ipv6" - -DEPEND="" - -src_compile() { - econf --datadir=/usr/share/muh $(use_enable ipv6) || die "econf failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog TODO -} - -pkg_postinst() { - elog - elog "You'll need to configure muh before running it." - elog "Put your config in ~/.muh/muhrc" - elog "A sample config is /usr/share/muh/muhrc" - elog "For more information, see the documentation." - elog -}