From 2bcf6d9713e398cde43ef73d72f4c857cf41d63f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 15 Jan 2012 22:26:08 +0000 Subject: [PATCH 01/41] 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 852d0a3c3c5476cd2a78368f5a3c8ae599b0e371 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Mon, 16 Jan 2012 00:18:59 +0100 Subject: [PATCH 02/41] Initial import --- .gitignore | 1 + serd.spec | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 88 insertions(+) create mode 100644 serd.spec diff --git a/.gitignore b/.gitignore index e69de29..ac38702 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/serd-0.5.0.tar.bz2 diff --git a/serd.spec b/serd.spec new file mode 100644 index 0000000..2dbf6b8 --- /dev/null +++ b/serd.spec @@ -0,0 +1,86 @@ +%global maj 0 + +Name: serd +Version: 0.5.0 +Release: 3%{?dist} +Summary: A lightweight C library for RDF syntax + +Group: System Environment/Libraries +License: ISC +URL: http://drobilla.net/software/serd/ +Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 + +BuildRequires: doxygen +BuildRequires: graphviz +BuildRequires: glib2-devel +BuildRequires: python + +%description +%{name} is a lightweight C library for RDF syntax which supports reading and +writing Turtle and NTriples. + +Serd is not intended to be a swiss-army knife of RDF syntax, but rather is +suited to resource limited or performance critical applications (e.g. +converting many gigabytes of NTriples to Turtle), or situations where a +simple reader/writer with minimal dependencies is ideal (e.g. in LV2 +implementations or embedded applications).is a library to make the use of +LV2 plugins as simple as possible for applications. + +%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 RDF syntax which supports reading and +writing Turtle and NTriples. + +This package contains the headers and development libraries for %{name}. + +%prep +%setup -q +# we'll run ldconfig +sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript + +%build +export CFLAGS="%{optflags}" +./waf configure \ + --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}-%{maj}.so.* + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + +%files +%doc AUTHORS ChangeLog README COPYING +%{_libdir}/lib%{name}-%{maj}.so.* +%{_bindir}/serdi +%{_mandir}/man1/serdi.1* + +%files devel +%{_libdir}/lib%{name}-%{maj}*.so +%{_libdir}/pkgconfig/%{name}*.pc +%{_includedir}/%{name}-%{maj}/ +%{_docdir}/%{name}-devel-%{version} +%{_mandir}/man3/*.3* + +%changelog +* Sat Jan 14 2012 Brendan Jones - 0.5.0-3 +- Move man1 file, furtherqualify wildcards. + +* Sat Jan 14 2012 Brendan Jones - 0.5.0-2 +- License to ISC, remove tabs + +* Fri Dec 23 2011 Brendan Jones - 0.5.0-1 +- Initial build diff --git a/sources b/sources index e69de29..c7401d8 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +33688d9ad0775647124d1e86dc4cf387 serd-0.5.0.tar.bz2 From e455e882ad20d602569f6875298d984deaa9e29d Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Fri, 20 Apr 2012 20:00:53 +0200 Subject: [PATCH 03/41] New upstream release 0.14.0 --- .gitignore | 1 + serd.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index ac38702..1221681 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /serd-0.5.0.tar.bz2 +/serd-0.14.0.tar.bz2 diff --git a/serd.spec b/serd.spec index 2dbf6b8..780980c 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.5.0 -Release: 3%{?dist} +Version: 0.14.0 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -63,7 +63,7 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %postun -p /sbin/ldconfig %files -%doc AUTHORS ChangeLog README COPYING +%doc AUTHORS NEWS README COPYING %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/serdi %{_mandir}/man1/serdi.1* @@ -76,6 +76,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_mandir}/man3/*.3* %changelog +* Fri Apr 20 2012 Brendan Jones - 0.14.0-1 +- New upstream release. + * Sat Jan 14 2012 Brendan Jones - 0.5.0-3 - Move man1 file, furtherqualify wildcards. diff --git a/sources b/sources index c7401d8..a89584c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -33688d9ad0775647124d1e86dc4cf387 serd-0.5.0.tar.bz2 +405b11ee92f3f19ce4a757ba34953886 serd-0.14.0.tar.bz2 From c1ed05172b05b1341a875c67ad3e8880921e5ec3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 14:23:39 -0500 Subject: [PATCH 04/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 780980c..e878e38 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.14.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -76,6 +76,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_mandir}/man3/*.3* %changelog +* Sat Jul 21 2012 Fedora Release Engineering - 0.14.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Apr 20 2012 Brendan Jones - 0.14.0-1 - New upstream release. From 805b656760da0cd451946b933c24a3e80bd893e5 Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Sat, 15 Dec 2012 12:56:03 +0100 Subject: [PATCH 05/41] New upstream release --- .gitignore | 1 + serd.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1221681..050a2a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /serd-0.5.0.tar.bz2 /serd-0.14.0.tar.bz2 +/serd-0.18.0.tar.bz2 diff --git a/serd.spec b/serd.spec index e878e38..c32db3a 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.14.0 -Release: 2%{?dist} +Version: 0.18.0 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -76,6 +76,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_mandir}/man3/*.3* %changelog +* Sat Dec 15 2012 Brendan Jones 0.18.0-1 +- New upstream release + * Sat Jul 21 2012 Fedora Release Engineering - 0.14.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index a89584c..307e5c8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -405b11ee92f3f19ce4a757ba34953886 serd-0.14.0.tar.bz2 +96dbade2c81d6df8100a9ef605ce35f8 serd-0.18.0.tar.bz2 From 452f847fbf30df78a26cdc2f8e9032dee73a0b68 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 17:47:57 -0600 Subject: [PATCH 06/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index c32db3a..6453b04 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.18.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -76,6 +76,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_mandir}/man3/*.3* %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 0.18.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sat Dec 15 2012 Brendan Jones 0.18.0-1 - New upstream release From 5599ea43403f1d6fd360b563392b7f9283f60c3f Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Tue, 21 May 2013 00:22:47 +0200 Subject: [PATCH 07/41] New upstream release --- .gitignore | 1 + serd.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 050a2a7..28575d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /serd-0.5.0.tar.bz2 /serd-0.14.0.tar.bz2 /serd-0.18.0.tar.bz2 +/serd-0.18.2.tar.bz2 diff --git a/serd.spec b/serd.spec index c32db3a..eca8381 100644 --- a/serd.spec +++ b/serd.spec @@ -1,7 +1,7 @@ %global maj 0 Name: serd -Version: 0.18.0 +Version: 0.18.2 Release: 1%{?dist} Summary: A lightweight C library for RDF syntax @@ -76,6 +76,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_mandir}/man3/*.3* %changelog +* Tue May 21 2013 Brendan Jones 0.18.2-1 +- New upstream release + * Sat Dec 15 2012 Brendan Jones 0.18.0-1 - New upstream release diff --git a/sources b/sources index 307e5c8..2b1f793 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -96dbade2c81d6df8100a9ef605ce35f8 serd-0.18.0.tar.bz2 +0569c21860b2ed2744e42884069a40a2 serd-0.18.2.tar.bz2 From 9141ec5ada1123c97406e1574caf3122c2ef5110 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 09:10:34 -0500 Subject: [PATCH 08/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 7d2a9d3..4c224bf 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.18.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -76,6 +76,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_mandir}/man3/*.3* %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.18.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Tue May 21 2013 Brendan Jones 0.18.2-1 - New upstream release From 3162b1e7c2c4ba942752d04f6b0d8a461de19333 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sat, 14 Dec 2013 22:17:57 +0200 Subject: [PATCH 09/41] Install docs to %{_pkgdocdir} where available (#994091). --- serd.spec | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/serd.spec b/serd.spec index 4c224bf..824c3ba 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,9 @@ %global maj 0 +%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: serd Version: 0.18.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -49,7 +50,7 @@ export CFLAGS="%{optflags}" --libdir=%{_libdir} \ --mandir=%{_mandir} \ --datadir=%{_datadir} \ - --docdir=%{_docdir}/%{name}-devel-%{version} \ + --docdir=%{_pkgdocdir} \ --test \ --docs ./waf build -v %{?_smp_mflags} @@ -57,13 +58,18 @@ export CFLAGS="%{optflags}" %install DESTDIR=%{buildroot} ./waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* +install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files -%doc AUTHORS NEWS README COPYING +%dir %{_pkgdocdir}/ +%{_pkgdocdir}/AUTHORS +%{_pkgdocdir}/COPYING +%{_pkgdocdir}/NEWS +%{_pkgdocdir}/README %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/serdi %{_mandir}/man1/serdi.1* @@ -72,10 +78,13 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_libdir}/lib%{name}-%{maj}*.so %{_libdir}/pkgconfig/%{name}*.pc %{_includedir}/%{name}-%{maj}/ -%{_docdir}/%{name}-devel-%{version} +%{_pkgdocdir}/%{name}-%{maj}/ %{_mandir}/man3/*.3* %changelog +* Sat Dec 14 2013 Ville Skyttä - 0.18.2-3 +- Install docs to %%{_pkgdocdir} where available (#994091). + * Sun Aug 04 2013 Fedora Release Engineering - 0.18.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From a21414a249d591911bda1180c298da113fc99f2a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 01:09:49 -0500 Subject: [PATCH 10/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 824c3ba..37ad22c 100644 --- a/serd.spec +++ b/serd.spec @@ -3,7 +3,7 @@ Name: serd Version: 0.18.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -82,6 +82,9 @@ install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/*.3* %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.18.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Dec 14 2013 Ville Skyttä - 0.18.2-3 - Install docs to %%{_pkgdocdir} where available (#994091). From 41361ab239f27f54aba1a38d3cff807741ecc3aa Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 02:01:26 +0000 Subject: [PATCH 11/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 37ad22c..f8311be 100644 --- a/serd.spec +++ b/serd.spec @@ -3,7 +3,7 @@ Name: serd Version: 0.18.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -82,6 +82,9 @@ install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/*.3* %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.18.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 0.18.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 32887f76c20949c95176c9d168d4cedbc01128aa Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Wed, 20 Aug 2014 22:05:45 +0200 Subject: [PATCH 12/41] Update to 0.20.0 --- .gitignore | 1 + serd.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 28575d4..771a1c3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /serd-0.14.0.tar.bz2 /serd-0.18.0.tar.bz2 /serd-0.18.2.tar.bz2 +/serd-0.20.0.tar.bz2 diff --git a/serd.spec b/serd.spec index f8311be..fbcf583 100644 --- a/serd.spec +++ b/serd.spec @@ -2,8 +2,8 @@ %{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: serd -Version: 0.18.2 -Release: 5%{?dist} +Version: 0.20.0 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -82,6 +82,9 @@ install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/*.3* %changelog +* Wed Aug 20 2014 Brendan Jones 0.20.0-1 +- Update to 0.20.0 + * Mon Aug 18 2014 Fedora Release Engineering - 0.18.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index 2b1f793..3583f35 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0569c21860b2ed2744e42884069a40a2 serd-0.18.2.tar.bz2 +cea0f240a6c94f3a7644a35d2f60ed8c serd-0.20.0.tar.bz2 From fc735709a4d974dc9d2382af9a69d97cc801bcdc Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 00:39:20 +0000 Subject: [PATCH 13/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index fbcf583..cfbbb91 100644 --- a/serd.spec +++ b/serd.spec @@ -3,7 +3,7 @@ Name: serd Version: 0.20.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -82,6 +82,9 @@ install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/*.3* %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.20.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Aug 20 2014 Brendan Jones 0.20.0-1 - Update to 0.20.0 From 7fba2664eedf575b13a59c3b73a58e8a6e340422 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 4 Feb 2016 23:52:14 +0000 Subject: [PATCH 14/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index cfbbb91..fc0e013 100644 --- a/serd.spec +++ b/serd.spec @@ -3,7 +3,7 @@ Name: serd Version: 0.20.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -82,6 +82,9 @@ install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_mandir}/man3/*.3* %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 0.20.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 0.20.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 1210013d369a8523c277ae367a895072fd5dcd4a Mon Sep 17 00:00:00 2001 From: Brendan Jones Date: Fri, 16 Sep 2016 13:12:48 +0200 Subject: [PATCH 15/41] Update to 0.22.0 --- .gitignore | 1 + serd.spec | 20 ++++++++------------ sources | 2 +- 3 files changed, 10 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 771a1c3..426925c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /serd-0.18.0.tar.bz2 /serd-0.18.2.tar.bz2 /serd-0.20.0.tar.bz2 +/serd-0.22.0.tar.bz2 diff --git a/serd.spec b/serd.spec index cfbbb91..9340073 100644 --- a/serd.spec +++ b/serd.spec @@ -1,9 +1,8 @@ %global maj 0 -%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}} Name: serd -Version: 0.20.0 -Release: 2%{?dist} +Version: 0.22.0 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -50,7 +49,7 @@ export CFLAGS="%{optflags}" --libdir=%{_libdir} \ --mandir=%{_mandir} \ --datadir=%{_datadir} \ - --docdir=%{_pkgdocdir} \ + --docdir=%{_docdir} \ --test \ --docs ./waf build -v %{?_smp_mflags} @@ -58,18 +57,13 @@ export CFLAGS="%{optflags}" %install DESTDIR=%{buildroot} ./waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* -install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files -%dir %{_pkgdocdir}/ -%{_pkgdocdir}/AUTHORS -%{_pkgdocdir}/COPYING -%{_pkgdocdir}/NEWS -%{_pkgdocdir}/README +%doc AUTHORS COPYING NEWS README %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/serdi %{_mandir}/man1/serdi.1* @@ -78,10 +72,12 @@ install -pm 644 AUTHORS COPYING NEWS README %{buildroot}%{_pkgdocdir} %{_libdir}/lib%{name}-%{maj}*.so %{_libdir}/pkgconfig/%{name}*.pc %{_includedir}/%{name}-%{maj}/ -%{_pkgdocdir}/%{name}-%{maj}/ -%{_mandir}/man3/*.3* +%{_mandir}/man1/*.1* %changelog +* Fri Sep 16 2016 Brendan Jones - 0.22.0-1 +- Update to 0.22.0 + * Fri Jun 19 2015 Fedora Release Engineering - 0.20.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild diff --git a/sources b/sources index 3583f35..85f76c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -cea0f240a6c94f3a7644a35d2f60ed8c serd-0.20.0.tar.bz2 +541bceb9f7cec50f4bf618060332b87c serd-0.22.0.tar.bz2 From fc55bb5a4fa901a159858a68a9b0593122e56edc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 13:19:12 +0000 Subject: [PATCH 16/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 55f4a89..c75da43 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.22.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax Group: System Environment/Libraries @@ -75,6 +75,9 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %{_mandir}/man1/*.1* %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.22.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Sep 16 2016 Brendan Jones - 0.22.0-1 - Update to 0.22.0 From 83df408b31286159fd5bdfe9c6479e7fdb341e08 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Wed, 15 Mar 2017 11:40:53 +0100 Subject: [PATCH 17/41] Update to 0.26.0 Use hardened LDFLAGS Remove deprecated Groups tags --- .gitignore | 1 + serd.spec | 20 ++++++++++++++------ sources | 2 +- 3 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 426925c..28ff2e2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /serd-0.18.2.tar.bz2 /serd-0.20.0.tar.bz2 /serd-0.22.0.tar.bz2 +/serd-0.26.0.tar.bz2 diff --git a/serd.spec b/serd.spec index c75da43..911c5d3 100644 --- a/serd.spec +++ b/serd.spec @@ -1,11 +1,10 @@ %global maj 0 Name: serd -Version: 0.22.0 -Release: 2%{?dist} +Version: 0.26.0 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax -Group: System Environment/Libraries License: ISC URL: http://drobilla.net/software/serd/ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 @@ -28,7 +27,6 @@ LV2 plugins as simple as possible for applications. %package devel Summary: Development libraries and headers for %{name} -Group: Development/Libraries Requires: %{name}%{_isa} = %{version}-%{release} %description devel @@ -44,6 +42,7 @@ sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript %build export CFLAGS="%{optflags}" +export LDFLAGS="%{__global_ldflags}" ./waf configure \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ @@ -57,6 +56,9 @@ export CFLAGS="%{optflags}" %install DESTDIR=%{buildroot} ./waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* +# Move devel docs to the right directory +install -d %{buildroot}%{_docdir}/%{name}/%{name}-%{maj} +mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{name}-%{maj}/html %post -p /sbin/ldconfig @@ -64,17 +66,23 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* %files %doc AUTHORS COPYING NEWS README +%doc %{_mandir}/man1/serdi.1* %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/serdi -%{_mandir}/man1/serdi.1* %files devel +%doc %{_mandir}/man3/serd.3* +%doc %{_docdir}/%{name}/%{name}-%{maj}/html/ %{_libdir}/lib%{name}-%{maj}*.so %{_libdir}/pkgconfig/%{name}*.pc %{_includedir}/%{name}-%{maj}/ -%{_mandir}/man1/*.1* %changelog +* Mon Mar 13 2017 Guido Aulisi - 0.26.0-1 +- Update to 0.26.0 +- Use hardened LDFLAGS +- Remove deprecated Groups tags + * Sat Feb 11 2017 Fedora Release Engineering - 0.22.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 85f76c4..87e22d8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -541bceb9f7cec50f4bf618060332b87c serd-0.22.0.tar.bz2 +SHA512 (serd-0.26.0.tar.bz2) = 749bf161d38cb8489f196ece2bf2b7c22e9113d05b38452592d92f9ffdec25d340e680e697e9531dab80d2ef04600690f9333208a4ef22307b8ed8e238d5c7b8 From a85368a5beb1b33c155627e7e1936decd84dfe60 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Tue, 21 Mar 2017 10:26:26 +0100 Subject: [PATCH 18/41] Fix unowned mid-level directory --- serd.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/serd.spec b/serd.spec index 911c5d3..e43fa16 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.26.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -72,12 +72,15 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %files devel %doc %{_mandir}/man3/serd.3* -%doc %{_docdir}/%{name}/%{name}-%{maj}/html/ +%doc %{_docdir}/%{name}/%{name}-%{maj}/ %{_libdir}/lib%{name}-%{maj}*.so %{_libdir}/pkgconfig/%{name}*.pc %{_includedir}/%{name}-%{maj}/ %changelog +* Tue Mar 21 2017 Guido Aulisi - 0.26.0-2 +- Fix unowned mid-level directory + * Mon Mar 13 2017 Guido Aulisi - 0.26.0-1 - Update to 0.26.0 - Use hardened LDFLAGS From 2fd7323cd9b8a4c76636674b9e1bfe08e00b9395 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 18:27:23 +0000 Subject: [PATCH 19/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index e43fa16..67f7dcb 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.26.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -78,6 +78,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.26.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Tue Mar 21 2017 Guido Aulisi - 0.26.0-2 - Fix unowned mid-level directory From ab802cb25e555c46cb78dcd5b10703edd674aaa0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 08:20:40 +0000 Subject: [PATCH 20/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 67f7dcb..6d100ca 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.26.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -78,6 +78,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 0.26.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.26.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From fd4a79b08689fd292fbc76ab3db53d58980053a9 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Thu, 10 Aug 2017 21:04:51 +0200 Subject: [PATCH 21/41] Update to 0.28.0 Use license macro --- .gitignore | 1 + serd.spec | 12 +++++++++--- sources | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 28ff2e2..77c15d2 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /serd-0.20.0.tar.bz2 /serd-0.22.0.tar.bz2 /serd-0.26.0.tar.bz2 +/serd-0.28.0.tar.bz2 diff --git a/serd.spec b/serd.spec index 6d100ca..cb6c446 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.26.0 -Release: 4%{?dist} +Version: 0.28.0 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -13,6 +13,7 @@ BuildRequires: doxygen BuildRequires: graphviz BuildRequires: glib2-devel BuildRequires: python +BuildRequires: gcc %description %{name} is a lightweight C library for RDF syntax which supports reading and @@ -65,7 +66,8 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %postun -p /sbin/ldconfig %files -%doc AUTHORS COPYING NEWS README +%license COPYING +%doc AUTHORS NEWS README.md %doc %{_mandir}/man1/serdi.1* %{_libdir}/lib%{name}-%{maj}.so.* %{_bindir}/serdi @@ -78,6 +80,10 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Thu Aug 10 2017 Guido Aulisi - 0.28.0-1 +- Update to 0.28.0 +- Use license macro + * Thu Aug 03 2017 Fedora Release Engineering - 0.26.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index 87e22d8..550ed4b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (serd-0.26.0.tar.bz2) = 749bf161d38cb8489f196ece2bf2b7c22e9113d05b38452592d92f9ffdec25d340e680e697e9531dab80d2ef04600690f9333208a4ef22307b8ed8e238d5c7b8 +SHA512 (serd-0.28.0.tar.bz2) = b25cc70af17ff821812ab2a70c2812c1713ff811a0f18fb5d5c54f3b67e0c68293aabedfacd687afe6b7acdfd81602ef81764d7e11bc0d933de738bc6d4fce3e From 671ba50b59b8aa545bc21c9a30793e7246d6085c Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Fri, 11 Aug 2017 13:55:02 +0200 Subject: [PATCH 22/41] Bump and rebuild for an rpm signing issue --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index cb6c446..8baea2c 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.28.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -80,6 +80,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Fri Aug 11 2017 Kalev Lember - 0.28.0-2 +- Bump and rebuild for an rpm signing issue + * Thu Aug 10 2017 Guido Aulisi - 0.28.0-1 - Update to 0.28.0 - Use license macro From fb2d91b84036dd96dbfdfed01cde51eb68b416c1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 16:31:47 +0000 Subject: [PATCH 23/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 8baea2c..0a05d7d 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.28.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -80,6 +80,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.28.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Aug 11 2017 Kalev Lember - 0.28.0-2 - Bump and rebuild for an rpm signing issue From 375d07e940465aed1df5a7679c66b0b9b8234437 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 11 Feb 2018 00:03:14 +0100 Subject: [PATCH 24/41] Update Python 2 dependency declarations to new packaging standards See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3 --- serd.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 0a05d7d..7e9a650 100644 --- a/serd.spec +++ b/serd.spec @@ -12,7 +12,7 @@ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 BuildRequires: doxygen BuildRequires: graphviz BuildRequires: glib2-devel -BuildRequires: python +BuildRequires: python2 BuildRequires: gcc %description From 97ea6763a6d59843c8c4d7ddaf919d070f0f96b3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 05:59:21 +0000 Subject: [PATCH 25/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 7e9a650..9346b4e 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.28.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -80,6 +80,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.28.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 0.28.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From ec92743a0840763356d2d6464df6b7be6a20222d Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 15 Jul 2018 18:19:46 +0200 Subject: [PATCH 26/41] 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 --- serd.spec | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/serd.spec b/serd.spec index 9346b4e..a476c19 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.28.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -13,6 +13,7 @@ BuildRequires: doxygen BuildRequires: graphviz BuildRequires: glib2-devel BuildRequires: python2 +BuildRequires: python2-rpm-macros BuildRequires: gcc %description @@ -44,7 +45,7 @@ sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript %build export CFLAGS="%{optflags}" export LDFLAGS="%{__global_ldflags}" -./waf configure \ +%{__python2} waf configure \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ --mandir=%{_mandir} \ @@ -52,10 +53,10 @@ export LDFLAGS="%{__global_ldflags}" --docdir=%{_docdir} \ --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}-%{maj}.so.* # Move devel docs to the right directory install -d %{buildroot}%{_docdir}/%{name}/%{name}-%{maj} @@ -80,6 +81,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Sun Jul 15 2018 Guido Aulisi - 0.28.0-5 +- Fix FTBFS due to the move of /usr/bin/python into a separate package + * Sat Jul 14 2018 Fedora Release Engineering - 0.28.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From d0ede79400bf0a3bd98c5c8dec1e7606303071be Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Thu, 26 Jul 2018 08:58:54 +0000 Subject: [PATCH 27/41] Update to 0.30.0 Remove ldconfig scriptlets Minor spec cleanup See https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets --- .gitignore | 1 + serd.spec | 34 ++++++++++++++++------------------ sources | 2 +- 3 files changed, 18 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 77c15d2..bfba3d8 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /serd-0.22.0.tar.bz2 /serd-0.26.0.tar.bz2 /serd-0.28.0.tar.bz2 +/serd-0.30.0.tar.bz2 diff --git a/serd.spec b/serd.spec index a476c19..e126521 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.28.0 -Release: 5%{?dist} +Version: 0.30.0 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -13,19 +13,16 @@ BuildRequires: doxygen BuildRequires: graphviz BuildRequires: glib2-devel BuildRequires: python2 -BuildRequires: python2-rpm-macros +BuildRequires: python2-devel BuildRequires: gcc %description %{name} is a lightweight C library for RDF syntax which supports reading and -writing Turtle and NTriples. +writing Turtle, TRiG, NTriples, and NQuads. -Serd is not intended to be a swiss-army knife of RDF syntax, but rather is -suited to resource limited or performance critical applications (e.g. -converting many gigabytes of NTriples to Turtle), or situations where a -simple reader/writer with minimal dependencies is ideal (e.g. in LV2 -implementations or embedded applications).is a library to make the use of -LV2 plugins as simple as possible for applications. +Serd is suitable for performance-critical or resource-limited applications, +such as serialising very large data sets, network protocols, or embedded +systems that require minimal dependencies and lightweight deployment. %package devel Summary: Development libraries and headers for %{name} @@ -33,18 +30,18 @@ Requires: %{name}%{_isa} = %{version}-%{release} %description devel %{name} is a lightweight C library for RDF syntax which supports reading and -writing Turtle and NTriples. +writing Turtle, TRiG, NTriples, and NQuads. This package contains the headers and development libraries for %{name}. %prep %setup -q -# we'll run ldconfig +# we'll run ldconfig, well not any more, see +# https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript %build -export CFLAGS="%{optflags}" -export LDFLAGS="%{__global_ldflags}" +%set_build_flags %{__python2} waf configure \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ @@ -62,10 +59,6 @@ chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* install -d %{buildroot}%{_docdir}/%{name}/%{name}-%{maj} mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{name}-%{maj}/html -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - %files %license COPYING %doc AUTHORS NEWS README.md @@ -81,6 +74,11 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Thu Jul 26 2018 Guido Aulisi - 0.30.0-1 +- Update to 0.30.0 +- Remove ldconfig scriptlets +- Minor spec cleanup + * Sun Jul 15 2018 Guido Aulisi - 0.28.0-5 - Fix FTBFS due to the move of /usr/bin/python into a separate package diff --git a/sources b/sources index 550ed4b..0bcf12b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (serd-0.28.0.tar.bz2) = b25cc70af17ff821812ab2a70c2812c1713ff811a0f18fb5d5c54f3b67e0c68293aabedfacd687afe6b7acdfd81602ef81764d7e11bc0d933de738bc6d4fce3e +SHA512 (serd-0.30.0.tar.bz2) = 23ff30f2d3dd622bdd65deee36cb92ae5f4a0c539cf32a1bd9802f2d7cf4aa3e96f25d2fe579277d1ab943f6d25c0be68d7b4863f83d4733f489462620a4c1bb From 2c06dde55db19ca9a504dddfb720db40565d1063 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 2 Feb 2019 15:13:17 +0000 Subject: [PATCH 28/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index e126521..59b46c7 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -74,6 +74,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Sat Feb 02 2019 Fedora Release Engineering - 0.30.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Jul 26 2018 Guido Aulisi - 0.30.0-1 - Update to 0.30.0 - Remove ldconfig scriptlets From c237d5c2e0271a1c97f7ba21aa0753ad5f078516 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 26 Jul 2019 23:06:04 +0000 Subject: [PATCH 29/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 59b46c7..a9e274c 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -74,6 +74,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Fri Jul 26 2019 Fedora Release Engineering - 0.30.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sat Feb 02 2019 Fedora Release Engineering - 0.30.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 56d4ababb1a72246612502a2bedefe9ce88a287d Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Fri, 6 Dec 2019 20:28:41 +0100 Subject: [PATCH 30/41] Update to 0.30.2 Use python3 --- .gitignore | 1 + serd.spec | 17 ++++++++++------- sources | 2 +- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index bfba3d8..4d3de30 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /serd-0.26.0.tar.bz2 /serd-0.28.0.tar.bz2 /serd-0.30.0.tar.bz2 +/serd-0.30.2.tar.bz2 diff --git a/serd.spec b/serd.spec index a9e274c..60fb677 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.30.0 -Release: 3%{?dist} +Version: 0.30.2 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -12,8 +12,7 @@ Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2 BuildRequires: doxygen BuildRequires: graphviz BuildRequires: glib2-devel -BuildRequires: python2 -BuildRequires: python2-devel +BuildRequires: python3 BuildRequires: gcc %description @@ -42,7 +41,7 @@ sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript %build %set_build_flags -%{__python2} waf configure \ +python3 waf configure \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ --mandir=%{_mandir} \ @@ -50,10 +49,10 @@ sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript --docdir=%{_docdir} \ --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}-%{maj}.so.* # Move devel docs to the right directory install -d %{buildroot}%{_docdir}/%{name}/%{name}-%{maj} @@ -74,6 +73,10 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Fri Dec 06 2019 Guido Aulisi - 0.30.2-1 +- Update to 0.30.2 +- Use python3 + * Fri Jul 26 2019 Fedora Release Engineering - 0.30.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 0bcf12b..4c4cf39 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (serd-0.30.0.tar.bz2) = 23ff30f2d3dd622bdd65deee36cb92ae5f4a0c539cf32a1bd9802f2d7cf4aa3e96f25d2fe579277d1ab943f6d25c0be68d7b4863f83d4733f489462620a4c1bb +SHA512 (serd-0.30.2.tar.bz2) = b1e18ac883aac2a8146ee0e1de553ac2b512deba5307e5c9fa2733d9011ed0777d67790aa6527e73b3f11c9da0d8c9a98227457bb412897296f4464228cac0f7 From 9334332a1001d1a17e8ce78129417559248872df Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 30 Jan 2020 23:15:26 +0000 Subject: [PATCH 31/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 60fb677..a859253 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -73,6 +73,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Thu Jan 30 2020 Fedora Release Engineering - 0.30.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Dec 06 2019 Guido Aulisi - 0.30.2-1 - Update to 0.30.2 - Use python3 From cfe0029640b33b2c38d43bfe4f6ea0ed0668ff19 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 12 Jul 2020 20:52:10 +0200 Subject: [PATCH 32/41] Update to 0.30.4 --- .gitignore | 1 + serd.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4d3de30..9d98092 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /serd-0.28.0.tar.bz2 /serd-0.30.0.tar.bz2 /serd-0.30.2.tar.bz2 +/serd-0.30.4.tar.bz2 diff --git a/serd.spec b/serd.spec index a859253..5a3db9c 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.30.2 -Release: 2%{?dist} +Version: 0.30.4 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -73,6 +73,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Sun Jul 12 2020 Guido Aulisi - 0.30.4-1 +- Update to 0.30.4 + * Thu Jan 30 2020 Fedora Release Engineering - 0.30.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 4c4cf39..2bec720 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (serd-0.30.2.tar.bz2) = b1e18ac883aac2a8146ee0e1de553ac2b512deba5307e5c9fa2733d9011ed0777d67790aa6527e73b3f11c9da0d8c9a98227457bb412897296f4464228cac0f7 +SHA512 (serd-0.30.4.tar.bz2) = 4cc032f826d891213c6db787b10a41ffb8f4b2a3357ffa536e34013755dc34db7109d1b42f550a0d559d8651f56c3a5dfb3654c3e2047ee6e609ff9a5fe803d6 From ca27ec3e6d0c49d89518304b016d1f80211d618c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 10:33:51 +0000 Subject: [PATCH 33/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 5a3db9c..75a105b 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -73,6 +73,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.30.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sun Jul 12 2020 Guido Aulisi - 0.30.4-1 - Update to 0.30.4 From 0d465bdcaf6f5460918aad9f7123c915f695573c Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 4 Oct 2020 14:59:29 +0200 Subject: [PATCH 34/41] Update to 0.30.6 --- .gitignore | 1 + serd.spec | 13 ++++++++----- sources | 2 +- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9d98092..3b40a43 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /serd-0.30.0.tar.bz2 /serd-0.30.2.tar.bz2 /serd-0.30.4.tar.bz2 +/serd-0.30.6.tar.bz2 diff --git a/serd.spec b/serd.spec index 75a105b..dad0d9d 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.30.4 -Release: 2%{?dist} +Version: 0.30.6 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -41,7 +41,7 @@ sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript %build %set_build_flags -python3 waf configure \ +%{python3} waf configure \ --prefix=%{_prefix} \ --libdir=%{_libdir} \ --mandir=%{_mandir} \ @@ -49,10 +49,10 @@ python3 waf configure \ --docdir=%{_docdir} \ --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}-%{maj}.so.* # Move devel docs to the right directory install -d %{buildroot}%{_docdir}/%{name}/%{name}-%{maj} @@ -73,6 +73,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{n %{_includedir}/%{name}-%{maj}/ %changelog +* Sun Oct 04 2020 Guido Aulisi - 0.30.6-1 +- Update to 0.30.6 + * Wed Jul 29 2020 Fedora Release Engineering - 0.30.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild diff --git a/sources b/sources index 2bec720..56c16e0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (serd-0.30.4.tar.bz2) = 4cc032f826d891213c6db787b10a41ffb8f4b2a3357ffa536e34013755dc34db7109d1b42f550a0d559d8651f56c3a5dfb3654c3e2047ee6e609ff9a5fe803d6 +SHA512 (serd-0.30.6.tar.bz2) = db08d6c67d8627728679d0ed3770b8219a58f3eef82194ef8ba5682d3ff1f1033e2bbc8d6a1115a3fe0e32990f635c707a81ad8b4f457153fa78ff5991c9c30f From 619bc17749d2f895e6e717ead19a5ee5a1b468d7 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Sun, 24 Jan 2021 20:23:32 +0100 Subject: [PATCH 35/41] Update to 0.30.10 --- .gitignore | 1 + serd.spec | 18 ++++++++++++------ sources | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 3b40a43..771ac87 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ /serd-0.30.2.tar.bz2 /serd-0.30.4.tar.bz2 /serd-0.30.6.tar.bz2 +/serd-0.30.10.tar.bz2 diff --git a/serd.spec b/serd.spec index dad0d9d..3b575fc 100644 --- a/serd.spec +++ b/serd.spec @@ -1,7 +1,7 @@ %global maj 0 Name: serd -Version: 0.30.6 +Version: 0.30.10 Release: 1%{?dist} Summary: A lightweight C library for RDF syntax @@ -14,6 +14,8 @@ BuildRequires: graphviz BuildRequires: glib2-devel BuildRequires: python3 BuildRequires: gcc +BuildRequires: python3-sphinx +BuildRequires: python3-sphinx_lv2_theme %description %{name} is a lightweight C library for RDF syntax which supports reading and @@ -34,8 +36,8 @@ writing Turtle, TRiG, NTriples, and NQuads. This package contains the headers and development libraries for %{name}. %prep -%setup -q -# we'll run ldconfig, well not any more, see +%autosetup -p1 +# Do not run ldconfig, see # https://fedoraproject.org/wiki/Changes/Removing_ldconfig_scriptlets sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript @@ -54,25 +56,29 @@ sed -i -e 's|bld.add_post_fun(autowaf.run_ldconfig)||' wscript %install DESTDIR=%{buildroot} %{python3} waf install chmod +x %{buildroot}%{_libdir}/lib%{name}-%{maj}.so.* +# Delete sphinx buildinfo +rm %{buildroot}%{_docdir}/%{name}-%{maj}/c/{html,singlehtml}/.buildinfo # Move devel docs to the right directory install -d %{buildroot}%{_docdir}/%{name}/%{name}-%{maj} -mv %{buildroot}%{_docdir}/%{name}-%{maj}/html %{buildroot}%{_docdir}/%{name}/%{name}-%{maj}/html +mv %{buildroot}%{_docdir}/%{name}-%{maj}/c %{buildroot}%{_docdir}/%{name}/%{name}-%{maj}/c %files %license COPYING %doc AUTHORS NEWS README.md %doc %{_mandir}/man1/serdi.1* -%{_libdir}/lib%{name}-%{maj}.so.* +%{_libdir}/lib%{name}-%{maj}.so.%{maj}* %{_bindir}/serdi %files devel -%doc %{_mandir}/man3/serd.3* %doc %{_docdir}/%{name}/%{name}-%{maj}/ %{_libdir}/lib%{name}-%{maj}*.so %{_libdir}/pkgconfig/%{name}*.pc %{_includedir}/%{name}-%{maj}/ %changelog +* Sun Jan 24 2021 Guido Aulisi - 0.30.10-1 +- Update to 0.30.10 + * Sun Oct 04 2020 Guido Aulisi - 0.30.6-1 - Update to 0.30.6 diff --git a/sources b/sources index 56c16e0..f8e211b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (serd-0.30.6.tar.bz2) = db08d6c67d8627728679d0ed3770b8219a58f3eef82194ef8ba5682d3ff1f1033e2bbc8d6a1115a3fe0e32990f635c707a81ad8b4f457153fa78ff5991c9c30f +SHA512 (serd-0.30.10.tar.bz2) = ed7b49abfd3dc3a724b047f5f0cd07b811596330c96d91c0ce90540440f03260e05daee76c3ccccc3d4ca39afbbd4f3d07decbb601730e90c133a09c640c0006 From 0909fe550ede31ba769b09d293e6c2771974cb7f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 20:14:06 +0000 Subject: [PATCH 36/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 3b575fc..16e23a0 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -76,6 +76,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/c %{buildroot}%{_docdir}/%{name}/%{name %{_includedir}/%{name}-%{maj}/ %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 0.30.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sun Jan 24 2021 Guido Aulisi - 0.30.10-1 - Update to 0.30.10 From 9e2c30315128f4e9b5cfb3f672e5016efbf0accd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 17:23:17 +0000 Subject: [PATCH 37/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 16e23a0..c06c583 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -76,6 +76,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/c %{buildroot}%{_docdir}/%{name}/%{name %{_includedir}/%{name}-%{maj}/ %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.30.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 0.30.10-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From cfa665913b485dcaf56ff064ecf81f698a5948ab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 00:42:20 +0000 Subject: [PATCH 38/41] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index c06c583..025eb95 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.10 -Release: 3%{?dist} +Release: 4%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -76,6 +76,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/c %{buildroot}%{_docdir}/%{name}/%{name %{_includedir}/%{name}-%{maj}/ %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.30.10-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.30.10-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From fe038fb44ef228869a56b39ef9aa53778be6ead1 Mon Sep 17 00:00:00 2001 From: Guido Aulisi Date: Wed, 15 Jun 2022 22:35:44 +0200 Subject: [PATCH 39/41] Update to 0.30.12 --- .gitignore | 1 + serd.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 771ac87..fce7cdc 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ /serd-0.30.4.tar.bz2 /serd-0.30.6.tar.bz2 /serd-0.30.10.tar.bz2 +/serd-0.30.12.tar.bz2 diff --git a/serd.spec b/serd.spec index 025eb95..33a119f 100644 --- a/serd.spec +++ b/serd.spec @@ -1,8 +1,8 @@ %global maj 0 Name: serd -Version: 0.30.10 -Release: 4%{?dist} +Version: 0.30.12 +Release: 1%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -76,6 +76,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/c %{buildroot}%{_docdir}/%{name}/%{name %{_includedir}/%{name}-%{maj}/ %changelog +* Wed Jun 15 2022 Guido Aulisi - 0.30.12-1 +- Update to 0.30.12 + * Sat Jan 22 2022 Fedora Release Engineering - 0.30.10-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/sources b/sources index f8e211b..9af8663 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (serd-0.30.10.tar.bz2) = ed7b49abfd3dc3a724b047f5f0cd07b811596330c96d91c0ce90540440f03260e05daee76c3ccccc3d4ca39afbbd4f3d07decbb601730e90c133a09c640c0006 +SHA512 (serd-0.30.12.tar.bz2) = c330648eb2c947a6d220f42d0af63fd2744da496301483e58be3cda387da166711d6acd5cee2df8cbb837ab450e1802b3f9a0a2973e5ad6d976b69b863aecb7f From a003148b1ba3d6169fdd641dbe788469218f1cfe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 08:24:01 +0000 Subject: [PATCH 40/41] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- serd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/serd.spec b/serd.spec index 33a119f..48f110c 100644 --- a/serd.spec +++ b/serd.spec @@ -2,7 +2,7 @@ Name: serd Version: 0.30.12 -Release: 1%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC @@ -76,6 +76,9 @@ mv %{buildroot}%{_docdir}/%{name}-%{maj}/c %{buildroot}%{_docdir}/%{name}/%{name %{_includedir}/%{name}-%{maj}/ %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0.30.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Wed Jun 15 2022 Guido Aulisi - 0.30.12-1 - Update to 0.30.12 From bfb63825a8c6acfa578031b524654bde47069408 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:18:23 +0300 Subject: [PATCH 41/41] 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 9af8663..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (serd-0.30.12.tar.bz2) = c330648eb2c947a6d220f42d0af63fd2744da496301483e58be3cda387da166711d6acd5cee2df8cbb837ab450e1802b3f9a0a2973e5ad6d976b69b863aecb7f