From 13be9346ceb77059a9d63333e7c98391bce8bcda Mon Sep 17 00:00:00 2001 From: Cameron Nemo Date: Tue, 9 Oct 2018 16:40:59 -0700 Subject: [PATCH] runit-void-apparmor: skip XBPS conffile artifacts --- srcpkgs/runit-void/files/09-apparmor.sh | 3 +++ srcpkgs/runit-void/template | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/srcpkgs/runit-void/files/09-apparmor.sh b/srcpkgs/runit-void/files/09-apparmor.sh index f323f80136d..7d8d09ee80f 100644 --- a/srcpkgs/runit-void/files/09-apparmor.sh +++ b/srcpkgs/runit-void/files/09-apparmor.sh @@ -19,6 +19,9 @@ if [ -n "$APPARMOR" ]; then if [ -d /etc/apparmor.d -a -x /usr/bin/apparmor_parser ]; then for profile in /etc/apparmor.d/*; do + case "$profile" in + *.new-*_*) continue ;; + esac if [ -f "$profile" ]; then printf '* Load profile %s: %s\n' "($APPARMOR)" "$profile" apparmor_parser -a $AACOMPLAIN "$profile" diff --git a/srcpkgs/runit-void/template b/srcpkgs/runit-void/template index 1af98b892a5..733a2768ab7 100644 --- a/srcpkgs/runit-void/template +++ b/srcpkgs/runit-void/template @@ -1,7 +1,7 @@ # Template file for 'runit-void' pkgname=runit-void version=20180623 -revision=1 +revision=2 wrksrc="void-runit-${version}" build_style=gnu-makefile homepage="https://github.com/void-linux/void-runit"