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 BBC99158095 for ; Wed, 31 Aug 2022 07:18:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 618AEE085A; Wed, 31 Aug 2022 07:18:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4A039E085A for ; Wed, 31 Aug 2022 07:18:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 83ED2341349 for ; Wed, 31 Aug 2022 07:18:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C0E09596 for ; Wed, 31 Aug 2022 07:18:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1661929821.924de02a6cb3651036cf7749dc4eeab87b3dc623.asturm@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-r2.ebuild X-VCS-Directories: sys-apps/netplug/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 924de02a6cb3651036cf7749dc4eeab87b3dc623 X-VCS-Branch: master Date: Wed, 31 Aug 2022 07:18: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fd3f67a7-dd1d-46d0-a250-d5b152f9b2e5 X-Archives-Hash: 8c8557086d792243edf8331f62b3f7d2 commit: 924de02a6cb3651036cf7749dc4eeab87b3dc623 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Aug 31 07:10:21 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Aug 31 07:10:21 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=924de02a sys-apps/netplug: drop 1.2.9.2-r2 Closes: https://bugs.gentoo.org/867556 Signed-off-by: Andreas Sturmlechner gentoo.org> sys-apps/netplug/netplug-1.2.9.2-r2.ebuild | 70 ------------------------------ 1 file changed, 70 deletions(-) diff --git a/sys-apps/netplug/netplug-1.2.9.2-r2.ebuild b/sys-apps/netplug/netplug-1.2.9.2-r2.ebuild deleted file mode 100644 index a3713b1e7b79..000000000000 --- a/sys-apps/netplug/netplug-1.2.9.2-r2.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit 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 ppc64 sparc x86" -IUSE="debug doc" - -DEPEND="doc? ( app-text/ghostscript-gpl - media-gfx/graphviz )" -RDEPEND="" - -PATCHES=( - # Remove nested functions, #116140 - "${FILESDIR}/${PN}-1.2.9-remove-nest.patch" - - # Ignore wireless events - "${FILESDIR}/${PN}-1.2.9-ignore-wireless.patch" - - # Fix DOWNANDOUT problem #599400 - "${FILESDIR}/${P}-downandout.patch" -) - -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 - - default -} - -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 -}