summaryrefslogtreecommitdiffstats
path: root/kittystore.spec
blob: 56383f4b8b1b8a1837d493f5830f0f54b7f35d3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
%global pypi_name KittyStore
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}

Name:           kittystore
Version:        0.1.4
Release:        0.1%{?dist}
Summary:        A storage engine for GNU Mailman v3 archives

License:        GPLv3
URL:            https://fedorahosted.org/hyperkitty/
Source0:        http://pypi.python.org/packages/source/K/%{pypi_name}/%{pypi_name}-%{version}.tar.gz

BuildArch:      noarch
BuildRequires:  python-devel

BuildRequires:  python-nose
BuildRequires:  python-mock
BuildRequires:  python-dateutil < 2.0
BuildRequires:  python-storm
BuildRequires:  python-zope-interface
BuildRequires:  mailman >= 3.0.0b2
Requires:  python-mock
Requires:  python-dateutil < 2.0
Requires:  python-storm
Requires:  python-zope-interface
Requires:  mailman >= 3.0.0b2

%description
KittyStore is the archiving library for HyperKitty, the Mailman 3 archiver.
It provides an interface to different storage systems. Currently only the
Storm ORM system is supported.

The code is available from:
https://github.com/pypingou/kittystore


%prep
%setup -q -n %{pypi_name}-%{version}
# Remove bundled egg-info
rm -rf %{pypi_name}.egg-info


%build
%{__python} setup.py build


%install
rm -rf $RPM_BUILD_ROOT
%{__python} setup.py install --skip-build --root %{buildroot}

%check
%{__python} %{_bindir}/nosetests
#%{__python} setup.py test

%files
%doc README.rst COPYING.txt AUTHORS.txt
%{_bindir}/kittystore-*
%{python_sitelib}/kittystore
%{python_sitelib}/%{pypi_name}-%{version}-py?.?.egg-info


%changelog
* Wed Nov 28 2012 Aurelien Bompard <abompard@fedoraproject.org> - 0.1.3
- initial package