<pre style='margin:0'>
Rainer Müller (raimue) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/0f48847e9033f8e90d6aea37d371d105611424d0">https://github.com/macports/macports-ports/commit/0f48847e9033f8e90d6aea37d371d105611424d0</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'> new 0f48847 libtool: Remove xattrs from installed files
</span>0f48847 is described below
<span style='display:block; white-space:pre;color:#808000;'>commit 0f48847e9033f8e90d6aea37d371d105611424d0
</span>Author: Rainer Müller <raimue@macports.org>
AuthorDate: Mon Jul 10 18:56:26 2017 +0200
<span style='display:block; white-space:pre;color:#404040;'> libtool: Remove xattrs from installed files
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> The libtool-2.4.6 tarball shipped with extended attributes on some
</span><span style='display:block; white-space:pre;color:#404040;'> files. These will be retained when installing, and are likely to spread
</span><span style='display:block; white-space:pre;color:#404040;'> when copied to other projects. Strip these extended attributes in
</span><span style='display:block; white-space:pre;color:#404040;'> destroot.
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> Maintainer: timeout
</span><span style='display:block; white-space:pre;color:#404040;'> Closes: https://trac.macports.org/ticket/54459
</span>---
devel/libtool/Portfile | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/libtool/Portfile b/devel/libtool/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index f0cd6fa..b28a37b 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/libtool/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/libtool/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem 1.0
</span>
name libtool
version 2.4.6
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision 3
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision 4
</span> categories devel sysutils
platforms darwin freebsd
# Scripts are GPL-2+, libltdl is LGPL-2+, but all parts that tend to be
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -64,6 +64,10 @@ post-destroot {
</span> xinstall -m 0644 -W ${worksrcpath} \
AUTHORS COPYING ChangeLog NEWS README THANKS TODO \
${destroot}${docdir}
<span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # libtool 2.4.6 contains com.dropbox.attributes xattrs,
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ # let's avoid spreading them further (#54459)
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ system "xattr -r -d com.dropbox.attributes ${destroot}"
</span> }
test.run yes
</pre><pre style='margin:0'>
</pre>