]> git.pld-linux.org Git - packages/Zope-CMFCollector.git/blob - Zope-CMFCollector.spec
e656f3ce3eb779a01d1b16b72454edf3672ccf15
[packages/Zope-CMFCollector.git] / Zope-CMFCollector.spec
1 %define         zope_subname    CMFCollector
2 Summary:        An issue collector for Zopei
3 Summary(pl):    Dodatek do Zope umo¿liwiaj±cy zbieranie wyników
4 Name:           Zope-%{zope_subname}
5 Version:        0.93
6 Release:        2
7 License:        GPL
8 Group:          Development/Tools
9 Source0:        http://zope.org/Members/bowerymarc/%{zope_subname}-update/%{version}/%{zope_subname}.%{version}.tgz
10 # Source0-md5:  742fc8c28c073311b00b5104ff75c26f
11 URL:            http://zope.org/Members/bowerymarc/CMFCollector-update/
12 %pyrequires_eq  python-modules
13 Requires:       Zope-CMF >= 1.2
14 Requires:       Zope >= 2.4
15 Requires(post,postun):  /usr/sbin/installzopeproduct
16 BuildArch:      noarch
17 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18 Conflicts:      CMF
19
20 %description
21 CMFCollector is an issue collector for Zope.
22
23 %description -l pl
24 CMFCollector jest dodatkiem do Zope umo¿liwiaj±cym zbieranie wyników.
25
26 %prep
27 %setup -q -n %{zope_subname}
28 find . -type f -name .DS_Store | xargs rm -rf
29
30 %install
31 rm -rf $RPM_BUILD_ROOT
32 install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
33
34 cp -af {Extensions,dtml,help,image_sources,skins,tests,*.py,*.zexp,version.txt} $RPM_BUILD_ROOT%{_datadir}/%{name}
35
36 %py_comp $RPM_BUILD_ROOT%{_datadir}/%{name}
37 %py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{name}
38
39 # find $RPM_BUILD_ROOT -type f -name "*.py" -exec rm -rf {} \;;
40
41 %clean
42 rm -rf $RPM_BUILD_ROOT
43
44 %post
45 /usr/sbin/installzopeproduct %{_datadir}/%{name} %{zope_subname}
46 if [ -f /var/lock/subsys/zope ]; then
47         /etc/rc.d/init.d/zope restart >&2
48 fi
49
50 %postun
51 if [ "$1" = "0" ]; then
52         /usr/sbin/installzopeproduct -d %{zope_subname}
53         if [ -f /var/lock/subsys/zope ]; then
54                 /etc/rc.d/init.d/zope restart >&2
55         fi
56 fi
57
58 %files
59 %defattr(644,root,root,755)
60 %doc CHANGELOG.txt INSTALL.txt KNOWN_PROBLEMS.txt README.txt TODO.txt RELEASE_NOTES.txt
61 %{_datadir}/%{name}
This page took 0.060256 seconds and 2 git commands to generate.