From 8ed4f65f41a2470c063e34bd41cd3c6949508c68 Mon Sep 17 00:00:00 2001 From: Matt Housh Date: Thu, 6 Apr 2023 12:02:41 -0500 Subject: [PATCH] bridge-utils: dropped; deprecated for a while now, use iproute2's bridge support instead --- bridge-utils/.footprint | 7 ------- bridge-utils/.signature | 5 ----- bridge-utils/Pkgfile | 27 --------------------------- 3 files changed, 39 deletions(-) delete mode 100644 bridge-utils/.footprint delete mode 100644 bridge-utils/.signature delete mode 100644 bridge-utils/Pkgfile diff --git a/bridge-utils/.footprint b/bridge-utils/.footprint deleted file mode 100644 index 0e8873eb7..000000000 --- a/bridge-utils/.footprint +++ /dev/null @@ -1,7 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/sbin/ --rwxr-xr-x root/root usr/sbin/brctl -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man8/ --rw-r--r-- root/root usr/share/man/man8/brctl.8.gz diff --git a/bridge-utils/.signature b/bridge-utils/.signature deleted file mode 100644 index cb3ff81de..000000000 --- a/bridge-utils/.signature +++ /dev/null @@ -1,5 +0,0 @@ -untrusted comment: verify with /etc/ports/contrib.pub -RWSagIOpLGJF357Pc3cVVKFvLenTGX4Hex4hUr4qCvzinZJwz8AyuWJXH/9XuSGFA/uBD6yPt1+J9J+Bsy+zdsK/Xxl7lcZtEwE= -SHA256 (Pkgfile) = 48f00181ee2b1546844646aee2b2b84903dc7e3c0bad21695f77496fdbc288aa -SHA256 (.footprint) = 17197ce86e1ec11083ee1a9fcda95f253b2ff6f482bbb9427c07582ea12b06d9 -SHA256 (bridge-utils-1.7.1.tar.xz) = a61d8be4f1a1405c60c8ef38d544f0c18c05b33b9b07e5b4b31033536165e60e diff --git a/bridge-utils/Pkgfile b/bridge-utils/Pkgfile deleted file mode 100644 index 271e72ecd..000000000 --- a/bridge-utils/Pkgfile +++ /dev/null @@ -1,27 +0,0 @@ -# Description: Linux IEEE 802.1d ethernet bridging utilities -# URL: https://www.linuxfoundation.org/collaborate/workgroups/networking/bridge -# Maintainer: Matt Housh, jaeger at crux dot ninja - -name=bridge-utils -version=1.7.1 -release=1 -source=(https://mirrors.edge.kernel.org/pub/linux/utils/net/bridge-utils/$name-$version.tar.xz) - -build() { - cd $name-$version - - # make compilation fail instead of producing footprint mismatches - sed -i 's/ ; done/ || exit 1 &/g' Makefile.in - autoconf - - ./configure --prefix=/usr - - # fix includes... - sed -i 's|\(#include \)|\1\n#include |1' \ - libbridge/libbridge.h - sed -i -e 's|linux/if.h|net/if.h|1' -e '/if_bridge.h/d' libbridge/libbridge.h - sed -i '/KERNEL_HEADERS=/d' libbridge/Makefile - - make - make DESTDIR=$PKG install -}