]> git.pld-linux.org Git - packages/Quotient.git/blob - Quotient.spec
BR: rpmbuild(macros) >= 1.710
[packages/Quotient.git] / Quotient.spec
1 Summary:        A conversation server built using Twisted
2 Summary(pl.UTF-8):      Serwer konwersacyjny tworzony przy użyciu środowiska Twisted
3 Name:           Quotient
4 Version:        0.9.1
5 Release:        4
6 License:        LGPL
7 Group:          Applications/Communications
8 Source0:        http://www.divmod.org/users/release/divmod/%{name}-%{version}.tar.gz
9 # Source0-md5:  406fdd2160843bc3be43486b8e30273f
10 URL:            http://www.divmod.org/Home/
11 BuildRequires:  rpmbuild(macros) >= 1.710
12 BuildRequires:  python-devel >= 1:2.3
13 %pyrequires_eq  python-modules
14 Requires:       python >= 2.3
15 Requires:       python-Imaging >= 1.1.4
16 Requires:       python-Lupy >= 0.2.1
17 Requires:       python-Twisted >= 1.3.0
18 Requires:       python-atop = %{version}-%{release}
19 Requires:       python-nevow >= 0.2.0
20 Requires:       python-pyOpenSSL
21 Requires:       spambayes >= 1.0a7-0.2
22 BuildArch:      noarch
23 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
24
25 %description
26 Quotient's primary function is a full-featured email platform, which
27 can act as an IMAP4, POP3, SMTP, server and client. It also has a
28 seamlessly integrated web-mail interface and spam filtering using
29 Spambayes, which is trainable either through the web UI or through
30 IMAP.
31
32 In future Quotient will be a person-centric application server, and a
33 simulation of your personal reality. It keeps track of your
34 communications and enables you to effortlessly prioritize your
35 commitments.
36
37 %description -l pl.UTF-8
38 Obecnie główną funkcją Quotient jest bycie w pełni wyposażoną
39 platformą email, spełniającą zadania klientów oraz serwerów protokołów
40 IMAP4, POP3 i SMTP. Quotient posiada też zintegrowany interfejs
41 odbioru poczty poprzez WWW oraz filtr niechcianej poczty używający
42 bayesowskich technik wykrywania niechcianych wiadomości, który może
43 być rozszerzany poprzez interfejs WWW lub IMAP.
44
45 W przyszłości Quotient rozwinie się do nakierowanego na osobę serwera
46 aplikacji. Quotient będzie śledził i utrzymywał informacje o
47 kontaktach oraz umożliwiał łatwe zarządzanie stopniem zaangażowania.
48
49 %package -n python-atop
50 Summary:        A simple transactional object database built on Berkeley DB
51 Summary(pl.UTF-8):      Prosta transakcyjna obiektowa baza danych oparta o Berkeley DB
52 Group:          Libraries/Python
53 Requires:       python-Twisted >= 1.3.0
54 Requires:       python-bsddb
55
56 %description -n python-atop
57 ATOP, the Atomic Transactional Object Persistor, is a Python object
58 database implemented atop the Berkeley DB and bsddb python module,
59 with functional similarities to other python packages such as ZODB and
60 COG.
61
62 Atop was designed in support of the Quotient messaging server. The
63 primary requirement was for a low-latency data store that was still
64 reliable and transactional, and still amenable to on-the-fly upgrading
65 and rapid code iterations.
66
67 %description -n python-atop -l pl.UTF-8
68 ATOP (Atomic Transactional Object Persistor) jest obiektową bazą
69 danych implementującą interfejsy Berkeley DB i bsddb, z
70 funkcjonalnością podobną do innych pakietów pythona takich jak ZODB i
71 COG.
72
73 Atop został rozwinięty jako część serwera komunikacyjnego Quotient.
74
75 %package doc
76 Summary:        Documentation for Quotient conversation server
77 Summary(pl.UTF-8):      Dokumentacja dla serwera komunikacyjnego Quotient
78 Group:          Documentation
79 Requires:       %{name} = %{version}-%{release}
80
81 %description doc
82 This package contains documentation files for Quotient conversation
83 server.
84
85 %description doc -l pl.UTF-8
86 Pakiet zawierający dokumentację dla serwera komunikacyjnego Quotient.
87
88 %package utils
89 Summary:        Tools for Quotient conversation server
90 Summary(pl.UTF-8):      Programy narzędziowe dla serwera komunikacyjnego Quotient
91 Group:          Applications/Communications
92 Requires:       %{name} = %{version}-%{release}
93
94 %description utils
95 This package contains tools for Quotient conversation server.
96
97 %description utils -l pl.UTF-8
98 Pakiet zawierający programy narzędziowe dla serwera komunikacyjnego
99 Quotient.
100
101 %prep
102 %setup -q
103
104 %build
105 python setup.py build_ext
106
107 %install
108 rm -rf $RPM_BUILD_ROOT
109 install -d $RPM_BUILD_ROOT{%{py_sitescriptdir},%{_datadir}/quotient}
110
111 %py_install \
112         --install-lib=%{py_sitescriptdir} \
113         --optimize=2
114
115 find $RPM_BUILD_ROOT%{py_sitescriptdir} -name \*.py -exec rm {} \;
116
117 cp -a tools/* admin $RPM_BUILD_ROOT%{_datadir}/quotient
118
119 %clean
120 rm -rf $RPM_BUILD_ROOT
121
122 %files
123 %defattr(644,root,root,755)
124 %doc README
125 %{py_sitescriptdir}/quotient
126
127 %files -n python-atop
128 %defattr(644,root,root,755)
129 %{py_sitescriptdir}/atop
130
131 %files doc
132 %defattr(644,root,root,755)
133 %doc doc/*
134
135 %files utils
136 %defattr(644,root,root,755)
137 %{_datadir}/quotient
This page took 0.085157 seconds and 3 git commands to generate.