]> git.pld-linux.org Git - packages/Zope-FSDump.git/blob - Zope-FSDump.spec
- use %service
[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.9.2
6 Release:        1
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:  c8bb0b5fa3e04bfe1dfa811271e37871
11 URL:            http://zope.org/Members/tseaver/FSDump/
12 BuildRequires:  python
13 BuildRequires:  rpmbuild(macros) >= 1.268
14 Requires(post,postun):  /usr/sbin/installzopeproduct
15 %pyrequires_eq  python-modules
16 Requires:       Zope
17 BuildArch:      noarch
18 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20 %description
21 FSDump exports through-the-web objects (folders, DTML, etc.) as
22 "natural" filesystem equivalents.
23
24 %description -l pl
25 FSDump umo¿liwia "zrzut" obiektów z Zope.
26
27 %prep
28 %setup -q -n %{zope_subname}-%{version}
29
30 %install
31 rm -rf $RPM_BUILD_ROOT
32 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
33
34 cp -af FSDump/{help,interfaces,www,*.py,version.txt} \
35         $RPM_BUILD_ROOT%{_datadir}/%{name}
36
37 %py_comp $RPM_BUILD_ROOT%{_datadir}/%{name}
38 %py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{name}
39
40 # find $RPM_BUILD_ROOT -type f -name "*.py" -exec rm -rf {} \;;
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %post
46 /usr/sbin/installzopeproduct %{_datadir}/%{name} %{zope_subname}
47 %service -q zope restart
48
49 %postun
50 if [ "$1" = "0" ]; then
51         /usr/sbin/installzopeproduct -d %{zope_subname}
52         %service -q zope restart
53 fi
54
55 %files
56 %defattr(644,root,root,755)
57 %doc FSDump/{CHANGES.txt,INSTALL.txt,README.txt,TODO.txt}
58 %{_datadir}/%{name}
This page took 0.095276 seconds and 3 git commands to generate.