[arch-commits] Commit in audit/repos (3 files)

David Runge dvzrv at gemini.archlinux.org
Thu Apr 21 12:25:04 UTC 2022


    Date: Thursday, April 21, 2022 @ 12:25:03
  Author: dvzrv
Revision: 443476

archrelease: copy trunk to testing-x86_64

Added:
  audit/repos/testing-x86_64/
  audit/repos/testing-x86_64/PKGBUILD
    (from rev 443475, audit/trunk/PKGBUILD)
  audit/repos/testing-x86_64/audit-3.0.8-config_paths.patch
    (from rev 443475, audit/trunk/audit-3.0.8-config_paths.patch)

--------------------------------+
 PKGBUILD                       |   84 +++++++++++++++++++++++++++++++++++++++
 audit-3.0.8-config_paths.patch |   36 ++++++++++++++++
 2 files changed, 120 insertions(+)

Copied: audit/repos/testing-x86_64/PKGBUILD (from rev 443475, audit/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-04-21 12:25:03 UTC (rev 443476)
@@ -0,0 +1,84 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Maintainer: David Runge <dvzrv at archlinux.org>
+# Contributor: Christian Rebischke <Chris.Rebischke at archlinux.org>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+# Contributor: <kang at insecure.ws>
+# Contributor: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+# Contributor: Connor Behan <connor.behan at gmail.com>
+# Contributor: henning mueller <henning at orgizm.net>
+
+pkgbase=audit
+pkgname=(audit python-audit)
+pkgver=3.0.8
+pkgrel=1
+pkgdesc='Userspace components of the audit framework'
+url='https://people.redhat.com/sgrubb/audit'
+arch=(x86_64)
+makedepends=(glibc krb5 libcap-ng libldap linux-headers python swig)
+license=(GPL2 LGPL2.1)
+options=(debug emptydirs)
+source=(
+  https://people.redhat.com/sgrubb/audit/$pkgname-$pkgver.tar.gz
+  $pkgbase-3.0.8-config_paths.patch
+)
+sha512sums=('8379bf425d68381d182300e628e42de8460d2f3e15b2395e10880f94b9989656852a50a9bece75b632ec8a04c40c9e666ff4c9d6b25ace3a8f50d2011506afab'
+            'bc699123f810abcf9300728bf61d7fcfcc83677b75fbeb713fb24cc11b2f9edf687661aab70766acde7c3c41c6a62f8e0a54cdfb49d1c7ce2246b67fbe3feec5')
+b2sums=('38a35a7540e608127cfc54a2de2cb12df8c29e778799ca53318824c84565a67b7ea131f9bba455fa469ce9139a27908738f571a6e383ce9a3274f70c09d27ec7'
+        '50be1b4f76ace20d8d14b4c57a9bb69daa3da35fd654aca8730bc287682fe38f1c1917b37469fb087daf9f309ffc15cca15f54166ece0a055f540c2604778fc6')
+
+prepare() {
+  # replace the use of /sbin with /usr/bin in configs
+  patch -Np1 -d $pkgbase-$pkgver -i ../$pkgbase-3.0.8-config_paths.patch
+}
+
+build() {
+  cd $pkgbase-$pkgver
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --sysconfdir=/etc \
+    --libexecdir=/usr/lib/audit \
+    --enable-gssapi-krb5=yes \
+    --enable-systemd=yes \
+    --with-libcap-ng=yes
+  # prevent excessive overlinking due to libtool
+  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
+  make
+  [ -n "$SOURCE_DATE_EPOCH" ] && touch -h -d @$SOURCE_DATE_EPOCH bindings/swig/python/audit.py
+}
+
+package_audit() {
+  depends=(glibc krb5 libkrb5.so libgssapi_krb5.so libcap-ng libcap-ng.so)
+  provides=(libaudit.so libauparse.so)
+  backup=(
+    etc/libaudit.conf
+    etc/audit/audit-stop.rules
+    etc/audit/auditd.conf
+    etc/audit/audisp-remote.conf
+    etc/audit/zos-remote.conf
+    etc/audit/plugins.d/af_unix.conf
+    etc/audit/plugins.d/au-remote.conf
+    etc/audit/plugins.d/audispd-zos-remote.conf
+    etc/audit/plugins.d/syslog.conf
+  )
+
+  make DESTDIR="$pkgdir" install -C $pkgbase-$pkgver
+
+  # add log dir
+  install -vdm 700 "$pkgdir/var/log/$pkgname"
+
+  # remove legacy files
+  rm -frv "$pkgdir/usr/lib/audit"
+
+  # remove files provided by python-audit
+  rm -frv "$pkgdir/usr/lib/python"*
+}
+
+package_python-audit() {
+  depends=(audit libaudit.so libauparse.so glibc python)
+  pkgdesc+=' (python bindings)'
+
+  make DESTDIR="$pkgdir" install -C $pkgbase-$pkgver/bindings
+}
+
+# vim: ts=2 sw=2 et:

Copied: audit/repos/testing-x86_64/audit-3.0.8-config_paths.patch (from rev 443475, audit/trunk/audit-3.0.8-config_paths.patch)
===================================================================
--- testing-x86_64/audit-3.0.8-config_paths.patch	                        (rev 0)
+++ testing-x86_64/audit-3.0.8-config_paths.patch	2022-04-21 12:25:03 UTC (rev 443476)
@@ -0,0 +1,36 @@
+diff -ruN a/audisp/plugins/remote/au-remote.conf b/audisp/plugins/remote/au-remote.conf
+--- a/audisp/plugins/remote/au-remote.conf	2022-03-29 22:52:34.000000000 +0200
++++ b/audisp/plugins/remote/au-remote.conf	2022-04-21 11:11:55.685862988 +0200
+@@ -5,7 +5,7 @@
+ 
+ active = no
+ direction = out
+-path = /sbin/audisp-remote
++path = /usr/bin/audisp-remote
+ type = always
+ #args =
+ format = string
+diff -ruN a/audisp/plugins/syslog/syslog.conf b/audisp/plugins/syslog/syslog.conf
+--- a/audisp/plugins/syslog/syslog.conf	2022-03-29 22:52:34.000000000 +0200
++++ b/audisp/plugins/syslog/syslog.conf	2022-04-21 11:12:54.669352650 +0200
+@@ -8,7 +8,7 @@
+ 
+ active = no
+ direction = out
+-path = /sbin/audisp-syslog
++path = /usr/bin/audisp-syslog
+ type = always 
+ args = LOG_INFO
+ format = string
+diff -ruN a/audisp/plugins/zos-remote/audispd-zos-remote.conf b/audisp/plugins/zos-remote/audispd-zos-remote.conf
+--- a/audisp/plugins/zos-remote/audispd-zos-remote.conf	2022-03-29 22:52:34.000000000 +0200
++++ b/audisp/plugins/zos-remote/audispd-zos-remote.conf	2022-04-21 11:12:26.419277793 +0200
+@@ -8,7 +8,7 @@
+ 
+ active = no
+ direction = out
+-path = /sbin/audispd-zos-remote
++path = /usr/bin/audispd-zos-remote
+ type = always 
+ args = /etc/audit/zos-remote.conf
+ format = string



More information about the arch-commits mailing list