Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
a388db3d
Commit
a388db3d
authored
3 months ago
by
Jakub Jirutka
Browse files
Options
Downloads
Patches
Plain Diff
community/tacacs+ng: upgrade to 0_git20241212
parent
a57e51a6
No related branches found
No related tags found
1 merge request
!76946
stubby-openrc: fix user not found error
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
community/tacacs+ng/APKBUILD
+5
-10
5 additions, 10 deletions
community/tacacs+ng/APKBUILD
community/tacacs+ng/fix-include-poll.h.patch
+0
-48
0 additions, 48 deletions
community/tacacs+ng/fix-include-poll.h.patch
with
5 additions
and
58 deletions
community/tacacs+ng/APKBUILD
+
5
−
10
View file @
a388db3d
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname
=
tacacs+ng
pkgver
=
0_git202
30
21
4
_gitrev
=
184d084e84766e33f63e84c99d6d16cabae87258
pkgrel
=
1
pkgver
=
0_git202
41
21
2
_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
...
...
This diff is collapsed.
Click to expand it.
community/tacacs+ng/fix-include-poll.h.patch
deleted
100644 → 0
+
0
−
48
View file @
a57e51a6
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>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment