From d98a1e7e7add34cecf7af62058769e1ce69f0f7f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 6 Mar 2012 07:19:21 +0000 Subject: [PATCH 01/60] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 7acba73b4b15fb91045c309c5e2cf0400d9a2390 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 6 Mar 2012 10:49:29 +0100 Subject: [PATCH 02/60] Initial import of SRPM --- .gitignore | 1 + ...0.5.0-_lilv_test.c-from-3609-to-3610.patch | 27 ++++ lilv-0.5.0-lilv_test.c-r4011.patch | 16 +++ lilv.spec | 120 ++++++++++++++++++ sources | 1 + 5 files changed, 165 insertions(+) create mode 100644 lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch create mode 100644 lilv-0.5.0-lilv_test.c-r4011.patch create mode 100644 lilv.spec diff --git a/.gitignore b/.gitignore index e69de29..9e80a51 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/lilv-0.5.0.tar.bz2 diff --git a/lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch b/lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch new file mode 100644 index 0000000..13e617d --- /dev/null +++ b/lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch @@ -0,0 +1,27 @@ +Index: test/lilv_test.c +=================================================================== +--- test/lilv_test.c (revision 3609) ++++ test/lilv_test.c (revision 3610) +@@ -757,8 +757,16 @@ + TEST_ASSERT(sp1); + +- TEST_ASSERT(!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Sin")); +- TEST_ASSERT(lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 3); +- TEST_ASSERT(!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Cos")); +- TEST_ASSERT(lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 4); ++ TEST_ASSERT( ++ ((!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Sin") ++ && lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 3) ++ && ++ (!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Cos") ++ && lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 4)) ++ || ++ ((!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Cos") ++ && lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 4) ++ && ++ (!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Sin") ++ && lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 3))); + + LilvNode* homepage_p = lilv_new_uri(world, "http://usefulinc.com/ns/doap#homepage"); + LILV_API + uint32_t diff --git a/lilv-0.5.0-lilv_test.c-r4011.patch b/lilv-0.5.0-lilv_test.c-r4011.patch new file mode 100644 index 0000000..35c2f1a --- /dev/null +++ b/lilv-0.5.0-lilv_test.c-r4011.patch @@ -0,0 +1,16 @@ +diff -Nurp lilv-0.5.0.orig/test/lilv_test.c lilv-0.5.0/test/lilv_test.c +--- lilv-0.5.0.orig/test/lilv_test.c 2011-09-29 04:26:23.000000000 +0200 ++++ lilv-0.5.0/test/lilv_test.c 2012-03-02 23:58:09.546071126 +0100 +@@ -524,9 +524,9 @@ test_plugin(void) + free(manifest_uri); + free(data_uri); + +- float mins[1]; +- float maxs[1]; +- float defs[1]; ++ float mins[3]; ++ float maxs[3]; ++ float defs[3]; + lilv_plugin_get_port_ranges_float(plug, mins, maxs, defs); + TEST_ASSERT(mins[0] == -1.0f); + TEST_ASSERT(maxs[0] == 1.0f); diff --git a/lilv.spec b/lilv.spec new file mode 100644 index 0000000..a07b868 --- /dev/null +++ b/lilv.spec @@ -0,0 +1,120 @@ +%global maj 0 + +Name: lilv +Version: 0.5.0 +Release: 3%{?dist} +Summary: An LV2 Resource Description Framework Library + +Group: System Environment/Libraries +License: MIT +URL: http://drobilla.net/software/lilv/ +Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 +# correct non-deterministic node retrieval of scale points in test suite, +# and increase the size of the test float array +Patch0: lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch +Patch1: lilv-0.5.0-lilv_test.c-r4011.patch +BuildRequires: doxygen +BuildRequires: graphviz +BuildRequires: sord-devel >= 0.5.0 +BuildRequires: lv2core-devel >= 4.0 +BuildRequires: python2-devel +BuildRequires: swig + +%filter_setup + +%description +%{name} is a library to make the use of LV2 plugins as simple as possible +for applications. Lilv is the successor to SLV2, rewritten to be significantly +faster and have minimal dependencies. + +%package devel +Summary: Development libraries and headers for %{name} +Group: Development/Libraries +Requires: %{name}%{_isa} = %{version}-%{release} + +%description devel +%{name} is a lightweight C library for Resource Description Syntax which +supports reading and writing Turtle and NTriples. + +This package contains the headers and development libraries for %{name}. + +%package -n python-%{name} +Summary: Python bindings for %{name} +Group: Development/Libraries +Requires: %{name}%{_isa} = %{version}-%{release} + +%description -n python-%{name} +%{name} is a lightweight C library for Resource Description Syntax which +supports reading and writing Turtle and NTriples. + +This package contains the python libraries for %{name}. + +%prep +%setup -q +%patch0 +%patch1 -p1 + +# we'll run ld config +sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript +# for packagers sake, build the tests with debug symbols +sed -i -e "s| '-ftest-coverage' \]|\ + '-ftest-coverage' \] + '%{optflags}'.split(' ')|" wscript + +%build +export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" +./waf configure -v \ + --prefix=%{_prefix} \ + --libdir=%{_libdir} \ + --mandir=%{_mandir} \ + --datadir=%{_datadir} \ + --docdir=%{_docdir}/%{name}-devel-%{version} \ + --configdir=%{_sysconfdir} \ + --test \ + --bindings \ + --docs +./waf build -v %{?_smp_mflags} + +%install +DESTDIR=%{buildroot} ./waf install +chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%check +./build/test/lilv_test + +%files +%doc AUTHORS ChangeLog README COPYING +%{_libdir}/lib%{name}-%{maj}.so.* +%{_bindir}/lilv-bench +%{_bindir}/lv2info +%{_bindir}/lv2ls +%dir %{_sysconfdir}/bash_completion.d/ +%{_sysconfdir}/bash_completion.d/lilv +%{_mandir}/man1/* + +%files devel +%{_libdir}/lib%{name}-%{maj}.so +%{_libdir}/pkgconfig/%{name}-%{maj}.pc +%{_includedir}/%{name}-%{maj}/ +%{_docdir}/%{name}-devel-%{version} +%{_mandir}/man3/* + +%files -n python-%{name} +%{python_sitelib}/%{name}.* +%{python_sitearch}/_%{name}.so + +%changelog +* Wed Feb 29 2012 Brendan Jones - 0.5.0-3 +- Remove redundant build requires, merge python bindings +- Move man3 pages to devel package +- Apply patch to correct scale points iteration in test suite + +* Sun Feb 26 2012 Brendan Jones - 0.5.0-2 +- Add python bindings, and missing build requires +- Move man pages to main package + +* Fri Dec 23 2011 Brendan Jones - 0.5.0-1 +- Initial build diff --git a/sources b/sources index e69de29..d012939 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +88f5a60ef4e217b6c44a4eff4ccf0ce9 lilv-0.5.0.tar.bz2 From 89d64b94d12f28551e9ca40cd1a9249e02681bdc Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 21 Apr 2012 11:27:05 +0200 Subject: [PATCH 03/60] New upstream 0.14.0 --- .gitignore | 1 + ...0.5.0-_lilv_test.c-from-3609-to-3610.patch | 27 ------------------- lilv-0.5.0-lilv_test.c-r4011.patch | 16 ----------- lilv.spec | 19 ++++++------- sources | 2 +- 5 files changed, 10 insertions(+), 55 deletions(-) delete mode 100644 lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch delete mode 100644 lilv-0.5.0-lilv_test.c-r4011.patch diff --git a/.gitignore b/.gitignore index 9e80a51..d1024d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /lilv-0.5.0.tar.bz2 +/lilv-0.14.0.tar.bz2 diff --git a/lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch b/lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch deleted file mode 100644 index 13e617d..0000000 --- a/lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch +++ /dev/null @@ -1,27 +0,0 @@ -Index: test/lilv_test.c -=================================================================== ---- test/lilv_test.c (revision 3609) -+++ test/lilv_test.c (revision 3610) -@@ -757,8 +757,16 @@ - TEST_ASSERT(sp1); - -- TEST_ASSERT(!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Sin")); -- TEST_ASSERT(lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 3); -- TEST_ASSERT(!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Cos")); -- TEST_ASSERT(lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 4); -+ TEST_ASSERT( -+ ((!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Sin") -+ && lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 3) -+ && -+ (!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Cos") -+ && lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 4)) -+ || -+ ((!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp0)), "Cos") -+ && lilv_node_as_float(lilv_scale_point_get_value(sp0)) == 4) -+ && -+ (!strcmp(lilv_node_as_string(lilv_scale_point_get_label(sp1)), "Sin") -+ && lilv_node_as_float(lilv_scale_point_get_value(sp1)) == 3))); - - LilvNode* homepage_p = lilv_new_uri(world, "http://usefulinc.com/ns/doap#homepage"); - LILV_API - uint32_t diff --git a/lilv-0.5.0-lilv_test.c-r4011.patch b/lilv-0.5.0-lilv_test.c-r4011.patch deleted file mode 100644 index 35c2f1a..0000000 --- a/lilv-0.5.0-lilv_test.c-r4011.patch +++ /dev/null @@ -1,16 +0,0 @@ -diff -Nurp lilv-0.5.0.orig/test/lilv_test.c lilv-0.5.0/test/lilv_test.c ---- lilv-0.5.0.orig/test/lilv_test.c 2011-09-29 04:26:23.000000000 +0200 -+++ lilv-0.5.0/test/lilv_test.c 2012-03-02 23:58:09.546071126 +0100 -@@ -524,9 +524,9 @@ test_plugin(void) - free(manifest_uri); - free(data_uri); - -- float mins[1]; -- float maxs[1]; -- float defs[1]; -+ float mins[3]; -+ float maxs[3]; -+ float defs[3]; - lilv_plugin_get_port_ranges_float(plug, mins, maxs, defs); - TEST_ASSERT(mins[0] == -1.0f); - TEST_ASSERT(maxs[0] == 1.0f); diff --git a/lilv.spec b/lilv.spec index a07b868..cc3e382 100644 --- a/lilv.spec +++ b/lilv.spec @@ -1,23 +1,19 @@ %global maj 0 Name: lilv -Version: 0.5.0 -Release: 3%{?dist} +Version: 0.14.0 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries License: MIT URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 -# correct non-deterministic node retrieval of scale points in test suite, -# and increase the size of the test float array -Patch0: lilv-0.5.0-_lilv_test.c-from-3609-to-3610.patch -Patch1: lilv-0.5.0-lilv_test.c-r4011.patch BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.5.0 -BuildRequires: lv2core-devel >= 4.0 -BuildRequires: python2-devel +BuildRequires: sratom-devel >= 0.2.0 +BuildRequires: lv2-devel >= 1.0.0 BuildRequires: swig %filter_setup @@ -51,8 +47,6 @@ This package contains the python libraries for %{name}. %prep %setup -q -%patch0 -%patch1 -p1 # we'll run ld config sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript @@ -86,7 +80,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* ./build/test/lilv_test %files -%doc AUTHORS ChangeLog README COPYING +%doc AUTHORS NEWS README COPYING %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/lilv-bench %{_bindir}/lv2info @@ -107,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Fri Apr 20 2012 Brendan Jones - 0.14.0-1 +- New upstream release 0.14.0 +- * Wed Feb 29 2012 Brendan Jones - 0.5.0-3 - Remove redundant build requires, merge python bindings - Move man3 pages to devel package diff --git a/sources b/sources index d012939..ec5154b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -88f5a60ef4e217b6c44a4eff4ccf0ce9 lilv-0.5.0.tar.bz2 +d3a93a017bf93d0e6ee8cccc033a0ee9 lilv-0.14.0.tar.bz2 From 2776be5b1b55c56d9a17ce505ae946bce0d319fd Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 12 May 2012 07:40:02 +0200 Subject: [PATCH 04/60] Add python bindings --- lilv.spec | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/lilv.spec b/lilv.spec index cc3e382..26a8a10 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,7 +2,7 @@ Name: lilv Version: 0.14.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -14,6 +14,7 @@ BuildRequires: graphviz BuildRequires: sord-devel >= 0.5.0 BuildRequires: sratom-devel >= 0.2.0 BuildRequires: lv2-devel >= 1.0.0 +BuildRequires: python-devel BuildRequires: swig %filter_setup @@ -63,7 +64,7 @@ export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" --datadir=%{_datadir} \ --docdir=%{_docdir}/%{name}-devel-%{version} \ --configdir=%{_sysconfdir} \ - --test \ + --test \ --bindings \ --docs ./waf build -v %{?_smp_mflags} @@ -101,9 +102,12 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat May 12 2012 Brendan Jones - 0.14.0-2 +- Add python binding BR + * Fri Apr 20 2012 Brendan Jones - 0.14.0-1 - New upstream release 0.14.0 -- + * Wed Feb 29 2012 Brendan Jones - 0.5.0-3 - Remove redundant build requires, merge python bindings - Move man3 pages to devel package From 8a0308b750ed6a4edd0c7753e04b454b35f81bda Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 12 May 2012 10:34:37 +0200 Subject: [PATCH 05/60] Corrected configure step --- lilv.spec | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/lilv.spec b/lilv.spec index 26a8a10..14c73a8 100644 --- a/lilv.spec +++ b/lilv.spec @@ -1,7 +1,7 @@ %global maj 0 Name: lilv -Version: 0.14.0 +Version: 0.14.2 Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library @@ -14,7 +14,7 @@ BuildRequires: graphviz BuildRequires: sord-devel >= 0.5.0 BuildRequires: sratom-devel >= 0.2.0 BuildRequires: lv2-devel >= 1.0.0 -BuildRequires: python-devel +BuildRequires: python2-devel BuildRequires: swig %filter_setup @@ -52,25 +52,19 @@ This package contains the python libraries for %{name}. # we'll run ld config sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript # for packagers sake, build the tests with debug symbols -sed -i -e "s| '-ftest-coverage' \]|\ +sed -i -e "s|'-ftest-coverage'\]|\ '-ftest-coverage' \] + '%{optflags}'.split(' ')|" wscript %build export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" -./waf configure -v \ - --prefix=%{_prefix} \ - --libdir=%{_libdir} \ - --mandir=%{_mandir} \ - --datadir=%{_datadir} \ - --docdir=%{_docdir}/%{name}-devel-%{version} \ - --configdir=%{_sysconfdir} \ - --test \ - --bindings \ - --docs -./waf build -v %{?_smp_mflags} +./waf configure -v --prefix=%{_prefix}\ + --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ + --docdir=%{_docdir}/%{name}-devel-%{version}\ + --docs --test --dyn-manifest --bindings +./waf -v build %{?_smp_mflags} %install -DESTDIR=%{buildroot} ./waf install +./waf -v install --destdir=%{buildroot} chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %post -p /sbin/ldconfig @@ -102,6 +96,12 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat May 12 2012 Brendan Jones - 0.14.2-2 +- Corrected waf configure + +* Sat May 12 2012 Brendan Jones - 0.14.2-1 +- New upstream 0.14.2 + * Sat May 12 2012 Brendan Jones - 0.14.0-2 - Add python binding BR From cccc2a5eb24831a90d59860ae1a440f67f238353 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 12 May 2012 11:14:43 +0200 Subject: [PATCH 06/60] New upstream 0.14.2 --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d1024d0..5aabf79 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /lilv-0.5.0.tar.bz2 /lilv-0.14.0.tar.bz2 +/lilv-0.14.2.tar.bz2 diff --git a/sources b/sources index ec5154b..0c67efd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d3a93a017bf93d0e6ee8cccc033a0ee9 lilv-0.14.0.tar.bz2 +1aea6761f3e44007c0fb4eb20630655d lilv-0.14.2.tar.bz2 From 168ad09d2a7cb93e2ccbd951d21f50b048ab0f01 Mon Sep 17 00:00:00 2001 From: Karsten Hopp Date: Thu, 5 Jul 2012 17:29:30 +0200 Subject: [PATCH 07/60] bump release and rebuild, lilv was missing some deps on PPC* --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 14c73a8..0bc7540 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,7 +2,7 @@ Name: lilv Version: 0.14.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -96,6 +96,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Thu Jul 05 2012 Karsten Hopp 0.14.2-3 +- bump release and rebuild, lilv was missing some deps on PPC* + * Sat May 12 2012 Brendan Jones - 0.14.2-2 - Corrected waf configure From ff9daaf7c224a4d1280bcd2921d18315bdc2fc8a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 16:51:19 -0500 Subject: [PATCH 08/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 0bc7540..f3620a4 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,7 +2,7 @@ Name: lilv Version: 0.14.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -96,6 +96,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 0.14.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Thu Jul 05 2012 Karsten Hopp 0.14.2-3 - bump release and rebuild, lilv was missing some deps on PPC* From ac628023e25a762db95b3a7988dbff2c5aefdbd7 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 15 Dec 2012 12:48:00 +0100 Subject: [PATCH 09/60] New upstream release --- .gitignore | 1 + lilv.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 5aabf79..ebf0309 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /lilv-0.5.0.tar.bz2 /lilv-0.14.0.tar.bz2 /lilv-0.14.2.tar.bz2 +/lilv-0.14.4.tar.bz2 diff --git a/lilv.spec b/lilv.spec index f3620a4..bd22fef 100644 --- a/lilv.spec +++ b/lilv.spec @@ -1,8 +1,8 @@ %global maj 0 Name: lilv -Version: 0.14.2 -Release: 4%{?dist} +Version: 0.14.4 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -80,6 +80,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_bindir}/lilv-bench %{_bindir}/lv2info %{_bindir}/lv2ls +%{_bindir}/lv2bench %dir %{_sysconfdir}/bash_completion.d/ %{_sysconfdir}/bash_completion.d/lilv %{_mandir}/man1/* @@ -96,6 +97,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat Dec 15 2012 Brendan Jones 0.14.4-1 +- New upstream release + * Thu Jul 19 2012 Fedora Release Engineering - 0.14.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index 0c67efd..589715b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1aea6761f3e44007c0fb4eb20630655d lilv-0.14.2.tar.bz2 +891595410eeb68322cf875286f96fccf lilv-0.14.4.tar.bz2 From b9ae015566a51454e71ed591087c97ef73fe44dc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 23:37:57 -0600 Subject: [PATCH 10/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index bd22fef..c99b5ec 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,7 +2,7 @@ Name: lilv Version: 0.14.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -97,6 +97,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.14.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Dec 15 2012 Brendan Jones 0.14.4-1 - New upstream release From 9278d73d686ae720af159eb7d35ab8bd5763116c Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 21 May 2013 00:45:21 +0200 Subject: [PATCH 11/60] New upstream release --- .gitignore | 1 + lilv-0.16.0-gcc.patch | 12 ++++++++++++ lilv.spec | 14 +++++++++----- sources | 2 +- 4 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 lilv-0.16.0-gcc.patch diff --git a/.gitignore b/.gitignore index ebf0309..76c990b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /lilv-0.14.0.tar.bz2 /lilv-0.14.2.tar.bz2 /lilv-0.14.4.tar.bz2 +/lilv-0.16.0.tar.bz2 diff --git a/lilv-0.16.0-gcc.patch b/lilv-0.16.0-gcc.patch new file mode 100644 index 0000000..9804c3f --- /dev/null +++ b/lilv-0.16.0-gcc.patch @@ -0,0 +1,12 @@ +diff -Nurp lilv-0.16.0/lilv/lilvmm.hpp lilv-0.16.0.new/lilv/lilvmm.hpp +--- lilv-0.16.0/lilv/lilvmm.hpp 2013-01-14 10:37:52.000000000 +1000 ++++ lilv-0.16.0.new/lilv/lilvmm.hpp 2013-02-24 12:22:36.727156297 +1000 +@@ -192,7 +192,7 @@ struct Plugin { + LILV_WRAP0(Node, plugin, get_author_homepage); + LILV_WRAP0(bool, plugin, is_replaced); + LILV_WRAP0(Nodes, plugin, get_extension_data); +- LILV_WRAP0(UIs, plugin, get_uis); ++ LILV_WRAP0(LilvUIs*, plugin, get_uis); + LILV_WRAP1(Nodes, plugin, get_related, Node, type); + + inline Port get_port_by_index(unsigned index) { diff --git a/lilv.spec b/lilv.spec index c99b5ec..e61134d 100644 --- a/lilv.spec +++ b/lilv.spec @@ -1,18 +1,19 @@ %global maj 0 Name: lilv -Version: 0.14.4 -Release: 2%{?dist} +Version: 0.16.0 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries License: MIT URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 +Patch1: lilv-0.16.0-gcc.patch BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: sord-devel >= 0.5.0 -BuildRequires: sratom-devel >= 0.2.0 +BuildRequires: sord-devel >= 0.12.0 +BuildRequires: sratom-devel >= 0.4.0 BuildRequires: lv2-devel >= 1.0.0 BuildRequires: python2-devel BuildRequires: swig @@ -48,7 +49,7 @@ This package contains the python libraries for %{name}. %prep %setup -q - +%patch1 -p1 # we'll run ld config sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript # for packagers sake, build the tests with debug symbols @@ -97,6 +98,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Tue May 21 2013 Brendan Jones 0.16.0-1 +- New upstream release + * Thu Feb 14 2013 Fedora Release Engineering - 0.14.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index 589715b..35c97b4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -891595410eeb68322cf875286f96fccf lilv-0.14.4.tar.bz2 +12eb71f2b5b8a68e15c1c816896bcb9f lilv-0.16.0.tar.bz2 From 156b0addcc2f3e6524387dd2ab6f7ac66ebe207b Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 02:45:40 -0500 Subject: [PATCH 12/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index e61134d..a94441f 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,7 +2,7 @@ Name: lilv Version: 0.16.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -98,6 +98,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 0.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Tue May 21 2013 Brendan Jones 0.16.0-1 - New upstream release From 30ecafe2812d4f9f367f8d2b1af748f7d591394a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 29 Nov 2013 00:13:25 +0200 Subject: [PATCH 13/60] Install docs to (main, not devel) %{_pkgdocdir} where available (#993969). --- lilv.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/lilv.spec b/lilv.spec index a94441f..aeab85e 100644 --- a/lilv.spec +++ b/lilv.spec @@ -1,8 +1,9 @@ +%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} %global maj 0 Name: lilv Version: 0.16.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -60,7 +61,7 @@ sed -i -e "s|'-ftest-coverage'\]|\ export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" ./waf configure -v --prefix=%{_prefix}\ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ - --docdir=%{_docdir}/%{name}-devel-%{version}\ + --docdir=%{_pkgdocdir}\ --docs --test --dyn-manifest --bindings ./waf -v build %{?_smp_mflags} @@ -77,6 +78,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %files %doc AUTHORS NEWS README COPYING +%exclude %{_pkgdocdir}/%{name}-%{maj}/ %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/lilv-bench %{_bindir}/lv2info @@ -90,7 +92,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_libdir}/lib%{name}-%{maj}.so %{_libdir}/pkgconfig/%{name}-%{maj}.pc %{_includedir}/%{name}-%{maj}/ -%{_docdir}/%{name}-devel-%{version} +%{_pkgdocdir}/%{name}-%{maj}/ %{_mandir}/man3/* %files -n python-%{name} @@ -98,6 +100,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Thu Nov 28 2013 Ville Skyttä - 0.16.0-3 +- Install docs to (main, not devel) %%{_pkgdocdir} where available (#993969). + * Sat Aug 03 2013 Fedora Release Engineering - 0.16.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 3667283f5107f0762cd53c0ab59d49d82bc01189 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 11 Jan 2014 09:19:48 +0100 Subject: [PATCH 14/60] Update to 0.18.0 --- .gitignore | 1 + lilv.spec | 11 +++++++---- sources | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 76c990b..7b6ba57 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /lilv-0.14.2.tar.bz2 /lilv-0.14.4.tar.bz2 /lilv-0.16.0.tar.bz2 +/lilv-0.18.0.tar.bz2 diff --git a/lilv.spec b/lilv.spec index aeab85e..e438792 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,8 +2,8 @@ %global maj 0 Name: lilv -Version: 0.16.0 -Release: 3%{?dist} +Version: 0.18.0 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -14,8 +14,8 @@ Patch1: lilv-0.16.0-gcc.patch BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.12.0 -BuildRequires: sratom-devel >= 0.4.0 -BuildRequires: lv2-devel >= 1.0.0 +BuildRequires: sratom-devel >= 0.4.4 +BuildRequires: lv2-devel >= 1.8.0 BuildRequires: python2-devel BuildRequires: swig @@ -100,6 +100,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Fri Jan 10 2014 Brendan Jones 0.18.0-1 +- New upstream release + * Thu Nov 28 2013 Ville Skyttä - 0.16.0-3 - Install docs to (main, not devel) %%{_pkgdocdir} where available (#993969). diff --git a/sources b/sources index 35c97b4..88fcff8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -12eb71f2b5b8a68e15c1c816896bcb9f lilv-0.16.0.tar.bz2 +1d1232ea73b239551bb4f462b414a819 lilv-0.18.0.tar.bz2 From df8b2de838f5e26a68f1d03baf690f5bed27eb47 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 11 Jan 2014 17:16:20 +0100 Subject: [PATCH 15/60] Add numpy BR --- lilv.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index e438792..6174f05 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -18,6 +18,7 @@ BuildRequires: sratom-devel >= 0.4.4 BuildRequires: lv2-devel >= 1.8.0 BuildRequires: python2-devel BuildRequires: swig +BuildRequires: numpy %filter_setup @@ -100,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat Jan 11 2014 Brendan Jones 0.18.0-2 +- Add numpy BR + * Fri Jan 10 2014 Brendan Jones 0.18.0-1 - New upstream release From 67be5074598369f0a4da05c8ff24b2195c6ad38c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 01:24:31 -0500 Subject: [PATCH 16/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 6174f05..8eb74c5 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.18.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.18.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Jan 11 2014 Brendan Jones 0.18.0-2 - Add numpy BR From d7d74119236649a8694aae2a9723fadd68fd5f7f Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 07:14:08 +0000 Subject: [PATCH 17/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 8eb74c5..c9bf0f1 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.18.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 0.18.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 0.18.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 6db3490d9c6e001a21d5655eb83077bc558647d9 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Wed, 20 Aug 2014 22:12:49 +0200 Subject: [PATCH 18/60] Update to 0.20.0 --- .gitignore | 1 + lilv.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7b6ba57..9c8353a 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /lilv-0.14.4.tar.bz2 /lilv-0.16.0.tar.bz2 /lilv-0.18.0.tar.bz2 +/lilv-0.20.0.tar.bz2 diff --git a/lilv.spec b/lilv.spec index c9bf0f1..d719de7 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,8 +2,8 @@ %global maj 0 Name: lilv -Version: 0.18.0 -Release: 4%{?dist} +Version: 0.20.0 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Wed Aug 20 2014 Brendan Jones 0.20.0-1 +- Udate to 0.20.0 + * Sun Aug 17 2014 Fedora Release Engineering - 0.18.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index 88fcff8..9adb7e6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1d1232ea73b239551bb4f462b414a819 lilv-0.18.0.tar.bz2 +f88419fa70cc96dfdc7e0bf3cd09b180 lilv-0.20.0.tar.bz2 From 07f182ab717003508013eaad6b73193f9fd95ff2 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 23 Aug 2014 12:28:51 +0200 Subject: [PATCH 19/60] Buld against new versions of serd/sord/sratom --- lilv.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lilv.spec b/lilv.spec index d719de7..57bfcfe 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.20.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,8 +101,11 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat Aug 23 2014 Brendan Jones 0.20.0-2 +- Build against new version of sratom / sord + * Wed Aug 20 2014 Brendan Jones 0.20.0-1 -- Udate to 0.20.0 +- Update to 0.20.0 * Sun Aug 17 2014 Fedora Release Engineering - 0.18.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 16a960202a9c320b8dae5275ec7cad5a60631aa9 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 15:39:25 +0200 Subject: [PATCH 20/60] Rebuilt for GCC 5 C++11 ABI change --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 57bfcfe..dad4421 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.20.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Sat May 02 2015 Kalev Lember - 0.20.0-3 +- Rebuilt for GCC 5 C++11 ABI change + * Sat Aug 23 2014 Brendan Jones 0.20.0-2 - Build against new version of sratom / sord From d0dd240eff7a4f9429277c8dfebac7d5c2b9eb73 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 18:18:03 +0000 Subject: [PATCH 21/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index dad4421..b051c7b 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.20.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.20.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat May 02 2015 Kalev Lember - 0.20.0-3 - Rebuilt for GCC 5 C++11 ABI change From 12c472128387e8d172213128a69651cac4f508ae Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 04:16:25 +0000 Subject: [PATCH 22/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index b051c7b..71e2e91 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.20.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.20.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 0.20.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 41b302bc0d7bc0745f0fddf6f663dd9125aff1c0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 19 Jul 2016 07:49:42 +0000 Subject: [PATCH 23/60] - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 71e2e91..a1c8162 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.20.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Tue Jul 19 2016 Fedora Release Engineering - 0.20.0-6 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + * Thu Feb 04 2016 Fedora Release Engineering - 0.20.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From bcabd13af42d80f8867f3a46d8d1b4810281b9b4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 19:50:11 +0000 Subject: [PATCH 24/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index a1c8162..78a1916 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.20.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An LV2 Resource Description Framework Library Group: System Environment/Libraries @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitearch}/_%{name}.so %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.20.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Tue Jul 19 2016 Fedora Release Engineering - 0.20.0-6 - https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages From c875489e6f1f1b22220f3e66a3864e432e7662c7 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Fri, 17 Mar 2017 15:15:37 +0100 Subject: [PATCH 25/60] Update to 0.24.2 Use hardened LDFLAGS Remove deprecated Group tags Use license macro Drop gcc patch --- .gitignore | 1 + lilv-0.16.0-gcc.patch | 12 ------------ lilv.spec | 28 +++++++++++++++------------- sources | 2 +- 4 files changed, 17 insertions(+), 26 deletions(-) delete mode 100644 lilv-0.16.0-gcc.patch diff --git a/.gitignore b/.gitignore index 9c8353a..1af0a71 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /lilv-0.16.0.tar.bz2 /lilv-0.18.0.tar.bz2 /lilv-0.20.0.tar.bz2 +/lilv-0.24.2.tar.bz2 diff --git a/lilv-0.16.0-gcc.patch b/lilv-0.16.0-gcc.patch deleted file mode 100644 index 9804c3f..0000000 --- a/lilv-0.16.0-gcc.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nurp lilv-0.16.0/lilv/lilvmm.hpp lilv-0.16.0.new/lilv/lilvmm.hpp ---- lilv-0.16.0/lilv/lilvmm.hpp 2013-01-14 10:37:52.000000000 +1000 -+++ lilv-0.16.0.new/lilv/lilvmm.hpp 2013-02-24 12:22:36.727156297 +1000 -@@ -192,7 +192,7 @@ struct Plugin { - LILV_WRAP0(Node, plugin, get_author_homepage); - LILV_WRAP0(bool, plugin, is_replaced); - LILV_WRAP0(Nodes, plugin, get_extension_data); -- LILV_WRAP0(UIs, plugin, get_uis); -+ LILV_WRAP0(LilvUIs*, plugin, get_uis); - LILV_WRAP1(Nodes, plugin, get_related, Node, type); - - inline Port get_port_by_index(unsigned index) { diff --git a/lilv.spec b/lilv.spec index 78a1916..7a331a3 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,25 +2,22 @@ %global maj 0 Name: lilv -Version: 0.20.0 -Release: 7%{?dist} +Version: 0.24.2 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library -Group: System Environment/Libraries License: MIT URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 -Patch1: lilv-0.16.0-gcc.patch BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: sord-devel >= 0.12.0 +BuildRequires: sord-devel >= 0.13.0 BuildRequires: sratom-devel >= 0.4.4 -BuildRequires: lv2-devel >= 1.8.0 +BuildRequires: lv2-devel >= 1.14.0 BuildRequires: python2-devel BuildRequires: swig BuildRequires: numpy - -%filter_setup +BuildRequires: serd-devel >= 0.14.0 %description %{name} is a library to make the use of LV2 plugins as simple as possible @@ -29,7 +26,6 @@ faster and have minimal dependencies. %package devel Summary: Development libraries and headers for %{name} -Group: Development/Libraries Requires: %{name}%{_isa} = %{version}-%{release} %description devel @@ -40,7 +36,6 @@ This package contains the headers and development libraries for %{name}. %package -n python-%{name} Summary: Python bindings for %{name} -Group: Development/Libraries Requires: %{name}%{_isa} = %{version}-%{release} %description -n python-%{name} @@ -51,7 +46,6 @@ This package contains the python libraries for %{name}. %prep %setup -q -%patch1 -p1 # we'll run ld config sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript # for packagers sake, build the tests with debug symbols @@ -60,6 +54,7 @@ sed -i -e "s|'-ftest-coverage'\]|\ %build export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" +export LINKFLAGS="%{__global_ldflags}" ./waf configure -v --prefix=%{_prefix}\ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ --docdir=%{_pkgdocdir}\ @@ -78,7 +73,8 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* ./build/test/lilv_test %files -%doc AUTHORS NEWS README COPYING +%doc AUTHORS NEWS README +%license COPYING %exclude %{_pkgdocdir}/%{name}-%{maj}/ %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/lilv-bench @@ -98,9 +94,15 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %files -n python-%{name} %{python_sitelib}/%{name}.* -%{python_sitearch}/_%{name}.so %changelog +* Wed Mar 15 2017 Guido Aulisi - 0.24.2-1 +- Update to 0.24.2 +- Use hardened LDFLAGS +- Remove deprecated Group tags +- Use license macro +- Drop gcc patch + * Fri Feb 10 2017 Fedora Release Engineering - 0.20.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 9adb7e6..ed0bc60 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f88419fa70cc96dfdc7e0bf3cd09b180 lilv-0.20.0.tar.bz2 +SHA512 (lilv-0.24.2.tar.bz2) = b5d04b6bb1fb4d3a9a58d93b233db502dc2ded75672766a31d252abca657cbf2d170fa590c0c56159b2bac68c7af95d8787a512e318e3a0f30855504bb034659 From 4cce14a6138d8ef3b2a8fd34d3efe24da560abd2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 20:08:30 +0000 Subject: [PATCH 26/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 7a331a3..73d6cb5 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -96,6 +96,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitelib}/%{name}.* %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.24.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Wed Mar 15 2017 Guido Aulisi - 0.24.2-1 - Update to 0.24.2 - Use hardened LDFLAGS From 7becf4b691b825e950af5e3fd175abce30546930 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 02:37:52 +0000 Subject: [PATCH 27/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 73d6cb5..c4b0c61 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -96,6 +96,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python_sitelib}/%{name}.* %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.24.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.24.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 2eec8d6d5ae5afa011ab61f25fa2dc43259114bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 19 Aug 2017 09:38:54 -0400 Subject: [PATCH 28/60] Python 2 binary package renamed to python2-lilv --- lilv.spec | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/lilv.spec b/lilv.spec index c4b0c61..4209fd5 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -34,11 +34,12 @@ supports reading and writing Turtle and NTriples. This package contains the headers and development libraries for %{name}. -%package -n python-%{name} +%package -n python2-%{name} +%{?python_provide:%python_provide python2-%{name}} Summary: Python bindings for %{name} Requires: %{name}%{_isa} = %{version}-%{release} -%description -n python-%{name} +%description -n python2-%{name} %{name} is a lightweight C library for Resource Description Syntax which supports reading and writing Turtle and NTriples. @@ -92,10 +93,14 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_pkgdocdir}/%{name}-%{maj}/ %{_mandir}/man3/* -%files -n python-%{name} +%files -n python2-%{name} %{python_sitelib}/%{name}.* %changelog +* Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 0.24.2-4 +- Python 2 binary package renamed to python2-lilv + See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 + * Thu Aug 03 2017 Fedora Release Engineering - 0.24.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From d1da81b027fcb8c07a152a30c1082c558c1f3691 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Thu, 18 Jan 2018 11:39:01 +0000 Subject: [PATCH 29/60] Use versioned python macro python2_sitelib --- lilv.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lilv.spec b/lilv.spec index 4209fd5..db0ffaa 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -94,9 +94,12 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %files -n python2-%{name} -%{python_sitelib}/%{name}.* +%{python2_sitelib}/%{name}.* %changelog +* Thu Jan 18 2018 Guido Aulisi - 0.24.2-5 +- Use versioned python macro python2_sitelib + * Sat Aug 19 2017 Zbigniew Jędrzejewski-Szmek - 0.24.2-4 - Python 2 binary package renamed to python2-lilv See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 From 16049c2da469f4da1752c201ea0201bf8c9c16df Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 23:54:28 +0000 Subject: [PATCH 30/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index db0ffaa..0818b1e 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -97,6 +97,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python2_sitelib}/%{name}.* %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.24.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jan 18 2018 Guido Aulisi - 0.24.2-5 - Use versioned python macro python2_sitelib From 0e48bd3f31591171e52f6c779e779c21127dc18b Mon Sep 17 00:00:00 2001 From: Germano Massullo Date: Thu, 3 May 2018 12:16:02 +0200 Subject: [PATCH 31/60] removed %dir %{_sysconfdir}/bash_completion.d/ to fix bugreport #1303438 --- lilv.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lilv.spec b/lilv.spec index 0818b1e..7e5806a 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -82,7 +82,6 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_bindir}/lv2info %{_bindir}/lv2ls %{_bindir}/lv2bench -%dir %{_sysconfdir}/bash_completion.d/ %{_sysconfdir}/bash_completion.d/lilv %{_mandir}/man1/* @@ -97,6 +96,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python2_sitelib}/%{name}.* %changelog +* Thu May 03 2018 Germano Massullo - 0.24.2-7 +- removed %%dir %%{_sysconfdir}/bash_completion.d/ to fix bugreport #1303438 + * Wed Feb 07 2018 Fedora Release Engineering - 0.24.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From e000c1c05f069291ab6f5b5dafe2a83299789ec0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 09:11:58 +0000 Subject: [PATCH 32/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 7e5806a..84c15a3 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -96,6 +96,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python2_sitelib}/%{name}.* %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.24.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu May 03 2018 Germano Massullo - 0.24.2-7 - removed %%dir %%{_sysconfdir}/bash_completion.d/ to fix bugreport #1303438 From aaa84e9cb9d3224402ca33ee4da8f1bee8e81ac7 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 15 Jul 2018 17:03:06 +0200 Subject: [PATCH 33/60] Fix FTBFS due to the move of /usr/bin/python into a separate package See https://fedoraproject.org/wiki/Changes/Move_usr_bin_python_into_separate_package Add BR for gcc and gcc-c++ --- lilv.spec | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/lilv.spec b/lilv.spec index 84c15a3..010dc1c 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -18,6 +18,8 @@ BuildRequires: python2-devel BuildRequires: swig BuildRequires: numpy BuildRequires: serd-devel >= 0.14.0 +BuildRequires: gcc +BuildRequires: gcc-c++ %description %{name} is a library to make the use of LV2 plugins as simple as possible @@ -56,14 +58,14 @@ sed -i -e "s|'-ftest-coverage'\]|\ %build export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" export LINKFLAGS="%{__global_ldflags}" -./waf configure -v --prefix=%{_prefix}\ +%{__python2} waf configure -v --prefix=%{_prefix}\ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ --docdir=%{_pkgdocdir}\ - --docs --test --dyn-manifest --bindings -./waf -v build %{?_smp_mflags} + --docs --test --dyn-manifest --bindings +%{__python2} waf -v build %{?_smp_mflags} %install -./waf -v install --destdir=%{buildroot} +%{__python2} waf -v install --destdir=%{buildroot} chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %post -p /sbin/ldconfig @@ -96,6 +98,10 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python2_sitelib}/%{name}.* %changelog +* Sun Jul 15 2018 Guido Aulisi - 0.24.2-9 +- Fix FTBFS due to the move of /usr/bin/python into a separate package +- Add BR for gcc and gcc-c++ + * Fri Jul 13 2018 Fedora Release Engineering - 0.24.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 9c625af2aa038ae21df6fca2c8f51d599f887647 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Mon, 30 Jul 2018 11:03:04 +0000 Subject: [PATCH 34/60] Update to 0.24.4 Remove ldconfig scriptlets Minor spec cleanup See https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets --- .gitignore | 1 + lilv.spec | 19 ++++++++++--------- sources | 2 +- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 1af0a71..f5744cb 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /lilv-0.18.0.tar.bz2 /lilv-0.20.0.tar.bz2 /lilv-0.24.2.tar.bz2 +/lilv-0.24.4.tar.bz2 diff --git a/lilv.spec b/lilv.spec index 010dc1c..e4ed48b 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,8 +2,8 @@ %global maj 0 Name: lilv -Version: 0.24.2 -Release: 9%{?dist} +Version: 0.24.4 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -11,13 +11,13 @@ URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: sord-devel >= 0.13.0 +BuildRequires: sord-devel >= 0.14.0 BuildRequires: sratom-devel >= 0.4.4 BuildRequires: lv2-devel >= 1.14.0 BuildRequires: python2-devel BuildRequires: swig BuildRequires: numpy -BuildRequires: serd-devel >= 0.14.0 +BuildRequires: serd-devel >= 0.18.0 BuildRequires: gcc BuildRequires: gcc-c++ @@ -56,7 +56,7 @@ sed -i -e "s|'-ftest-coverage'\]|\ '-ftest-coverage' \] + '%{optflags}'.split(' ')|" wscript %build -export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" +%set_build_flags export LINKFLAGS="%{__global_ldflags}" %{__python2} waf configure -v --prefix=%{_prefix}\ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ @@ -68,10 +68,6 @@ export LINKFLAGS="%{__global_ldflags}" %{__python2} waf -v install --destdir=%{buildroot} chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - %check ./build/test/lilv_test @@ -98,6 +94,11 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python2_sitelib}/%{name}.* %changelog +* Mon Jul 30 2018 Guido Aulisi - 0.24.4-1 +- Update to 0.24.4 +- Remove ldconfig scriptlets +- Minor spec cleanup + * Sun Jul 15 2018 Guido Aulisi - 0.24.2-9 - Fix FTBFS due to the move of /usr/bin/python into a separate package - Add BR for gcc and gcc-c++ diff --git a/sources b/sources index ed0bc60..539b403 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lilv-0.24.2.tar.bz2) = b5d04b6bb1fb4d3a9a58d93b233db502dc2ded75672766a31d252abca657cbf2d170fa590c0c56159b2bac68c7af95d8787a512e318e3a0f30855504bb034659 +SHA512 (lilv-0.24.4.tar.bz2) = cb909c83dbac36b51a206fe508aec51e52ddf068f9a159d053888594402def8d140aae0d9e1e1866e722396f7ec8dea4b86d4c1b958f56eb3193b78307918a89 From 6cf4135498e4194d02fc54e33ef27a120cca4587 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Tue, 31 Jul 2018 15:12:15 +0200 Subject: [PATCH 35/60] Rebuild with fixed binutils --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index e4ed48b..daddc53 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -94,6 +94,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python2_sitelib}/%{name}.* %changelog +* Tue Jul 31 2018 Florian Weimer - 0.24.4-2 +- Rebuild with fixed binutils + * Mon Jul 30 2018 Guido Aulisi - 0.24.4-1 - Update to 0.24.4 - Remove ldconfig scriptlets From 8ef65e607735a5d26979bf9d92e5bbff8366391a Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Wed, 3 Oct 2018 14:36:46 +0200 Subject: [PATCH 36/60] Remove Python 2 subpackage See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal and https://bugzilla.redhat.com/show_bug.cgi?id=1634929 --- lilv.spec | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/lilv.spec b/lilv.spec index daddc53..de79090 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -36,17 +36,6 @@ supports reading and writing Turtle and NTriples. This package contains the headers and development libraries for %{name}. -%package -n python2-%{name} -%{?python_provide:%python_provide python2-%{name}} -Summary: Python bindings for %{name} -Requires: %{name}%{_isa} = %{version}-%{release} - -%description -n python2-%{name} -%{name} is a lightweight C library for Resource Description Syntax which -supports reading and writing Turtle and NTriples. - -This package contains the python libraries for %{name}. - %prep %setup -q # we'll run ld config @@ -61,7 +50,7 @@ export LINKFLAGS="%{__global_ldflags}" %{__python2} waf configure -v --prefix=%{_prefix}\ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ --docdir=%{_pkgdocdir}\ - --docs --test --dyn-manifest --bindings + --docs --test --dyn-manifest %{__python2} waf -v build %{?_smp_mflags} %install @@ -90,10 +79,12 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_pkgdocdir}/%{name}-%{maj}/ %{_mandir}/man3/* -%files -n python2-%{name} -%{python2_sitelib}/%{name}.* - %changelog +* Wed Oct 03 2018 Guido Aulisi - 0.24.4-3 +- Remove Python 2 subpackage + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + and https://bugzilla.redhat.com/show_bug.cgi?id=1634929 + * Tue Jul 31 2018 Florian Weimer - 0.24.4-2 - Rebuild with fixed binutils From e992802278860e189867a57c592319c0799715ac Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Wed, 21 Nov 2018 09:47:00 +0100 Subject: [PATCH 37/60] Use Python 3 --- lilv.spec | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/lilv.spec b/lilv.spec index de79090..22dd81b 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -14,7 +14,7 @@ BuildRequires: graphviz BuildRequires: sord-devel >= 0.14.0 BuildRequires: sratom-devel >= 0.4.4 BuildRequires: lv2-devel >= 1.14.0 -BuildRequires: python2-devel +BuildRequires: python3 BuildRequires: swig BuildRequires: numpy BuildRequires: serd-devel >= 0.18.0 @@ -47,14 +47,14 @@ sed -i -e "s|'-ftest-coverage'\]|\ %build %set_build_flags export LINKFLAGS="%{__global_ldflags}" -%{__python2} waf configure -v --prefix=%{_prefix}\ +python3 waf configure -v --prefix=%{_prefix}\ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ --docdir=%{_pkgdocdir}\ --docs --test --dyn-manifest -%{__python2} waf -v build %{?_smp_mflags} +python3 waf -v build %{?_smp_mflags} %install -%{__python2} waf -v install --destdir=%{buildroot} +python3 waf -v install --destdir=%{buildroot} chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %check @@ -80,6 +80,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Wed Nov 21 2018 Guido Aulisi - 0.24.4-4 +- Use Python 3 + * Wed Oct 03 2018 Guido Aulisi - 0.24.4-3 - Remove Python 2 subpackage See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal From f4efa1dce0b3ae12375fd764a030670669fb1392 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 08:45:43 +0000 Subject: [PATCH 38/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 22dd81b..6c81f6a 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -80,6 +80,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 0.24.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Wed Nov 21 2018 Guido Aulisi - 0.24.4-4 - Use Python 3 From 7a5874f0d70b97ddd9e2ad82bbcbeac6de0c7ee7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 14:56:37 +0000 Subject: [PATCH 39/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 6c81f6a..4ee9de0 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -80,6 +80,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.24.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 0.24.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 8f8494f908e7076e733aa5539160fc74df582dae Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Wed, 30 Oct 2019 23:43:08 +0100 Subject: [PATCH 40/60] BR python3-numpy --- lilv.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lilv.spec b/lilv.spec index 4ee9de0..73f7c42 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -16,7 +16,7 @@ BuildRequires: sratom-devel >= 0.4.4 BuildRequires: lv2-devel >= 1.14.0 BuildRequires: python3 BuildRequires: swig -BuildRequires: numpy +BuildRequires: python3-numpy BuildRequires: serd-devel >= 0.18.0 BuildRequires: gcc BuildRequires: gcc-c++ @@ -80,6 +80,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Wed Oct 30 2019 Guido Aulisi - 0.24.4-7 +- BR python3-numpy + * Thu Jul 25 2019 Fedora Release Engineering - 0.24.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 5c2377580fb60a1042ff57a4b458495e72b18d1a Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sat, 7 Dec 2019 12:37:50 +0100 Subject: [PATCH 41/60] Update to 0.24.6 Add python3 bindings --- .gitignore | 1 + lilv.spec | 50 ++++++++++++++++++++++++++++++++++++-------------- sources | 2 +- 3 files changed, 38 insertions(+), 15 deletions(-) diff --git a/.gitignore b/.gitignore index f5744cb..287d236 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /lilv-0.20.0.tar.bz2 /lilv-0.24.2.tar.bz2 /lilv-0.24.4.tar.bz2 +/lilv-0.24.6.tar.bz2 diff --git a/lilv.spec b/lilv.spec index 73f7c42..ae31a3a 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,8 +2,8 @@ %global maj 0 Name: lilv -Version: 0.24.4 -Release: 7%{?dist} +Version: 0.24.6 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -13,29 +13,41 @@ BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.14.0 BuildRequires: sratom-devel >= 0.4.4 -BuildRequires: lv2-devel >= 1.14.0 +BuildRequires: lv2-devel >= 1.16.0 BuildRequires: python3 +BuildRequires: python3-devel BuildRequires: swig -BuildRequires: python3-numpy -BuildRequires: serd-devel >= 0.18.0 +BuildRequires: serd-devel >= 0.30.0 BuildRequires: gcc BuildRequires: gcc-c++ +BuildRequires: libsndfile-devel >= 1.0.0 %description -%{name} is a library to make the use of LV2 plugins as simple as possible -for applications. Lilv is the successor to SLV2, rewritten to be significantly -faster and have minimal dependencies. +%{name} is a library to make the use of LV2 plugins as simple as possible +for applications. Lilv is the successor to SLV2, rewritten to be significantly +faster and have minimal dependencies. %package devel Summary: Development libraries and headers for %{name} Requires: %{name}%{_isa} = %{version}-%{release} %description devel -%{name} is a lightweight C library for Resource Description Syntax which +%{name} is a lightweight C library for Resource Description Syntax which supports reading and writing Turtle and NTriples. This package contains the headers and development libraries for %{name}. +%package -n python3-%{name} +%{?python_provide:%python_provide python3-%{name}} +Summary: Python bindings for %{name} +Requires: %{name}%{_isa} = %{version}-%{release} + +%description -n python3-%{name} +%{name} is a lightweight C library for Resource Description Syntax which +supports reading and writing Turtle and NTriples. + +This package contains the python libraries for %{name}. + %prep %setup -q # we'll run ld config @@ -47,10 +59,11 @@ sed -i -e "s|'-ftest-coverage'\]|\ %build %set_build_flags export LINKFLAGS="%{__global_ldflags}" -python3 waf configure -v --prefix=%{_prefix}\ - --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir}\ - --docdir=%{_pkgdocdir}\ - --docs --test --dyn-manifest +python3 waf configure -v --prefix=%{_prefix} \ + --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir} \ + --docdir=%{_pkgdocdir} \ + --docs --test --dyn-manifest \ + --default-lv2-path=%{_libdir}/lv2 python3 waf -v build %{?_smp_mflags} %install @@ -61,7 +74,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* ./build/test/lilv_test %files -%doc AUTHORS NEWS README +%doc AUTHORS NEWS README.md %license COPYING %exclude %{_pkgdocdir}/%{name}-%{maj}/ %{_libdir}/lib%{name}-%{maj}.so.* @@ -69,6 +82,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_bindir}/lv2info %{_bindir}/lv2ls %{_bindir}/lv2bench +%{_bindir}/lv2apply %{_sysconfdir}/bash_completion.d/lilv %{_mandir}/man1/* @@ -79,7 +93,15 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_pkgdocdir}/%{name}-%{maj}/ %{_mandir}/man3/* +%files -n python3-%{name} +%{python3_sitelib}/%{name}.* +%{python3_sitelib}/__pycache__/* + %changelog +* Sat Dec 07 2019 Guido Aulisi - 0.24.6-1 +- Update to 0.24.6 +- Add python3 bindings + * Wed Oct 30 2019 Guido Aulisi - 0.24.4-7 - BR python3-numpy diff --git a/sources b/sources index 539b403..e55e98d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lilv-0.24.4.tar.bz2) = cb909c83dbac36b51a206fe508aec51e52ddf068f9a159d053888594402def8d140aae0d9e1e1866e722396f7ec8dea4b86d4c1b958f56eb3193b78307918a89 +SHA512 (lilv-0.24.6.tar.bz2) = 0cf89d7dac97727e744579d3f4f4b330f56cf72f1a30bd03abfd645233aaf04e9bbf2abf460a0e4b963ed40e1ae78ed5f36127553bdab16e3e7dd3e93b70cdad From 8d1f4e3aba459c8cd49af6e3a19ca575923059ab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 11:01:26 +0000 Subject: [PATCH 42/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index ae31a3a..2ca3647 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -98,6 +98,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 0.24.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Dec 07 2019 Guido Aulisi - 0.24.6-1 - Update to 0.24.6 - Add python3 bindings From 611ba4654378f6d8cff2a843360eb952dfcd84d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 02:51:58 +0200 Subject: [PATCH 43/60] Rebuilt for Python 3.9 --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 2ca3647..3981c69 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -98,6 +98,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Tue May 26 2020 Miro Hrončok - 0.24.6-3 +- Rebuilt for Python 3.9 + * Wed Jan 29 2020 Fedora Release Engineering - 0.24.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From b0999fe1ccac3fdaaa34da547669397bb2993159 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 12 Jul 2020 18:59:19 +0200 Subject: [PATCH 44/60] Use upstream default lv2 path (#1856001) --- lilv.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lilv.spec b/lilv.spec index 3981c69..9b86264 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -62,8 +62,7 @@ export LINKFLAGS="%{__global_ldflags}" python3 waf configure -v --prefix=%{_prefix} \ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir} \ --docdir=%{_pkgdocdir} \ - --docs --test --dyn-manifest \ - --default-lv2-path=%{_libdir}/lv2 + --docs --test --dyn-manifest python3 waf -v build %{?_smp_mflags} %install @@ -98,6 +97,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Sun Jul 12 2020 Guido Aulisi - 0.24.6-4 +- Use upstream default lv2 path (#1856001) + * Tue May 26 2020 Miro Hrončok - 0.24.6-3 - Rebuilt for Python 3.9 From 2e04d79ac59d878a131a0a4d1b78c486bfde1577 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 06:05:48 +0000 Subject: [PATCH 45/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 9b86264..4ae67bc 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -97,6 +97,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 0.24.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sun Jul 12 2020 Guido Aulisi - 0.24.6-4 - Use upstream default lv2 path (#1856001) From 80bcc6c1764c8f9ada8e48e3d507b56680f9b72e Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Wed, 2 Sep 2020 16:42:02 +0200 Subject: [PATCH 46/60] Update to 0.24.8 --- .gitignore | 1 + lilv.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 287d236..f9ccf8a 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /lilv-0.24.2.tar.bz2 /lilv-0.24.4.tar.bz2 /lilv-0.24.6.tar.bz2 +/lilv-0.24.8.tar.bz2 diff --git a/lilv.spec b/lilv.spec index 4ae67bc..1c293f2 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,8 +2,8 @@ %global maj 0 Name: lilv -Version: 0.24.6 -Release: 5%{?dist} +Version: 0.24.8 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -13,7 +13,7 @@ BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.14.0 BuildRequires: sratom-devel >= 0.4.4 -BuildRequires: lv2-devel >= 1.16.0 +BuildRequires: lv2-devel >= 1.18.0 BuildRequires: python3 BuildRequires: python3-devel BuildRequires: swig @@ -21,6 +21,7 @@ BuildRequires: serd-devel >= 0.30.0 BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: libsndfile-devel >= 1.0.0 +Requires: lv2 >= 1.18.0 %description %{name} is a library to make the use of LV2 plugins as simple as possible @@ -97,6 +98,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Wed Aug 19 2020 Guido Aulisi - 0.24.8-1 +- Update to 0.24.8 + * Tue Jul 28 2020 Fedora Release Engineering - 0.24.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index e55e98d..f2adb49 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lilv-0.24.6.tar.bz2) = 0cf89d7dac97727e744579d3f4f4b330f56cf72f1a30bd03abfd645233aaf04e9bbf2abf460a0e4b963ed40e1ae78ed5f36127553bdab16e3e7dd3e93b70cdad +SHA512 (lilv-0.24.8.tar.bz2) = f2b2638372a8280041f6e88e2077f2109f89dad6feedb9d07a88c6b5a05c37b62112f5d03282da4335ddd0d14339cfb49ad96a3df3de310265a40c24718be192 From 6fa3401088bf3d137fda6bad31e9b581efda59e4 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 4 Oct 2020 14:33:21 +0200 Subject: [PATCH 47/60] Update to 0.24.10 Run new test suite --- .gitignore | 1 + lilv-test-python.patch | 13 +++++++++++++ lilv.spec | 21 ++++++++++++++------- sources | 2 +- 4 files changed, 29 insertions(+), 8 deletions(-) create mode 100644 lilv-test-python.patch diff --git a/.gitignore b/.gitignore index f9ccf8a..ba3f53f 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /lilv-0.24.4.tar.bz2 /lilv-0.24.6.tar.bz2 /lilv-0.24.8.tar.bz2 +/lilv-0.24.10.tar.bz2 diff --git a/lilv-test-python.patch b/lilv-test-python.patch new file mode 100644 index 0000000..d3c9b02 --- /dev/null +++ b/lilv-test-python.patch @@ -0,0 +1,13 @@ +diff --git a/wscript b/wscript +index f6780d0..bed2995 100644 +--- a/wscript ++++ b/wscript +@@ -570,7 +570,7 @@ def test(tst): + + if tst.env.LILV_PYTHON: + with tst.group('python') as check: +- check(['python', '-m', 'unittest', 'discover', 'bindings/']) ++ check(['python3', '-m', 'unittest', 'discover', 'bindings/']) + + with tst.group('plugin') as check: + for p in test_plugins: diff --git a/lilv.spec b/lilv.spec index 1c293f2..f8c6552 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,13 +2,16 @@ %global maj 0 Name: lilv -Version: 0.24.8 +Version: 0.24.10 Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 +# New test suite looks for unversioned python +Patch0: %{name}-test-python.patch + BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.14.0 @@ -50,8 +53,8 @@ supports reading and writing Turtle and NTriples. This package contains the python libraries for %{name}. %prep -%setup -q -# we'll run ld config +%autosetup -p1 +# Do not run ld config sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript # for packagers sake, build the tests with debug symbols sed -i -e "s|'-ftest-coverage'\]|\ @@ -60,18 +63,18 @@ sed -i -e "s|'-ftest-coverage'\]|\ %build %set_build_flags export LINKFLAGS="%{__global_ldflags}" -python3 waf configure -v --prefix=%{_prefix} \ +%{python3} waf configure -v --prefix=%{_prefix} \ --libdir=%{_libdir} --configdir=%{_sysconfdir} --mandir=%{_mandir} \ --docdir=%{_pkgdocdir} \ --docs --test --dyn-manifest -python3 waf -v build %{?_smp_mflags} +%{python3} waf -v build %{?_smp_mflags} %install -python3 waf -v install --destdir=%{buildroot} +%{python3} waf -v install --destdir=%{buildroot} chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %check -./build/test/lilv_test +%{python3} waf test %files %doc AUTHORS NEWS README.md @@ -98,6 +101,10 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Sun Oct 04 2020 Guido Aulisi - 0.24.10-1 +- Update to 0.24.10 +- Run new test suite + * Wed Aug 19 2020 Guido Aulisi - 0.24.8-1 - Update to 0.24.8 diff --git a/sources b/sources index f2adb49..15ab5af 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lilv-0.24.8.tar.bz2) = f2b2638372a8280041f6e88e2077f2109f89dad6feedb9d07a88c6b5a05c37b62112f5d03282da4335ddd0d14339cfb49ad96a3df3de310265a40c24718be192 +SHA512 (lilv-0.24.10.tar.bz2) = 1dfd4fef19537686b63a4e7df45e3b1a7c4a658acc21d5646daba4d3bd5676513857b3f437b89f1a06232516433ef155772d19625c33d49d13ada37a965982cf From 79f1674033d2bc4f22712800547b1fe5085eb70c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 18:30:28 +0000 Subject: [PATCH 48/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index f8c6552..12f115e 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.24.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sun Oct 04 2020 Guido Aulisi - 0.24.10-1 - Update to 0.24.10 - Run new test suite From a96ccd701c46666ee14c6c65353df84c77262e65 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Fri, 4 Jun 2021 20:10:36 +0200 Subject: [PATCH 49/60] Rebuilt for Python 3.10 --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 12f115e..ef59d32 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Fri Jun 04 2021 Python Maint - 0.24.10-3 +- Rebuilt for Python 3.10 + * Tue Jan 26 2021 Fedora Release Engineering - 0.24.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From a984d273bfec96e19d33acd3636a003ecbeb37d7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 12:56:38 +0000 Subject: [PATCH 50/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index ef59d32..befc311 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -101,6 +101,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.24.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Fri Jun 04 2021 Python Maint - 0.24.10-3 - Rebuilt for Python 3.10 From 1cfb020facd3c8bea8abcc9587f9a897ee368446 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Fri, 26 Nov 2021 10:23:13 +0100 Subject: [PATCH 51/60] Update to 0.24.12 --- .gitignore | 1 + lilv-doc-install-directory.patch | 12 ++++++++++++ lilv.spec | 12 +++++++++--- sources | 2 +- 4 files changed, 23 insertions(+), 4 deletions(-) create mode 100644 lilv-doc-install-directory.patch diff --git a/.gitignore b/.gitignore index ba3f53f..4fe0c25 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /lilv-0.24.6.tar.bz2 /lilv-0.24.8.tar.bz2 /lilv-0.24.10.tar.bz2 +/lilv-0.24.12.tar.bz2 diff --git a/lilv-doc-install-directory.patch b/lilv-doc-install-directory.patch new file mode 100644 index 0000000..a7d3971 --- /dev/null +++ b/lilv-doc-install-directory.patch @@ -0,0 +1,12 @@ +diff --git a/wscript b/wscript +index 9810fed..1a13ea7 100644 +--- a/wscript ++++ b/wscript +@@ -556,6 +556,7 @@ def build(bld): + + # Documentation + if bld.env.DOCS: ++ bld.env.LILV_MAJOR_VERSION = LILV_MAJOR_VERSION + bld.recurse('doc/c') + + # Man pages diff --git a/lilv.spec b/lilv.spec index befc311..a1bf03b 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,8 +2,8 @@ %global maj 0 Name: lilv -Version: 0.24.10 -Release: 4%{?dist} +Version: 0.24.12 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -11,6 +11,7 @@ URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 # New test suite looks for unversioned python Patch0: %{name}-test-python.patch +Patch1: %{name}-doc-install-directory.patch BuildRequires: doxygen BuildRequires: graphviz @@ -24,6 +25,9 @@ BuildRequires: serd-devel >= 0.30.0 BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: libsndfile-devel >= 1.0.0 +BuildRequires: python3-sphinx +BuildRequires: python3-sphinx_lv2_theme + Requires: lv2 >= 1.18.0 %description @@ -94,13 +98,15 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_libdir}/pkgconfig/%{name}-%{maj}.pc %{_includedir}/%{name}-%{maj}/ %{_pkgdocdir}/%{name}-%{maj}/ -%{_mandir}/man3/* %files -n python3-%{name} %{python3_sitelib}/%{name}.* %{python3_sitelib}/__pycache__/* %changelog +* Fri Nov 26 2021 Guido Aulisi - 0.24.12-1 +- Update to 0.24.12 + * Thu Jul 22 2021 Fedora Release Engineering - 0.24.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 15ab5af..4f94d37 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lilv-0.24.10.tar.bz2) = 1dfd4fef19537686b63a4e7df45e3b1a7c4a658acc21d5646daba4d3bd5676513857b3f437b89f1a06232516433ef155772d19625c33d49d13ada37a965982cf +SHA512 (lilv-0.24.12.tar.bz2) = ea22db4e995792b62d60d793169c792549b8fb0255c2cf7a85780dd149811921e2fae5eaea0fb83465f01b14dfa66361af3be40bf7cb3733e98655b943f4faee From a27197c022c338cc062566aebcf2871b2aaf0248 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sat, 27 Nov 2021 18:33:53 +0100 Subject: [PATCH 52/60] Document patch --- lilv.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lilv.spec b/lilv.spec index a1bf03b..ed1d7e0 100644 --- a/lilv.spec +++ b/lilv.spec @@ -9,8 +9,10 @@ Summary: An LV2 Resource Description Framework Library License: MIT URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 + # New test suite looks for unversioned python Patch0: %{name}-test-python.patch +# Patch sent upstream https://github.com/lv2/lilv/pull/45 Patch1: %{name}-doc-install-directory.patch BuildRequires: doxygen From 9ae12f4f06bbe29692522ce038698a7419ea7eb3 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Mon, 10 Jan 2022 13:52:50 -0800 Subject: [PATCH 53/60] Split library into a separate package (#2032115) --- lilv.spec | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/lilv.spec b/lilv.spec index ed1d7e0..64d8e90 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -37,9 +37,18 @@ Requires: lv2 >= 1.18.0 for applications. Lilv is the successor to SLV2, rewritten to be significantly faster and have minimal dependencies. +%package libs +Summary: Libraries for %{name} + +%description libs +%{name} is a lightweight C library for Resource Description Syntax which +supports reading and writing Turtle and NTriples. + +This package contains the libraries for %{name}. + %package devel Summary: Development libraries and headers for %{name} -Requires: %{name}%{_isa} = %{version}-%{release} +Requires: %{name}-libs%{_isa} = %{version}-%{release} %description devel %{name} is a lightweight C library for Resource Description Syntax which @@ -50,7 +59,7 @@ This package contains the headers and development libraries for %{name}. %package -n python3-%{name} %{?python_provide:%python_provide python3-%{name}} Summary: Python bindings for %{name} -Requires: %{name}%{_isa} = %{version}-%{release} +Requires: %{name}-libs%{_isa} = %{version}-%{release} %description -n python3-%{name} %{name} is a lightweight C library for Resource Description Syntax which @@ -83,10 +92,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3} waf test %files -%doc AUTHORS NEWS README.md -%license COPYING %exclude %{_pkgdocdir}/%{name}-%{maj}/ -%{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/lilv-bench %{_bindir}/lv2info %{_bindir}/lv2ls @@ -95,6 +101,11 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_sysconfdir}/bash_completion.d/lilv %{_mandir}/man1/* +%files libs +%doc AUTHORS NEWS README.md +%license COPYING +%{_libdir}/lib%{name}-%{maj}.so.* + %files devel %{_libdir}/lib%{name}-%{maj}.so %{_libdir}/pkgconfig/%{name}-%{maj}.pc @@ -106,6 +117,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Mon Jan 10 2022 Adam Williamson - 0.24.12-2 +- Split library into a separate package (#2032115) + * Fri Nov 26 2021 Guido Aulisi - 0.24.12-1 - Update to 0.24.12 From 8e1fda055440ae226e2222b8af17059a6f088dee Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 17:50:27 +0000 Subject: [PATCH 54/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 64d8e90..efbdce7 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.12 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -117,6 +117,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.24.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Mon Jan 10 2022 Adam Williamson - 0.24.12-2 - Split library into a separate package (#2032115) From a69fca83971954be29f8a2176e69fcbcafb05bc5 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 24 Feb 2022 16:28:39 -0800 Subject: [PATCH 55/60] Try and fix multilib upgrade issues from the package split (#2052588) --- lilv.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index efbdce7..a13a92f 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.12 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -32,6 +32,10 @@ BuildRequires: python3-sphinx_lv2_theme Requires: lv2 >= 1.18.0 +# To try and deal with multilib issues from the -libs split: +# https://bugzilla.redhat.com/show_bug.cgi?id=2052588 +Obsoletes: lilv < 0.24.12-2 + %description %{name} is a library to make the use of LV2 plugins as simple as possible for applications. Lilv is the successor to SLV2, rewritten to be significantly @@ -117,6 +121,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Thu Feb 24 2022 Adam Williamson - 0.24.12-4 +- Try and fix multilib upgrade issues from the package split (#2052588) + * Thu Jan 20 2022 Fedora Release Engineering - 0.24.12-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From b3fc897e201184eca0c8e6e9f09948f5a8f81b93 Mon Sep 17 00:00:00 2001 From: Igor Raits Date: Mon, 18 Apr 2022 10:36:45 +0200 Subject: [PATCH 56/60] Fix upgradepath for multilib Signed-off-by: Igor Raits --- lilv.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index a13a92f..432e941 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.12 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -43,6 +43,7 @@ faster and have minimal dependencies. %package libs Summary: Libraries for %{name} +Obsoletes: lilv < 0.24.12-2 %description libs %{name} is a lightweight C library for Resource Description Syntax which @@ -121,6 +122,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Mon Apr 18 2022 Igor Raits - 0.24.12-5 +- Fix upgradepath for multilib + * Thu Feb 24 2022 Adam Williamson - 0.24.12-4 - Try and fix multilib upgrade issues from the package split (#2052588) From 63aa11892fa986d2dc8a94685f8294dc2e275031 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sat, 28 May 2022 15:53:54 +0200 Subject: [PATCH 57/60] Update to 0.24.14 --- .gitignore | 1 + lilv-doc-install-directory.patch | 12 ------------ lilv-test-python.patch | 13 ------------- lilv.spec | 12 +++++------- sources | 2 +- 5 files changed, 7 insertions(+), 33 deletions(-) delete mode 100644 lilv-doc-install-directory.patch delete mode 100644 lilv-test-python.patch diff --git a/.gitignore b/.gitignore index 4fe0c25..18ccc9f 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /lilv-0.24.8.tar.bz2 /lilv-0.24.10.tar.bz2 /lilv-0.24.12.tar.bz2 +/lilv-0.24.14.tar.bz2 diff --git a/lilv-doc-install-directory.patch b/lilv-doc-install-directory.patch deleted file mode 100644 index a7d3971..0000000 --- a/lilv-doc-install-directory.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/wscript b/wscript -index 9810fed..1a13ea7 100644 ---- a/wscript -+++ b/wscript -@@ -556,6 +556,7 @@ def build(bld): - - # Documentation - if bld.env.DOCS: -+ bld.env.LILV_MAJOR_VERSION = LILV_MAJOR_VERSION - bld.recurse('doc/c') - - # Man pages diff --git a/lilv-test-python.patch b/lilv-test-python.patch deleted file mode 100644 index d3c9b02..0000000 --- a/lilv-test-python.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/wscript b/wscript -index f6780d0..bed2995 100644 ---- a/wscript -+++ b/wscript -@@ -570,7 +570,7 @@ def test(tst): - - if tst.env.LILV_PYTHON: - with tst.group('python') as check: -- check(['python', '-m', 'unittest', 'discover', 'bindings/']) -+ check(['python3', '-m', 'unittest', 'discover', 'bindings/']) - - with tst.group('plugin') as check: - for p in test_plugins: diff --git a/lilv.spec b/lilv.spec index 432e941..727366d 100644 --- a/lilv.spec +++ b/lilv.spec @@ -2,19 +2,14 @@ %global maj 0 Name: lilv -Version: 0.24.12 -Release: 5%{?dist} +Version: 0.24.14 +Release: 1%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT URL: http://drobilla.net/software/lilv/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 -# New test suite looks for unversioned python -Patch0: %{name}-test-python.patch -# Patch sent upstream https://github.com/lv2/lilv/pull/45 -Patch1: %{name}-doc-install-directory.patch - BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.14.0 @@ -122,6 +117,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Sat May 28 2022 Guido Aulisi - 0.24.14-1 +- Update to 0.24.14 + * Mon Apr 18 2022 Igor Raits - 0.24.12-5 - Fix upgradepath for multilib diff --git a/sources b/sources index 4f94d37..00e421c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lilv-0.24.12.tar.bz2) = ea22db4e995792b62d60d793169c792549b8fb0255c2cf7a85780dd149811921e2fae5eaea0fb83465f01b14dfa66361af3be40bf7cb3733e98655b943f4faee +SHA512 (lilv-0.24.14.tar.bz2) = f266e91f3cbc325c25dd7d08bde5033091cb3072c2dcb1490e9474f562b798dbc71c45ca7d971ed4dfd6bb16f5f6725ae242a58c4486684b71350e73f1469f47 From 09800d12ccf1bc15a1533d246a54a2f1d639e1b7 Mon Sep 17 00:00:00 2001 From: Python Maint Date: Mon, 13 Jun 2022 21:46:19 +0200 Subject: [PATCH 58/60] Rebuilt for Python 3.11 --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index 727366d..a28ed6b 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.14 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -117,6 +117,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Mon Jun 13 2022 Python Maint - 0.24.14-2 +- Rebuilt for Python 3.11 + * Sat May 28 2022 Guido Aulisi - 0.24.14-1 - Update to 0.24.14 From cfbdcb9c5451b2705ba3c3504ceb429f86ab80ee Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 21 Jul 2022 19:37:05 +0000 Subject: [PATCH 59/60] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- lilv.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lilv.spec b/lilv.spec index a28ed6b..e4d1641 100644 --- a/lilv.spec +++ b/lilv.spec @@ -3,7 +3,7 @@ Name: lilv Version: 0.24.14 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An LV2 Resource Description Framework Library License: MIT @@ -117,6 +117,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{python3_sitelib}/__pycache__/* %changelog +* Thu Jul 21 2022 Fedora Release Engineering - 0.24.14-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Mon Jun 13 2022 Python Maint - 0.24.14-2 - Rebuilt for Python 3.11 From 5144306534db28ea12f70073f9fa13049479aedd Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:21:19 +0300 Subject: [PATCH 60/60] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 00e421c..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (lilv-0.24.14.tar.bz2) = f266e91f3cbc325c25dd7d08bde5033091cb3072c2dcb1490e9474f562b798dbc71c45ca7d971ed4dfd6bb16f5f6725ae242a58c4486684b71350e73f1469f47