<pre style='margin:0'>
Zhenfu Shi (i0ntempest) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/f5b43572e486afb14ac456275c743dff890d56b6">https://github.com/macports/macports-ports/commit/f5b43572e486afb14ac456275c743dff890d56b6</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 f5b43572e48 unxip: Correctly support macOS 12 targets
</span>f5b43572e48 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit f5b43572e486afb14ac456275c743dff890d56b6
</span>Author: Keto <therealketo@gmail.com>
AuthorDate: Tue Nov 7 18:13:00 2023 -0500

<span style='display:block; white-space:pre;color:#404040;'>    unxip: Correctly support macOS 12 targets
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    unxip contains support for macOS 12, but it requires using
</span><span style='display:block; white-space:pre;color:#404040;'>    the 13.0 SDK in order to build. In addition, a full Xcode
</span><span style='display:block; white-space:pre;color:#404040;'>    installation is no longer required.
</span>---
 archivers/unxip/Portfile | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/archivers/unxip/Portfile b/archivers/unxip/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 17737d210be..9b37db990d7 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/archivers/unxip/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/archivers/unxip/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -5,7 +5,7 @@ PortGroup           github 1.0
</span> PortGroup           muniversal 1.1
 
 github.setup        saagarjha unxip 3.0 v
<span style='display:block; white-space:pre;background:#ffe0e0;'>-revision            0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+revision            1
</span> github.tarball_from archive
 
 categories          archivers sysutils
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -31,9 +31,13 @@ if {${os.platform} eq "darwin" && ${os.major} < 21} {
</span> }
 
 use_configure       no
<span style='display:block; white-space:pre;background:#ffe0e0;'>-use_xcode           yes
</span> universal_variant   yes
 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# Use MacOSX13.sdk to compile on macOS 12 Monterey
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+if {${os.platform} eq "darwin" && ${os.major} < 22} {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    configure.sdk_version   13
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+}
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> build.cmd           swiftc
 build.target        unxip.swift
 build.args          -O -whole-module-optimization -parse-as-library
</pre><pre style='margin:0'>

</pre>