commit:     fee0ed60a3e76c9d0ce7e3d8a21e495cd2444ef8
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 31 00:26:59 2017 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Dec 31 00:28:01 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fee0ed60

net-firewall/shorewall: Rev bump to limit find search depth

Link: https://sourceforge.net/p/shorewall/mailman/message/36172339/
Package-Manager: Portage-2.3.19, Repoman-2.3.6

 .../files/shorewall-5.1.10.1-fix-find.patch         | 21 +++++++++++++++++++++
 ....10.1-r1.ebuild => shorewall-5.1.10.1-r2.ebuild} |  1 +
 2 files changed, 22 insertions(+)

diff --git a/net-firewall/shorewall/files/shorewall-5.1.10.1-fix-find.patch 
b/net-firewall/shorewall/files/shorewall-5.1.10.1-fix-find.patch
new file mode 100644
index 00000000000..2850d12297f
--- /dev/null
+++ b/net-firewall/shorewall/files/shorewall-5.1.10.1-fix-find.patch
@@ -0,0 +1,21 @@
+commit 4e5b98d3d928579bc3530893ceaf166337ea8e22
+Author: Tom Eastep <teas...@shorewall.net>
+Date:   Fri Dec 29 15:32:05 2017 -0800
+
+    Only search files in each CONFIG_PATH directory - no recursion
+    
+    Signed-off-by: Tom Eastep <teas...@shorewall.net>
+
+diff --git a/Shorewall/lib.cli-std b/Shorewall/lib.cli-std
+index 6f220aa3d..95eafdf65 100644
+--- a/shorewall-5.1.10.1/lib.cli-std
++++ b/shorewall-5.1.10.1/lib.cli-std
+@@ -386,7 +386,7 @@ uptodate() {
+     IFS=':'
+ 
+     for dir in $g_shorewalldir $CONFIG_PATH; do
+-      if [ -n "$(find ${dir} -newer $1)" ]; then
++      if [ -n "$(find ${dir} -mindepth 1 -maxdepth 1 -newer $1)" ]; then
+           IFS="$ifs"
+           return 1;
+       fi

diff --git a/net-firewall/shorewall/shorewall-5.1.10.1-r1.ebuild 
b/net-firewall/shorewall/shorewall-5.1.10.1-r2.ebuild
similarity index 99%
rename from net-firewall/shorewall/shorewall-5.1.10.1-r1.ebuild
rename to net-firewall/shorewall/shorewall-5.1.10.1-r2.ebuild
index 3b7545ca47d..ffef283075d 100644
--- a/net-firewall/shorewall/shorewall-5.1.10.1-r1.ebuild
+++ b/net-firewall/shorewall/shorewall-5.1.10.1-r2.ebuild
@@ -164,6 +164,7 @@ src_prepare() {
        ebegin "Applying Gentoo-specific changes to ${MY_P_CORE} ..."
        ln -s ../shorewallrc.gentoo ${MY_PN_CORE}/shorewallrc.gentoo || die 
"Failed to symlink shorewallrc.gentoo"
        eend 0
+       eapply "${FILESDIR}"/${PN}-5.1.10.1-fix-find.patch
 
        # shorewall
        if use ipv4; then

Reply via email to