]> git.pld-linux.org Git - packages/Zope-zopeedit.git/blame - Zope-zopeedit.spec
- remove R:python
[packages/Zope-zopeedit.git] / Zope-zopeedit.spec
CommitLineData
8ba5753d 1%define zope_subname zopeedit
2Summary: Client-side helper application for ExternalEditor Zope product
d6b25d12 3Summary(pl): Aplikacja kliencka dla ExternalEditor, produktu Zope
8ba5753d 4Name: Zope-%{zope_subname}
143bee39 5Version: 0.8
466bacef 6Release: 3
8ba5753d 7License: ZPL 2.0
8Group: Development/Tools
9Source0: http://zope.org/Members/Caseman/ExternalEditor/%{version}/%{zope_subname}-%{version}-src.tgz
143bee39 10# Source0-md5: 8ecc65067d32ac961476f924fa3e8b5b
8ba5753d 11URL: http://zope.org/Members/Caseman/ExternalEditor/
d9f7891a
JB
12Requires(post,postun): grep
13Requires(postun): fileutils
8ba5753d 14%pyrequires_eq python-modules
15Requires: python-tkinter
8ba5753d 16BuildArch: noarch
17BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
18
19%description
20Client-side helper application for ExternalEditor Zope product
21
22%description -l pl
0ed72d96 23Aplikacja kliencka dla ExternalEditor, produktu Zope
8ba5753d 24
25%prep
26%setup -q -n %{zope_subname}-%{version}-src
27
28%install
29rm -rf $RPM_BUILD_ROOT
30install -d $RPM_BUILD_ROOT{%{_datadir}/%{zope_subname},%{_mandir}/man1,%{_bindir}}
31
32install man/*.1 $RPM_BUILD_ROOT%{_mandir}/man1
143bee39 33cp -af {Plugins,version.txt,%{zope_subname}.py} $RPM_BUILD_ROOT%{_datadir}/%{zope_subname}
8ba5753d 34
35%py_comp $RPM_BUILD_ROOT%{_datadir}/%{zope_subname}
36%py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{zope_subname}
37
38cat >$RPM_BUILD_ROOT%{_bindir}/%{zope_subname} <<EOF
39#!/bin/sh
40
41exec %{_bindir}/python %{_datadir}/%{zope_subname}/%{zope_subname}.pyo \$*
42EOF
43
44# sometimes .py needed
45# rm -f $RPM_BUILD_ROOT%{_datadir}/%{zope_subname}/*.py
46# rm -f $RPM_BUILD_ROOT%{_datadir}/%{zope_subname}/Plugins/*.py
47
48%clean
49rm -rf $RPM_BUILD_ROOT
50
51%post
d9f7891a
JB
52if ! grep -qs zopeedit /etc/mailcap ; then
53 umask 022
8ba5753d 54 echo "application/x-zope-edit; /usr/bin/zopeedit %%s ; test=test -x /usr/bin/zopeedit" >> /etc/mailcap
55fi
56
57%postun
d9f7891a
JB
58if [ "$1" = "0" ]; then
59 if grep -qs zopeedit /etc/mailcap ; then
60 umask 022
61 grep -v '^application/x-zope-edit; /usr/bin/zopeedit %%s ; test=test -x /usr/bin/zopeedit$' /etc/mailcap >> /etc/mailcap_new
62 mv -f /etc/mailcap_new /etc/mailcap
63 fi
7b5dc062 64fi
8ba5753d 65
66%files
67%defattr(644,root,root,755)
1f215146 68%doc CHANGES.txt INSTALL-UNIX.txt README.txt
8ba5753d 69%attr(755,root,root) %{_bindir}/%{zope_subname}
70%{_datadir}/%{zope_subname}
71%{_mandir}/man1/*
This page took 0.155937 seconds and 4 git commands to generate.