<pre style='margin:0'>
Chris Jones (cjones051073) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/c9ab95d0960565877048a38c1288bc22730c6dab">https://github.com/macports/macports-ports/commit/c9ab95d0960565877048a38c1288bc22730c6dab</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 c9ab95d  mail/notmuch: configure phase bugfix V2
</span>c9ab95d is described below

<span style='display:block; white-space:pre;color:#808000;'>commit c9ab95d0960565877048a38c1288bc22730c6dab
</span>Author: Ralph Seichter <github@seichter.de>
AuthorDate: Mon Jun 10 23:18:50 2019 +0200

<span style='display:block; white-space:pre;color:#404040;'>    mail/notmuch: configure phase bugfix V2
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    The configure phase fails on OS X 10.10 and older due to a length
</span><span style='display:block; white-space:pre;color:#404040;'>    limitation for GNUPGHOME. I changed the relevant mktemp statement
</span><span style='display:block; white-space:pre;color:#404040;'>    again, to create a temporary home within in the build directory.
</span>---
 mail/notmuch/files/notmuch-0.29-configure.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/mail/notmuch/files/notmuch-0.29-configure.patch b/mail/notmuch/files/notmuch-0.29-configure.patch
</span><span style='display:block; white-space:pre;color:#808080;'>index f042294..df4282f 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/mail/notmuch/files/notmuch-0.29-configure.patch
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/mail/notmuch/files/notmuch-0.29-configure.patch
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,7 +5,7 @@
</span>  }
  EOF
 -    if ! TEMP_GPG=$(mktemp -d); then
<span style='display:block; white-space:pre;background:#ffe0e0;'>-+    if ! TEMP_GPG=$(mktemp -d -t /tmp); then
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>++    if ! TEMP_GPG=$(mktemp -d /tmp/notmuch.XXXXXXXX); then
</span>          printf 'No.\nCould not make tempdir for testing session-key support.\n'
          errors=$((errors + 1))
      elif ${CC} ${CFLAGS} ${gmime_cflags} _check_session_keys.c ${gmime_ldflags} -o _check_session_keys \
</pre><pre style='margin:0'>

</pre>