* [gentoo-commits] repo/gentoo:master commit in: sys-process/audit/files/
@ 2017-02-13 22:37 Robin H. Johnson
0 siblings, 0 replies; 4+ messages in thread
From: Robin H. Johnson @ 2017-02-13 22:37 UTC (permalink / raw
To: gentoo-commits
commit: 17ff67b00883b6f1a2cd5fc63e673f9f15e122dc
Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Feb 12 15:59:59 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Mon Feb 13 22:36:59 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17ff67b0
sys-process/audit: remove unused files
(cherry picked from commit b1294a19f5879c04c8088582b781a50dc3e01e9a)
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
sys-process/audit/files/auditd-conf.d-1.2.3 | 16 -----
sys-process/audit/files/auditd-init.d-1.7.17 | 58 -----------------
sys-process/audit/files/auditd-init.d-2.1.3 | 97 ----------------------------
3 files changed, 171 deletions(-)
diff --git a/sys-process/audit/files/auditd-conf.d-1.2.3 b/sys-process/audit/files/auditd-conf.d-1.2.3
deleted file mode 100644
index a8250c5fd2..0000000000
--- a/sys-process/audit/files/auditd-conf.d-1.2.3
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-# Configuration options for auditd
-# -f for foreground mode
-# There are some other options as well, but you'll have to look in the source
-# code to find them as they aren't ready for use yet.
-EXTRAOPTIONS=''
-
-# Audit rules file to run after starting auditd
-RULEFILE_STARTUP=/etc/audit/audit.rules
-
-# Audit rules file to run before and after stopping auditd
-RULEFILE_STOP_PRE=/etc/audit/audit.rules.stop.pre
-RULEFILE_STOP_POST=/etc/audit/audit.rules.stop.post
diff --git a/sys-process/audit/files/auditd-init.d-1.7.17 b/sys-process/audit/files/auditd-init.d-1.7.17
deleted file mode 100644
index 7a78e015e9..0000000000
--- a/sys-process/audit/files/auditd-init.d-1.7.17
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-start_auditd() {
- ebegin "Starting auditd"
- start-stop-daemon \
- --start --quiet --pidfile /var/run/auditd.pid \
- --exec /sbin/auditd -- ${EXTRAOPTIONS}
- local ret=$?
- eend $ret
- return $ret
-}
-
-stop_auditd() {
- ebegin "Stopping auditd"
- start-stop-daemon \
- --stop --quiet --pidfile /var/run/auditd.pid
- local ret=$?
- eend $ret
- return $ret
-}
-
-
-loadfile() {
- local rules="$1"
- if [ -n "${rules}" -a -f "${rules}" ]; then
- einfo "Loading audit rules from ${rules}"
- /sbin/auditctl -R "${rules}" 1>/dev/null
- return $?
- else
- return 0
- fi
-}
-
-start() {
- start_auditd
- local ret=$?
- if [ $ret -eq 0 -a "${RC_CMD}" != "restart" ]; then
- loadfile "${RULEFILE_STARTUP}"
- fi
- return $ret
-}
-
-stop() {
- [ "${RC_CMD}" != "restart" ] && loadfile "${RULEFILE_STOP_PRE}"
- stop_auditd
- local ret=$?
- [ "${RC_CMD}" != "restart" ] && loadfile "${RULEFILE_STOP_POST}"
- return $ret
-}
-
-# This is a special case, we do not want to touch the rules at all
-restart() {
- stop_auditd
- start_auditd
-}
diff --git a/sys-process/audit/files/auditd-init.d-2.1.3 b/sys-process/audit/files/auditd-init.d-2.1.3
deleted file mode 100644
index b918ab6705..0000000000
--- a/sys-process/audit/files/auditd-init.d-2.1.3
+++ /dev/null
@@ -1,97 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-extra_started_commands='reload reload_auditd reload_rules'
-description='Linux Auditing System'
-description_reload='Reload daemon configuration and rules'
-description_reload_rules='Reload daemon rules'
-description_reload_auditd='Reload daemon configuration'
-
-name='auditd'
-pidfile='/var/run/auditd.pid'
-command='/sbin/auditd'
-
-start_auditd() {
- # Env handling taken from the upstream init script
- if [ -z "$AUDITD_LANG" -o "$AUDITD_LANG" = "none" -o "$AUDITD_LANG" = "NONE" ]; then
- unset LANG LC_TIME LC_ALL LC_MESSAGES LC_NUMERIC LC_MONETARY LC_COLLATE
- else
- LANG="$AUDITD_LANG"
- LC_TIME="$AUDITD_LANG"
- LC_ALL="$AUDITD_LANG"
- LC_MESSAGES="$AUDITD_LANG"
- LC_NUMERIC="$AUDITD_LANG"
- LC_MONETARY="$AUDITD_LANG"
- LC_COLLATE="$AUDITD_LANG"
- export LANG LC_TIME LC_ALL LC_MESSAGES LC_NUMERIC LC_MONETARY LC_COLLATE
- fi
- unset HOME MAIL USER USERNAME
-
- ebegin "Starting ${name}"
- start-stop-daemon \
- --start --quiet --pidfile ${pidfile} \
- --exec ${command} -- ${EXTRAOPTIONS}
- local ret=$?
- eend $ret
- return $ret
-}
-
-stop_auditd() {
- ebegin "Stopping ${name}"
- start-stop-daemon --stop --quiet --pidfile ${pidfile}
- local ret=$?
- eend $ret
- return $ret
-}
-
-
-loadfile() {
- local rules="$1"
- if [ -n "${rules}" -a -f "${rules}" ]; then
- einfo "Loading audit rules from ${rules}"
- /sbin/auditctl -R "${rules}" 1>/dev/null
- return $?
- else
- return 0
- fi
-}
-
-start() {
- start_auditd
- local ret=$?
- if [ $ret -eq 0 -a "${RC_CMD}" != "restart" ]; then
- touch /var/lock/subsys/${name}
- loadfile "${RULEFILE_STARTUP}"
- fi
- return $ret
-}
-
-reload_rules() {
- loadfile "${RULEFILE_STARTUP}"
-}
-
-reload_auditd() {
- [ -f ${pidfile} ] && kill -HUP `cat ${pidfile}`
-}
-
-reload() {
- reload_auditd
- reload_rules
-}
-
-stop() {
- [ "${RC_CMD}" != "restart" ] && loadfile "${RULEFILE_STOP_PRE}"
- stop_auditd
- rm -f /var/lock/subsys/${name}
- local ret=$?
- [ "${RC_CMD}" != "restart" ] && loadfile "${RULEFILE_STOP_POST}"
- return $ret
-}
-
-# This is a special case, we do not want to touch the rules at all
-restart() {
- stop_auditd
- start_auditd
-}
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/audit/files/
@ 2022-03-12 18:45 David Seifert
0 siblings, 0 replies; 4+ messages in thread
From: David Seifert @ 2022-03-12 18:45 UTC (permalink / raw
To: gentoo-commits
commit: 45dfccad9ceac25938f0269fb06ed1ff34ca0129
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Sat Mar 12 18:45:02 2022 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Mar 12 18:45:02 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45dfccad
sys-process/audit: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/24435
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sys-process/audit/files/audit-3.0.1-slibtool.patch | 207 ---------------------
1 file changed, 207 deletions(-)
diff --git a/sys-process/audit/files/audit-3.0.1-slibtool.patch b/sys-process/audit/files/audit-3.0.1-slibtool.patch
deleted file mode 100644
index a1cf75341787..000000000000
--- a/sys-process/audit/files/audit-3.0.1-slibtool.patch
+++ /dev/null
@@ -1,207 +0,0 @@
-From 8d6a7be8e29d00ab08c0cdcaf0dd293ed834205d Mon Sep 17 00:00:00 2001
-From: orbea <orbea@riseup.net>
-Date: Wed, 31 Mar 2021 05:51:53 -0700
-Subject: [PATCH] build: Link with libtool archives instead.
-
-Signed-off-by: orbea <orbea@riseup.net>
----
- audisp/Makefile.am | 10 +++++-----
- audisp/plugins/ids/Makefile.am | 2 +-
- audisp/plugins/remote/Makefile.am | 2 +-
- audisp/plugins/statsd/Makefile.am | 2 +-
- audisp/plugins/syslog/Makefile.am | 2 +-
- audisp/plugins/zos-remote/Makefile.am | 2 +-
- src/Makefile.am | 11 +++++------
- src/libev/Makefile.am | 5 +++--
- tools/aulast/Makefile.am | 2 +-
- tools/aulastlog/Makefile.am | 2 +-
- tools/ausyscall/Makefile.am | 2 +-
- tools/auvirt/Makefile.am | 2 +-
- 12 files changed, 22 insertions(+), 22 deletions(-)
-
-diff --git a/audisp/Makefile.am b/audisp/Makefile.am
-index 852169e0..c477ee19 100644
---- a/audisp/Makefile.am
-+++ b/audisp/Makefile.am
-@@ -23,13 +23,13 @@
- SUBDIRS = plugins
- CONFIG_CLEAN_FILES = *.rej *.orig
- AM_CPPFLAGS = -D_GNU_SOURCE -fPIC -DPIC -I${top_srcdir} -I${top_srcdir}/lib -I${top_srcdir}/src -I${top_srcdir}/src/libev
--LIBS = -L${top_builddir}/lib -laudit
-+LIBS = ${top_builddir}/lib/libaudit.la
- LDADD = -lpthread
-
- noinst_HEADERS = audispd-pconfig.h audispd-llist.h audispd-config.h \
- queue.h audispd-builtins.h libdisp.h
--libdisp_a_SOURCES = audispd.c audispd-pconfig.c queue.c \
-+libdisp_la_SOURCES = audispd.c audispd-pconfig.c queue.c \
- audispd-llist.c audispd-builtins.c
--libdisp_a_CFLAGS = -fno-strict-aliasing
--noinst_LIBRARIES = libdisp.a
--
-+libdisp_la_CFLAGS = -fno-strict-aliasing
-+libdisp_la_LDFLAGS = -no-undefined -static
-+noinst_LTLIBRARIES = libdisp.la
-diff --git a/audisp/plugins/ids/Makefile.am b/audisp/plugins/ids/Makefile.am
-index 65d83b64..9bb141fa 100644
---- a/audisp/plugins/ids/Makefile.am
-+++ b/audisp/plugins/ids/Makefile.am
-@@ -37,7 +37,7 @@ audisp_ids_SOURCES = account.c avl.c ids.c ids_config.c model_bad_event.c \
- model_behavior.c nvpair.c origin.c reactions.c session.c \
- timer-services.c
- audisp_ids_CFLAGS = -D_GNU_SOURCE
--audisp_ids_LDADD = -L${top_builddir}/lib -laudit -L${top_builddir}/auparse -lauparse -L${top_builddir}/common -laucommon -lpthread
-+audisp_ids_LDADD = ${top_builddir}/lib/libaudit.la ${top_builddir}/auparse/libauparse.la ${top_builddir}/common/libaucommon.la -lpthread
-
- install-data-hook:
- mkdir -p -m 0750 ${DESTDIR}${plugin_confdir}
-diff --git a/audisp/plugins/remote/Makefile.am b/audisp/plugins/remote/Makefile.am
-index bd3f3016..ae867079 100644
---- a/audisp/plugins/remote/Makefile.am
-+++ b/audisp/plugins/remote/Makefile.am
-@@ -37,7 +37,7 @@ audisp_remote_DEPENDENCIES = ${top_builddir}/common/libaucommon.la
- audisp_remote_SOURCES = audisp-remote.c remote-config.c queue.c
- audisp_remote_CFLAGS = -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -Wundef
- audisp_remote_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now
--audisp_remote_LDADD = $(CAPNG_LDADD) $(gss_libs) -L${top_builddir}/common -laucommon
-+audisp_remote_LDADD = $(CAPNG_LDADD) $(gss_libs) ${top_builddir}/common/libaucommon.la
-
- test_queue_SOURCES = queue.c test-queue.c
-
-diff --git a/audisp/plugins/statsd/Makefile.am b/audisp/plugins/statsd/Makefile.am
-index 7ba887df..a105e66b 100644
---- a/audisp/plugins/statsd/Makefile.am
-+++ b/audisp/plugins/statsd/Makefile.am
-@@ -30,7 +30,7 @@ sbin_PROGRAMS = audisp-statsd
- man_MANS = audisp-statsd.8
- audisp_statsd_SOURCES = audisp-statsd.c
- audisp_statsd_CFLAGS = -g -D_GNU_SOURCE
--audisp_statsd_LDADD = -L${top_builddir}/auparse -lauparse -L${top_builddir}/lib -laudit
-+audisp_statsd_LDADD = ${top_builddir}/auparse/libauparse.la ${top_builddir}/lib/libaudit.la
-
- install-data-hook:
- mkdir -p -m 0750 ${DESTDIR}${plugin_confdir}
-diff --git a/audisp/plugins/syslog/Makefile.am b/audisp/plugins/syslog/Makefile.am
-index 353229ec..e5451866 100644
---- a/audisp/plugins/syslog/Makefile.am
-+++ b/audisp/plugins/syslog/Makefile.am
-@@ -33,7 +33,7 @@ audisp_syslog_DEPENDENCIES = ${top_builddir}/common/libaucommon.la
- audisp_syslog_SOURCES = audisp-syslog.c
- audisp_syslog_CFLAGS = -fPIE -DPIE -g -D_GNU_SOURCE -Wundef
- audisp_syslog_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now
--audisp_syslog_LDADD = $(CAPNG_LDADD) -L${top_builddir}/common -laucommon -L${top_builddir}/auparse -lauparse
-+audisp_syslog_LDADD = $(CAPNG_LDADD) ${top_builddir}/common/libaucommon.la ${top_builddir}/auparse/libauparse.la
-
- install-data-hook:
- mkdir -p -m 0750 ${DESTDIR}${plugin_confdir}
-diff --git a/audisp/plugins/zos-remote/Makefile.am b/audisp/plugins/zos-remote/Makefile.am
-index d8d88b3f..d51e83e7 100644
---- a/audisp/plugins/zos-remote/Makefile.am
-+++ b/audisp/plugins/zos-remote/Makefile.am
-@@ -24,7 +24,7 @@
- AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/lib -I${top_srcdir}/auparse
- CONFIG_CLEAN_FILES = *.rej *.orig
- EXTRA_DIST = zos-remote.conf audispd-zos-remote.conf
--LIBS = -L${top_builddir}/auparse -lauparse
-+LIBS = ${top_builddir}/auparse/libauparse.la
- LDADD = -lpthread -lldap -llber $(CAPNG_LDADD)
- plugin_confdir=$(sysconfdir)/audit
- plugin_conf = zos-remote.conf
-diff --git a/src/Makefile.am b/src/Makefile.am
-index fda612b1..e2e58acb 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -33,22 +33,21 @@ auditd_SOURCES += auditd-listen.c
- endif
- auditd_CFLAGS = -fPIE -DPIE -g -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pthread -Wno-pointer-sign
- auditd_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now
--auditd_DEPENDENCIES = libev/libev.a ${top_builddir}/audisp/libdisp.a
--auditd_LDADD = @LIBWRAP_LIBS@ -Llibev -lev -L${top_builddir}/audisp -ldisp -L${top_builddir}/lib -laudit -L${top_builddir}/auparse -lauparse -lpthread -lrt -lm $(gss_libs) -L${top_builddir}/common -laucommon
-+auditd_LDADD = @LIBWRAP_LIBS@ ${top_builddir}/src/libev/libev.la ${top_builddir}/audisp/libdisp.la ${top_builddir}/lib/libaudit.la ${top_builddir}/auparse/libauparse.la -lpthread -lrt -lm $(gss_libs) ${top_builddir}/common/libaucommon.la
-
- auditctl_SOURCES = auditctl.c auditctl-llist.c delete_all.c auditctl-listing.c
- auditctl_CFLAGS = -fPIE -DPIE -g -D_GNU_SOURCE
- auditctl_LDFLAGS = -pie -Wl,-z,relro -Wl,-z,now
--auditctl_LDADD = -L${top_builddir}/lib -laudit -L${top_builddir}/auparse -lauparse -L${top_builddir}/common -laucommon
-+auditctl_LDADD = ${top_builddir}/lib/libaudit.la ${top_builddir}/auparse/libauparse.la ${top_builddir}/common/libaucommon.la
-
- aureport_SOURCES = aureport.c auditd-config.c ausearch-llist.c aureport-options.c ausearch-string.c ausearch-parse.c aureport-scan.c aureport-output.c ausearch-lookup.c ausearch-int.c ausearch-time.c ausearch-nvpair.c ausearch-avc.c ausearch-lol.c
--aureport_LDADD = -L${top_builddir}/lib -laudit -L${top_builddir}/auparse -lauparse -L${top_builddir}/common -laucommon
-+aureport_LDADD = ${top_builddir}/lib/libaudit.la ${top_builddir}/auparse/libauparse.la ${top_builddir}/common/libaucommon.la
-
- ausearch_SOURCES = ausearch.c auditd-config.c ausearch-llist.c ausearch-options.c ausearch-report.c ausearch-match.c ausearch-string.c ausearch-parse.c ausearch-int.c ausearch-time.c ausearch-nvpair.c ausearch-lookup.c ausearch-avc.c ausearch-lol.c ausearch-checkpt.c
--ausearch_LDADD = -L${top_builddir}/lib -laudit -L${top_builddir}/auparse -lauparse -L${top_builddir}/common -laucommon
-+ausearch_LDADD = ${top_builddir}/lib/libaudit.la ${top_builddir}/auparse/libauparse.la ${top_builddir}/common/libaucommon.la
-
- autrace_SOURCES = autrace.c delete_all.c auditctl-llist.c
--autrace_LDADD = -L${top_builddir}/lib -laudit
-+autrace_LDADD = ${top_builddir}/lib/libaudit.la
-
- libev/libev.a:
- make -C libev
-diff --git a/src/libev/Makefile.am b/src/libev/Makefile.am
-index d6094a76..85f4da52 100644
---- a/src/libev/Makefile.am
-+++ b/src/libev/Makefile.am
-@@ -24,6 +24,7 @@ EXTRA_DIST = README ev_epoll.c ev_poll.c ev_select.c ev_iouring.c ev_linuxaio.c
- AM_CFLAGS = -fPIC -DPIC -g -fno-strict-aliasing ${DEBUG}
-
- noinst_HEADERS = ev.h ev_vars.h ev_wrap.h event.h
--noinst_LIBRARIES = libev.a
-+noinst_LTLIBRARIES = libev.la
-
--libev_a_SOURCES = ev.c event.c
-+libev_la_SOURCES = ev.c event.c
-+libev_la_LDFLAGS = -no-undefined -static
-diff --git a/tools/aulast/Makefile.am b/tools/aulast/Makefile.am
-index 2f15525a..1ee0b8c0 100644
---- a/tools/aulast/Makefile.am
-+++ b/tools/aulast/Makefile.am
-@@ -23,7 +23,7 @@
- CONFIG_CLEAN_FILES = *.loT *.rej *.orig
- EXTRA_DIST = $(man_MANS)
- AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/lib -I${top_srcdir}/auparse
--LIBS = -L${top_builddir}/auparse -lauparse
-+LIBS = ${top_builddir}/auparse/libauparse.la
- AM_CFLAGS = -D_GNU_SOURCE
- bin_PROGRAMS = aulast
- noinst_HEADERS = aulast-llist.h
-diff --git a/tools/aulastlog/Makefile.am b/tools/aulastlog/Makefile.am
-index e45076ba..f208b4c3 100644
---- a/tools/aulastlog/Makefile.am
-+++ b/tools/aulastlog/Makefile.am
-@@ -23,7 +23,7 @@
- CONFIG_CLEAN_FILES = *.loT *.rej *.orig
- EXTRA_DIST = $(man_MANS)
- AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/auparse
--LIBS = -L${top_builddir}/auparse -lauparse
-+LIBS = ${top_builddir}/auparse/libauparse.la
- AM_CFLAGS = -D_GNU_SOURCE
- bin_PROGRAMS = aulastlog
- noinst_HEADERS = aulastlog-llist.h
-diff --git a/tools/ausyscall/Makefile.am b/tools/ausyscall/Makefile.am
-index 1dce67c0..daa277d7 100644
---- a/tools/ausyscall/Makefile.am
-+++ b/tools/ausyscall/Makefile.am
-@@ -23,7 +23,7 @@
- CONFIG_CLEAN_FILES = *.loT *.rej *.orig
- EXTRA_DIST = $(man_MANS)
- AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/lib
--LIBS = -L${top_builddir}/lib -laudit
-+LIBS = ${top_builddir}/lib/libaudit.la
- AM_CFLAGS = -D_GNU_SOURCE
- bin_PROGRAMS = ausyscall
- man_MANS = ausyscall.8
-diff --git a/tools/auvirt/Makefile.am b/tools/auvirt/Makefile.am
-index 50b9b323..dafeeccf 100644
---- a/tools/auvirt/Makefile.am
-+++ b/tools/auvirt/Makefile.am
-@@ -29,7 +29,7 @@ AM_CPPFLAGS = -I${top_srcdir} \
- -I${top_srcdir}/lib \
- -I${top_srcdir}/auparse \
- -I${top_srcdir}/src
--LIBS = -L${top_builddir}/auparse -lauparse
-+LIBS = ${top_builddir}/auparse/libauparse.la
- AM_CFLAGS = -D_GNU_SOURCE
- bin_PROGRAMS = auvirt
- noinst_HEADERS = auvirt-list.h
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/audit/files/
@ 2023-08-07 5:43 Sam James
0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2023-08-07 5:43 UTC (permalink / raw
To: gentoo-commits
commit: ae6f1865e4be6e3f8bf7d670663021b84fde62f7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 7 05:14:51 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Aug 7 05:14:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6f1865
sys-process/audit: add PR link to musl patch
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-process/audit/files/audit-3.0.8-musl-malloc.patch | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys-process/audit/files/audit-3.0.8-musl-malloc.patch b/sys-process/audit/files/audit-3.0.8-musl-malloc.patch
index 17814dbe29fc..7233aabe03c6 100644
--- a/sys-process/audit/files/audit-3.0.8-musl-malloc.patch
+++ b/sys-process/audit/files/audit-3.0.8-musl-malloc.patch
@@ -1,4 +1,5 @@
https://cgit.openembedded.org/meta-openembedded/tree/meta-oe/recipes-security/audit/audit/0001-Replace-__attribute_malloc__-with-__attribute__-__ma.patch?id=ad978133a1a10d609bb2545882a2f720a2572f3d
+https://github.com/linux-audit/audit-userspace/pull/311
https://bugs.gentoo.org/837275
From 79c8d6a2755c9dfa00a5e86378e89a94eef0504d Mon Sep 17 00:00:00 2001
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-process/audit/files/
@ 2024-10-15 21:46 Conrad Kostecki
0 siblings, 0 replies; 4+ messages in thread
From: Conrad Kostecki @ 2024-10-15 21:46 UTC (permalink / raw
To: gentoo-commits
commit: 70f78f50aa26536c1a068e8afc8476c6d849ee92
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Mon Oct 14 15:36:46 2024 +0000
Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Tue Oct 15 21:45:38 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70f78f50
sys-process/audit: remove unused patch
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
.../audit/files/audit-3.1.3-musl-malloc.patch | 28 ----------------------
1 file changed, 28 deletions(-)
diff --git a/sys-process/audit/files/audit-3.1.3-musl-malloc.patch b/sys-process/audit/files/audit-3.1.3-musl-malloc.patch
deleted file mode 100644
index 01c440f3eb83..000000000000
--- a/sys-process/audit/files/audit-3.1.3-musl-malloc.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://bugs.gentoo.org/934006
-https://github.com/linux-audit/audit-userspace/commit/1dd6123e810ce255692a693a5d52a0c34cf432d0
-
-From 1dd6123e810ce255692a693a5d52a0c34cf432d0 Mon Sep 17 00:00:00 2001
-From: Steve Grubb <ausearch.1@gmail.com>
-Date: Mon, 1 Apr 2024 12:10:33 -0400
-Subject: [PATCH] Add empty macro to fix muscl c builds
-
---- a/common/common.h
-+++ b/common/common.h
-@@ -1,5 +1,5 @@
--/* audit-fgets.h -- a replacement for glibc's fgets
-- * Copyright 2018,2022 Red Hat Inc.
-+/* common.h -- common utility functions used throughout
-+ * Copyright 2018-24 Red Hat Inc.
- * All Rights Reserved.
- *
- * This library is free software; you can redistribute it and/or
-@@ -29,6 +29,9 @@
- #ifndef __attr_access
- # define __attr_access(x)
- #endif
-+#ifndef __attribute_malloc__
-+# define __attribute_malloc__
-+#endif
- #ifndef __attr_dealloc
- # define __attr_dealloc(dealloc, argno)
- #endif
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-10-15 21:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-07 5:43 [gentoo-commits] repo/gentoo:master commit in: sys-process/audit/files/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-10-15 21:46 Conrad Kostecki
2022-03-12 18:45 David Seifert
2017-02-13 22:37 Robin H. Johnson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox