Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/shlibs
Original file line number Diff line number Diff line change
Expand Up @@ -3741,7 +3741,7 @@ libvalapanel.so.0 vala-panel-0.4.87_1
libappmenu-gtk3-parser.so.0 appmenu-gtk3-module-0.7.1_1
libqhttpengine.so.1 qhttpengine-1.0.1_1
libqmdnsengine.so.0 qmdnsengine-0.1.0_1
libyang.so.1 libyang-1.0r5_1
libyang.so.3 libyang-3.13.6_1
libhtp.so.2 libhtp-0.5.30_1
libgedit-50.so gedit-50.0_1
libgedit-amtk-5.so.0 libgedit-amtk-5.8.0_1
Expand Down
79 changes: 0 additions & 79 deletions srcpkgs/frr/patches/python-3.13.patch

This file was deleted.

31 changes: 17 additions & 14 deletions srcpkgs/frr/template
Original file line number Diff line number Diff line change
@@ -1,27 +1,26 @@
# Template file for 'frr'
pkgname=frr
version=7.5
revision=8
version=10.7.0
revision=1
build_style=gnu-configure
# chroot-texinfo is not able to build frr's docs
configure_args="--disable-doc
--localstatedir=/run/frr --sysconfdir=/etc/frr
--enable-exampledir=/usr/share/examples/frr
--enable-user=_frr --enable-group=_frr --enable-vty-group=_frrvty"
configure_args="--disable-doc --localstatedir=/run/frr --sysconfdir=/etc/frr
--enable-exampledir=/usr/share/examples/frr --enable-vty-group=_frrvty
--enable-user=_frr --enable-group=_frr"
make_build_args="SPHINXBUILD=sphinx-build"
conf_files="/etc/frr/*.conf"
make_dirs="/var/log/frr 0700 _frr _frr"
hostmakedepends="pkg-config flex bison autoconf automake libtool
python3 python3-Sphinx python3-devel libyang-tools"
hostmakedepends="pkg-config flex bison autoconf automake libtool libyang-tools
python3 python3-Sphinx protobuf protobuf-c"
makedepends="pcre-devel libcap-devel json-c-devel pam-devel c-ares-devel
readline-devel python3-devel libyang-devel"
readline-devel python3-devel libyang-devel elfutils-devel protobuf-c-devel"
checkdepends="python3-pytest"
short_desc="IP routing protocol suite"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later, LGPL-2.1-or-later"
homepage="https://frrouting.org"
distfiles="https://github.com/FRRouting/frr/archive/${pkgname}-${version}.tar.gz"
checksum=54066e82a82751ec5876d9b67aa0cb24fe94e19e7371af290ac25099eda9f136
distfiles="https://github.com/FRRouting/frr/archive/refs/tags/frr-${version}.tar.gz"
checksum=5c56b27756854b8d0a62b3e152d3f9ea08091851b2d686e140fdfb95cd88f612
conflicts="babeld"
python_version=3
system_groups="_frrvty"
Expand Down Expand Up @@ -49,6 +48,12 @@ pre_configure() {
}

post_install() {
rm -f \
"${DESTDIR}/usr/share/yang/ietf-interfaces.yang" \
"${DESTDIR}/usr/share/yang/ietf-netconf-acm.yang" \
"${DESTDIR}/usr/share/yang/ietf-netconf-with-defaults.yang" \
"${DESTDIR}/usr/share/yang/ietf-netconf.yang"
Comment on lines +51 to +55

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why?


if [ -z "$CROSS_BUILD" ]; then
# install build tool to be used by cross builds
vinstall lib/clippy 0755 usr/libexec/frr-devel
Expand Down Expand Up @@ -113,9 +118,7 @@ libfrr-devel_package() {
short_desc+=" - client library (development files)"
depends="${pkgname%-devel}-${version}_${revision}"
pkg_install() {
vmove "usr/include/frr/*.h"
vmove usr/include/frr/ospfd
vmove usr/include/frr/eigrpd
vmove usr/include/frr
vmove usr/lib/libfrr.so
vmove usr/lib/libfrr.a
vmove usr/lib/libfrrcares.so
Expand Down
9 changes: 4 additions & 5 deletions srcpkgs/libyang/template
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
# Template file for 'libyang'
pkgname=libyang
version=1.0.215
version=3.13.6
revision=1
build_style=cmake
configure_args="-DENABLE_LYD_PRIV=ON"
hostmakedepends="doxygen pkg-config"
makedepends="pcre-devel"
makedepends="pcre2-devel"
short_desc="YANG data modeling language library"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause"
homepage="https://github.com/CESNET/libyang"
distfiles="https://github.com/CESNET/libyang/archive/v${version}.tar.gz"
checksum=c4498a77a7c12a28c9911f993eeafbf2badd2ecea58bb74781bd61cfc635e4c9
distfiles="https://github.com/CESNET/libyang/archive/refs/tags/v${version}.tar.gz"
checksum=5cd5018f39c830f97d70616c003990287ce5e820ae2792763a49e2a1f63af8d6

post_install() {
vlicense LICENSE
Expand Down