blob: e03d78c6c525d69a4cd2cbbd1c03c478b6ee5e3f (
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
65
66
67
68
69
70
|
%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.6
Release: 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: python-networkx
BuildRequires: mailman >= 3:3.0.0
BuildRequires: python-whoosh
BuildRequires: python-mailman-client
Requires: python-mock
Requires: python-dateutil < 2.0
Requires: python-storm
Requires: python-zope-interface
Requires: python-networkx
Requires: mailman >= 3:3.0.0
Requires: python-whoosh
Requires: python-mailman-client
%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/hyperkitty/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
|