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