]> git.pld-linux.org Git - packages/Zope-CMFSin.git/blame_incremental - Zope-CMFSin.spec
- converted to UTF-8
[packages/Zope-CMFSin.git] / Zope-CMFSin.spec
... / ...
CommitLineData
1%define zope_subname CMFSin
2Summary: A Zope product that is a simple syndication client for CMF
3Summary(pl.UTF-8): Dodatek do Zope będący prostym klientem "korporacyjnym" dla CMF
4Name: Zope-%{zope_subname}
5Version: 0.6.1
6Release: 8
7License: GPL
8Group: Development/Tools
9Source0: http://dl.sourceforge.net/collective/%{zope_subname}.tar.gz
10# Source0-md5: a50ab5b9c13526a6a52397d556b09e84
11URL: http://sourceforge.net/projects/collective/
12BuildRequires: python
13BuildRequires: rpmbuild(macros) >= 1.268
14%pyrequires_eq python-modules
15Requires(post,postun): /usr/sbin/installzopeproduct
16Requires: Zope
17Requires: Zope-CMF
18Conflicts: CMF
19BuildArch: noarch
20BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
21
22%description
23This is a simple syndication client for CMF. It uses rssparser and
24shares many things in common with CMFNewsFeed but has a different
25model for handling channels. It is designed to map _n_ channels or
26feeds to sets of composite virtual channels which can then be called
27in in a timely fashion.
28
29%description -l pl.UTF-8
30CMFSin jest prostym klientem "korporacyjnym" dla CMF. Umożliwia
31parsowanie rss i posiada wiele możliwości jakie daje CMFNewsFeed, lecz
32różni się innym modelem obsługi kanałów. Jest opracowany tak, by
33odwzorowywać _n_ kanałów lub strumieni na zbiory połączonych
34wirtualnych kanałów, które mogą być wywoływane o określonej porze.
35
36%prep
37%setup -q -n %{zope_subname}
38
39find . -type d -name CVS | xargs rm -rf
40
41%install
42rm -rf $RPM_BUILD_ROOT
43install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
44
45cp -af {Extensions,skins,www,*.py,*.cfg,*.gif,version.txt,refresh.txt} $RPM_BUILD_ROOT%{_datadir}/%{name}
46
47%py_comp $RPM_BUILD_ROOT%{_datadir}/%{name}
48%py_ocomp $RPM_BUILD_ROOT%{_datadir}/%{name}
49
50# find $RPM_BUILD_ROOT -type f -name "*.py" -exec rm -rf {} \;;
51
52%clean
53rm -rf $RPM_BUILD_ROOT
54
55%post
56/usr/sbin/installzopeproduct %{_datadir}/%{name} %{zope_subname}
57%service -q zope restart
58
59%postun
60if [ "$1" = "0" ]; then
61 /usr/sbin/installzopeproduct -d %{zope_subname}
62 %service -q zope restart
63fi
64
65%files
66%defattr(644,root,root,755)
67%doc docs/* README.txt
68%{_datadir}/%{name}
This page took 0.070172 seconds and 4 git commands to generate.