<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/620df6323e5b88cbd3122284a2f9e238fc66bd70">https://github.com/macports/macports-ports/commit/620df6323e5b88cbd3122284a2f9e238fc66bd70</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 620df6323e5 sigil: update to 2.0.1
</span>620df6323e5 is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 620df6323e5b88cbd3122284a2f9e238fc66bd70
</span>Author: i0ntempest <szf1234@me.com>
AuthorDate: Fri Sep 8 13:31:57 2023 -0400

<span style='display:block; white-space:pre;color:#404040;'>    sigil: update to 2.0.1
</span>---
 editors/sigil/Portfile | 41 ++++++++++++++++++++++-------------------
 1 file changed, 22 insertions(+), 19 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/editors/sigil/Portfile b/editors/sigil/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 8a6d17eabdd..fd797c227b9 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/editors/sigil/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/editors/sigil/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,9 +4,9 @@ PortSystem              1.0
</span> PortGroup               cmake 1.1
 PortGroup               conflicts_build 1.0
 PortGroup               github 1.0
<span style='display:block; white-space:pre;background:#ffe0e0;'>-PortGroup               qt5 1.0
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+PortGroup               qt6 1.0
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-github.setup            Sigil-Ebook Sigil 1.9.30
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+github.setup            Sigil-Ebook Sigil 2.0.1
</span> revision                0
 name                    sigil
 platforms               darwin
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -19,13 +19,14 @@ description             Sigil, the ePub editor
</span> long_description        Sigil is a multi-platform WYSIWYG ebook editor. It is \
                         designed to edit books in ePub format
 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-checksums               rmd160  7f3b5d139703c6a33df298699c9bc6ebb64e95b1 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                        sha256  29d8bab4dd312365cd80487cd583811660d94e8b6d49776efa7400994f6c9cef \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-                        size    26606179
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+checksums               rmd160  ba7908272f5ad69e2d9c637b73cd2ea4b02d663c \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                        sha256  b47a6bf48d70689853edcac49185a3ef2fef4364c099c418d9f5635b39a5baa0 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                        size    26781108
</span> 
<span style='display:block; white-space:pre;background:#ffe0e0;'>-qt5.depends_component   qttools qtwebengine
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-qt5.min_version         5.12
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+qt6.depends_build       qttools
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+qt6.depends_lib         qt5compat qtwebengine
</span> 
<span style='display:block; white-space:pre;background:#e0ffe0;'>+depends_build-append    port:pkgconfig
</span> depends_lib-append      port:hunspell \
                         port:minizip \
                         port:pcre \
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -37,7 +38,9 @@ compiler.cxx_standard   2011
</span> 
 configure.args          -DCMAKE_BUILD_WITH_INSTALL_RPATH=OFF \
                         -DSYSTEM_LIBS_REQUIRED=ON \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-                        -DUSE_SYSTEM_LIBS=ON
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                        -DUSE_SYSTEM_LIBS=ON \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                        -DUSE_QT6=1 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+                        -DCMAKE_OSX_DEPLOYMENT_TARGET=${macosx_deployment_target}
</span> 
 pre-configure {
     if {![variant_isset python311] && ![variant_isset python310] && ![variant_isset python39] && ![variant_isset python38]} {
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -68,9 +71,9 @@ proc python-depends {python_branch} {
</span> 
 variant python311 conflicts python38 python39 python310 description {Use Python 3.11 during build} {
     post-patch {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|Python3 3\.9 COMPONENTS Interpreter Development|Python3 3.11 COMPONENTS Interpreter Development|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|PythonInterp 3\.9|PythonInterp 3.11|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|PythonLibs 3\.9|PythonLibs 3.11|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|Python3 3\.8 COMPONENTS Interpreter Development|Python3 3.11 COMPONENTS Interpreter Development|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|PythonInterp 3\.8|PythonInterp 3.11|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|PythonLibs 3\.8|PythonLibs 3.11|g} ${worksrcpath}/CMakeLists.txt
</span>     }
     set python_branch 3.11
     python-depends ${python_branch}
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -78,25 +81,25 @@ variant python311 conflicts python38 python39 python310 description {Use Python
</span> 
 variant python310 conflicts python38 python39 python311 description {Use Python 3.10 during build} {
     post-patch {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|Python3 3\.9 COMPONENTS Interpreter Development|Python3 3.10 COMPONENTS Interpreter Development|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|PythonInterp 3\.9|PythonInterp 3.10|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|PythonLibs 3\.9|PythonLibs 3.10|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|Python3 3\.8 COMPONENTS Interpreter Development|Python3 3.10 COMPONENTS Interpreter Development|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|PythonInterp 3\.8|PythonInterp 3.10|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|PythonLibs 3\.8|PythonLibs 3.10|g} ${worksrcpath}/CMakeLists.txt
</span>     }
     set python_branch 3.10
     python-depends ${python_branch}
 }
 
 variant python39 conflicts python38 python310 python311 description {Use Python 3.9 during build} {
<span style='display:block; white-space:pre;background:#e0ffe0;'>+    post-patch {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|Python3 3\.8 COMPONENTS Interpreter Development|Python3 3.9 COMPONENTS Interpreter Development|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|PythonInterp 3\.8|PythonInterp 3.9|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+        reinplace {s|PythonLibs 3\.8|PythonLibs 3.9|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    }
</span>     set python_branch 3.9
     python-depends ${python_branch}
 }
 
 variant python38 conflicts python39 python310 python311 description {Use Python 3.8 during build} {
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    post-patch {
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|Python3 3\.9 COMPONENTS Interpreter Development|Python3 3.8 COMPONENTS Interpreter Development|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|PythonInterp 3\.9|PythonInterp 3.8|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-        reinplace {s|PythonLibs 3\.9|PythonLibs 3.8|g} ${worksrcpath}/CMakeLists.txt
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    }
</span>     set python_branch 3.8
     python-depends ${python_branch}
 }
</pre><pre style='margin:0'>

</pre>