SHA256
1
0
forked from pool/lilv

Accepting request 538624 from home:plater

Update to version 0.24.2
Remove patch lilv-python-bindings-fix.diff it's now incorporated by upstream.
Upstream changes:
    Fix saving state to paths that contain URI delimiters
    Fix comparison of restored states with paths
    Add new hand-crafted Pythonic bindings with full test
    coverage.
    Add lv2apply utility for applying plugins to audio files
    Add lilv_world_get_symbol()
    Add lilv_state_set_metadata() for adding state banks/comments
    /etc (based on patch from Hanspeter Portner)
    Fix crash when state contains non-POD properties
    Fix crash if NULL predicate passed to lilv_world_find_nodes()
    Fix state file versioning
    Unload contained resources when bundle is unloaded
    Do not instantiate plugin when data fails to parse
    Support re-loading plugins
    Replace bundles if bundle with newer plugin version is loaded
    Fix loading dyn-manifest from bundles with spaces in path
    Check lv2:binary predicate for UIs
    Add LILV_URI_ATOM_PORT and LILV_URI_CV_PORT defines
    Fix documentation installation
    Fix outdated comment references to lilv_uri_to_path()

OBS-URL: https://build.opensuse.org/request/show/538624
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/lilv?expand=0&rev=27
This commit is contained in:
Dave Plater 2017-11-03 09:34:08 +00:00 committed by Git OBS Bridge
parent f0064adc23
commit d6e829aef3
5 changed files with 39 additions and 48 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cd279321223ef11ca01551767d3c16d68cb31f689e02320a0b2e37b4f7d17ab4
size 217207

3
lilv-0.24.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f7ec65b1c1f1734ded3a6c051bbaf50f996a0b8b77e814a33a34e42bce50a522
size 244764

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,31 @@
-------------------------------------------------------------------
Fri Nov 3 08:38:36 UTC 2017 - davejplater@gmail.com
- Update to version 0.24.2
- Remove patch lilv-python-bindings-fix.diff it's now incorporated
by upstream.
- Upstream changes:
Fix saving state to paths that contain URI delimiters
Fix comparison of restored states with paths
Add new hand-crafted Pythonic bindings with full test
coverage.
Add lv2apply utility for applying plugins to audio files
Add lilv_world_get_symbol()
Add lilv_state_set_metadata() for adding state banks/comments
/etc (based on patch from Hanspeter Portner)
Fix crash when state contains non-POD properties
Fix crash if NULL predicate passed to lilv_world_find_nodes()
Fix state file versioning
Unload contained resources when bundle is unloaded
Do not instantiate plugin when data fails to parse
Support re-loading plugins
Replace bundles if bundle with newer plugin version is loaded
Fix loading dyn-manifest from bundles with spaces in path
Check lv2:binary predicate for UIs
Add LILV_URI_ATOM_PORT and LILV_URI_CV_PORT defines
Fix documentation installation
Fix outdated comment references to lilv_uri_to_path()
-------------------------------------------------------------------
Thu Feb 2 01:11:33 UTC 2017 - jengelh@inai.de

View File

@ -20,7 +20,7 @@
%define sordversion %(pkg-config --modversion sord-0)
Name: lilv
Version: 0.22.0
Version: 0.24.2
Release: 0
Summary: C library to make use of LV2 plugins
License: ISC
@ -30,7 +30,7 @@ Source0: http://download.drobilla.net/lilv-%{version}.tar.bz2
Source98: baselibs.conf
Source99: lilv-rpmlintrc
# Patch backported from v 0.22.1 http://dev.drobilla.net/changeset/5759
Patch0: lilv-python-bindings-fix.diff
#Patch0: lilv-python-bindings-fix.diff
# lilv 0.22 require new API of sord 0.13
# Since sord sover unchanged from 0.12, explicitly require here.
@ -79,7 +79,7 @@ This subpackage contains the Python bindings for lilv.
%prep
%setup -q
%patch0 -p1
#%%patch0 -p1
echo %{sordversion}
%build
@ -91,6 +91,7 @@ export CXXFLAGS='%{optflags} -I%{python_sitearch}/numpy/core/include/'
--libdir=%{_libdir} \
--docdir=%{_defaultdocdir} \
--configdir=%{_sysconfdir} \
--test \
--bindings \
--docs
# waf only understands -j, so do not use smp_mflags
@ -99,6 +100,7 @@ export CXXFLAGS='%{optflags} -I%{python_sitearch}/numpy/core/include/'
%install
./waf install --destdir=%{?buildroot}
if [ %{python_sitelib} != %{python_sitearch} ]; then
mkdir -p %{buildroot}%{python_sitearch}
mv %{buildroot}%{python_sitelib}/lilv.py %{buildroot}%{python_sitearch}/
fi
@ -112,8 +114,10 @@ fi
%attr(0755,-,-) %{_bindir}/lv2bench
%attr(0755,-,-) %{_bindir}/lv2info
%attr(0755,-,-) %{_bindir}/lv2ls
%attr(0755,-,-) %{_bindir}/lv2apply
%{_mandir}/man1/lv2info.1*
%{_mandir}/man1/lv2ls.1*
%{_mandir}/man1/lv2apply.1*
%{_sysconfdir}/bash_completion.d/lilv
%files -n liblilv-0-%{sover}
@ -129,9 +133,9 @@ fi
%{_defaultdocdir}/lilv-0/
%{_mandir}/man3/*
# Removed %%{python_sitearch}/_lilv.so in version 2.4.2
%files -n python-lilv
%defattr(0644,root,root,0755)
%{python_sitearch}/lilv.py
%{python_sitearch}/_lilv.so
%changelog