cc896b26e3
- add changes-since-2.10.1--r3326..3346.diff with upstream changes and fixes since the 2.10.1 release, including - allow dac_override in winbindd profile (boo#990006#c5) - allow mr for /usr/lib*/ldb/*.so in samba abstractions (needed since Samba 4.4.x, boo#990006) - abstractions/nameservice: also support ConnMan-managed resolv.conf - let aa-genprof ask about profiles in extra dir (again) - fix aa-logprof "add hat" endless loop (lp#1538306) - honor 'chown' file events in logparser.py - ignore log file events with a request mask of 'send' or 'receive' because they are actually network events (lp#1577051, lp#1582374) - accept hostname with dots when parsing logs (lp#1453300 comments #1 and #2) - fix python LibAppArmor import failures with swig > 3.0.8 (boo#987607) (libapparmor-fix-import-path.diff) - refresh apparmor-abstractions-no-multiline.diff - drop upstreamed profiles-ping-inet6-r3449.diff - add %check section - runs libapparmor (including swig bindings), parser and profiles tests - add BuildRequires: perl(Locale::gettext) - needed for parser tests OBS-URL: https://build.opensuse.org/request/show/423291 OBS-URL: https://build.opensuse.org/package/show/security:apparmor/apparmor?expand=0&rev=152
43 lines
2.1 KiB
Diff
43 lines
2.1 KiB
Diff
Index: libraries/libapparmor/swig/python/Makefile.am
|
|
===================================================================
|
|
--- libraries/libapparmor/swig/python/Makefile.am.orig 2014-01-06 23:08:55.000000000 +0100
|
|
+++ libraries/libapparmor/swig/python/Makefile.am 2016-08-26 18:03:52.526582753 +0200
|
|
@@ -6,9 +6,8 @@ SUBDIRS = test
|
|
|
|
libapparmor_wrap.c: $(srcdir)/../SWIG/libapparmor.i
|
|
$(SWIG) -python -I$(srcdir)/../../include -module LibAppArmor -o $@ $(srcdir)/../SWIG/libapparmor.i
|
|
- mv LibAppArmor.py __init__.py
|
|
|
|
-MOSTLYCLEANFILES=libapparmor_wrap.c __init__.py
|
|
+MOSTLYCLEANFILES=libapparmor_wrap.c LibAppArmor.py
|
|
|
|
all-local: libapparmor_wrap.c setup.py
|
|
if test ! -f libapparmor_wrap.c; then cp $(srcdir)/libapparmor_wrap.c . ; fi
|
|
Index: libraries/libapparmor/swig/python/__init__.py
|
|
===================================================================
|
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
|
+++ libraries/libapparmor/swig/python/__init__.py 2016-08-26 18:03:16.790763701 +0200
|
|
@@ -0,0 +1 @@
|
|
+from LibAppArmor.LibAppArmor import *
|
|
Index: libraries/libapparmor/swig/python/Makefile.in
|
|
===================================================================
|
|
--- libraries/libapparmor/swig/python/Makefile.in.orig 2016-04-20 11:09:04.000000000 +0200
|
|
+++ libraries/libapparmor/swig/python/Makefile.in 2016-08-26 18:04:51.770288833 +0200
|
|
@@ -326,7 +326,7 @@ top_builddir = @top_builddir@
|
|
top_srcdir = @top_srcdir@
|
|
@HAVE_PYTHON_TRUE@EXTRA_DIST = libapparmor_wrap.c
|
|
@HAVE_PYTHON_TRUE@SUBDIRS = test
|
|
-@HAVE_PYTHON_TRUE@MOSTLYCLEANFILES = libapparmor_wrap.c __init__.py
|
|
+@HAVE_PYTHON_TRUE@MOSTLYCLEANFILES = libapparmor_wrap.c LibAppArmor.py
|
|
all: all-recursive
|
|
|
|
.SUFFIXES:
|
|
@@ -648,7 +648,6 @@ uninstall-am:
|
|
|
|
@HAVE_PYTHON_TRUE@libapparmor_wrap.c: $(srcdir)/../SWIG/libapparmor.i
|
|
@HAVE_PYTHON_TRUE@ $(SWIG) -python -I$(srcdir)/../../include -module LibAppArmor -o $@ $(srcdir)/../SWIG/libapparmor.i
|
|
-@HAVE_PYTHON_TRUE@ mv LibAppArmor.py __init__.py
|
|
|
|
@HAVE_PYTHON_TRUE@all-local: libapparmor_wrap.c setup.py
|
|
@HAVE_PYTHON_TRUE@ if test ! -f libapparmor_wrap.c; then cp $(srcdir)/libapparmor_wrap.c . ; fi
|