<pre style='margin:0'>
Ryan Schmidt (ryandesign) pushed a commit to branch master
in repository macports-ports.
</pre>
<p><a href="https://github.com/macports/macports-ports/commit/cc51e7b52b46d464d1235f6f4452592ec20efb5e">https://github.com/macports/macports-ports/commit/cc51e7b52b46d464d1235f6f4452592ec20efb5e</a></p>
<pre style="white-space: pre; background: #F8F8F8"><span style='display:block; white-space:pre;color:#808000;'>commit cc51e7b52b46d464d1235f6f4452592ec20efb5e
</span>Author: Steven Thomas Smith <s.t.smith@ieee.org>
AuthorDate: Fri Jul 24 17:21:00 2020 -0400
<span style='display:block; white-space:pre;color:#404040;'> py-librosa: Update to version 0.8.0 and bug fixes
</span><span style='display:block; white-space:pre;color:#404040;'>
</span><span style='display:block; white-space:pre;color:#404040;'> * Update to version 0.8.0
</span><span style='display:block; white-space:pre;color:#404040;'> * Add missing dependencies
</span><span style='display:block; white-space:pre;color:#404040;'> * Fix tests
</span>---
python/py-librosa/Portfile | 27 ++++++++++++++-------------
1 file changed, 14 insertions(+), 13 deletions(-)
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/python/py-librosa/Portfile b/python/py-librosa/Portfile
</span><span style='display:block; white-space:pre;color:#808080;'>index ed2100cdef0..46fbb200ec0 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/python/py-librosa/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/python/py-librosa/Portfile
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -4,7 +4,7 @@ PortSystem 1.0
</span> PortGroup github 1.0
PortGroup python 1.0
<span style='display:block; white-space:pre;background:#ffe0e0;'>-github.setup librosa librosa 0.7.2
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+github.setup librosa librosa 0.8.0
</span> revision 0
name py-${github.project}
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -17,9 +17,9 @@ maintainers nomaintainer
</span> description A python package for music and audio analysis.
long_description ${description}
<span style='display:block; white-space:pre;background:#ffe0e0;'>-checksums rmd160 a20c390eaeb1bb43142157701fb2ada965733a12 \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- sha256 445ff46f9ca7850386f4d6691340747321dffe80534a083ea9ac6564618cc93f \
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- size 31268227
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+checksums rmd160 eb0af487a176a8c7f89d7fb9a58e707ef0e05ab5 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ sha256 4f7421f91a6049483e4cdd567e2c308e4c7673720cd619ae8565e3395b0a6627 \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ size 4708361
</span>
python.versions 37 38
<span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -29,29 +29,30 @@ if {${name} ne ${subport}} {
</span>
depends_run-append \
port:py${python.version}-audioread \
<span style='display:block; white-space:pre;background:#e0ffe0;'>+ port:py${python.version}-contextlib2 \
</span> port:py${python.version}-decorator \
port:py${python.version}-joblib \
port:py${python.version}-matplotlib \
port:py${python.version}-numba \
port:py${python.version}-numpy \
<span style='display:block; white-space:pre;background:#e0ffe0;'>+ port:py${python.version}-pooch \
</span> port:py${python.version}-resampy \
port:py${python.version}-scikit-learn \
port:py${python.version}-scipy \
port:py${python.version}-six \
<span style='display:block; white-space:pre;background:#ffe0e0;'>- port:py${python.version}-soundfile
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ port:py${python.version}-soundfile \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ port:py${python.version}-threadpoolctl
</span>
depends_test-append \
port:py${python.version}-pytest \
<span style='display:block; white-space:pre;background:#ffe0e0;'>- port:py${python.version}-pytest-mpl
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ port:py${python.version}-pytest-mpl \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ port:py${python.version}-samplerate
</span>
<span style='display:block; white-space:pre;background:#ffe0e0;'>- # currently the test-suite fails as it is not fully compatible yet
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- # with newer versions of pytest; in addition not all data files
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- # needed for the tests appear to be present in the tests/data
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- test.run no
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- test.cmd pytest-${python.branch}
</span><span style='display:block; white-space:pre;background:#ffe0e0;'>- test.args -o addopts='--mpl --mpl-baseline-path=tests/baseline_images/test_display'
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ test.run yes
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ test.cmd py.test-${python.branch}
</span> test.target
<span style='display:block; white-space:pre;background:#ffe0e0;'>- test.env PYTHONPATH=${worksrcpath}/build/lib
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ test.env-append \
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+ PYTHONPATH=${worksrcpath}/build/lib
</span>
post-destroot {
set docdir ${prefix}/share/doc/${subport}
</pre><pre style='margin:0'>
</pre>