]> git.pld-linux.org Git - packages/Zope-Event.git/blob - Zope-Event.spec
- fixed summary/description/license
[packages/Zope-Event.git] / Zope-Event.spec
1 Summary:        Simple event system
2 Name:           Zope-Event
3 Version:        3.4.0
4 Release:        1
5 License:        ZPL 2.1
6 Group:          Libraries/Python
7 Source0:        http://download.zope.org/distribution/zope.event-%{version}.tar.gz
8 # Source0-md5:  3a3d4bb9b6275149a05628262aba531f
9 URL:            http://www.zope.org/
10 BuildRequires:  python
11 BuildRequires:  python-devel
12 %pyrequires_eq  python-modules
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 The zope.event package provides a simple event system.  It provides:
17 - an event publishing system
18 - a very simple event-dispatching system on which more sophisticated event
19   dispatching systems can be built.  (For example, a type-based event
20   dispatching system that builds on zope.event can be found in
21   zope.component
22
23
24 %prep
25 %setup -q -n zope.event-%{version}
26
27 %build
28 python ./setup.py build
29
30 %install
31 rm -rf $RPM_BUILD_ROOT
32
33 python ./setup.py install \
34         --optimize 2 \
35         --root=$RPM_BUILD_ROOT
36
37 %{py_postclean}
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %files
43 %defattr(644,root,root,755)
44 %{py_sitescriptdir}/zope/event
45 %{py_sitescriptdir}/zope*egg*
46 %{py_sitescriptdir}/zope*pth
This page took 0.064808 seconds and 5 git commands to generate.