<pre style='margin:0'>
Haren S (harens) pushed a commit to branch master
in repository macports-ports.

</pre>
<p><a href="https://github.com/macports/macports-ports/commit/c1c9307f6a6610452b1a77ac89f0dfd3739212fb">https://github.com/macports/macports-ports/commit/c1c9307f6a6610452b1a77ac89f0dfd3739212fb</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit c1c9307f6a6610452b1a77ac89f0dfd3739212fb
</span>Author: Sergey Fedorov <vital.had@gmail.com>
AuthorDate: Sun Jan 22 17:42:10 2023 +0800

<span style='display:block; white-space:pre;color:#404040;'>    range-v3: minor non-functional portfile fixes
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    Signed-off-by: Sergey Fedorov <vital.had@gmail.com>
</span>---
 devel/range-v3/Portfile | 25 ++++++++++++-------------
 1 file changed, 12 insertions(+), 13 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/devel/range-v3/Portfile b/devel/range-v3/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index 2b6091ba891..24413a0bc47 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/devel/range-v3/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/devel/range-v3/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -8,7 +8,6 @@ PortGroup           compiler_blacklist_versions 1.0
</span> github.setup        ericniebler range-v3 0.12.0
 homepage            https://ericniebler.github.io/range-v3
 categories          devel
<span style='display:block; white-space:pre;background:#ffe0e0;'>-platforms           darwin
</span> maintainers         nomaintainer
 license             MIT
 
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -16,26 +15,26 @@ description         Range library for C++14/17/20, basis for C++20's std::ranges
</span> long_description    \
     Range library for C++14/17/20. This code was the basis of a formal \
     proposal to add range support to the C++ standard library. That proposal \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    evolved through a Technical Specification, and finally into P0896R4 "The \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    One Ranges Proposal" which was merged into the C++20 working drafts in \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    November 2018.  Ranges are an extension of the Standard Template Library \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    evolved through a Technical Specification, and finally into P0896R4 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    "The One Ranges Proposal" which was merged into the C++20 working drafts \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    in November 2018. Ranges are an extension of the Standard Template Library \
</span>     that makes its iterators and algorithms more powerful by making them \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    composable. Unlike other range-like solutions which seek to do away with \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    iterators, in range-v3 ranges are an abstraction layer on top of \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    iterators.  Range-v3 is built on three pillars: Views, Actions, and \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    Algorithms. The algorithms are the same as those with which you are \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    composable. Unlike other range-like solutions which seek to do away \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    with iterators, in range-v3 ranges are an abstraction layer on top \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    of iterators. Range-v3 is built on three pillars: Views, Actions \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    and Algorithms. The algorithms are the same as those with which you are \
</span>     already familiar in the STL, except that in range-v3 all the algorithms \
     have overloads that take ranges in addition to the overloads that take \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    iterators. Views are composable adaptations of ranges where the \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    adaptation happens lazily as the view is iterated. And an action is an \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    eager application of an algorithm to a container that mutates the \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>-    container in-place and returns it for further processing. \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    iterators. Views are composable adaptations of ranges where \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    the adaptation happens lazily as the view is iterated. And an action \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    is an eager application of an algorithm to a container that mutates \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    the container in-place and returns it for further processing. \
</span>     Views and actions use the pipe syntax (e.g., rng | adapt1 | adapt2 | ...) \
     so your code is terse and readable from left to right. Development Status: \
     This code is fairly stable, well-tested, and suitable for casual use, \
     although currently lacking documentation. In general, no promise is made \
     about support or long-term stability. This code will evolve without regard \
<span style='display:block; white-space:pre;background:#ffe0e0;'>-    to backwards compatibility.
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+    to backwards compatibility
</span> 
 checksums           rmd160  8c4f5dcba75e49971c6b552ddd3dcbf77b46a27f \
                     sha256  031ae9eb136f1aef7ea8f915b75c278242906d5ff0d44acf3b7c9d4c012fb61b \
</pre><pre style='margin:0'>

</pre>