mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
net-misc/netifrc: add 0.7.13
Alon Bar-Lev (3):
net: ifplugd: support busybox
net: ip6token: remote token only if added
net: qmi: support adding extra arguments
Sam James (1):
Makefile.inc: prepare for netifrc-0.7.13
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
parent
03ac4311de
commit
6e9560f18f
@ -1,5 +1,6 @@
|
||||
DIST netifrc-0.7.11.tar.bz2 76798 BLAKE2B 2e92480c938ef717e5eaa962747668e51007e76934b8528e144f91e05654bd274759cecc4e0329db25b31038d8eea3071bcbe3b51a3c613d00b171b9b849910f SHA512 5187644abf10ef6238fcb81fec21f3acbf52025b3dc8ca9875b010a039ef659bf723368ab49e0a4930419057c6339ae93c4979b22b2776698c74f418247fb5a2
|
||||
DIST netifrc-0.7.12.tar.bz2 76807 BLAKE2B 9e213cd09321f58f09c4054ec0b604b8d59a8985030099bf04a0975fd51da1d42b65a413fe8fc113632353fd4048912b373a2e445b77a071db1be4d95fab7698 SHA512 9f78c9cf9cb33220aec890138c1c542a88bef5049d0762e0a41358061f1d603cdd940af75cfc01a1918ca7f458f1ab17a76afdb572a2940b855bdcc159d0ecd2
|
||||
DIST netifrc-0.7.13.tar.bz2 76906 BLAKE2B 3c5d356d8795d693553bae87dd97d6d59d2010f45b9c08ba0f81dbe0dd62c223556cd0b39ce651c23d58e1ae7872e1a1d826e389cc6c9678cd4c2e3301faa44b SHA512 b994924a2528a161da9c15ba07affce502ff0d5ce5a4abbb7140e97e5c9233eab12d6dc3d6063eda1fa830544f14fe085f0904ef04d194334493a065e8cf3663
|
||||
DIST netifrc-0.7.7.tar.bz2 75823 BLAKE2B e2d99ac347e9a449b39981b1aa1585ff83d05af1bafe09f7e2e25954360df1e76f53ce4a5c8e08777ba45baf697a307697576835df4c4b4ae010ab84dbe8bb2b SHA512 995f89beece9e7ff0b558b466c06a476f22d3161f31622a232c382d81e74399aeb0a39cb4a95080829120c527a1a93757425671e2ca3639d8637e5e905ad3e80
|
||||
DIST netifrc-0.7.8.tar.bz2 76239 BLAKE2B 501a2bcfaa2753187425cba31f01b2a644ae4d01da76e4bd3722b815b1fa743905728fd66ac9d56c915dba767723bd5df2c417706c8a0150628e61b6e0b86ffb SHA512 d483453058d3e8c3cb22e8eedea69e12ac5fe94449d35a2cd842d7e32603174a470a8a4e883ebf24a0f09374dbf1f4c0c0db5094ae2d2191bcc1c9c8356170ad
|
||||
DIST netifrc-0.7.9.tar.bz2 76842 BLAKE2B bcdd12fc6202b550d157eb531d28277fdd3216a7b547542da96d79a0ff42168d19fa50e86643f290049df87db84d1b15aefab4041e0a3f8334b6e8bd6ec650db SHA512 3a29294c71ce663cc114406a1ee2310fd33dd60826d5cc1b264475410face7ba8e685ed0a8f7255842065e75ca6670ee5e1333c8092b8fae71732f4e40e68404
|
||||
|
||||
91
net-misc/netifrc/netifrc-0.7.13.ebuild
Normal file
91
net-misc/netifrc/netifrc-0.7.13.ebuild
Normal file
@ -0,0 +1,91 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit systemd udev
|
||||
|
||||
DESCRIPTION="Gentoo Network Interface Management Scripts"
|
||||
HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Netifrc"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
EGIT_REPO_URI="
|
||||
https://anongit.gentoo.org/git/proj/netifrc.git
|
||||
https://github.com/gentoo/${PN}
|
||||
"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="BSD-2 GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="+dhcp"
|
||||
|
||||
RDEPEND="
|
||||
sys-apps/gentoo-functions
|
||||
>=sys-apps/openrc-0.15
|
||||
dhcp? (
|
||||
|| (
|
||||
net-misc/dhcpcd
|
||||
net-misc/dhcp[client]
|
||||
sys-apps/busybox
|
||||
)
|
||||
)
|
||||
"
|
||||
BDEPEND="
|
||||
kernel_linux? ( virtual/pkgconfig )
|
||||
"
|
||||
|
||||
src_prepare() {
|
||||
if [[ ${PV} == 9999 ]] ; then
|
||||
local ver="git-${EGIT_VERSION:0:6}"
|
||||
sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
|
||||
einfo "Producing ChangeLog from Git history"
|
||||
GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
|
||||
fi
|
||||
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
MAKE_ARGS=(
|
||||
PREFIX="${EPREFIX}"
|
||||
UPREFIX="${EPREFIX}/usr"
|
||||
UDEVDIR="${EPREFIX}$(get_udevdir)"
|
||||
LIBEXECDIR="${EPREFIX}/lib/${PN}"
|
||||
PF="${PF}"
|
||||
)
|
||||
|
||||
emake "${MAKE_ARGS[@]}" all
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake "${MAKE_ARGS[@]}" DESTDIR="${D}" install
|
||||
dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
|
||||
|
||||
# Install the service file
|
||||
local LIBEXECDIR="${EPREFIX}/lib/${PN}"
|
||||
sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > "${T}/net_at.service" || die
|
||||
systemd_newunit "${T}/net_at.service" 'net@.service'
|
||||
|
||||
local UNIT_DIR="$(systemd_get_systemunitdir)"
|
||||
UNIT_DIR="${UNIT_DIR#"${EPREFIX}"}"
|
||||
dosym net@.service "${UNIT_DIR}/net@lo.service"
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
udev_reload
|
||||
|
||||
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
|
||||
}
|
||||
|
||||
pkg_postrm() {
|
||||
udev_reload
|
||||
}
|
||||
@ -15,7 +15,7 @@ if [[ ${PV} == 9999 ]]; then
|
||||
"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz"
|
||||
SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.bz2"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
|
||||
fi
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user