1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
%define name moin
%define version 1.5.3
%define release 1
#Upgrade Path Example:
# moin-1.3-0.1.beta1
# Patched
# moin-1.3-0.2.beta1
# Move to beta2
# moin-1.3-0.3.beta2
# Move to beta3 and simultaneously patch
# moin-1.3-0.4.beta3
# Patched again
# moin-1.3-0.5.beta3
# Move to rc1
# moin-1.3-0.6.rc1
# Move to rc2
# moin-1.3-0.7.rc2
# Move to "final"
# moin-1.3-1
# Patched
# moin-1.3-2
Name: %{name}
Version: %{version}
Release: %{release}
Source0: %{name}-%{version}.tar.gz
Summary: MoinMoin Wiki engine
Group: Applications/Internet
License: GPL
URL: http://moinmoin.wikiwikiweb.de
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildArchitectures: noarch
BuildRequires: python-devel
Requires: python >= 2.3
%description
A WikiWikiWeb is a collaborative hypertext environment, with an
emphasis on easy access to and modification of information. MoinMoin
is a Python WikiClone that allows you to easily set up your own wiki,
only requiring a Python installation.
%prep
%setup
%build
# replace python by python2 if python refers to version 1.5 on your system
python setup.py build
%install
# replace python by python2 if python refers to version 1.5 on your system
python setup.py install --root=$RPM_BUILD_ROOT --record=INSTALLED_FILES
%clean
rm -rf $RPM_BUILD_ROOT
%files -f INSTALLED_FILES
%defattr(-,root,root)
%doc README docs/CHANGES docs/INSTALL.html docs/licenses/COPYING
%changelog
* Fri Mar 05 2004 Florian Festi
- Initial RPM release.
|