new upstream release

This commit is contained in:
David Tardon 2016-02-14 09:07:38 +01:00
parent 7fa41cd00f
commit a23e8b42cb
4 changed files with 25 additions and 14 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/libixion-0.7.0.tar.bz2
/libixion-0.9.0.tar.xz
/libixion-0.9.1.tar.xz
/libixion-0.11.0.tar.xz

4
LICENSE Normal file
View File

@ -0,0 +1,4 @@
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.

View File

@ -1,18 +1,19 @@
%global apiversion 0.10
%global apiversion 0.11
Name: libixion
Version: 0.9.1
Release: 8%{?dist}
Version: 0.11.0
Release: 1%{?dist}
Summary: A general purpose formula parser & interpreter library
License: MPLv2.0
URL: https://gitlab.com/ixion/ixion
Source0: http://kohei.us/files/ixion/src/%{name}-%{version}.tar.xz
Source1: LICENSE
BuildRequires: boost-devel
BuildRequires: help2man
BuildRequires: pkgconfig(mdds) >= 0.12.0
BuildRequires: pkgconfig(python2)
BuildRequires: pkgconfig(mdds-1.0) >= 1.1.0
BuildRequires: pkgconfig(python3)
%description
Ixion is a general purpose formula parser & interpreter that can calculate
@ -54,15 +55,17 @@ Requires: %{name}%{?_isa} = %{version}-%{release}
%description tools
Testing tools for %{name}.
%package python
Summary: Python 2 bindings for libixion
%package python3
Summary: Python 3 bindings for libixion
Requires: %{name}%{?_isa} = %{version}-%{release}
Obsoletes: %{name}-python
%description python
Python 2 bindings for %{name}.
%description python3
Python 3 bindings for %{name}.
%prep
%autosetup -p1
cp -p %{SOURCE1} .
%build
%configure --disable-silent-rules --disable-static
@ -78,7 +81,7 @@ help2man -N -n 'sorter' -o ixion-sorter.1 ./src/ixion-sorter
%install
make install DESTDIR=%{buildroot}
rm -f %{buildroot}%{_libdir}/*.la %{buildroot}%{python_sitearch}/*.la
rm -f %{buildroot}%{_libdir}/*.la %{buildroot}%{python3_sitearch}/*.la
install -m 0755 -d %{buildroot}/%{_mandir}/man1
install -m 0644 ixion-parser.1 ixion-sorter.1 %{buildroot}/%{_mandir}/man1
@ -92,7 +95,7 @@ make %{?_smp_mflags} check
%files
%doc AUTHORS README
%license COPYING
%license LICENSE
%{_libdir}/%{name}-%{apiversion}.so.*
%files devel
@ -107,10 +110,13 @@ make %{?_smp_mflags} check
%{_mandir}/man1/ixion-parser.1*
%{_mandir}/man1/ixion-sorter.1*
%files python
%{python_sitearch}/ixion.so
%files python3
%{python3_sitearch}/ixion.so
%changelog
* Sun Feb 14 2016 David Tardon <dtardon@redhat.com> - 0.11.0-1
- new upstream release
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.1-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild

View File

@ -1 +1 @@
d292f6d62847f2305178459390842eac libixion-0.9.1.tar.xz
58405d2e92f3a1352276dad118f9238a libixion-0.11.0.tar.xz