Compare commits
No commits in common. "rawhide" and "f21" have entirely different histories.
8 changed files with 503 additions and 1 deletions
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
viewvc-1.1.6.tar.gz
|
||||
/viewvc-1.1.7.tar.gz
|
||||
/viewvc-1.1.8.tar.gz
|
||||
/viewvc-1.1.9.tar.gz
|
||||
/viewvc-1.1.10.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
|
||||
/viewvc-1.1.15.tar.gz
|
||||
/viewvc-1.1.16.tar.gz
|
||||
/viewvc-1.1.17.tar.gz
|
||||
/viewvc-1.1.18.tar.gz
|
||||
/viewvc-1.1.19.tar.gz
|
||||
/viewvc-1.1.20.tar.gz
|
||||
/viewvc-1.1.21.tar.gz
|
||||
/viewvc-1.1.22.tar.gz
|
||||
/viewvc-1.1.23.tar.gz
|
||||
/viewvc-1.1.24.tar.gz
|
||||
7
README.httpd
Normal file
7
README.httpd
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
In order to run ViewVC under Apache and mod_fcgid, you should install
|
||||
viewvc-httpd-fcgi package. This package obsoletes the old view-httpd package.
|
||||
|
||||
In order to run ViewVC under Apache and mod_wsgi, you should install
|
||||
viewvc-httpd-wsgi package.
|
||||
|
||||
The old mod_python setup is no longer supported in Fedora.
|
||||
|
|
@ -1 +0,0 @@
|
|||
Python 2 is being removed, so retire this package.
|
||||
1
sources
Normal file
1
sources
Normal file
|
|
@ -0,0 +1 @@
|
|||
a4e46f20c4441bfdca0b1f1bcac446de viewvc-1.1.24.tar.gz
|
||||
31
viewvc-fcgi.conf
Normal file
31
viewvc-fcgi.conf
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
ScriptAlias /viewvc __python_sitelib__/viewvc/bin/wsgi/viewvc.fcgi
|
||||
Alias /viewvc-static __datadir__/viewvc/templates/docroot
|
||||
|
||||
<Directory __python_sitelib__/viewvc/bin/wsgi>
|
||||
Options -Indexes
|
||||
<Files viewvc.fcgi>
|
||||
<IfModule mod_authz_core.c>
|
||||
# Apache 2.4
|
||||
Require local
|
||||
</IfModule>
|
||||
<IfModule !mod_authz_core.c>
|
||||
# Apache 2.2
|
||||
Order allow,deny
|
||||
Allow from 127.0.0.1
|
||||
Allow from ::1
|
||||
</IfModule>
|
||||
</Files>
|
||||
</Directory>
|
||||
<Directory __datadir__/viewvc/templates/docroot>
|
||||
Options -Indexes
|
||||
<IfModule mod_authz_core.c>
|
||||
# Apache 2.4
|
||||
Require local
|
||||
</IfModule>
|
||||
<IfModule !mod_authz_core.c>
|
||||
# Apache 2.2
|
||||
Order allow,deny
|
||||
Allow from 127.0.0.1
|
||||
Allow from ::1
|
||||
</IfModule>
|
||||
</Directory>
|
||||
49
viewvc-lexer-mimetypes.py
Executable file
49
viewvc-lexer-mimetypes.py
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import sys
|
||||
import re
|
||||
from pygments.lexers import get_all_lexers
|
||||
|
||||
for fullname, names, exts, mimetype in get_all_lexers():
|
||||
if len(exts) > len(mimetype):
|
||||
for j in range(len(mimetype)):
|
||||
line=0
|
||||
for i in range(len(exts)):
|
||||
if re.match('\*\.',exts[i]):
|
||||
if i == 0:
|
||||
print mimetype[j],
|
||||
line=1
|
||||
if re.search('\[[0-9]+\]',exts[i]):
|
||||
s=re.search('\[[0-9]+\]',exts[i]).span()[0]+1
|
||||
e=re.search('\[[0-9]+\]',exts[i]).span()[1]-1
|
||||
for k in range(s,e):
|
||||
print exts[i][2:s-1]+exts[i][k]+exts[i][e+1:],
|
||||
else:
|
||||
print exts[i][2:],
|
||||
if line==1 and i == len(exts)-1:
|
||||
print
|
||||
elif len(exts) == 1:
|
||||
for i in range(len(mimetype)):
|
||||
if re.match('\*\.',exts[0]):
|
||||
if re.search('\[[0-9]+\]',exts[0]):
|
||||
s=re.search('\[[0-9]+\]',exts[0]).span()[0]+1
|
||||
e=re.search('\[[0-9]+\]',exts[0]).span()[1]-1
|
||||
print mimetype[i],
|
||||
for k in range(s,e):
|
||||
print exts[0][2:s-1]+exts[0][k]+exts[0][e+1:],
|
||||
print
|
||||
else:
|
||||
print mimetype[i], exts[0][2:]
|
||||
else:
|
||||
for i in range(len(mimetype)):
|
||||
if len(exts) > i:
|
||||
if re.match('\*\.',exts[i]):
|
||||
if re.search('\[[0-9]+\]',exts[i]):
|
||||
s=re.search('\[[0-9]+\]',exts[i]).span()[0]+1
|
||||
e=re.search('\[[0-9]+\]',exts[i]).span()[1]-1
|
||||
print mimetype[i],
|
||||
for k in range(s,e):
|
||||
print exts[i][2:s-1]+exts[i][k]+exts[i][e+1:],
|
||||
print
|
||||
else:
|
||||
print mimetype[i], exts[i][2:]
|
||||
31
viewvc-wsgi.conf
Normal file
31
viewvc-wsgi.conf
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
WSGIScriptAlias /viewvc __python_sitelib__/viewvc/bin/wsgi/viewvc.wsgi
|
||||
Alias /viewvc-static __datadir__/viewvc/templates/docroot
|
||||
|
||||
<Directory __python_sitelib__/viewvc/bin/wsgi>
|
||||
Options -Indexes
|
||||
<Files viewvc.wsgi>
|
||||
<IfModule mod_authz_core.c>
|
||||
# Apache 2.4
|
||||
Require local
|
||||
</IfModule>
|
||||
<IfModule !mod_authz_core.c>
|
||||
# Apache 2.2
|
||||
Order allow,deny
|
||||
Allow from 127.0.0.1
|
||||
Allow from ::1
|
||||
</IfModule>
|
||||
</Files>
|
||||
</Directory>
|
||||
<Directory __datadir__/viewvc/templates/docroot>
|
||||
Options -Indexes
|
||||
<IfModule mod_authz_core.c>
|
||||
# Apache 2.4
|
||||
Require local
|
||||
</IfModule>
|
||||
<IfModule !mod_authz_core.c>
|
||||
# Apache 2.2
|
||||
Order allow,deny
|
||||
Allow from 127.0.0.1
|
||||
Allow from ::1
|
||||
</IfModule>
|
||||
</Directory>
|
||||
365
viewvc.spec
Normal file
365
viewvc.spec
Normal file
|
|
@ -0,0 +1,365 @@
|
|||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
|
||||
Name: viewvc
|
||||
Version: 1.1.24
|
||||
Release: 1%{?dist}
|
||||
Summary: Browser interface for CVS and SVN version control repositories
|
||||
|
||||
Group: Development/Tools
|
||||
License: BSD
|
||||
URL: http://www.viewvc.org/
|
||||
Source0: http://www.viewvc.org/%{name}-%{version}.tar.gz
|
||||
Source1: viewvc-fcgi.conf
|
||||
Source2: viewvc-wsgi.conf
|
||||
Source3: README.httpd
|
||||
Source4: viewvc-lexer-mimetypes.py
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
Obsoletes: %{name}-selinux < 1.0.3-13
|
||||
Conflicts: selinux-policy < 2.5.10-2
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python-devel >= 2.0, python-pygments
|
||||
Requires: rcs, diffutils
|
||||
Requires: subversion >= 1.2
|
||||
Requires: subversion-python >= 1.2
|
||||
Requires: cvsgraph
|
||||
Requires: python-pygments
|
||||
|
||||
%description
|
||||
ViewVC is a browser interface for CVS and Subversion version control
|
||||
repositories. It generates templatized HTML to present navigable directory,
|
||||
revision, and change log listings. It can display specific versions of files
|
||||
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.
|
||||
|
||||
%package httpd-fcgi
|
||||
Summary: ViewVC configuration for Apache/mod_fcgid
|
||||
Group: Development/Tools
|
||||
Obsoletes: viewvc-httpd < 1.1.13-2
|
||||
Requires: httpd, %{name} = %{version}-%{release}, mod_fcgid, python-flup
|
||||
|
||||
%description httpd-fcgi
|
||||
ViewVC configuration for Apache/mod_fcgid. This package should provide ViewVC
|
||||
with decent performance when run under Apache.
|
||||
|
||||
%package httpd-wsgi
|
||||
Summary: ViewVC configuration for Apache/mod_wsgi
|
||||
Group: Development/Tools
|
||||
Requires: httpd, %{name} = %{version}-%{release}, mod_wsgi
|
||||
|
||||
%description httpd-wsgi
|
||||
ViewVC configuration for Apache/mod_wsgi. This package should provide ViewVC
|
||||
with decent performance when run under Apache.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
|
||||
%install
|
||||
%{__rm} -rf %{buildroot}
|
||||
%{__python} viewvc-install --destdir="%{buildroot}" --prefix="%{python_sitelib}/viewvc"
|
||||
|
||||
# Remove unneeded files
|
||||
%{__rm} -f %{buildroot}%{python_sitelib}/viewvc/bin/mod_python/.htaccess
|
||||
|
||||
# Move non-python to /usr/share
|
||||
%{__mkdir} -p %{buildroot}%{_datadir}/viewvc
|
||||
%{__mv} %{buildroot}%{python_sitelib}/viewvc/templates %{buildroot}%{_datadir}/viewvc
|
||||
|
||||
# Fix python files shebang and CONF_PATHNAME
|
||||
%{__perl} -pi \
|
||||
-e 's|/usr/local/bin/python|%{_bindir}/python|g;' \
|
||||
-e 's|\s*/usr/bin/env python|%{_bindir}/python|g;' \
|
||||
-e 's|CONF_PATHNAME =.*|CONF_PATHNAME = r"%{_sysconfdir}/viewvc/viewvc.conf"|g;' \
|
||||
$(find %{buildroot}%{python_sitelib}/viewvc/ -type f)
|
||||
|
||||
# Fix python files shebang for WSGI files
|
||||
%{__sed} -i -e '1i#!%{_bindir}/python' \
|
||||
$(find %{buildroot}%{python_sitelib}/viewvc/ -type f -name '*.wsgi')
|
||||
|
||||
# Set mode 755 on executable scripts
|
||||
%{__grep} -rl '^#!' %{buildroot}%{python_sitelib}/viewvc | xargs %{__chmod} 0755
|
||||
|
||||
# Fix paths in configuration
|
||||
%{__perl} -pi \
|
||||
-e 's|^#* *template_dir = .*|template_dir = %{_datadir}/viewvc/templates|g;' \
|
||||
-e 's|^#* *docroot = .*|docroot = /viewvc-static|;' \
|
||||
-e 's|^#* *cvsgraph_conf = .*|cvsgraph_conf = %{_sysconfdir}/viewvc/cvsgraph.conf|;' \
|
||||
-e 's|^#* *use_cvsgraph = .*|use_cvsgraph = 1|;' \
|
||||
%{buildroot}%{python_sitelib}/viewvc/viewvc.conf
|
||||
|
||||
# Install config to sysconf directory
|
||||
%{__install} -Dp -m0644 %{buildroot}%{python_sitelib}/viewvc/viewvc.conf %{buildroot}%{_sysconfdir}/viewvc/viewvc.conf
|
||||
%{__rm} -f %{buildroot}%{python_sitelib}/viewvc/viewvc.conf
|
||||
%{__install} -Dp -m0644 %{buildroot}%{python_sitelib}/viewvc/cvsgraph.conf %{buildroot}%{_sysconfdir}/viewvc/cvsgraph.conf
|
||||
%{__rm} -f %{buildroot}%{python_sitelib}/viewvc/cvsgraph.conf
|
||||
%{__install} -Dp -m0644 %{buildroot}%{python_sitelib}/viewvc/mimetypes.conf %{buildroot}%{_sysconfdir}/viewvc/mimetypes.conf
|
||||
%{__rm} -f %{buildroot}%{python_sitelib}/viewvc/mimetypes.conf
|
||||
|
||||
%{SOURCE4} >> %{buildroot}%{_sysconfdir}/viewvc/mimetypes.conf
|
||||
|
||||
# Install Apache configuration and README
|
||||
%{__sed} -e s,__datadir__,%{_datadir}, \
|
||||
-e s,__python_sitelib__,%{python_sitelib}, %{SOURCE1} > viewvc-fcgi.conf
|
||||
%{__sed} -e s,__datadir__,%{_datadir}, \
|
||||
-e s,__python_sitelib__,%{python_sitelib}, %{SOURCE2} > viewvc-wsgi.conf
|
||||
%{__install} -Dp -m0644 viewvc-fcgi.conf %{buildroot}/etc/httpd/conf.d/viewvc-fcgi.conf
|
||||
%{__install} -Dp -m0644 viewvc-wsgi.conf %{buildroot}/etc/httpd/conf.d/viewvc-wsgi.conf
|
||||
%{__cp} %{SOURCE3} README.httpd
|
||||
|
||||
# mod_python files mustn't be executable since they don't have shebang
|
||||
# make rpmlint happy!
|
||||
%{__chmod} 0644 %{buildroot}%{python_sitelib}/viewvc/bin/mod_python/*.py
|
||||
|
||||
# Rename viewvc.py to viewvc-mp.py for mod_python to avoid import cycle errors
|
||||
%{__mv} %{buildroot}%{python_sitelib}/viewvc/bin/mod_python/viewvc.py \
|
||||
%{buildroot}%{python_sitelib}/viewvc/bin/mod_python/viewvc-mp.py
|
||||
|
||||
# Make spool directory for temp files
|
||||
%{__mkdir} -p %{buildroot}%{_localstatedir}/spool/viewvc
|
||||
|
||||
%clean
|
||||
%{__rm} -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-, root, root, -)
|
||||
%doc CHANGES README README.httpd INSTALL COMMITTERS LICENSE.html docs
|
||||
%config(noreplace) %{_sysconfdir}/viewvc
|
||||
%{python_sitelib}/*
|
||||
%{_datadir}/*
|
||||
|
||||
%files httpd-fcgi
|
||||
%defattr(-, root, root, -)
|
||||
%config(noreplace) %{_sysconfdir}/httpd/conf.d/viewvc-fcgi.conf
|
||||
%attr(0700,apache,apache) %{_localstatedir}/spool/viewvc
|
||||
|
||||
%files httpd-wsgi
|
||||
%defattr(-, root, root, -)
|
||||
%config(noreplace) %{_sysconfdir}/httpd/conf.d/viewvc-wsgi.conf
|
||||
%attr(0700,apache,apache) %{_localstatedir}/spool/viewvc
|
||||
|
||||
%changelog
|
||||
* Tue Oct 6 2015 Bojan Smojver <bojan@rexursive.com> - 1.1.24-1
|
||||
- bump up to 1.1.24
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.23-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Thu Nov 6 2014 Bojan Smojver <bojan@rexursive.com> - 1.1.23-1
|
||||
- bump up to 1.1.23
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.22-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Wed Jan 15 2014 Bojan Smojver <bojan@rexursive.com> - 1.1.22-1
|
||||
- bump up to 1.1.22
|
||||
|
||||
* Sat Sep 14 2013 Bojan Smojver <bojan@rexursive.com> - 1.1.21-1
|
||||
- bump up to 1.1.21
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.20-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Thu Apr 25 2013 Bojan Smojver <bojan@rexursive.com> - 1.1.20-1
|
||||
- bump up to 1.1.20
|
||||
|
||||
* Tue Apr 23 2013 Bojan Smojver <bojan@rexursive.com> - 1.1.19-1
|
||||
- bump up to 1.1.19
|
||||
|
||||
* Fri Mar 1 2013 Bojan Smojver <bojan@rexursive.com> - 1.1.18-1
|
||||
- bump up to 1.1.18
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.17-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sat Jan 12 2013 Bojan Smojver <bojan@rexursive.com> - 1.1.17-3
|
||||
- add default authorisation for CGI scripts too
|
||||
|
||||
* Wed Oct 31 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.17-2
|
||||
- fix bug #871492
|
||||
|
||||
* Fri Oct 26 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.17-1
|
||||
- bump up to 1.1.17
|
||||
|
||||
* Thu Oct 25 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.16-1
|
||||
- bump up to 1.1.16
|
||||
- drop patch for CVE-2012-4533, part of the release
|
||||
|
||||
* Mon Oct 22 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.15-3
|
||||
- patch CVE-2012-4533, bug #868606
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.15-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jun 23 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.15-1
|
||||
- bump up to 1.1.15
|
||||
|
||||
* Wed Jun 13 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.14-1
|
||||
- bump up to 1.1.14
|
||||
|
||||
* Sun Apr 29 2012 Bojan Smojver <bojan@rexursive.com> - 1.1.13-2
|
||||
- drop viewvc-httpd package, which depends on mod_python
|
||||
- introduce viewvc-httpd-fcgi, obsoletes viewvc-httpd
|
||||
- introduce viewvc-httpd-wsgi
|
||||
|
||||
* 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
|
||||
- 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-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
|
||||
- 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
|
||||
- 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
|
||||
- patch upstream issue #454
|
||||
|
||||
* 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
|
||||
- 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
|
||||
- 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
|
||||
|
||||
* Wed Oct 15 2008 Bojan Smojver <bojan@rexursive.com> - 1.0.7-1
|
||||
- Bump up to 1.0.7
|
||||
|
||||
* Fri Sep 19 2008 Bojan Smojver <bojan@rexursive.com> - 1.0.6-1
|
||||
- Bump up to 1.0.6
|
||||
|
||||
* Fri Feb 29 2008 Bojan Smojver <bojan@rexursive.com> - 1.0.5-1
|
||||
- Bump up to 1.0.5
|
||||
|
||||
* Sun Jun 3 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.4-2
|
||||
- Avoid import cycle errors (temporary fix)
|
||||
|
||||
* Tue May 15 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.4-1
|
||||
- Bump up to 1.0.4
|
||||
|
||||
* Wed Mar 28 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-13
|
||||
- Supply obsoletes/conflicts
|
||||
(suggestions by Peter Gordon, Bernard Johnson and Ville Skyttä)
|
||||
|
||||
* Thu Mar 22 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-12
|
||||
- Drop selinux package, required context now in official policy
|
||||
|
||||
* Fri Mar 09 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-11
|
||||
- Bump for tag
|
||||
|
||||
* Tue Mar 06 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-10
|
||||
- Enable enscript only when available
|
||||
|
||||
* Tue Mar 06 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-9
|
||||
- Enable cvsgraph
|
||||
|
||||
* Sun Mar 04 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-8
|
||||
- EPEL support patch by Bernard Johnson
|
||||
|
||||
* Sat Mar 03 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-7
|
||||
- Incorporate suggestions from package review process by Bernard Johnson
|
||||
|
||||
* Sat Mar 03 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-6
|
||||
- Use restorecon instead of chcon
|
||||
|
||||
* Fri Mar 02 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-5
|
||||
- SELinux integration
|
||||
|
||||
* Fri Mar 02 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-4
|
||||
- Incorporate suggestions from package review process by Bernard Johnson
|
||||
|
||||
* Fri Mar 02 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-3
|
||||
- Move non-python files out of %%{python_sitelib}
|
||||
|
||||
* Thu Mar 01 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-2
|
||||
- Incorporate suggestions from package review process by Bernard Johnson
|
||||
|
||||
* Thu Mar 01 2007 Bojan Smojver <bojan@rexursive.com> - 1.0.3-1
|
||||
- Initial release, 1.0.3
|
||||
- Based on package provided by Dag Wieers
|
||||
Loading…
Add table
Add a link
Reference in a new issue