]> git.pld-linux.org Git - packages/python-jwzthreading.git/blame_incremental - python-jwzthreading.spec
automatic change: use py_build/py_install macros
[packages/python-jwzthreading.git] / python-jwzthreading.spec
... / ...
CommitLineData
1%define module jwzthreading
2Summary: Implementation of algorithm for threading mail messages
3Summary(pl.UTF-8): Implementacja algorytmu wątkowania wiadomości pocztowych
4Name: python-%{module}
5Version: 0.91
6Release: 4
7License: BSD-like (see LICENSE)
8Group: Libraries/Python
9Source0: http://www.amk.ca/files/python/%{module}-%{version}.tar.gz
10# Source0-md5: 567f17b0189d90f570961b8f5d487795
11URL: http://www.amk.ca/python/code/jwz.html
12%pyrequires_eq python
13BuildRequires: python-devel >= 1:2.3
14BuildRequires: python-modules
15BuildRequires: rpm-pythonprov
16BuildArch: noarch
17BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19%description
20This is an implementation of a fast and smart algorithm for threading
21mail messages, as described by Jamie Zawinski at
22http://www.jwz.org/doc/threading.html .
23
24%description -l pl.UTF-8
25Implementacja szybkiego i sprawnego algorytmu wątkowania poczty,
26opisana przez Jamie Zawinskiego na stronie
27http://www.jwz.org/doc/threading.html .
28
29%prep
30%setup -q -n %{module}-%{version}
31
32%build
33%py_build
34
35%install
36rm -rf $RPM_BUILD_ROOT
37install -d $RPM_BUILD_ROOT%{py_sitescriptdir}
38
39%py_install
40
41find $RPM_BUILD_ROOT%{py_sitescriptdir} -type f -name "*.py" -exec rm {} \;
42
43%clean
44rm -rf $RPM_BUILD_ROOT
45
46%files
47%defattr(644,root,root,755)
48%doc LICENSE CHANGES.txt README
49%{py_sitescriptdir}/%{module}.py?
This page took 0.325036 seconds and 4 git commands to generate.