Changes of Revision 2
[-] | Added | trac-git-plugin.spec |
x 1
2 +Name: trac-git-plugin 3 +Version: 0.0.1 4 +Release: 0 5 +Summary: GIT version control plugin for Trac 6 + 7 +Group: Development/Libraries 8 +License: GPL 9 +URL: http://trac-hacks.org/wiki/GitPlugin 10 +# Source comes from SVN right now: svn co -r %{svnrev} http://trac-hacks.org/svn/gitplugin; \ 11 +# cd gitplugin/0.10/; \ 12 +# python setup.py sdist --formats gztar 13 +Source0: TracGit-%{version}.tar.gz 14 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) 15 + 16 +BuildArch: noarch 17 +BuildRequires: python-devel 18 +BuildRequires: python-setuptools 19 +Requires: git-core trac python-setuptools 20 + 21 +%description 22 +This Trac plugin provides support for the GIT SCM. 23 + 24 +%prep 25 +%setup -n TracGit-%{version} -q 26 + 27 + 28 +%build 29 +%{__python} setup.py build 30 + 31 + 32 +%install 33 +rm -rf $RPM_BUILD_ROOT 34 + 35 +%{__python} setup.py install --prefix=%{_prefix} --root=%{buildroot} --record-rpm=INSTALLED_FILES 36 + 37 + 38 + 39 +%clean 40 +rm -rf $RPM_BUILD_ROOT 41 + 42 + 43 +%files -f INSTALLED_FILES 44 +%defattr(-,root,root,-) 45 +%doc COPYING README 46 + 47 + 48 + 49 +%changelog 50 +* Mon Oct 15 2007 Peter Nixon 51 +- Update to work with SUSE 52 + 53 +* Thu Jul 05 2007 Jesse Keating <jkeating@redhat.com> - 0.0.1-3.20070705svn1536 54 +- Require trac and python-setuptools as well 55 + 56 +* Thu Jul 05 2007 Jesse Keating <jkeating@redhat.com> - 0.0.1-2.20070705svn1536 57 +- Require git-core 58 + 59 +* Thu Jul 05 2007 Jesse Keating <jkeating@redhat.com> - 0.0.1-1.20070705svn1536 60 +- Initial build 61 |