rpms/trac-git-plugin/F-11 import.log, NONE, 1.1 .cvsignore, 1.2, 1.3 sources, 1.2, 1.3 trac-git-plugin.spec, 1.7, 1.8 0001-Add-a-dummy-get_last_modified-to-avoid-an-exceptio.patch, 1.1, NONE 0002-Add-caching-logic.patch, 1.1, NONE 0003-Add-a-quick-hack-to-prevent-code-500-errors-and-trac.patch, 1.1, NONE 0004-Fixed-directory-creation.patch, 1.1, NONE

Jesse Keating jkeating at fedoraproject.org
Tue May 12 21:24:50 UTC 2009


Author: jkeating

Update of /cvs/pkgs/rpms/trac-git-plugin/F-11
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv18768/F-11

Modified Files:
	.cvsignore sources trac-git-plugin.spec 
Added Files:
	import.log 
Removed Files:
	0001-Add-a-dummy-get_last_modified-to-avoid-an-exceptio.patch 
	0002-Add-caching-logic.patch 
	0003-Add-a-quick-hack-to-prevent-code-500-errors-and-trac.patch 
	0004-Fixed-directory-creation.patch 
Log Message:
Update to work with Trac 0.11



--- NEW FILE import.log ---
trac-git-plugin-0_11_0_2-4_20090511svn5396_fc12:F-11:trac-git-plugin-0.11.0.2-4.20090511svn5396.fc12.src.rpm:1242163380


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/trac-git-plugin/F-11/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- .cvsignore	6 Jul 2007 02:58:03 -0000	1.2
+++ .cvsignore	12 May 2009 21:24:19 -0000	1.3
@@ -1 +1 @@
-TracGit-0.0.1.tar.gz
+TracGit-0.11.0.2.tar.gz


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/trac-git-plugin/F-11/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -p -r1.2 -r1.3
--- sources	6 Jul 2007 02:58:03 -0000	1.2
+++ sources	12 May 2009 21:24:19 -0000	1.3
@@ -1 +1 @@
-e2ca877096d5fdfb39dd3cc70b08d96f  TracGit-0.0.1.tar.gz
+664abf879b3fe02e90315d22b2146c6a  TracGit-0.11.0.2.tar.gz


Index: trac-git-plugin.spec
===================================================================
RCS file: /cvs/pkgs/rpms/trac-git-plugin/F-11/trac-git-plugin.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- trac-git-plugin.spec	25 Feb 2009 21:33:54 -0000	1.7
+++ trac-git-plugin.spec	12 May 2009 21:24:19 -0000	1.8
@@ -1,45 +1,34 @@
 # sitelib for noarch packages, sitearch for others (remove the unneeded one)
 %{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
 
-%define svnrev 1536
+%define svnrev 5396
 
 Name:           trac-git-plugin
-Version:        0.0.1
-Release:        8.20070705svn%{svnrev}%{?dist}
+Version:        0.11.0.2
+Release:        4.20090511svn%{svnrev}%{?dist}
 Summary:        GIT version control plugin for Trac
 
 Group:          Applications/Internet
 License:        GPLv2+
 URL:            http://trac-hacks.org/wiki/GitPlugin
 # Source comes from SVN right now: svn co -r %{svnrev} http://trac-hacks.org/svn/gitplugin; \
-#                                  cd gitplugin/0.10/; \
+#                                  cd gitplugin/0.11/; \
 #                                  python setup.py sdist --formats gztar
+# The above has to be done on EL5 due to regressions in setuptools
 Source0:        TracGit-%{version}.tar.gz
-# Patches from from the http://nanosleep.org/proj/trac-git-plugin git tree:
-# git clone http://nanosleep.org/git/trac-git-plugin
-# cd trac-git-plugin
-# git-format-patch 95450cae9ead85bf713e74b2ecace8c467d4107c
-Patch1:         0001-Add-a-dummy-get_last_modified-to-avoid-an-exceptio.patch
-Patch2:         0002-Add-caching-logic.patch
-Patch3:         0003-Add-a-quick-hack-to-prevent-code-500-errors-and-trac.patch
-Patch4:         0004-Fixed-directory-creation.patch
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildArch:      noarch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-Requires:       git-core, trac, python-setuptools
+Requires:       git-core, trac >= 0.11, python-setuptools
 
 %description
 This Trac plugin provides support for the GIT SCM.
 
 %prep
 %setup -n TracGit-%{version} -q
-%patch1 -p2
-%patch2 -p2
-%patch3 -p2
-%patch4 -p2
 
 
 %build
@@ -54,6 +43,7 @@ rm -rf $RPM_BUILD_ROOT
 rm $RPM_BUILD_ROOT/usr/COPYING
 rm $RPM_BUILD_ROOT/usr/README
 
+
  
 %clean
 rm -rf $RPM_BUILD_ROOT
@@ -67,6 +57,12 @@ rm -rf $RPM_BUILD_ROOT
 
 
 %changelog
+* Mon May 11 2009 Jesse Keating <jkeating at redhat.com> - 0.11.0.2-2.20090511svn5396
+- Drop COPYING, it doesn't make it into the tarball.
+
+* Mon May 11 2009 Jesse Keating <jkeating at redhat.com> - 0.11.0.2-1.20090511svn5396
+- Update for trac 0.11.  Drop patches as those are in the 0.11 branch.
+
 * Wed Feb 25 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.0.1-8.20070705svn1536
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 


--- 0001-Add-a-dummy-get_last_modified-to-avoid-an-exceptio.patch DELETED ---


--- 0002-Add-caching-logic.patch DELETED ---


--- 0003-Add-a-quick-hack-to-prevent-code-500-errors-and-trac.patch DELETED ---


--- 0004-Fixed-directory-creation.patch DELETED ---




More information about the scm-commits mailing list