]> git.pld-linux.org Git - packages/Zope-GroupUserFolder.git/blob - Zope-GroupUserFolder.spec
- cleaning
[packages/Zope-GroupUserFolder.git] / Zope-GroupUserFolder.spec
1 %include        /usr/lib/rpm/macros.python
2 %define         zope_subname    GroupUserFolder
3 Summary:        A Zope product, a convenient tool to manage groups of users within Zope
4 Summary(pl):    Dodatek do Zope z wygodnym narzêdziem do zarz±dzaniem grupami i u¿ytkownikami w Zope
5 Name:           Zope-%{zope_subname}
6 Version:        1.32
7 Release:        2
8 License:        GPL v2+
9 Group:          Development/Tools
10 Source0:        http://dl.sourceforge.net/collective/%{zope_subname}-%{version}.tar.gz
11 # Source0-md5:  12066901e073b148422058876adc0773
12 URL:            http://sourceforge.net/projects/collective/
13 %pyrequires_eq  python-modules
14 Requires:       Zope
15 Requires(post,postun):  /usr/sbin/installzopeproduct
16 BuildArch:      noarch
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19 %description
20 GroupUserFolder is a Zope product that is a convenient tool to manage
21 groups of users within Zope.
22
23 %description -l pl
24 GroupUserFolder jest dodatkiem dla Zope zawieraj±cym wygodne narzêdzie
25 do zarz±dzania grupami i u¿ytkownikami zawartymi w Zope.
26
27 %prep
28 %setup -q -n %{zope_subname}
29
30 rm -f interfaces/.cvsignore
31
32 %install
33 rm -rf $RPM_BUILD_ROOT
34 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
35
36 # should tests be included or not?
37 cp -af {Extensions,doc,dtml,interfaces,skins,tests,website,www,*.py,*.gif} \
38         $RPM_BUILD_ROOT%{_datadir}/%{name}
39
40 %py_comp $RPM_BUILD_ROOT%{_datadir}/%{name}
41 %py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{name}
42
43 # find $RPM_BUILD_ROOT -type f -name "*.py" -exec rm -rf {} \;;
44
45 %clean
46 rm -rf $RPM_BUILD_ROOT
47
48 %post
49 /usr/sbin/installzopeproduct %{_datadir}/%{name} %{zope_subname}
50 if [ -f /var/lock/subsys/zope ]; then
51         /etc/rc.d/init.d/zope restart >&2
52 fi
53
54 %postun
55 if [ "$1" = "0" ]; then
56         /usr/sbin/installzopeproduct -d %{zope_subname} 
57         if [ -f /var/lock/subsys/zope ]; then
58                 /etc/rc.d/init.d/zope restart >&2
59         fi
60 fi
61
62 %files
63 %defattr(644,root,root,755)
64 %doc CHANGES CONTRIBUTORS README-Plone.stx README.txt TODO
65 %{_datadir}/%{name}
This page took 0.075629 seconds and 3 git commands to generate.