aports/main/ifupdown-ng/APKBUILD
donoban 969e89a6a0 main/ifupdown-ng: add 'bridge' dep
It's a workaround until ifupdown-ng fully supports bridge on alpinelinux
2024-12-14 20:29:02 +00:00

126 lines
3.3 KiB
Text

# Maintainer: Ariadne Conill <ariadne@dereferenced.org>
pkgname=ifupdown-ng
pkgver=0.12.1
pkgrel=7
pkgdesc="tools for managing network configuration"
url="https://github.com/ifupdown-ng/ifupdown-ng"
arch="all"
license="ISC"
checkdepends="kyua atf"
makedepends="scdoc"
# Networking initd script is provided by openrc package
subpackages="
$pkgname-doc
$pkgname-iproute2
$pkgname-ppp
$pkgname-wireguard
$pkgname-wireguard-quick:wgquick
$pkgname-ethtool
$pkgname-batman
$pkgname-wifi
"
source="https://distfiles.ariadne.space/ifupdown-ng/ifupdown-ng-$pkgver.tar.xz
01-add-onlink-to-default-route.patch
"
provides="ifupdown-any"
provider_priority=900
# We conflict with the vlan package because we provide our own
# vlan support with the link executor.
depends="!vlan bridge"
# We only install the core executors right now. The other executors are
# still being ported to run under ifupdown-ng natively, and so we will
# use the ifupdown scripts for now for those cases. However, it is nice
# to make the automatic dependency resolution work, and ifupdown-ng
# provides some stubs to enable that.
_executor_stubs="bridge bond"
# These are optional executors which do not conflict with what we are
# presently shipping. These executors require iproute2.
_executor_iproute2="vrf gre vxlan mpls"
# These are all optional executors we plan to use.
_executor_opt="ppp wireguard wireguard-quick ethtool batman wifi $_executor_iproute2"
build() {
make
make docs
}
check() {
make check
}
package() {
make DESTDIR="$pkgdir" EXECUTOR_SCRIPTS_OPT="$_executor_opt" EXECUTOR_SCRIPTS_STUB="$_executor_stubs" install install_docs
}
iproute2() {
pkgdesc="ifupdown-ng integration for iproute2"
depends="iproute2-minimal"
install_if="$pkgname=$pkgver-r$pkgrel $depends"
for exec in $_executor_iproute2; do
amove usr/libexec/ifupdown-ng/$exec
done
}
ppp() {
pkgdesc="ifupdown-ng integration for ppp"
depends="ppp-daemon"
install_if="$pkgname=$pkgver-r$pkgrel $depends"
amove usr/libexec/ifupdown-ng/ppp
}
wireguard() {
pkgdesc="ifupdown-ng integration for wireguard"
depends="wireguard-tools-wg"
install_if="$pkgname=$pkgver-r$pkgrel $depends"
amove usr/libexec/ifupdown-ng/wireguard
}
wgquick() {
pkgdesc="ifupdown-ng integration for wireguard wg-quick"
depends="wireguard-tools-wg-quick"
install_if="$pkgname=$pkgver-r$pkgrel $depends"
amove usr/libexec/ifupdown-ng/wireguard-quick
}
ethtool() {
pkgdesc="ifupdown-ng integration for ethtool"
depends="ethtool"
install_if="$pkgname=$pkgver-r$pkgrel $depends"
amove usr/libexec/ifupdown-ng/ethtool
}
batman() {
pkgdesc="ifupdown-ng integration for B.A.T.M.A.N. advanced"
depends="batctl"
install_if="$pkgname=$pkgver-r$pkgrel $depends"
amove usr/libexec/ifupdown-ng/batman
}
wifi() {
pkgdesc="ifupdown-ng integration for wifi"
depends="wpa_supplicant"
install_if="$pkgname=$pkgver-r$pkgrel $depends"
amove usr/libexec/ifupdown-ng/wifi
}
doc() {
default_doc
amove etc/network/ifupdown-ng.conf.example
}
sha512sums="
c2c1e27fbd53eeb4150e544a893352f13845b491850e982a5880160c3be03b628794f7989c802ff823ac3e8c6c34dc4ab97c0abcefdda85f06fcd64ced8ac60c ifupdown-ng-0.12.1.tar.xz
5a4900356cf4ea48d5088d98328cf3f8a821a52a3b9518987a6432fc1349c3a314bbe20d46736ec8781e2a675398e15183c1ab8c0ba617c3e49b164fbbb48baf 01-add-onlink-to-default-route.patch
"