Accepting request 349613 from multimedia:libs
1 OBS-URL: https://build.opensuse.org/request/show/349613 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/sord?expand=0&rev=8
This commit is contained in:
parent
d34bcc56b9
commit
61a7db15e5
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:bd0538d37de5e782023a7261d8ee9d83a792a12eeea7d94dec7a93dd9cda0767
|
||||
size 303365
|
3
sord-0.14.0.tar.bz2
Normal file
3
sord-0.14.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7656d8ec56a43e0f0a168fe78670a7628a42d3a597b53c7a72ac243a74e0f19a
|
||||
size 311442
|
31
sord.changes
31
sord.changes
@ -1,3 +1,34 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 17 10:26:07 UTC 2015 - davejplater@gmail.com
|
||||
|
||||
- Added manpage sord.3 and api docs to devel package.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 16 08:52:37 UTC 2015 - olaf@aepfle.de
|
||||
|
||||
- Add BuildRoot: for SLE_11
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 9 01:59:33 UTC 2015 - someuniquename@gmail.com
|
||||
|
||||
- Removed doc package due to build problems.
|
||||
- Update to version 0.14.0 stable;
|
||||
|
||||
* Reduce memory usage and increase performance with a better data structure
|
||||
* Add sord_erase() for erasing statements via an iterator
|
||||
* Fix bugs with stores that contain both graphs and default graph statements
|
||||
* Fix crash caused by multiple deletion of datatype nodes
|
||||
* Fix compilation on compilers that do not support -pthread flag
|
||||
* Fix minor memory leak in sordi
|
||||
* Fix using sordi with stdin
|
||||
* Show sordi errors in standard format
|
||||
* sord_validate: More extensive validation, including cardinality,
|
||||
PlainLiteral, and someValuesFrom restrictions.
|
||||
* This release does not break the ABI, but the semantics of iterators has
|
||||
changed: any modification to a model invalidates iterators on that model
|
||||
* Improve test coverage
|
||||
* Upgrade to waf 1.8.14
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 25 16:06:46 UTC 2015 - p.drouand@gmail.com
|
||||
|
||||
|
30
sord.spec
30
sord.spec
@ -19,21 +19,24 @@
|
||||
%define soname 0
|
||||
|
||||
Name: sord
|
||||
Version: 0.12.2
|
||||
Version: 0.14.0
|
||||
Release: 0
|
||||
Summary: Utilities to work with RDF data
|
||||
License: ISC
|
||||
Group: Productivity/File utilities
|
||||
Url: http://drobilla.net/software/sord/
|
||||
Source0: http://download.drobilla.net/sord-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: graphviz
|
||||
BuildRequires: pcre-devel
|
||||
BuildRequires: pkg-config
|
||||
BuildRequires: python-base
|
||||
BuildRequires: pkgconfig(serd-0) >= 0.14.0
|
||||
BuildRequires: pkgconfig(serd-0) >= 0.18.0
|
||||
|
||||
%description
|
||||
Utilities to work with RDF data.
|
||||
Sord is a lightweight C library for storing RDF data in memory.
|
||||
|
||||
%package -n libsord-0-%{soname}
|
||||
Summary: A lightweight C library for storing RDF data in memory
|
||||
@ -41,23 +44,17 @@ Group: System/Libraries
|
||||
|
||||
%description -n libsord-0-%{soname}
|
||||
A lightweight C library for storing RDF data in memory.
|
||||
http://drobilla.net/software/sord/
|
||||
|
||||
%package -n libsord-0-devel
|
||||
Summary: Development files for libsord
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libsord-0-%{soname} = %{version}
|
||||
Suggests: libsord-docs
|
||||
|
||||
%description -n libsord-0-devel
|
||||
Development files for libsord.
|
||||
Sord is a lightweight C library for storing RDF data in memory.
|
||||
|
||||
# Upstream does not want versioned documentation
|
||||
%package -n libsord-docs
|
||||
Summary: Documentation about the libsord API
|
||||
Group: Documentation/Other
|
||||
|
||||
%description -n libsord-docs
|
||||
Documentation about the libsord API.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
@ -78,6 +75,8 @@ export CXXFLAGS='%{optflags}'
|
||||
|
||||
# http://dev.drobilla.net/ticket/852
|
||||
cp -p doc/sord_validate.1 %{buildroot}%{_mandir}/man1/sord_validate.1
|
||||
mkdir -p %{buildroot}%{_mandir}/man3
|
||||
cp -pv build/doc/reference.doxygen.doxy/man/man3/sord.3 %{buildroot}%{_mandir}/man3/
|
||||
|
||||
%post -n libsord-0-%{soname} -p /sbin/ldconfig
|
||||
|
||||
@ -85,8 +84,8 @@ cp -p doc/sord_validate.1 %{buildroot}%{_mandir}/man1/sord_validate.1
|
||||
|
||||
%files
|
||||
%defattr(0644,root,root,0755)
|
||||
%attr(0755,-,-) %{_bindir}/sordi
|
||||
%attr(0755,-,-) %{_bindir}/sord_validate
|
||||
%attr(0755,root,root) %{_bindir}/sordi
|
||||
%attr(0755,root,root) %{_bindir}/sord_validate
|
||||
%{_mandir}/man1/sordi.1*
|
||||
%{_mandir}/man1/sord_validate.1*
|
||||
|
||||
@ -97,13 +96,10 @@ cp -p doc/sord_validate.1 %{buildroot}%{_mandir}/man1/sord_validate.1
|
||||
|
||||
%files -n libsord-0-devel
|
||||
%defattr(0644,root,root,0755)
|
||||
%doc build/doc/reference.doxygen.doxy/html
|
||||
%{_mandir}/man3/sord.3.gz
|
||||
%{_libdir}/libsord-0.so
|
||||
%{_includedir}/sord-0/
|
||||
%{_libdir}/pkgconfig/sord-0.pc
|
||||
|
||||
%files -n libsord-docs
|
||||
%defattr(0644,root,root,0755)
|
||||
%{_defaultdocdir}/sord-0/
|
||||
%{_mandir}/man3/*
|
||||
|
||||
%changelog
|
||||
|
Loading…
Reference in New Issue
Block a user