Compare commits

...
Sign in to create a new pull request.

29 commits

Author SHA1 Message Date
Bojan Smojver
6d350b6e4f Bump up to 1.1.14.
Conflicts:
	viewvc.spec
2012-06-13 10:28:48 +10:00
Bojan Smojver
81bdb98a5e Merge branch 'master' into el4
Conflicts:
	.gitignore
	sources
	viewvc.spec
2012-01-24 15:40:34 +11:00
Bojan Smojver
a03fa0b592 Bump up to 1.1.12.
Conflicts:

	viewvc.spec
2011-11-04 10:35:28 +11:00
Bojan Smojver
6324a16288 Merge branch 'master' into el4
Conflicts:
	viewvc.spec
2011-06-03 10:31:51 +10:00
Bojan Smojver
d5ec7497e3 Bump for rebuild. 2011-05-18 16:13:56 +10:00
Bojan Smojver
ac63f734ba Remove duplicate section in conf. 2011-05-18 16:12:49 +10:00
Bojan Smojver
914dab69dc OOPS! Merged httpd package bit by mistake. 2011-05-18 15:58:24 +10:00
Bojan Smojver
8890a8cb65 Merge branch 'master' into el4
Conflicts:
	.gitignore
	sources
	viewvc.spec
2011-05-18 15:54:52 +10:00
Bojan Smojver
e94fee2c0c Bump up to 1.1.10. 2011-03-16 13:44:01 +11:00
Bojan Smojver
539551c6ca Bump up to 1.1.9.
Allow access to templates from localhost.
2011-03-08 09:57:03 +11:00
Bojan Smojver
2bc4d52990 Fix sources. 2010-12-07 10:23:50 +11:00
Bojan Smojver
9d9cd663e1 Bump up to 1.1.8. 2010-12-07 10:01:02 +11:00
Fedora Release Engineering
734e5f9004 dist-git conversion 2010-07-29 14:58:36 +00:00
97d10782f9 Bump up to 1.1.6. 2010-06-02 23:14:35 +00:00
168fd540ca Fix upstream issue #454. 2010-05-25 08:53:54 +00:00
4eab227705 Anything below 1.1.0 should be obsoleted by viewvc-httpd. 2010-03-31 21:43:22 +00:00
e91b9f1911 Pull in viewvc-httpd on upgrade from 1.0.x. 2010-03-31 20:54:06 +00:00
3ccf05a027 Bump up to 1.1.5. 2010-03-29 20:50:45 +00:00
aff7858df0 Bump up to 1.1.4. 2010-03-11 03:04:05 +00:00
80c771a8c2 Really add README.httpd 2010-02-02 02:35:16 +00:00
2491177af5 Fix sources. 2010-02-02 02:32:00 +00:00
c77c2701d5 Bump up to 1.1.3 (supported branch). Patch upstream issue #445. 2010-02-02 02:27:39 +00:00
Bill Nottingham
8b51db1448 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:13:48 +00:00
5fd9626a17 Bump up to 1.0.9. Two security fixes. 2009-08-11 22:26:33 +00:00
7b18d03192 Bump up to 1.0.8. 2009-05-07 06:58:40 +00:00
5c264bc93b Bump up to 1.0.7. 2008-10-14 23:46:35 +00:00
d6f8129408 Bump up to 1.0.6. 2008-09-19 00:31:58 +00:00
b5e0aa9cae Bump up to 1.0.5. 2008-02-28 22:12:24 +00:00
0fd8832889 Initialize branch EL-4 for viewvc 2007-12-19 02:15:56 +00:00
4 changed files with 38 additions and 67 deletions

1
.gitignore vendored
View file

@ -6,3 +6,4 @@ viewvc-1.1.6.tar.gz
/viewvc-1.1.11.tar.gz
/viewvc-1.1.12.tar.gz
/viewvc-1.1.13.tar.gz
/viewvc-1.1.14.tar.gz

View file

@ -1 +1 @@
c6710daca7bbd161ab68d5921757cd21 viewvc-1.1.13.tar.gz
ba8af23f4a524625441840f779c30086 viewvc-1.1.14.tar.gz

View file

@ -4,6 +4,7 @@ Alias /viewvc-static __datadir__/viewvc/templates/docroot
<Directory __python_sitelib__/viewvc/bin/mod_python>
AddHandler python-program .py
PythonHandler handler
PythonPath "sys.path+['__python_sitelib__/viewvc/bin/mod_python']"
Order allow,deny
Allow from 127.0.0.1
</Directory>

View file

@ -1,7 +1,15 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
# EL4 has a subversion that does not meet the minimum reqs for subversion
%if 0%{?rhel} && "%rhel" < "5"
%define with_subversion 0
%else
%define with_subversion 1
%endif
Name: viewvc
Version: 1.1.13
Version: 1.1.14
Release: 1%{?dist}
Summary: Browser interface for CVS and SVN version control repositories
@ -20,8 +28,9 @@ Conflicts: selinux-policy < 2.5.10-2
BuildArch: noarch
BuildRequires: python-devel >= 2.0, python-pygments
Requires: rcs, diffutils
%if 0%{with_subversion}
Requires: subversion >= 1.2
Requires: subversion-python >= 1.2
%endif
Requires: cvsgraph
Requires: python-pygments
@ -33,10 +42,15 @@ as well as diffs between those versions. Basically, ViewVC provides the bulk
of the report-like functionality you expect out of your version control tool,
but much more prettily than the average textual command-line program output.
%if 0%{!?with_subversion}
This version only supports CVS repositories.
%endif
%package httpd
Summary: ViewVC configuration for Apache/mod_python
Group: Development/Tools
Requires: httpd, %{name} = %{version}-%{release}, mod_python
Obsoletes: viewvc < 1.1.0
%description httpd
ViewVC configuration for Apache/mod_python. This package should provide ViewVC
@ -119,108 +133,63 @@ with decent performance when run under Apache.
%attr(0700,apache,apache) %{_localstatedir}/spool/viewvc
%changelog
* Wed Jun 13 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.14-1
- bump up to 1.1.14
* Tue Jan 24 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.13-1
- bump up to 1.1.13
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.12-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Fri Nov 4 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.12-1
- bump up to 1.1.12
* Tue Nov 1 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.11-3
- require subversion-python
* Wed Jun 1 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.11-2
* Wed Jun 1 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.11-3
- in response to bug #708721:
- remove webserver dependency, can run standalone
- require httpd for httpd package
- move spool directory to httpd package
* Wed May 18 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.11-2
- remove duplicate conf section
* Wed May 18 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.11-1
- bump up to 1.1.11
* Wed Mar 16 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.10-1
- bump up to 1.1.10
* Mon Feb 21 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.9-1
* Tue Mar 8 2011 Bojan Smojver <bojan@rexursive.com> - 1.1.9-1
- bump up to 1.1.9
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.8-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Mon Dec 6 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.8-1
* Tue Dec 7 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.8-1
- bump up to 1.1.8
* Fri Sep 10 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.7-1
- bump up to 1.1.7
- address bug #565805, allow access to templates from localhost
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.1.6-2
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
* Thu Jun 3 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.6-1
- bump up to 1.1.6
- drop patch for upstream issue #454
* Tue May 25 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.5-2
* Tue May 25 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.5-3
- patch upstream issue #454
* Thu Apr 1 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.5-2
- pull in viewvc-httpd on upgrade from 1.0.x
* Tue Mar 30 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.5-1
- bump up to 1.1.5
* Thu Mar 11 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.4-1
- bump up to 1.1.4
* Fri Jan 8 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.3-2
* Tue Feb 2 2010 Bojan Smojver <bojan@rexursive.com> - 1.1.3-1
- bump up to 1.1.3
- patch upstream issue #445
* Wed Dec 23 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.3-1
- bump up to 1.1.3
- drop patch for upstream issue #427
* Wed Sep 23 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.2-5
- patch upstream issue #427
* Thu Aug 13 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.2-4
- try one more time
* Thu Aug 13 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.2-3
- better mimetypes.conf generation script
* Wed Aug 12 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.2-2
- fix replacement of various config variables
* Wed Aug 12 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.2-1
- bump up to 1.1.2
* Wed Aug 12 2009 Bojan Smojver <bojan@rexursive.com> - 1.0.9-1
- bump up to 1.0.9
- security fix: validate the 'view' parameter to avoid XSS attack
- security fix: avoid printing illegal parameter names and values
* Tue Aug 11 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.1-3
- install mimetypes.conf
- populate mimetypes.conf with what pygments understands
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
* Thu Jun 4 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.1-1
- Bump up to 1.1.1
* Thu May 14 2009 Bojan Smojver <bojan@rexursive.com> - 1.1.0-1
- Final 1.1.0
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.0-0.beta1.1.2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.1.0-0.beta1.1.1
- Rebuild for Python 2.6
* Thu Nov 6 2008 Bojan Smojver <bojan@rexursive.com> - 1.1.0-0.beta1.1
- Rebase to 1.1.x
* Mon Oct 27 2008 Bojan Smojver <bojan@rexursive.com> - 1.0.7-2
- Depend on webserver to avoid pulling in Apache/mod_python (bug #457691)
- Provide viewvc-httpd package for mod_python specific configuration
* Thu May 7 2009 Bojan Smojver <bojan@rexursive.com> - 1.0.8-1
- Bump up to 1.0.8
* Wed Oct 15 2008 Bojan Smojver <bojan@rexursive.com> - 1.0.7-1
- Bump up to 1.0.7