<pre style='margin:0'>
Ken (kencu) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/d0e50211f3add0c0fe72d8cea7c5c2a5e38000b6">https://github.com/macports/macports-ports/commit/d0e50211f3add0c0fe72d8cea7c5c2a5e38000b6</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 d0e50211f3a lua: add legacy-support for Tiger
</span>d0e50211f3a is described below
<span style='display:block; white-space:pre;color:#808000;'>commit d0e50211f3add0c0fe72d8cea7c5c2a5e38000b6
</span>Author: Gleb Mazovetskiy <glex.spb@gmail.com>
AuthorDate: Mon Dec 9 22:05:45 2024 +0000
<span style='display:block; white-space:pre;color:#404040;'> lua: add legacy-support for Tiger
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> Lua uses `localtime_r` and `gmtime_r`, which require legacy-support
</span><span style='display:block; white-space:pre;color:#404040;'> on Tiger.
</span>---
lang/lua/Portfile | 4 ++++
1 file changed, 4 insertions(+)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/lang/lua/Portfile b/lang/lua/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index a30c41d8c43..674e209721d 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/lang/lua/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/lang/lua/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -1,6 +1,7 @@
</span> # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
<span style='display:block; white-space:pre;background:#e0ffe0;'>+PortGroup legacysupport 1.1
</span> PortGroup makefile 1.0
# each version of Lua can (and does) break backwards compatibility
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -37,6 +38,9 @@ checksums rmd160 cc715df991bccaec75a022404902200d984b002e \
</span> sha256 fc5fd69bb8736323f026672b1b7235da613d7177e72558893a0bdcd320466d60 \
size 303770
<span style='display:block; white-space:pre;background:#e0ffe0;'>+# localtime_r gmtime_r
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+legacysupport.newest_darwin_requires_legacy 8
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+
</span> # Semantic Versioning uses x.y.z as the "version"
# in the Lua nomenclature, x.y is the version and z is the release
# this causes notation conflict within the port
</pre><pre style='margin:0'>
</pre>