]> git.pld-linux.org Git - packages/Zope-BTreeFolder2.git/blob - Zope-BTreeFolder2.spec
- release 2 for rebuild with python 2.4
[packages/Zope-BTreeFolder2.git] / Zope-BTreeFolder2.spec
1 %define         zope_subname    BTreeFolder2
2 Summary:        Zope product that acts like a Zope folder but can store many more items
3 Summary(pl):    Dodatek do Zope rozszerzaj±cy mo¿liwo¶ci pracy na folderach
4 Name:           Zope-%{zope_subname}
5 Version:        1.0.1
6 Release:        2
7 License:        ZPL 2.0
8 Group:          Development/Tools
9 Source0:        http://hathawaymix.org/Software/%{zope_subname}/%{zope_subname}-%{version}.tar.gz
10 # Source0-md5:  14c5904cd5b4fd1f64e89ca489e4e049
11 URL:            http://hathawaymix.org/Software/BTreeFolder2/
12 %pyrequires_eq  python-modules
13 Requires:       Zope
14 Requires(post,postun):  /usr/sbin/installzopeproduct
15 BuildArch:      noarch
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 BTreeFolder2 is a Zope product that acts like a Zope folder but can
20 store many more items.
21
22 %description -l pl
23 BTreeFolder2 jest dodatkiem do Zope rozszerzaj±cym mo¿liwo¶ci pracy na
24 folderach.
25
26 %prep
27 %setup -q -n %{zope_subname}
28
29 %install
30 rm -rf $RPM_BUILD_ROOT
31 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
32 cp -af tests *.py *.dtml *.gif version.txt $RPM_BUILD_ROOT%{_datadir}/%{name}
33
34 %py_comp $RPM_BUILD_ROOT%{_datadir}/%{name}
35 %py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{name}
36
37 # find $RPM_BUILD_ROOT -type f -name "*.py" -exec rm -rf {} \;;
38
39 %clean
40 rm -rf $RPM_BUILD_ROOT
41
42 %post
43 /usr/sbin/installzopeproduct %{_datadir}/%{name} %{zope_subname}
44 if [ -f /var/lock/subsys/zope ]; then
45         /etc/rc.d/init.d/zope restart >&2
46 fi
47
48 %postun
49 if [ "$1" = "0" ]; then
50         /usr/sbin/installzopeproduct -d %{zope_subname} 
51         if [ -f /var/lock/subsys/zope ]; then
52                 /etc/rc.d/init.d/zope restart >&2
53         fi
54 fi
55
56 %files
57 %defattr(644,root,root,755)
58 %doc README.txt CHANGES.txt
59 %{_datadir}/%{name}
This page took 0.087299 seconds and 4 git commands to generate.