]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
refpolicy: bump to 2.20180114
authorAdam Duskett <aduskett@gmail.com>
Mon, 22 Jan 2018 12:17:18 +0000 (07:17 -0500)
committerPeter Korsgaard <peter@korsgaard.com>
Mon, 22 Jan 2018 21:32:41 +0000 (22:32 +0100)
Remove 0001-fix-regex-escape-sequence-error.patch, as it has been
committed upstream.

Signed-off-by: Adam Duskett <aduskett@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/refpolicy/0001-fix-regex-escape-sequence-error.patch [deleted file]
package/refpolicy/refpolicy.hash
package/refpolicy/refpolicy.mk

diff --git a/package/refpolicy/0001-fix-regex-escape-sequence-error.patch b/package/refpolicy/0001-fix-regex-escape-sequence-error.patch
deleted file mode 100644 (file)
index 1aa0189..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-From 6c9cc47e6cc9c6e67b1b822f7a1a2e1f6d836118 Mon Sep 17 00:00:00 2001
-From: Adam Duskett <Adamduskett@outlook.com>
-Date: Tue, 10 Oct 2017 18:00:30 -0400
-Subject: [PATCH] fix regex escape sequence error.
-
-python3.6 will error out with the message "invalid escape sequence"
-in genhomedircon.py.  This patch fixes these errors by turning the string
-in the into a raw string.
-
-Upstream status: accepted
-
-Signed-off-by: Adam Duskett <aduskett@gmail.com>
----
- support/genhomedircon.py | 16 ++++++++--------
- 1 file changed, 8 insertions(+), 8 deletions(-)
-
-diff --git a/support/genhomedircon.py b/support/genhomedircon.py
-index 036f5cc9..6662f412 100644
---- a/support/genhomedircon.py
-+++ b/support/genhomedircon.py
-@@ -189,13 +189,13 @@ def oldgenhomedircon(filecontextdir, filecontext):
-                 addme = 1
-                 for regex in prefix_regex:
-                         #match a trailing (/*)? which is actually a bug in rpc_pipefs
--                        regex = re.sub("\(/\*\)\?$", "", regex)
-+                        regex = re.sub(r"\(/\*\)\?$", "", regex)
-                         #match a trailing .+
--                        regex = re.sub("\.+$", "", regex)
-+                        regex = re.sub(r"\.+$", "", regex)
-                         #match a trailing .*
--                        regex = re.sub("\.\*$", "", regex)
-+                        regex = re.sub(r"\.\*$", "", regex)
-                         #strip a (/.*)? which matches anything trailing to a /*$ which matches trailing /'s
--                        regex = re.sub("\(\/\.\*\)\?", "", regex)
-+                        regex = re.sub(r"\(\/\.\*\)\?", "", regex)
-                         regex = regex + "/*$"
-                         if re.search(regex, potential, 0):
-                                 addme = 0
-@@ -391,13 +391,13 @@ class selinuxConfig:
-               exists=1
-               for regex in prefix_regex:
-                       #match a trailing (/*)? which is actually a bug in rpc_pipefs
--                      regex = re.sub("\(/\*\)\?$", "", regex)
-+                      regex = re.sub(r"\(/\*\)\?$", "", regex)
-                       #match a trailing .+
--                      regex = re.sub("\.+$", "", regex)
-+                      regex = re.sub(r"\.+$", "", regex)
-                       #match a trailing .*
--                      regex = re.sub("\.\*$", "", regex)
-+                      regex = re.sub(r"\.\*$", "", regex)
-                       #strip a (/.*)? which matches anything trailing to a /*$ which matches trailing /'s
--                      regex = re.sub("\(\/\.\*\)\?", "", regex)
-+                      regex = re.sub(r"\(\/\.\*\)\?", "", regex)
-                       regex = regex + "/*$"
-                       if re.search(regex, home, 0):
-                               exists = 0
--- 
-2.13.6
-
index 905ac88542fcd01546e99deb983d260a942b1d80..f341566f28a05a237df73de7b04ace1cca4f3107 100644 (file)
@@ -1,5 +1,5 @@
 # From https://github.com/TresysTechnology/refpolicy/wiki/DownloadRelease
-sha256 045709f5e44199f402149b31c6aab9666bdb1540a5c5ed0312a46c90dedfa52d  refpolicy-2.20170805.tar.bz2
+sha256 e826f7d7f899a548e538964487e9fc1bc67ca94756ebdce0bfb6532b4eb0d06b  refpolicy-2.20180114.tar.bz2
 
 # Locally computed
 sha256 204d8eff92f95aac4df6c8122bc1505f468f3a901e5a4cc08940e0ede1938994 COPYING
index 1e2180b2cb8fe7e333ca2c3d369b1d1b2ae3dd25..590e0ebd9affa2c9310e3994c1b0c49e812b8228 100644 (file)
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-REFPOLICY_VERSION = 2.20170805
+REFPOLICY_VERSION = 2.20180114
 REFPOLICY_SOURCE = refpolicy-$(REFPOLICY_VERSION).tar.bz2
 REFPOLICY_SITE = https://raw.githubusercontent.com/wiki/TresysTechnology/refpolicy/files
 REFPOLICY_LICENSE = GPL-2.0