Skip to content
Snippets Groups Projects
Commit a388db3d authored by Jakub Jirutka's avatar Jakub Jirutka :flag_ua:
Browse files

community/tacacs+ng: upgrade to 0_git20241212

parent a57e51a6
No related branches found
No related tags found
1 merge request!76946stubby-openrc: fix user not found error
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=tacacs+ng
pkgver=0_git20230214
_gitrev=184d084e84766e33f63e84c99d6d16cabae87258
pkgrel=1
pkgver=0_git20241212
_gitrev=f7a5ed1dae2996e8c544eaeb93b70c3c4b3be433
pkgrel=0
pkgdesc="TACACS+ NG authentication daemon"
url="https://www.pro-bono-publico.de/projects/tac_plus-ng.html"
arch="all"
......@@ -26,7 +26,6 @@ subpackages="
"
install="$pkgname.pre-install"
source="https://github.com/MarcJHuber/event-driven-servers/archive/$_gitrev/event-driven-servers-$_gitrev.tar.gz
fix-include-poll.h.patch
libmavis-soname.patch
kill-rpath.patch
tac_plus-ng.initd
......@@ -53,14 +52,11 @@ build() {
--without-execinfo \
--without-freeradius \
--with-ipc \
--without-lwres \
--without-pam \
--without-pcre \
--with-pcre2 \
--with-radcli \
--with-sctp \
--without-ssl \
--with-tls \
--with-ssl \
tac_plus-ng
make -j1
}
......@@ -110,8 +106,7 @@ perl() {
}
sha512sums="
262459227b462ccada2532ead461f339320b93473a9fbb4afc1c0789d0f3b17b4ceba3cdc34b2b8c981889218c0f11803de2c7b9a47af85dd96b85843996c447 event-driven-servers-184d084e84766e33f63e84c99d6d16cabae87258.tar.gz
25cc6877536a59496c71c96f7a5c2b2f17f3fe2f7d823146e334f5f85f9933911eab051678982667bb4aef38b2d125fe152ad310e441c1b9d2cd7c62cc142923 fix-include-poll.h.patch
6690174d4009b0d78d9ceb98f53a72e82ee47e45cb5f626b4ca026e36d86624e73e678dfe7ef4a7431c463cff88736e671c9873bf66a595fd639808911881e47 event-driven-servers-f7a5ed1dae2996e8c544eaeb93b70c3c4b3be433.tar.gz
da0013214d46b551e68677e7ee1f24909223e2cbb80b015aa5a078800b42d147f1a5719038d46ebf777cb5d6a8270c648fa9f71d85081d0806a188de83a6bba7 libmavis-soname.patch
ad6f09f524a1eb5e3402ea1f19c7a2fb1b7f4f45ea08fdd955aa340966aa1082745e05665fe1f89103f303ab89de24369b55a65b0e2f2774194f6d30175ef026 kill-rpath.patch
d0e7dcdfac8cd1e0912de05d502758099587db06244b5ba62583d0b90d274686b1dc0784fde8246145414d276cf99273afcc501350cbacce6eed9fde7fbdb8ba tac_plus-ng.initd
......
From: Jakub Jirutka <jakub@jirutka.cz>
Date: Sun, 19 Feb 2023 23:37:22 +0100
Subject: [PATCH] Change includes <sys/poll.h> to <poll.h>
Fix the following warning:
#warning redirecting incorrect #include <sys/poll.h> to <poll.h>
--- a/mavis/mavis.h
+++ b/mavis/mavis.h
@@ -16,3 +16,3 @@
#include <sys/time.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/types.h>
--- a/mavis/spawnd_headers.h
+++ b/mavis/spawnd_headers.h
@@ -35,3 +35,3 @@
#include <sys/wait.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <setjmp.h>
--- a/mavisd/headers.h
+++ b/mavisd/headers.h
@@ -38,3 +38,3 @@
-#include <sys/poll.h>
+#include <poll.h>
--- a/misc/io_sched.c
+++ b/misc/io_sched.c
@@ -14,3 +14,3 @@
#include <sys/types.h>
-#include <sys/poll.h>
+#include <poll.h>
#include <sys/time.h>
@@ -42,3 +42,3 @@
#ifdef WITH_POLL
-#include <sys/poll.h>
+#include <poll.h>
#endif
--- a/tcprelay/headers.h
+++ b/tcprelay/headers.h
@@ -35,3 +35,3 @@
#include <sys/wait.h>
-#include <sys/poll.h>
+#include <poll.h>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment