]> git.pld-linux.org Git - packages/Zope-FSDump.git/blob - Zope-FSDump.spec
- release 2 for rebuild with python 2.4
[packages/Zope-FSDump.git] / Zope-FSDump.spec
1 %define         zope_subname    FSDump
2 Summary:        Exports through-the-web objects (folders, DTML, etc.) as "natural" filesystem equivalents
3 Summary(pl):    Pakiet umo¿liwiaj±cy "zrzut" obiektów z Zope
4 Name:           Zope-%{zope_subname}
5 Version:        0.8.1
6 Release:        2
7 License:        ZPL 2.0
8 Group:          Development/Tools
9 Source0:        http://zope.org/Members/tseaver/%{zope_subname}/%{zope_subname}-%{version}/%{zope_subname}-%{version}.tar.gz
10 # Source0-md5:  e9e57e1704387e4de022db7d6011abfb
11 URL:            http://zope.org/Members/tseaver/FSDump/
12 Requires(post,postun):  /usr/sbin/installzopeproduct
13 %pyrequires_eq  python-modules
14 Requires:       Zope
15 BuildArch:      noarch
16 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18 %description
19 FSDump exports through-the-web objects (folders, DTML, etc.) 
20 as "natural" filesystem equivalents.
21
22 %description -l pl
23 FSDump umo¿liwia "zrzut" obiektów z Zope.
24
25 %prep
26 %setup -q -n %{zope_subname}-%{version}
27
28 %install
29 rm -rf $RPM_BUILD_ROOT
30 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
31
32 cp -af FSDump/{help,interfaces,www,*.py,version.txt} \
33         $RPM_BUILD_ROOT%{_datadir}/%{name}
34
35 %py_comp $RPM_BUILD_ROOT%{_datadir}/%{name}
36 %py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{name}
37
38 # find $RPM_BUILD_ROOT -type f -name "*.py" -exec rm -rf {} \;;
39
40 %clean
41 rm -rf $RPM_BUILD_ROOT
42
43 %post
44 /usr/sbin/installzopeproduct %{_datadir}/%{name} %{zope_subname}
45 if [ -f /var/lock/subsys/zope ]; then
46         /etc/rc.d/init.d/zope restart >&2
47 fi
48
49 %postun
50 if [ "$1" = "0" ]; then
51         /usr/sbin/installzopeproduct -d %{zope_subname}
52         if [ -f /var/lock/subsys/zope ]; then
53                 /etc/rc.d/init.d/zope restart >&2
54         fi
55 fi
56
57 %files
58 %defattr(644,root,root,755)
59 %doc FSDump/{CHANGES.txt,INSTALL.txt,README.txt,TODO.txt}
60 %{_datadir}/%{name}
This page took 0.050206 seconds and 3 git commands to generate.