mdds/mdds.spec

107 lines
2.5 KiB
RPMSpec
Raw Normal View History

2010-07-08 04:16:14 +00:00
Name: mdds
2012-07-24 08:30:35 +00:00
Version: 0.6.0
Release: 0%{?dist}
2010-07-08 04:16:14 +00:00
Summary: A collection of multi-dimensional data structures and indexing algorithms
Group: Development/Libraries
License: MIT
URL: http://code.google.com/p/multidimalgorithm/
Source0: http://multidimalgorithm.googlecode.com/files/%{name}_%{version}.tar.bz2
BuildRequires: boost-devel
BuildArch: noarch
%description
A collection of multi-dimensional data structures and indexing algorithms.
It implements the following data structures:
* segment tree
2010-12-21 06:50:35 +00:00
* flat segment tree
2010-07-08 04:16:14 +00:00
* rectangle set
2010-12-21 06:50:35 +00:00
* point quad tree
2012-07-27 15:42:29 +00:00
* multi type matrix
* multi type vector
2010-07-08 04:16:14 +00:00
%package devel
Group: Development/Libraries
Summary: Headers for %{name}
Requires: boost-devel
%description devel
Headers for %{name}.
%prep
%setup -q -n %{name}_%{version}
# this is only used in tests
2010-11-16 10:56:50 +00:00
sed -i -e '/^CPPFLAGS/s/-Wall.*-std/%{optflags} -std/' Makefile.in
2010-07-08 04:16:14 +00:00
%build
2010-11-16 10:56:50 +00:00
%configure
2010-07-08 04:16:14 +00:00
%install
mkdir -p %{buildroot}/%{_includedir}
mkdir %{buildroot}/%{_includedir}/mdds
2010-11-16 10:56:50 +00:00
cp -pr include/mdds/* %{buildroot}/%{_includedir}/mdds
2010-07-08 04:16:14 +00:00
%check
make %{?_smp_mflags}
for t in fst pqt recset st; do
make test.$t
done
2010-11-16 10:56:50 +00:00
2010-07-08 04:16:14 +00:00
%files devel
%{_includedir}/mdds
2011-03-30 07:04:30 +00:00
%doc AUTHORS COPYING NEWS README
2010-07-08 04:16:14 +00:00
%changelog
2012-07-24 08:30:35 +00:00
* Mon Jul 23 2012 David Tardon <dtardon@redhat.com> - 0.6.0-1
- new version
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
2011-11-18 08:01:37 +00:00
* Fri Nov 18 2011 David Tardon <dtardon@redhat.com> - 0.5.4-1
- new version
2011-07-14 06:36:42 +00:00
* Thu Jul 14 2011 David Tardon <dtardon@redhat.com> - 0.5.3-1
- new version
2011-03-30 07:04:30 +00:00
* Wed Mar 30 2011 David Tardon <dtardon@redhat.com> - 0.5.2-2
- install license
2011-03-29 11:18:43 +00:00
* Tue Mar 29 2011 David Tardon <dtardon@redhat.com> - 0.5.2-1
2011-03-30 07:04:30 +00:00
- new version
2011-03-29 11:18:43 +00:00
* Thu Mar 24 2011 David Tardon <dtardon@redhat.com> - 0.5.1-3
- Resolves: rhbz#680766 fix a crash and two other bugs
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
2011-01-08 15:06:40 +00:00
* Sat Jan 08 2011 David Tardon <dtardon@redhat.com> - 0.5.1-1
- new version
2010-12-21 06:50:35 +00:00
* Tue Dec 21 2010 David Tardon <dtardon@redhat.com> - 0.4.0-1
- new version
2010-11-16 10:56:50 +00:00
* Tue Nov 16 2010 David Tardon <dtardon@redhat.com> - 0.3.1-1
- new version
2010-07-08 04:16:14 +00:00
* Wed Jul 07 2010 Caolán McNamara <caolanm@redhat.com> - 0.3.0-2
- rpmlint warnings
* Wed Jun 30 2010 David Tardon <dtardon@redhat.com> - 0.3.0-1
- initial import