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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 315D0158090 for ; Thu, 19 May 2022 17:23:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 53311E07FE; Thu, 19 May 2022 17:23:40 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1F119E07FE for ; Thu, 19 May 2022 17:23:40 +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 C9AD5341875 for ; Thu, 19 May 2022 17:23:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BE4503B5 for ; Thu, 19 May 2022 17:23:36 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1652981007.087ced48f64bcc4a34a60cb09fc2db9360fad564.bkohler@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/netifrc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/netifrc/metadata.xml net-misc/netifrc/netifrc-0.7.3-r1.ebuild X-VCS-Directories: net-misc/netifrc/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 087ced48f64bcc4a34a60cb09fc2db9360fad564 X-VCS-Branch: master Date: Thu, 19 May 2022 17:23:36 +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: 729d6759-94c0-42bd-ac51-6cad8cc38be1 X-Archives-Hash: 8f4e5e89853ac688995cfb6905b8e209 commit: 087ced48f64bcc4a34a60cb09fc2db9360fad564 Author: Ben Kohler gentoo org> AuthorDate: Thu May 19 17:22:11 2022 +0000 Commit: Ben Kohler gentoo org> CommitDate: Thu May 19 17:23:27 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=087ced48 net-misc/netifrc: depend on a dhcp client by default Signed-off-by: Ben Kohler gentoo.org> net-misc/netifrc/metadata.xml | 3 ++ net-misc/netifrc/netifrc-0.7.3-r1.ebuild | 71 ++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) diff --git a/net-misc/netifrc/metadata.xml b/net-misc/netifrc/metadata.xml index 19c1e2b9b47a..4f718879b413 100644 --- a/net-misc/netifrc/metadata.xml +++ b/net-misc/netifrc/metadata.xml @@ -8,4 +8,7 @@ This package contains the Gentoo network interface management scripts, which were separated from OpenRC. + + Allow interfaces to configure via DHCP + diff --git a/net-misc/netifrc/netifrc-0.7.3-r1.ebuild b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild new file mode 100644 index 000000000000..64bea176c13c --- /dev/null +++ b/net-misc/netifrc/netifrc-0.7.3-r1.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit systemd udev + +DESCRIPTION="Gentoo Network Interface Management Scripts" +HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/" + +if [[ ${PV} == "9999" ]]; then + EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/netifrc.git" + #EGIT_REPO_URI="https://github.com/gentoo/${PN}" # Alternate + inherit git-r3 +else + SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +fi + +LICENSE="BSD-2" +SLOT="0" +IUSE="+dhcp" + +DEPEND="!"${S}"/ChangeLog + fi + + default +} + +src_compile() { + MAKE_ARGS="${MAKE_ARGS} + UDEVDIR=${EPREFIX}$(get_udevdir) + LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}" + + use prefix && MAKE_ARGS+=" MKPREFIX=yes PREFIX=${EPREFIX}" + + emake ${MAKE_ARGS} all +} + +src_install() { + emake ${MAKE_ARGS} DESTDIR="${D}" install + dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO + + # Install the service file + LIBEXECDIR="${EPREFIX}/lib/${PN}" + UNIT_DIR="$(systemd_get_systemunitdir)" + sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > "${T}/net_at.service" || die + systemd_newunit "${T}/net_at.service" 'net@.service' + dosym "${UNIT_DIR#${EPREFIX}}/net@.service" "${UNIT_DIR#${EPREFIX}}/net@lo.service" +} + +pkg_postinst() { + if [[ ! -e "${EROOT}"/etc/conf.d/net && -z ${REPLACING_VERSIONS} ]]; then + elog "The network configuration scripts will use dhcp by" + elog "default to set up your interfaces." + elog "If you need to set up something more complete, see" + elog "${EROOT}/usr/share/doc/${P}/README" + fi +}