From 551b7e3231c94fc468d3e800e9aaff6500857d30 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 29 Apr 2012 21:00:08 +0000 Subject: [PATCH 01/44] 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 2d9008ee2505d723e87f5e27994dab3e2fde3f39 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 12 May 2012 06:15:43 +0200 Subject: [PATCH 02/44] Initial import of SRPM --- .gitignore | 1 + sources | 1 + sratom.spec | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 93 insertions(+) create mode 100644 sratom.spec diff --git a/.gitignore b/.gitignore index e69de29..4a5a290 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/sratom-0.2.0.tar.bz2 diff --git a/sources b/sources index e69de29..03a5e25 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +c03cf2849186818610ffe889be4f5b55 sratom-0.2.0.tar.bz2 diff --git a/sratom.spec b/sratom.spec new file mode 100644 index 0000000..af5b0ff --- /dev/null +++ b/sratom.spec @@ -0,0 +1,91 @@ +%global maj 0 + +Name: sratom +Version: 0.2.0 +Release: 3%{?dist} +Summary: A C library for serializing LV2 plugins + +Group: System Environment/Libraries +License: MIT +URL: http://drobilla.net/software/%{name}/ +Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 +BuildRequires: python +BuildRequires: doxygen +BuildRequires: graphviz +BuildRequires: sord-devel >= 0.8.0 +BuildRequires: lv2-devel >= 1.0.0 + +%filter_setup + +%description +%{name} is a new C library for serializing LV2 atoms to/from Turtle. It is +intended to be a full serialization solution for LV2 atoms, allowing +implementations to serialize binary atoms to strings and read them back again. +This is particularly useful for saving plugin state, or implementing plugin +control with network transparency. + +%package devel +Summary: Development libraries and headers for %{name} +Group: Development/Libraries +Requires: %{name}%{_isa} = %{version}-%{release} + +%description devel +%{name} is a C library for serializing LV2 atoms to/from Turtle. It is +intended to be a full serialization solution for LV2 atoms, allowing +implementations to serialize binary atoms to strings and read them back again. +This is particularly useful for saving plugin state, or implementing plugin +control with network transparency. + +This package contains the headers and development libraries for %{name}. + +%prep +%setup -q + +# 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} \ + --test \ + --docs +./waf build -v %{?_smp_mflags} + +%install +DESTDIR=%{buildroot} ./waf install +chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* + +# tests failing - see http://dev.drobilla.net/ticket/832 +#%%check +#./build/sratom_test + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%doc NEWS README COPYING +%{_libdir}/lib%{name}-%{maj}.so.* + +%files devel +%{_libdir}/lib%{name}-%{maj}.so +%{_libdir}/pkgconfig/%{name}-%{maj}.pc +%{_includedir}/%{name}-%{maj}/ +%{_docdir}/%{name}-devel-%{version} +%{_mandir}/man3/* + +%changelog +* Sat May 12 2012 Brendan Jones - 0.2.0-3 +- Temporarily remove tests - http://dev.drobilla.net/ticket/832 + +* Fri Apr 20 2012 Brendan Jones - 0.2.0-2 +- Correct spelling and add missing build requires + +* Fri Apr 20 2012 Brendan Jones - 0.2.0-1 +- Initial build From 7a633b1f03ad11e2cd455ddfe9f29b0e921ca438 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 15:57:25 -0500 Subject: [PATCH 03/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index af5b0ff..c8f4d35 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,7 +2,7 @@ Name: sratom Version: 0.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -81,6 +81,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Sat Jul 21 2012 Fedora Release Engineering - 0.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat May 12 2012 Brendan Jones - 0.2.0-3 - Temporarily remove tests - http://dev.drobilla.net/ticket/832 From ddc1807913e190bc09fee3c08c3fc101c1c19a6d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 18:31:01 -0600 Subject: [PATCH 04/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index c8f4d35..3f3f692 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,7 +2,7 @@ Name: sratom Version: 0.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -81,6 +81,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 0.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Jul 21 2012 Fedora Release Engineering - 0.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From b91036e457bde2040026923a9741d118116ff963 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 21 May 2013 00:36:34 +0200 Subject: [PATCH 05/44] New upstream release --- .gitignore | 1 + sources | 2 +- sratom.spec | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 4a5a290..b2292d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /sratom-0.2.0.tar.bz2 +/sratom-0.4.2.tar.bz2 diff --git a/sources b/sources index 03a5e25..a535fa6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c03cf2849186818610ffe889be4f5b55 sratom-0.2.0.tar.bz2 +5bb7e4bc4198e19f388ac51239007f25 sratom-0.4.2.tar.bz2 diff --git a/sratom.spec b/sratom.spec index 3f3f692..746a712 100644 --- a/sratom.spec +++ b/sratom.spec @@ -1,8 +1,8 @@ %global maj 0 Name: sratom -Version: 0.2.0 -Release: 5%{?dist} +Version: 0.4.2 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -12,7 +12,7 @@ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 BuildRequires: python BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: sord-devel >= 0.8.0 +BuildRequires: sord-devel >= 0.12.0 BuildRequires: lv2-devel >= 1.0.0 %filter_setup From 792f3136cd7548af9546261986dbac5d17516532 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 21 May 2013 00:51:24 +0200 Subject: [PATCH 06/44] Rebuild for new sord --- sratom.spec | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 746a712..a3425a6 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,7 +2,7 @@ Name: sratom Version: 0.4.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -81,6 +81,12 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Tue May 21 2013 Brendan Jones 0.4.2-2 +- Rebuild for new sord + +* Tue May 21 2013 Brendan Jones 0.4.2-1 +- New upstream release + * Fri Feb 15 2013 Fedora Release Engineering - 0.2.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 813ad9fbebd26a2a8d6bf32be17e6dee84192b3a Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 21 May 2013 01:19:41 +0200 Subject: [PATCH 07/44] Rebuild for new sord --- sratom.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index a3425a6..d721fb1 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,7 +2,7 @@ Name: sratom Version: 0.4.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries From e6846212ea14fbfb7ce4be8d33be2b272c0cd0ba Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 21 May 2013 01:20:05 +0200 Subject: [PATCH 08/44] Rebuild for new sord --- sratom.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sratom.spec b/sratom.spec index d721fb1..de4519d 100644 --- a/sratom.spec +++ b/sratom.spec @@ -81,6 +81,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Tue May 21 2013 Brendan Jones 0.4.2-3 +- Rebuild for new sord + * Tue May 21 2013 Brendan Jones 0.4.2-2 - Rebuild for new sord From 910b35e778e5a03f92cc38e06ef43ed826fff0ca Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 21 May 2013 07:04:33 +0200 Subject: [PATCH 09/44] Rebuild for new sord --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index de4519d..1fcb173 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,7 +2,7 @@ Name: sratom Version: 0.4.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -81,6 +81,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Tue May 21 2013 Brendan Jones 0.4.2-4 +- Rebuilt again + * Tue May 21 2013 Brendan Jones 0.4.2-3 - Rebuild for new sord From 9b3037074c214fbc812e4f952dace3dc7b25603e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 10:41:03 -0500 Subject: [PATCH 10/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 1fcb173..b0d414e 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,7 +2,7 @@ Name: sratom Version: 0.4.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -81,6 +81,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %{_mandir}/man3/* %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Tue May 21 2013 Brendan Jones 0.4.2-4 - Rebuilt again From 18b2a6f82140bcf82302624b81667aaa43367d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 15 Dec 2013 22:02:46 +0200 Subject: [PATCH 11/44] Install docs to %{_pkgdocdir} where available (#994105). --- sratom.spec | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/sratom.spec b/sratom.spec index b0d414e..458ac47 100644 --- a/sratom.spec +++ b/sratom.spec @@ -1,8 +1,9 @@ %global maj 0 +%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom Version: 0.4.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -52,7 +53,7 @@ export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" --libdir=%{_libdir} \ --mandir=%{_mandir} \ --datadir=%{_datadir} \ - --docdir=%{_docdir}/%{name}-devel-%{version} \ + --docdir=%{_pkgdocdir} \ --test \ --docs ./waf build -v %{?_smp_mflags} @@ -60,6 +61,7 @@ export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" %install DESTDIR=%{buildroot} ./waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* +install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} # tests failing - see http://dev.drobilla.net/ticket/832 #%%check @@ -70,17 +72,21 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* %postun -p /sbin/ldconfig %files -%doc NEWS README COPYING +%{_pkgdocdir} +%exclude %{_pkgdocdir}/%{name}-%{maj}/ %{_libdir}/lib%{name}-%{maj}.so.* %files devel +%{_pkgdocdir}/%{name}-%{maj}/ %{_libdir}/lib%{name}-%{maj}.so %{_libdir}/pkgconfig/%{name}-%{maj}.pc %{_includedir}/%{name}-%{maj}/ -%{_docdir}/%{name}-devel-%{version} %{_mandir}/man3/* %changelog +* Sun Dec 15 2013 Ville Skyttä - 0.4.2-6 +- Install docs to %%{_pkgdocdir} where available (#994105). + * Sun Aug 04 2013 Fedora Release Engineering - 0.4.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From aab5035bb551bd7b8c165bcba1d1d51b9f3bd8e8 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 11 Jan 2014 09:16:17 +0100 Subject: [PATCH 12/44] Update to 0.4.4 --- .gitignore | 1 + sources | 2 +- sratom.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b2292d8..9b96bb7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /sratom-0.2.0.tar.bz2 /sratom-0.4.2.tar.bz2 +/sratom-0.4.4.tar.bz2 diff --git a/sources b/sources index a535fa6..cad9b2f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5bb7e4bc4198e19f388ac51239007f25 sratom-0.4.2.tar.bz2 +07449e40511f5911298ee4c79ad0530a sratom-0.4.4.tar.bz2 diff --git a/sratom.spec b/sratom.spec index 458ac47..683d85d 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,8 +2,8 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.4.2 -Release: 6%{?dist} +Version: 0.4.4 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Fri Jan 10 2014 Brendan Jones 0.4.4-1 +- New upstream release + * Sun Dec 15 2013 Ville Skyttä - 0.4.2-6 - Install docs to %%{_pkgdocdir} where available (#994105). From 25b9c33dcf3656c39204c8ee38f62941c276279a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 02:06:00 -0500 Subject: [PATCH 13/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 683d85d..ee4fbe4 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.4.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.4.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Fri Jan 10 2014 Brendan Jones 0.4.4-1 - New upstream release From ff1205601050870e51dd6dd953fe30db37ff219f Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 03:33:19 +0000 Subject: [PATCH 14/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index ee4fbe4..9fa2add 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.4.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 0.4.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From fbed464e0fef664c8ac703aa5b8f5b9c3196d000 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Wed, 20 Aug 2014 22:14:34 +0200 Subject: [PATCH 15/44] Update to 0.4.6 --- .gitignore | 1 + sources | 2 +- sratom.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9b96bb7..43a1061 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /sratom-0.2.0.tar.bz2 /sratom-0.4.2.tar.bz2 /sratom-0.4.4.tar.bz2 +/sratom-0.4.6.tar.bz2 diff --git a/sources b/sources index cad9b2f..4484e18 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -07449e40511f5911298ee4c79ad0530a sratom-0.4.4.tar.bz2 +5cf28520418779bf41fb14a40fbb20ad sratom-0.4.6.tar.bz2 diff --git a/sratom.spec b/sratom.spec index 9fa2add..f675cea 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,8 +2,8 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.4.4 -Release: 3%{?dist} +Version: 0.4.6 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Wed Aug 20 2014 Brendan Jones 0.4.6-1 +- Update to 0.4.6 + * Mon Aug 18 2014 Fedora Release Engineering - 0.4.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 649f361a13f8d53a74829aa6845c9f3dd1ec58ba Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 20 Aug 2014 17:32:01 -0600 Subject: [PATCH 16/44] Rebuild for rpm bug 1131892 --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index f675cea..cd87ab0 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.4.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Wed Aug 20 2014 Kevin Fenzi - 0.4.6-2 +- Rebuild for rpm bug 1131892 + * Wed Aug 20 2014 Brendan Jones 0.4.6-1 - Update to 0.4.6 From 8282b40b121858bed369d87487576f5f9485d1b5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 01:36:47 +0000 Subject: [PATCH 17/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index cd87ab0..a1b3073 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.4.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.4.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Aug 20 2014 Kevin Fenzi - 0.4.6-2 - Rebuild for rpm bug 1131892 From 4d65d29993cdb36e96c7bef64f6830079cf481a8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 00:34:01 +0000 Subject: [PATCH 18/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index a1b3073..1c257c3 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.4.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.4.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 0.4.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From bad4865119ef9945c0bd265b4b40c21c4e76065b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 13:55:18 +0000 Subject: [PATCH 19/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 1c257c3..2cc5c13 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.4.6 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.4.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 0.4.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 4adc689f4936a3411f3fe568fdd40012175cd6ef Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Fri, 17 Mar 2017 13:36:01 +0100 Subject: [PATCH 20/44] Update to 0.6.0 Use hardened LDFLAGS Enable tests Use license macro --- .gitignore | 1 + sources | 2 +- sratom.spec | 24 ++++++++++++++++-------- 3 files changed, 18 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 43a1061..5fe4c74 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /sratom-0.4.2.tar.bz2 /sratom-0.4.4.tar.bz2 /sratom-0.4.6.tar.bz2 +/sratom-0.6.0.tar.bz2 diff --git a/sources b/sources index 4484e18..e6f2f6f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5cf28520418779bf41fb14a40fbb20ad sratom-0.4.6.tar.bz2 +SHA512 (sratom-0.6.0.tar.bz2) = 899bb01896e2b65b69482041c7e06edc9e45e9a3466392c82a58f16dfc71462a6c3e3e16a5aa50a6347c8366ea72898468910a59a084762f75eb8c7031ceacf8 diff --git a/sratom.spec b/sratom.spec index 2cc5c13..28560e7 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,8 +2,8 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.4.6 -Release: 5%{?dist} +Version: 0.6.0 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -14,9 +14,9 @@ BuildRequires: python BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.12.0 -BuildRequires: lv2-devel >= 1.0.0 - -%filter_setup +BuildRequires: serd-devel >= 0.23.0 +BuildRequires: lv2-devel >= 1.10.0 +BuildRequires: gcc %description %{name} is a new C library for serializing LV2 atoms to/from Turtle. It is @@ -48,6 +48,7 @@ sed -i -e "s| '-ftest-coverage'\]|\ %build export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" +export LDFLAGS="%{__global_ldflags}" ./waf configure -v \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ @@ -63,9 +64,8 @@ DESTDIR=%{buildroot} ./waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} -# tests failing - see http://dev.drobilla.net/ticket/832 -#%%check -#./build/sratom_test +%check +./build/sratom_test %post -p /sbin/ldconfig @@ -74,6 +74,8 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %files %{_pkgdocdir} %exclude %{_pkgdocdir}/%{name}-%{maj}/ +%exclude %{_pkgdocdir}/COPYING +%license COPYING %{_libdir}/lib%{name}-%{maj}.so.* %files devel @@ -84,6 +86,12 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Tue Mar 14 2017 Guido Aulisi - 0.6.0-1 +- Update to 0.6.0 +- Use hardened LDFLAGS +- Enable tests +- Use license macro + * Sat Feb 11 2017 Fedora Release Engineering - 0.4.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From c26a139f4d2d19f4c90f467627f24117ce57702c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 19:13:08 +0000 Subject: [PATCH 21/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 28560e7..1634cd5 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -86,6 +86,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Tue Mar 14 2017 Guido Aulisi - 0.6.0-1 - Update to 0.6.0 - Use hardened LDFLAGS From 8ce09490210c8c86d26168978903d9c591ee28ff Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 08:48:49 +0000 Subject: [PATCH 22/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 1634cd5..6ca3702 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -86,6 +86,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.6.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 2fa00faa9230d4f361db80cb1b264b4552d19b6d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 17:34:11 +0000 Subject: [PATCH 23/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 6ca3702..50b3a54 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -86,6 +86,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.6.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 0.6.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 8aac050c624c663ad6e1ecf2e59270899cfb867b Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 11 Feb 2018 00:31:09 +0100 Subject: [PATCH 24/44] Update Python 2 dependency declarations to new packaging standards https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 --- sratom.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 50b3a54..dbb78b5 100644 --- a/sratom.spec +++ b/sratom.spec @@ -10,7 +10,7 @@ Group: System Environment/Libraries License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 -BuildRequires: python +BuildRequires: python2 BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.12.0 From fa19136480977c006c77c5780f1a01729b1621f0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 06:39:38 +0000 Subject: [PATCH 25/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index dbb78b5..4d92952 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -86,6 +86,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.6.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 0.6.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From bb898ff059b723db1f6fc2732a3d85bdfde3a4d2 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 15 Jul 2018 18:46:00 +0200 Subject: [PATCH 26/44] Fix FTBFS due to the move of /usr/bin/python into a separate package https://fedoraproject.org/wiki/Changes/Move_usr_bin_python_into_separate_package --- sratom.spec | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/sratom.spec b/sratom.spec index 4d92952..3dc8c29 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -11,6 +11,7 @@ License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 BuildRequires: python2 +BuildRequires: python2-rpm-macros BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.12.0 @@ -47,9 +48,8 @@ sed -i -e "s| '-ftest-coverage'\]|\ '-ftest-coverage'\] + '%{optflags}'.split(' ')|" wscript %build -export CFLAGS="%{optflags}" CXXFLAGS="%{optflags}" -export LDFLAGS="%{__global_ldflags}" -./waf configure -v \ +%set_build_flags +%{__python2} waf configure -v \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ --mandir=%{_mandir} \ @@ -57,10 +57,10 @@ export LDFLAGS="%{__global_ldflags}" --docdir=%{_pkgdocdir} \ --test \ --docs -./waf build -v %{?_smp_mflags} +%{__python2} waf build -v %{?_smp_mflags} %install -DESTDIR=%{buildroot} ./waf install +DESTDIR=%{buildroot} %{__python2} waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} @@ -86,6 +86,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Sun Jul 15 2018 Guido Aulisi - 0.6.0-6 +- Fix FTBFS due to the move of /usr/bin/python into a separate package + * Sat Jul 14 2018 Fedora Release Engineering - 0.6.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 58bd596bb27788c265e794180431b303be6877b6 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Mon, 30 Jul 2018 08:44:56 +0000 Subject: [PATCH 27/44] Update to 0.6.2 Remove ldconfig scriptlets See https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets --- .gitignore | 1 + sources | 2 +- sratom.spec | 18 +++++++++--------- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 5fe4c74..7ae8d8c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /sratom-0.4.4.tar.bz2 /sratom-0.4.6.tar.bz2 /sratom-0.6.0.tar.bz2 +/sratom-0.6.2.tar.bz2 diff --git a/sources b/sources index e6f2f6f..a6c034e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (sratom-0.6.0.tar.bz2) = 899bb01896e2b65b69482041c7e06edc9e45e9a3466392c82a58f16dfc71462a6c3e3e16a5aa50a6347c8366ea72898468910a59a084762f75eb8c7031ceacf8 +SHA512 (sratom-0.6.2.tar.bz2) = 356e1dfde07fcc3eff99186ff79501557572f5d73338fd096bf639a82d1d4fe3c0e790627c8eb088053e4a2aeed4e548aca0a5572d1ab26316cfdb13374f10ac diff --git a/sratom.spec b/sratom.spec index 3dc8c29..2f07b56 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,8 +2,8 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.6.0 -Release: 6%{?dist} +Version: 0.6.2 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -11,11 +11,11 @@ License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 BuildRequires: python2 -BuildRequires: python2-rpm-macros +BuildRequires: python2-devel BuildRequires: doxygen BuildRequires: graphviz -BuildRequires: sord-devel >= 0.12.0 -BuildRequires: serd-devel >= 0.23.0 +BuildRequires: sord-devel >= 0.14.0 +BuildRequires: serd-devel >= 0.30.0 BuildRequires: lv2-devel >= 1.10.0 BuildRequires: gcc @@ -67,10 +67,6 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %check ./build/sratom_test -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - %files %{_pkgdocdir} %exclude %{_pkgdocdir}/%{name}-%{maj}/ @@ -86,6 +82,10 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Mon Jul 30 2018 Guido Aulisi - 0.6.2-1 +- Update to 0.6.2 +- Remove ldconfig scriptlets + * Sun Jul 15 2018 Guido Aulisi - 0.6.0-6 - Fix FTBFS due to the move of /usr/bin/python into a separate package From d3c0b13718c5e13361ed258fd95fedb6e3e77409 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Tue, 31 Jul 2018 13:44:44 +0200 Subject: [PATCH 28/44] Rebuild with fixed binutils --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 2f07b56..f6f6e22 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins Group: System Environment/Libraries @@ -82,6 +82,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Tue Jul 31 2018 Florian Weimer - 0.6.2-2 +- Rebuild with fixed binutils + * Mon Jul 30 2018 Guido Aulisi - 0.6.2-1 - Update to 0.6.2 - Remove ldconfig scriptlets From 9d7eb3e0e9b1223497f560673b4dc5b104cea192 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:26 +0100 Subject: [PATCH 29/44] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- sratom.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/sratom.spec b/sratom.spec index f6f6e22..a16c272 100644 --- a/sratom.spec +++ b/sratom.spec @@ -6,7 +6,6 @@ Version: 0.6.2 Release: 2%{?dist} Summary: A C library for serializing LV2 plugins -Group: System Environment/Libraries License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 @@ -28,7 +27,6 @@ control with network transparency. %package devel Summary: Development libraries and headers for %{name} -Group: Development/Libraries Requires: %{name}%{_isa} = %{version}-%{release} %description devel From 5cade2cdf3943237c3b8ef258ddb3c8cec5c090e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 08:29:48 +0000 Subject: [PATCH 30/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index a16c272..02d3692 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -80,6 +80,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 0.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Tue Jul 31 2018 Florian Weimer - 0.6.2-2 - Rebuild with fixed binutils From f0a63c9cfec65526ed4d7610b356a3511a87c732 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 00:04:40 +0000 Subject: [PATCH 31/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 02d3692..d4aad83 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -80,6 +80,9 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 0.6.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 0.6.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 902998463c3858aba2511b1befea0f45efb1db1c Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Fri, 6 Dec 2019 21:19:55 +0100 Subject: [PATCH 32/44] Update to 0.6.4 Use python3 --- .gitignore | 1 + sources | 2 +- sratom.spec | 19 +++++++++++-------- 3 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 7ae8d8c..2022ef6 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /sratom-0.4.6.tar.bz2 /sratom-0.6.0.tar.bz2 /sratom-0.6.2.tar.bz2 +/sratom-0.6.4.tar.bz2 diff --git a/sources b/sources index a6c034e..5687bc5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (sratom-0.6.2.tar.bz2) = 356e1dfde07fcc3eff99186ff79501557572f5d73338fd096bf639a82d1d4fe3c0e790627c8eb088053e4a2aeed4e548aca0a5572d1ab26316cfdb13374f10ac +SHA512 (sratom-0.6.4.tar.bz2) = 6462d8d33ed7ddaa2aea267fab14c9a15bfc077a4f8d26eb493be4c48c95d8dcec614f540bd82fe22aecca641771326a44d175c3991cd473ae371062c78aaac3 diff --git a/sratom.spec b/sratom.spec index d4aad83..8b4e91c 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,15 +2,14 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.6.2 -Release: 4%{?dist} +Version: 0.6.4 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 -BuildRequires: python2 -BuildRequires: python2-devel +BuildRequires: python3 BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.14.0 @@ -47,7 +46,7 @@ sed -i -e "s| '-ftest-coverage'\]|\ %build %set_build_flags -%{__python2} waf configure -v \ +python3 waf configure -v \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ --mandir=%{_mandir} \ @@ -55,12 +54,12 @@ sed -i -e "s| '-ftest-coverage'\]|\ --docdir=%{_pkgdocdir} \ --test \ --docs -%{__python2} waf build -v %{?_smp_mflags} +python3 waf build -v %{?_smp_mflags} %install -DESTDIR=%{buildroot} %{__python2} waf install +DESTDIR=%{buildroot} python3 waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* -install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} +install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %check ./build/sratom_test @@ -80,6 +79,10 @@ install -pm 644 COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Fri Dec 06 2019 Guido Aulisi - 0.6.4-1 +- Update to 0.6.4 +- Use python3 + * Sat Jul 27 2019 Fedora Release Engineering - 0.6.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From d48b75d0fe813724adcd67396757675496c9e9cc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 00:11:33 +0000 Subject: [PATCH 33/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 8b4e91c..64a890f 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -79,6 +79,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.6.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Dec 06 2019 Guido Aulisi - 0.6.4-1 - Update to 0.6.4 - Use python3 From cd756b6f8b8c7e4fd143417c86e2f2e3f650c43f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 11:23:18 +0000 Subject: [PATCH 34/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 64a890f..fb5ea27 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -79,6 +79,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.6.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 0.6.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 86a079f1c523b8c8201e23f7e556a7743569f667 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 4 Oct 2020 20:47:24 +0200 Subject: [PATCH 35/44] Update to 0.6.6 --- .gitignore | 1 + sources | 2 +- sratom-remove-deprecated-doxygen.patch | 67 ++++++++++++++++++++++++++ sratom.spec | 18 ++++--- 4 files changed, 81 insertions(+), 7 deletions(-) create mode 100644 sratom-remove-deprecated-doxygen.patch diff --git a/.gitignore b/.gitignore index 2022ef6..4ac7aac 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /sratom-0.6.0.tar.bz2 /sratom-0.6.2.tar.bz2 /sratom-0.6.4.tar.bz2 +/sratom-0.6.6.tar.bz2 diff --git a/sources b/sources index 5687bc5..7b5ce19 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (sratom-0.6.4.tar.bz2) = 6462d8d33ed7ddaa2aea267fab14c9a15bfc077a4f8d26eb493be4c48c95d8dcec614f540bd82fe22aecca641771326a44d175c3991cd473ae371062c78aaac3 +SHA512 (sratom-0.6.6.tar.bz2) = ccc209af68a39c1a669ba694d250b292df2f588aeea2a9d1dfe54a23e31f032fcce1d99ebf9dd7cff80ce5aedd204c74e3ccc04d6cd239921cd3e443db83ed55 diff --git a/sratom-remove-deprecated-doxygen.patch b/sratom-remove-deprecated-doxygen.patch new file mode 100644 index 0000000..dec6e3b --- /dev/null +++ b/sratom-remove-deprecated-doxygen.patch @@ -0,0 +1,67 @@ +From 85c90e29f7fceae61c70bca141a123807b4b6f14 Mon Sep 17 00:00:00 2001 +From: David Robillard +Date: Sun, 27 Sep 2020 17:19:45 +0200 +Subject: [PATCH] Remove deprecated Doxygen configuration keys + +--- + doc/reference.doxygen.in | 23 +---------------------- + 1 file changed, 1 insertion(+), 22 deletions(-) + +diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in +index 1714f60..ab16c97 100644 +--- a/doc/reference.doxygen.in ++++ b/doc/reference.doxygen.in +@@ -243,12 +243,6 @@ TAB_SIZE = 4 + + ALIASES = + +-# This tag can be used to specify a number of word-keyword mappings (TCL only). +-# A mapping has the form "name=value". For example adding "class=itcl::class" +-# will allow you to use the command class in the itcl::class meaning. +- +-TCL_SUBST = +- + # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources + # only. Doxygen will then generate output that is more tailored for C. For + # instance, some of the names that are used will be different. The list of all +@@ -1685,7 +1679,7 @@ COMPACT_LATEX = NO + # The default value is: a4. + # This tag requires that the tag GENERATE_LATEX is set to YES. + +-PAPER_TYPE = a4wide ++PAPER_TYPE = a4 + + # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names + # that should be included in the LaTeX output. The package can be specified just +@@ -2157,12 +2151,6 @@ EXTERNAL_GROUPS = YES + + EXTERNAL_PAGES = YES + +-# The PERL_PATH should be the absolute path and name of the perl script +-# interpreter (i.e. the result of 'which perl'). +-# The default file (with absolute path) is: /usr/bin/perl. +- +-PERL_PATH = /usr/bin/perl +- + #--------------------------------------------------------------------------- + # Configuration options related to the dot tool + #--------------------------------------------------------------------------- +@@ -2176,15 +2164,6 @@ PERL_PATH = /usr/bin/perl + + CLASS_DIAGRAMS = NO + +-# You can define message sequence charts within doxygen comments using the \msc +-# command. Doxygen will then run the mscgen tool (see: +-# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the +-# documentation. The MSCGEN_PATH tag allows you to specify the directory where +-# the mscgen tool resides. If left empty the tool is assumed to be found in the +-# default search path. +- +-MSCGEN_PATH = +- + # You can include diagrams made with dia in doxygen documentation. Doxygen will + # then run dia to produce the diagram and insert it in the documentation. The + # DIA_PATH tag allows you to specify the directory where the dia binary resides. +-- +2.25.4 + diff --git a/sratom.spec b/sratom.spec index fb5ea27..d3bda42 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,13 +2,16 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.6.4 -Release: 3%{?dist} +Version: 0.6.6 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 +# Patch from upstream +Patch0: %{name}-remove-deprecated-doxygen.patch + BuildRequires: python3 BuildRequires: doxygen BuildRequires: graphviz @@ -38,7 +41,7 @@ control with network transparency. This package contains the headers and development libraries for %{name}. %prep -%setup -q +%autosetup -p1 # for packagers sake, build the tests with debug symbols sed -i -e "s| '-ftest-coverage'\]|\ @@ -46,7 +49,7 @@ sed -i -e "s| '-ftest-coverage'\]|\ %build %set_build_flags -python3 waf configure -v \ +%{python3} waf configure -v \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ --mandir=%{_mandir} \ @@ -54,10 +57,10 @@ python3 waf configure -v \ --docdir=%{_pkgdocdir} \ --test \ --docs -python3 waf build -v %{?_smp_mflags} +%{python3} waf build -v %{?_smp_mflags} %install -DESTDIR=%{buildroot} python3 waf install +DESTDIR=%{buildroot} %{python3} waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} @@ -79,6 +82,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Sun Oct 04 2020 Guido Aulisi - 0.6.6-1 +- Update to 0.6.6 + * Wed Jul 29 2020 Fedora Release Engineering - 0.6.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 0744d72ccd562be329072b333c502e7a7a20c3c0 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Mon, 5 Oct 2020 01:46:45 +0200 Subject: [PATCH 36/44] Update lv2 minimum version --- sratom.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index d3bda42..8becd48 100644 --- a/sratom.spec +++ b/sratom.spec @@ -17,7 +17,7 @@ BuildRequires: doxygen BuildRequires: graphviz BuildRequires: sord-devel >= 0.14.0 BuildRequires: serd-devel >= 0.30.0 -BuildRequires: lv2-devel >= 1.10.0 +BuildRequires: lv2-devel >= 1.16.0 BuildRequires: gcc %description From 3b5f8ccec55368f01419b28c7f69751928187faf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 20:58:37 +0000 Subject: [PATCH 37/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 8becd48..2144f92 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -82,6 +82,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.6.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sun Oct 04 2020 Guido Aulisi - 0.6.6-1 - Update to 0.6.6 From 2582bbc15a3f41720f80735e96c637424d43c5dd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 18:12:13 +0000 Subject: [PATCH 38/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 2144f92..8485ba0 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -82,6 +82,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_mandir}/man3/* %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.6.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 0.6.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From aaa2b7a76aa7817db5053e71bb437ee5fae9943d Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 14 Nov 2021 18:33:27 +0100 Subject: [PATCH 39/44] Update to 0.6.8 --- .gitignore | 1 + sources | 2 +- sratom-doc-install-directory.patch | 12 +++++ sratom-remove-deprecated-doxygen.patch | 67 -------------------------- sratom.spec | 15 +++--- 5 files changed, 23 insertions(+), 74 deletions(-) create mode 100644 sratom-doc-install-directory.patch delete mode 100644 sratom-remove-deprecated-doxygen.patch diff --git a/.gitignore b/.gitignore index 4ac7aac..8b299a4 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /sratom-0.6.2.tar.bz2 /sratom-0.6.4.tar.bz2 /sratom-0.6.6.tar.bz2 +/sratom-0.6.8.tar.bz2 diff --git a/sources b/sources index 7b5ce19..a8f7df8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (sratom-0.6.6.tar.bz2) = ccc209af68a39c1a669ba694d250b292df2f588aeea2a9d1dfe54a23e31f032fcce1d99ebf9dd7cff80ce5aedd204c74e3ccc04d6cd239921cd3e443db83ed55 +SHA512 (sratom-0.6.8.tar.bz2) = 49ec4b230a72005ab7a7a3de0bfa630a27a16f9f811ca8e7f6da7fcf6b34526577217075d428a993f95b813dd2a82a9b6892eeb2e36b66b122ada778fbb3fb95 diff --git a/sratom-doc-install-directory.patch b/sratom-doc-install-directory.patch new file mode 100644 index 0000000..c91c9bf --- /dev/null +++ b/sratom-doc-install-directory.patch @@ -0,0 +1,12 @@ +diff --git a/wscript b/wscript +index 7bbf300..abdb163 100644 +--- a/wscript ++++ b/wscript +@@ -174,6 +174,7 @@ def build(bld): + + # Documentation + if bld.env.DOCS: ++ bld.env.SRATOM_MAJOR_VERSION = SRATOM_MAJOR_VERSION + bld.recurse('doc/c') + + bld.add_post_fun(autowaf.run_ldconfig) diff --git a/sratom-remove-deprecated-doxygen.patch b/sratom-remove-deprecated-doxygen.patch deleted file mode 100644 index dec6e3b..0000000 --- a/sratom-remove-deprecated-doxygen.patch +++ /dev/null @@ -1,67 +0,0 @@ -From 85c90e29f7fceae61c70bca141a123807b4b6f14 Mon Sep 17 00:00:00 2001 -From: David Robillard -Date: Sun, 27 Sep 2020 17:19:45 +0200 -Subject: [PATCH] Remove deprecated Doxygen configuration keys - ---- - doc/reference.doxygen.in | 23 +---------------------- - 1 file changed, 1 insertion(+), 22 deletions(-) - -diff --git a/doc/reference.doxygen.in b/doc/reference.doxygen.in -index 1714f60..ab16c97 100644 ---- a/doc/reference.doxygen.in -+++ b/doc/reference.doxygen.in -@@ -243,12 +243,6 @@ TAB_SIZE = 4 - - ALIASES = - --# This tag can be used to specify a number of word-keyword mappings (TCL only). --# A mapping has the form "name=value". For example adding "class=itcl::class" --# will allow you to use the command class in the itcl::class meaning. -- --TCL_SUBST = -- - # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources - # only. Doxygen will then generate output that is more tailored for C. For - # instance, some of the names that are used will be different. The list of all -@@ -1685,7 +1679,7 @@ COMPACT_LATEX = NO - # The default value is: a4. - # This tag requires that the tag GENERATE_LATEX is set to YES. - --PAPER_TYPE = a4wide -+PAPER_TYPE = a4 - - # The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names - # that should be included in the LaTeX output. The package can be specified just -@@ -2157,12 +2151,6 @@ EXTERNAL_GROUPS = YES - - EXTERNAL_PAGES = YES - --# The PERL_PATH should be the absolute path and name of the perl script --# interpreter (i.e. the result of 'which perl'). --# The default file (with absolute path) is: /usr/bin/perl. -- --PERL_PATH = /usr/bin/perl -- - #--------------------------------------------------------------------------- - # Configuration options related to the dot tool - #--------------------------------------------------------------------------- -@@ -2176,15 +2164,6 @@ PERL_PATH = /usr/bin/perl - - CLASS_DIAGRAMS = NO - --# You can define message sequence charts within doxygen comments using the \msc --# command. Doxygen will then run the mscgen tool (see: --# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the --# documentation. The MSCGEN_PATH tag allows you to specify the directory where --# the mscgen tool resides. If left empty the tool is assumed to be found in the --# default search path. -- --MSCGEN_PATH = -- - # You can include diagrams made with dia in doxygen documentation. Doxygen will - # then run dia to produce the diagram and insert it in the documentation. The - # DIA_PATH tag allows you to specify the directory where the dia binary resides. --- -2.25.4 - diff --git a/sratom.spec b/sratom.spec index 8485ba0..b3f4f36 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,15 +2,14 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.6.6 -Release: 3%{?dist} +Version: 0.6.8 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 -# Patch from upstream -Patch0: %{name}-remove-deprecated-doxygen.patch +Patch0: %{name}-doc-install-directory.patch BuildRequires: python3 BuildRequires: doxygen @@ -19,6 +18,8 @@ BuildRequires: sord-devel >= 0.14.0 BuildRequires: serd-devel >= 0.30.0 BuildRequires: lv2-devel >= 1.16.0 BuildRequires: gcc +BuildRequires: python3-sphinx +BuildRequires: python3-sphinx_lv2_theme %description %{name} is a new C library for serializing LV2 atoms to/from Turtle. It is @@ -65,7 +66,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-0.so.* install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %check -./build/sratom_test +%{python3} waf test -v %files %{_pkgdocdir} @@ -79,9 +80,11 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_libdir}/lib%{name}-%{maj}.so %{_libdir}/pkgconfig/%{name}-%{maj}.pc %{_includedir}/%{name}-%{maj}/ -%{_mandir}/man3/* %changelog +* Sun Nov 14 2021 Guido Aulisi - 0.6.8-1 +- Update to 0.6.8 + * Fri Jul 23 2021 Fedora Release Engineering - 0.6.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 385938d58fbf2f0dd076ca2e0c812af68d6cab40 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sat, 27 Nov 2021 18:27:22 +0100 Subject: [PATCH 40/44] Document patch --- sratom.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sratom.spec b/sratom.spec index b3f4f36..0878218 100644 --- a/sratom.spec +++ b/sratom.spec @@ -9,6 +9,8 @@ Summary: A C library for serializing LV2 plugins License: MIT URL: http://drobilla.net/software/%{name}/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 + +# Patch sent upstream https://github.com/lv2/sratom/pull/4 Patch0: %{name}-doc-install-directory.patch BuildRequires: python3 From 90fd43066bed5a5e4b4bf1996c71854597c5af76 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 01:34:37 +0000 Subject: [PATCH 41/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 0878218..26e126a 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_includedir}/%{name}-%{maj}/ %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.6.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Sun Nov 14 2021 Guido Aulisi - 0.6.8-1 - Update to 0.6.8 From 9add962918bf3d84d81a93885bf4d7faf39c210e Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Wed, 15 Jun 2022 23:54:00 +0200 Subject: [PATCH 42/44] Update to 0.6.10 --- .gitignore | 1 + sources | 2 +- sratom.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8b299a4..57a6a3d 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /sratom-0.6.4.tar.bz2 /sratom-0.6.6.tar.bz2 /sratom-0.6.8.tar.bz2 +/sratom-0.6.10.tar.bz2 diff --git a/sources b/sources index a8f7df8..25a951a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (sratom-0.6.8.tar.bz2) = 49ec4b230a72005ab7a7a3de0bfa630a27a16f9f811ca8e7f6da7fcf6b34526577217075d428a993f95b813dd2a82a9b6892eeb2e36b66b122ada778fbb3fb95 +SHA512 (sratom-0.6.10.tar.bz2) = cc5d2848d61de45a37d1f844b2c741016decf065bcac975214dd01108171ba332f0a51526f2f1078d5f501055af0a48716704515cbe7a9f73526fd878621ca4b diff --git a/sratom.spec b/sratom.spec index 26e126a..028607c 100644 --- a/sratom.spec +++ b/sratom.spec @@ -2,8 +2,8 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: sratom -Version: 0.6.8 -Release: 2%{?dist} +Version: 0.6.10 +Release: 1%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_includedir}/%{name}-%{maj}/ %changelog +* Wed Jun 15 2022 Guido Aulisi - 0.6.10-1 +- Update to 0.6.10 + * Sat Jan 22 2022 Fedora Release Engineering - 0.6.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 7ac5e0d572ce4d3b39b20489f6547cc747403683 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 09:19:48 +0000 Subject: [PATCH 43/44] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- sratom.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sratom.spec b/sratom.spec index 028607c..380fa9b 100644 --- a/sratom.spec +++ b/sratom.spec @@ -3,7 +3,7 @@ Name: sratom Version: 0.6.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A C library for serializing LV2 plugins License: MIT @@ -84,6 +84,9 @@ install -pm 644 COPYING NEWS README.md %{buildroot}%{_pkgdocdir} %{_includedir}/%{name}-%{maj}/ %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0.6.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Wed Jun 15 2022 Guido Aulisi - 0.6.10-1 - Update to 0.6.10 From be94c6f26ca05d97e9c3aa26862851ac3bc5125b Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:21:47 +0300 Subject: [PATCH 44/44] 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 25a951a..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (sratom-0.6.10.tar.bz2) = cc5d2848d61de45a37d1f844b2c741016decf065bcac975214dd01108171ba332f0a51526f2f1078d5f501055af0a48716704515cbe7a9f73526fd878621ca4b