Update package version to 6.14.0

This commit is contained in:
2025-04-09 10:34:13 +03:00
parent 9f81f5885f
commit d45ab64371
2 changed files with 9 additions and 13 deletions
+4 -5
View File
@@ -1,10 +1,9 @@
name: iproute2 name: iproute2
description: IP Routing utilities description: IP Routing utilities
version: 6.7.0 version: 6.14.0
revision: 2
url: https://www.kernel.org/pub/linux/utils/net/iproute2/ url: https://www.kernel.org/pub/linux/utils/net/iproute2/
license: GPL2 license: GPL2-or-later
architecture: any architecture: any
depends: ["bash","coreutils","glibc","libcap","libelf","zlib","libmnl"] depends: ["glibc","libcap","libelf","iptables"]
make_depends: ["bash","bison","coreutils","flex","gcc","glibc","make","libcap","libelf","pkgconf","zlib"] optional_depends: ["python3"]
type: source type: source
+5 -8
View File
@@ -15,21 +15,18 @@ prepare() {
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
# arpd depends on berkely DB which is not included in Tide Linux at the moment
sed -i /ARPD/d Makefile sed -i /ARPD/d Makefile
rm -fv man/man8/arpd.8 rm -fv man/man8/arpd.8
make NETNS_RUN_DIR=/run/netns
}
# The check function is executed in the source directory make NETNS_RUN_DIR=/run/netns
# This function is used to run tests to verify the package has been compiled correctly
check() {
make check
} }
# The package function is executed in the source directory # The package function is executed in the source directory
# This function is used to move the compiled files into the output directory # This function is used to move the compiled files into the output directory
package() { package() {
make SBINDIR=/usr/sbin DESTDIR="$BPM_OUTPUT" install make SBINDIR=/usr/sbin DESTDIR="$BPM_OUTPUT" install
mkdir -pv "$BPM_OUTPUT"/usr/share/doc/iproute2
cp -v COPYING README* "$BPM_OUTPUT"/usr/share/doc/iproute2 # Install package license
install -Dm644 "$BPM_SOURCE"/COPYING "$BPM_OUTPUT"/usr/share/licenses/iproute2/COPYING
} }