Accepting request 972326 from home:susnux:branches:multimedia:libs
- Update to 0.24.12: * Allow connecting ports to structures in Python * Fix potential memory error when joining filesystem paths * Fix unlikely undefined behavior when saving state * Remove the need for a generated configuration header OBS-URL: https://build.opensuse.org/request/show/972326 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/lilv?expand=0&rev=41
This commit is contained in:
parent
b233efcdbd
commit
37855e3da1
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d1bba93d6ddacadb5e742fd10ad732727edb743524de229c70cc90ef81ffc594
|
|
||||||
size 443795
|
|
3
lilv-0.24.12.tar.bz2
Normal file
3
lilv-0.24.12.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:26a37790890c9c1f838203b47f5b2320334fe92c02a4d26ebbe2669dbd769061
|
||||||
|
size 427404
|
@ -1 +1 @@
|
|||||||
addFilter("non-conffile-in-etc /etc/bash_completion.d/lilv")
|
addFilter("shlib-fixed-dependency .*libs.rd.*")
|
||||||
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Apr 23 22:17:23 UTC 2022 - Ferdinand Thiessen <rpm@fthiessen.de>
|
||||||
|
|
||||||
|
- Update to 0.24.12:
|
||||||
|
* Allow connecting ports to structures in Python
|
||||||
|
* Fix potential memory error when joining filesystem paths
|
||||||
|
* Fix unlikely undefined behavior when saving state
|
||||||
|
* Remove the need for a generated configuration header
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 5 09:48:11 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
Tue Jan 5 09:48:11 UTC 2021 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
29
lilv.spec
29
lilv.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package lilv
|
# spec file for package lilv
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021 SUSE LLC
|
# Copyright (c) 2022 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -16,23 +16,28 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
|
|
||||||
|
%bcond_with docs
|
||||||
%define sover 0
|
%define sover 0
|
||||||
%define sordversion %(pkg-config --modversion sord-0)
|
%define sordversion %(pkg-config --modversion sord-0)
|
||||||
%define serdversion %(pkg-config --modversion serd-0)
|
%define serdversion %(pkg-config --modversion serd-0)
|
||||||
Name: lilv
|
Name: lilv
|
||||||
Version: 0.24.10
|
Version: 0.24.12
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: C library to make use of LV2 plugins
|
Summary: C library to make use of LV2 plugins
|
||||||
License: ISC
|
License: ISC
|
||||||
Group: Development/Libraries/C and C++
|
Group: Development/Libraries/C and C++
|
||||||
URL: https://drobilla.net/software/lilv
|
URL: https://drobilla.net/software/lilv.html
|
||||||
Source0: https://download.drobilla.net/lilv-%{version}.tar.bz2
|
Source0: https://download.drobilla.net/lilv-%{version}.tar.bz2
|
||||||
Source98: baselibs.conf
|
|
||||||
Source99: lilv-rpmlintrc
|
Source99: lilv-rpmlintrc
|
||||||
|
Source98: baselibs.conf
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
BuildRequires: gcc-c++
|
BuildRequires: gcc-c++
|
||||||
BuildRequires: graphviz
|
BuildRequires: graphviz
|
||||||
BuildRequires: pkgconfig
|
BuildRequires: pkgconfig
|
||||||
|
%if %{with docs}
|
||||||
|
BuildRequires: python3-Sphinx
|
||||||
|
BuildRequires: python3-sphinx_lv2_theme
|
||||||
|
%endif
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-numpy-devel
|
BuildRequires: python3-numpy-devel
|
||||||
BuildRequires: swig
|
BuildRequires: swig
|
||||||
@ -89,8 +94,10 @@ python3 ./waf configure \
|
|||||||
--libdir=%{_libdir} \
|
--libdir=%{_libdir} \
|
||||||
--docdir=%{_defaultdocdir} \
|
--docdir=%{_defaultdocdir} \
|
||||||
--configdir=%{_sysconfdir} \
|
--configdir=%{_sysconfdir} \
|
||||||
--test \
|
%if %{with docs}
|
||||||
--docs
|
--docs \
|
||||||
|
%endif
|
||||||
|
--test
|
||||||
# waf only understands -j, so do not use smp_mflags
|
# waf only understands -j, so do not use smp_mflags
|
||||||
python3 ./waf build -v %{?_smp_mflags}
|
python3 ./waf build -v %{?_smp_mflags}
|
||||||
|
|
||||||
@ -100,6 +107,10 @@ if [ %{python3_sitelib} != %{python3_sitearch} ]; then
|
|||||||
mkdir -p %{buildroot}%{python3_sitearch}
|
mkdir -p %{buildroot}%{python3_sitearch}
|
||||||
mv %{buildroot}%{python3_sitelib}/lilv.py %{buildroot}%{python3_sitearch}/
|
mv %{buildroot}%{python3_sitelib}/lilv.py %{buildroot}%{python3_sitearch}/
|
||||||
fi
|
fi
|
||||||
|
# Fix E: filelist-forbidden-bashcomp-userdirs /etc/bash_completion.d/lilv
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/bash-completion/completions/
|
||||||
|
mv %{buildroot}%{_sysconfdir}/bash_completion.d/lilv %{buildroot}%{_datadir}/bash-completion/completions/
|
||||||
|
rmdir %{buildroot}%{_sysconfdir}/bash_completion.d
|
||||||
|
|
||||||
%post -n liblilv-0-%{sover} -p /sbin/ldconfig
|
%post -n liblilv-0-%{sover} -p /sbin/ldconfig
|
||||||
%postun -n liblilv-0-%{sover} -p /sbin/ldconfig
|
%postun -n liblilv-0-%{sover} -p /sbin/ldconfig
|
||||||
@ -114,18 +125,20 @@ fi
|
|||||||
%{_mandir}/man1/lv2info.1%{?ext_man}
|
%{_mandir}/man1/lv2info.1%{?ext_man}
|
||||||
%{_mandir}/man1/lv2ls.1%{?ext_man}
|
%{_mandir}/man1/lv2ls.1%{?ext_man}
|
||||||
%{_mandir}/man1/lv2apply.1%{?ext_man}
|
%{_mandir}/man1/lv2apply.1%{?ext_man}
|
||||||
%{_sysconfdir}/bash_completion.d/lilv
|
%{_datadir}/bash-completion/completions/%{name}
|
||||||
|
|
||||||
%files -n liblilv-0-%{sover}
|
%files -n liblilv-0-%{sover}
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%{_libdir}/liblilv-0.so.%{sover}*
|
%{_libdir}/liblilv-0.so.%{sover}*
|
||||||
|
|
||||||
%files -n liblilv-0-devel
|
%files -n liblilv-0-devel
|
||||||
|
%{_libdir}/pkgconfig/lilv-0.pc
|
||||||
%{_libdir}/liblilv-0.so
|
%{_libdir}/liblilv-0.so
|
||||||
%{_includedir}/lilv-0/
|
%{_includedir}/lilv-0/
|
||||||
%{_libdir}/pkgconfig/lilv-0.pc
|
%if %{with docs}
|
||||||
%{_defaultdocdir}/lilv-0/
|
%{_defaultdocdir}/lilv-0/
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
|
%endif
|
||||||
|
|
||||||
%files -n python3-lilv
|
%files -n python3-lilv
|
||||||
%{python3_sitearch}/lilv.py
|
%{python3_sitearch}/lilv.py
|
||||||
|
Loading…
x
Reference in New Issue
Block a user