Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bf149bfd65 | ||
|
53f00cbd7a | ||
|
8b602d47e0 | ||
|
e470a3a529 | ||
|
f1c70c8c42 | ||
|
497a421371 | ||
|
847c91c07d | ||
|
015250a376 | ||
|
b94b1d6636 | ||
|
0a9adfc498 | ||
|
a44f56b53c | ||
|
31bfeb0d13 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -5,3 +5,6 @@
|
||||
/sord-0.12.2.tar.bz2
|
||||
/sord-0.16.0.tar.bz2
|
||||
/sord-0.16.2.tar.bz2
|
||||
/sord-0.16.4.tar.bz2
|
||||
/sord-0.16.6.tar.bz2
|
||||
/sord-0.16.8.tar.bz2
|
||||
|
2642
sord-update-zix.patch
Normal file
2642
sord-update-zix.patch
Normal file
File diff suppressed because it is too large
Load Diff
56
sord.spec
56
sord.spec
@ -2,20 +2,21 @@
|
||||
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}-%{version}}
|
||||
|
||||
Name: sord
|
||||
Version: 0.16.2
|
||||
Release: 4%{?dist}
|
||||
Version: 0.16.8
|
||||
Release: 3%{?dist}
|
||||
Summary: A lightweight Resource Description Framework (RDF) C library
|
||||
|
||||
License: ISC
|
||||
URL: http://drobilla.net/software/sord/
|
||||
Source0: http://download.drobilla.net/%{name}-%{version}.tar.bz2
|
||||
# This fixes a potential BTree crash with GCC 10, patch from upstream
|
||||
Patch0: %{name}-update-zix.patch
|
||||
|
||||
BuildRequires: boost-devel
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: graphviz
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: python2
|
||||
BuildRequires: python2-devel
|
||||
BuildRequires: python3
|
||||
BuildRequires: serd-devel >= 0.30.0
|
||||
BuildRequires: gcc
|
||||
BuildRequires: gcc-c++
|
||||
@ -37,8 +38,8 @@ Framework (RDF) data in memory.
|
||||
This package contains the headers and development libraries for %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
# we'll run ldconfig, and add our optflags
|
||||
%autosetup -p1
|
||||
# Do not run ldconfig, and add our optflags
|
||||
sed -i -e "s|bld.add_post_fun(autowaf.run_ldconfig)||" \
|
||||
-e "s|cflags = [ '-DSORD_INTERNAL' ]\
|
||||
|cflags = [ '-DSORD_INTERNAL' ] + '%optflags'.split(' ') |" wscript
|
||||
@ -46,7 +47,7 @@ sed -i -e "s|bld.add_post_fun(autowaf.run_ldconfig)||" \
|
||||
%build
|
||||
%set_build_flags
|
||||
export LINKFLAGS="%{__global_ldflags}"
|
||||
%{__python2} waf configure \
|
||||
%{python3} waf configure \
|
||||
--prefix=%{_prefix} \
|
||||
--libdir=%{_libdir} \
|
||||
--mandir=%{_mandir} \
|
||||
@ -54,12 +55,12 @@ export LINKFLAGS="%{__global_ldflags}"
|
||||
--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}-%{maj}.so.*
|
||||
install -pm 644 AUTHORS NEWS README COPYING %{buildroot}%{_pkgdocdir}
|
||||
install -pm 644 AUTHORS NEWS README.md %{buildroot}%{_pkgdocdir}
|
||||
|
||||
%files
|
||||
%{_pkgdocdir}
|
||||
@ -79,6 +80,41 @@ install -pm 644 AUTHORS NEWS README COPYING %{buildroot}%{_pkgdocdir}
|
||||
%{_mandir}/man3/%{name}*.3*
|
||||
|
||||
%changelog
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.8-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.8-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Sun Feb 28 2021 Guido Aulisi <guido.aulisi@gmail.com> - 0.16.8-1
|
||||
- Update to 0.16.8
|
||||
- Fix a potential BTree crash with GCC 10
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Sun Oct 04 2020 Guido Aulisi <guido.aulisi@gmail.com> - 0.16.6-1
|
||||
- Update to 0.16.6
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.4-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Fri May 29 2020 Guido Aulisi <guido.aulisi@gmail.com> - 0.16.4-5
|
||||
- Rebuilt for possible GCC 10.1 bug on power64, arm and s390
|
||||
|
||||
* Wed May 27 2020 Guido Aulisi <guido.aulisi@gmail.com> - 0.16.4-4
|
||||
- Rebuilt with GCC 10.1
|
||||
|
||||
* Sun Mar 15 2020 Guido Aulisi <guido.aulisi@gmail.com> - 0.16.4-3
|
||||
- Rebuilt for possible GCC 10 bug on power64 and arm
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Dec 06 2019 Guido Aulisi <guido.aulisi@gmail.com> - 0.16.4-1
|
||||
- Update to 0.16.4
|
||||
- Use python3
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.16.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (sord-0.16.2.tar.bz2) = fe143c07ed18c15ffaf2461ca587df76e365a075f5d93f5eaa4c26196e0b1dd59d24d16e176de3664a2658377a2934083af5742c80884e8e7dd201dcaccb9698
|
||||
SHA512 (sord-0.16.8.tar.bz2) = 24ed50de8e5bb321e557bac6d3e441b2ed49adabf828bf0e1b33a080c89306dde80443dc8b563098fcc184c4d6e53b7e716b523ddccdf56d08301d1b0120f2b2
|
||||
|
Loading…
Reference in New Issue
Block a user