update to 0.24.24 [release 0.24.24-1mamba;Fri Mar 15 2024]

This commit is contained in:
Silvan Calarco 2024-03-20 10:42:52 +01:00
parent e01cd90de4
commit c8968110b6

View File

@ -1,13 +1,13 @@
Name: lilv
Version: 0.24.14
Release: 2mamba
Version: 0.24.24
Release: 1mamba
Summary: A C library to make the use of LV2 plugins as simple as possible for applications
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://drobilla.net/software/lilv.html
Source: http://download.drobilla.net/lilv-%{version}.tar.bz2
Source: http://download.drobilla.net/lilv-%{version}.tar.xz
License: MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
@ -17,6 +17,7 @@ BuildRequires: libserd-devel
BuildRequires: libsndfile-devel
BuildRequires: libsord-devel
BuildRequires: libsratom-devel
BuildRequires: libzix-devel
## AUTOBUILDREQ-END
BuildRequires: libpython3-devel >= 3.11
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
@ -49,17 +50,13 @@ This package contains libraries and header files for developing applications tha
%setup -q
%build
./waf configure \
--configdir=%{_sysconfdir} \
--prefix=%{_prefix} \
--libdir=%{_libdir} \
--python=%{__python3}
%meson
./waf %{?_smp_mflags} build
%meson_build
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
./waf install --destdir=%{buildroot}
%meson_install
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
@ -70,12 +67,13 @@ This package contains libraries and header files for developing applications tha
%files
%defattr(-,root,root)
%{_sysconfdir}/bash_completion.d/lilv
%{_bindir}/lilv-bench
#%{_bindir}/lilv-bench
%{_bindir}/lv2apply
%{_bindir}/lv2bench
%{_bindir}/lv2info
%{_bindir}/lv2ls
%{_mandir}/man1/lv2apply.1*
%{_mandir}/man1/lv2bench.1*
%{_mandir}/man1/lv2info.1*
%{_mandir}/man1/lv2ls.1*
@ -83,6 +81,7 @@ This package contains libraries and header files for developing applications tha
%defattr(-,root,root)
%{_libdir}/liblilv-0.so.*
%{python3_sitelib}/lilv.py
%{python3_sitelib}/__pycache__/lilv.cpython-311.pyc
%doc AUTHORS COPYING
%files -n lib%{name}-devel
@ -93,10 +92,17 @@ This package contains libraries and header files for developing applications tha
%{_includedir}/lilv-0/lilv/lilvmm.hpp
%{_libdir}/liblilv-0.so
%{_libdir}/pkgconfig/lilv-0.pc
%dir %{_docdir}/lilv-0
%dir %{_docdir}/lilv-0/html
%{_docdir}/lilv-0/html/*
%dir %{_docdir}/lilv-0/singlehtml
%{_docdir}/lilv-0/singlehtml/*
%doc NEWS
%changelog
* Fri Mar 15 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 0.24.24-1mamba
- update to 0.24.24
* Mon Oct 16 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 0.24.14-2mamba
- rebuild with python3 == 3.11