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 434CF138334 for ; Sat, 20 Apr 2019 23:07:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7919AE085A; Sat, 20 Apr 2019 23:07:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 3E942E085A for ; Sat, 20 Apr 2019 23:07:08 +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 3607E341EDF for ; Sat, 20 Apr 2019 23:07:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 976CC576 for ; Sat, 20 Apr 2019 23:07:05 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1555801591.d3877c1c71c6fcb906ac00534d47b74831404a2d.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/netplug/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/netplug/netplug-1.2.9.2-r1.ebuild X-VCS-Directories: sys-apps/netplug/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: d3877c1c71c6fcb906ac00534d47b74831404a2d X-VCS-Branch: master Date: Sat, 20 Apr 2019 23:07:05 +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: 3ede589d-aba8-4ae2-a081-5b50882b3433 X-Archives-Hash: 9ff4f0a9a6790324c170b7046445ddbe commit: d3877c1c71c6fcb906ac00534d47b74831404a2d Author: Lars Wendler gentoo org> AuthorDate: Sat Apr 20 23:03:33 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sat Apr 20 23:06:31 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3877c1c sys-apps/netplug: Removed old. Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> sys-apps/netplug/netplug-1.2.9.2-r1.ebuild | 63 ------------------------------ 1 file changed, 63 deletions(-) diff --git a/sys-apps/netplug/netplug-1.2.9.2-r1.ebuild b/sys-apps/netplug/netplug-1.2.9.2-r1.ebuild deleted file mode 100644 index 969fd2dbc4d..00000000000 --- a/sys-apps/netplug/netplug-1.2.9.2-r1.ebuild +++ /dev/null @@ -1,63 +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="Brings up/down ethernet ports automatically with cable detection" -HOMEPAGE="https://www.red-bean.com/~bos/" -SRC_URI="https://www.red-bean.com/~bos/netplug/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 arm ~mips ppc sparc x86" -IUSE="debug doc" - -DEPEND="doc? ( app-text/ghostscript-gpl - media-gfx/graphviz )" -RDEPEND="" - -src_prepare() { - # Remove debug flags from CFLAGS - if ! use debug; then - sed -i -e "s/ -ggdb3//" Makefile || die - fi - - # Remove -O3 and -Werror from CFLAGS - sed -i -e "s/ -O3//" -e "s/ -Werror//" Makefile || die - - # Remove nested functions, #116140 - epatch "${FILESDIR}/${PN}-1.2.9-remove-nest.patch" - - # Ignore wireless events - epatch "${FILESDIR}/${PN}-1.2.9-ignore-wireless.patch" -} - -src_compile() { - tc-export CC - emake CC="${CC}" - - if use doc; then - emake -C docs/ - fi -} - -src_install() { - into / - dosbin netplugd - doman man/man8/netplugd.8 - - dodir /etc/netplug.d - exeinto /etc/netplug.d - newexe "${FILESDIR}/netplug-2" netplug - - dodir /etc/netplug - echo "eth*" > "${D}"/etc/netplug/netplugd.conf || die - - dodoc ChangeLog NEWS README TODO - - if use doc; then - dodoc docs/state-machine.ps - fi -}