d521b9c
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
Name:           trac
c8fa9bd
Version:        1.0.13
834ff35
Release:        1%{?dist}
Joost Soeterbroek 45dbc09
Summary:        Enhanced wiki and issue tracking system
Joost Soeterbroek 45dbc09
Group:          Applications/Internet
Joost Soeterbroek 45dbc09
License:        BSD
Joost Soeterbroek 45dbc09
URL:            http://trac.edgewall.com/
958045f
Source0:        http://ftp.edgewall.com/pub/trac/Trac-%{version}.tar.gz
Jon Ciesla ceba3f1
#Source1:        trac.conf
958045f
Source2:        trac.ini
958045f
Source3:        trac.ini-environment_sample
04b415d
Source4:        %{name}-README.fedora
Jon Ciesla b8a4b92
Source5:        trac.wsgi
9d5cf50
# prevent segmentation faults when downloading bigger files from a svn repo
9d5cf50
# http://trac.edgewall.org/ticket/11805
9d5cf50
# http://subversion.tigris.org/issues/show_bug.cgi?id=4526
7466b55
#Patch1:         trac-1.0.2-issue-11805.patch
b6effbd
# fix git tests
7466b55
#Patch2:         trac-1.0.2-issue-11876.patch
Joost Soeterbroek 45dbc09
BuildArch:      noarch
Joost Soeterbroek be7953f
BuildRequires:  python-devel
513d820
BuildRequires:  python-setuptools
Jesse Keating 20e86ff
BuildRequires:  python-genshi >= 0.6
04b415d
Requires:       python-setuptools
Jesse Keating b478b13
Requires:       python-genshi >= 0.6
Joost Soeterbroek 45dbc09
b6effbd
# optional packages to ensure we run all Trac tests (if one of these are not
b6effbd
# installed the test would be skipped)
b6effbd
BuildRequires:  git
b6effbd
BuildRequires:  php
b6effbd
BuildRequires:  python-configobj
b6effbd
BuildRequires:  python-docutils
b6effbd
BuildRequires:  python-lxml
b6effbd
# running the functional tests with twill doesn't work presumably because
b6effbd
# Fedora's twill behaves differently due to unbundled libraries.
b6effbd
# twill 1.8 is incompatible with Trac: http://trac.edgewall.org/ticket/11642
b6effbd
# BuildRequires:  python-twill < 1.8
b6effbd
# pygments 2.0 is not yet supported: http://trac.edgewall.org/ticket/11796
7466b55
BuildRequires:  python-pygments
b6effbd
BuildRequires:  subversion-python
b6effbd
Joost Soeterbroek 45dbc09
%description
Joost Soeterbroek 45dbc09
Trac is an integrated system for managing software projects, an
Joost Soeterbroek 45dbc09
enhanced wiki, a flexible web-based issue tracker, and an interface to
Joost Soeterbroek 45dbc09
the Subversion revision control system.  At the core of Trac lies an
Joost Soeterbroek 45dbc09
integrated wiki and issue/bug database. Using wiki markup, all objects
Joost Soeterbroek 45dbc09
managed by Trac can directly link to other issues/bug reports, code
Joost Soeterbroek 45dbc09
changesets, documentation and files.  Around the core lies other
Joost Soeterbroek 45dbc09
modules, providing additional features and tools to make software
Joost Soeterbroek 45dbc09
development more streamlined and effective.
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
%prep
958045f
%setup -q -n Trac-%{version}
7466b55
#%patch1 -p1
7466b55
#%patch2 -p1
3c7245b
958045f
find contrib -type f -exec chmod -x '{}' \;
d49cb8a
# don't package windows specific files
Jesse Keating 4af08e0
rm -f contrib/trac-post-commit-hook.cmd
Jesse Keating 4af08e0
%{__cp} -a %{SOURCE4} README.fedora
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
%build
Joost Soeterbroek 45dbc09
%{__python} setup.py build
Joost Soeterbroek 45dbc09
Luke Macken c42c2a0
%check
Luke Macken c42c2a0
PYTHONPATH=$(pwd) %{__python} setup.py test
Luke Macken c42c2a0
Joost Soeterbroek 45dbc09
%install
Joost Soeterbroek 45dbc09
# --skip-build causes bad stuff in siteconfig.py as of 0.8.4
Joost Soeterbroek 45dbc09
%{__python} setup.py install -O1 --root $RPM_BUILD_ROOT
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
install -dm 755 $RPM_BUILD_ROOT%{_var}/www/cgi-bin
114784c
#mv cgi-bin/trac.*cgi $RPM_BUILD_ROOT%{_var}/www/cgi-bin
114784c
#install -Dpm 755 %{SOURCE5} $RPM_BUILD_ROOT%{_var}/www/cgi-bin
3022b66
install -Dpm 755 %{SOURCE5} contrib/cgi-bin/
Joost Soeterbroek 45dbc09
Jon Ciesla ceba3f1
#install -Dpm 644 %{SOURCE1} $RPM_BUILD_ROOT/etc/httpd/conf.d/trac.conf
958045f
install -Dpm 644 %{SOURCE2} $RPM_BUILD_ROOT/etc/trac/trac.ini
958045f
install -Dpm 644 %{SOURCE3} $RPM_BUILD_ROOT/etc/trac/trac.ini-environment_sample
958045f
install -dpm 755 $RPM_BUILD_ROOT/etc/trac/{plugin,template}s.d
958045f
958045f
find sample-plugins/ -type f -name '*.py' -exec install -pm 644 '{}' $RPM_BUILD_ROOT/etc/trac/plugins.d \;
958045f
958045f
find sample-plugins/ -type f -name '*.ini*' -exec install -pm 644 '{}' $RPM_BUILD_ROOT/etc/trac/ \;
958045f
Joost Soeterbroek d66afb8
install -dm 755 $RPM_BUILD_ROOT%{_sbindir}
Joost Soeterbroek d66afb8
mv $RPM_BUILD_ROOT{%{_bindir}/tracd,%{_sbindir}/tracd}
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
%files
3022b66
%doc AUTHORS ChangeLog COPYING INSTALL README README.fedora RELEASE THANKS UPGRADE contrib/
Joost Soeterbroek 45dbc09
%{_bindir}/trac-admin
Joost Soeterbroek d66afb8
%{_sbindir}/tracd
a34de06
%{python_sitelib}/*
Jon Ciesla ceba3f1
##%config(noreplace) /etc/httpd/conf.d/trac.conf
7a5c176
%dir /etc/trac
958045f
%config(noreplace) /etc/trac/*
114784c
#%{_var}/www/cgi-bin/trac.cgi
114784c
#%{_var}/www/cgi-bin/trac.fcgi
114784c
#%{_var}/www/cgi-bin/trac.wsgi
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
%changelog
c8fa9bd
* Mon Sep 19 2016 Jon Ciesla <limburgher@gmail.com> - 1.0.13-1
c8fa9bd
- 1.0.13
c8fa9bd
29fb9e8
* Tue Sep 06 2016 Jon Ciesla <limburgher@gmail.com> - 1.0.12-1
29fb9e8
- 1.0.12
29fb9e8
834ff35
* Wed Apr 20 2016 Dave Johansen <davejohanesn@gmail.com> - 1.0.10-1
834ff35
- Upstream update
834ff35
aedc71b
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.8-2
aedc71b
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
aedc71b
7466b55
* Thu Sep 03 2015 Jon Ciesla <limburgher@gmail.com> - 1.0.8-1
7466b55
- 1.0.8
7466b55
- Fix FTBFS, BZ 1240073.
7466b55
- Patches upstreamed.
7466b55
0026a39
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.2-4
0026a39
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
0026a39
b6effbd
* Sat Dec 13 2014 Felix Schwarz <fschwarz@fedoraproject.org> - 1.0.2-3
b6effbd
- add BuildRequires so most Trac tests are run during %check
b6effbd
- add patch so git tests pass (upstream issue 11876)
b6effbd
9d5cf50
* Sat Nov 08 2014 Felix Schwarz <fschwarz@fedoraproject.org> - 1.0.2-2
9d5cf50
- add patch for upstream issue 11805
9d5cf50
ede1852
* Thu Oct 30 2014 Felix Schwarz <fschwarz@fedoraproject.org> - 1.0.2-1
ede1852
- 1.0.2
ede1852
513d820
* Mon Jun 30 2014 Toshio Kuratomi <toshio@fedoraproject.org> - 1.0.1-6
513d820
- Replace python-setuptools-devel BR with python-setuptools
513d820
87bd682
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-5
87bd682
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
87bd682
dea6c24
* Fri May 30 2014 Dan Horák <dan[at]danny.cz> - 1.0.1-4
dea6c24
- spec cleanup
dea6c24
04d4221
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-3
04d4221
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
04d4221
Luke Macken c42c2a0
* Wed May 01 2013 Luke Macken <lmacken@redhat.com> - 1.0.1-2
Luke Macken c42c2a0
- Run the test suite
Luke Macken c42c2a0
650e574
* Mon Feb 04 2013 Jon Ciesla <limburgher@gmail.com> - 1.0.1-1
650e574
- 1.0.1, BZ 907068
650e574
3022b66
* Wed Sep 12 2012 Jon Ciesla <limburgher@gmail.com> - 1.0-1
3022b66
- 1.0, BZ 855519
3022b66
- Pidfile patch upstreamed.
3022b66
d1faa13
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.3-4
d1faa13
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d1faa13
bfafe57
* Fri Jun 29 2012 Jon Ciesla <limburgher@gmail.com> - 0.12.3-3
bfafe57
- Drop httpd dep, BZ 232921.
bfafe57
3c7245b
* Fri May 04 2012 Jon Ciesla <limburgher@gmail.com> - 0.12.3-2
3c7245b
- Patch for pidfile open mode, BZ 818385.
3c7245b
56982be
* Thu Feb 09 2012 Jon Ciesla <limburgher@gmail.com> - 0.12.3-1
56982be
- Update to 0.12.3, BZ 788775.
56982be
114784c
* Mon Feb 06 2012 Jon Ciesla <limburgher@gmail.com> - 0.12.2-8
114784c
- Only ship trac.wsgi in doc, updated README.
114784c
9195862
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.2-7
9195862
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
9195862
cb50673
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.2-6
cb50673
- Rebuilt for glibc bug#747377
cb50673
Jon Ciesla b8a4b92
* Tue Jun 14 2011 Jon Ciesla <limb@jcomserv.net> - 0.12.2-5
Jon Ciesla b8a4b92
- Added .wsgi file, BZ 701762.
Jon Ciesla ceba3f1
- No longer ship mod_python trac.conf, deprecated.
Jon Ciesla b8a4b92
Jesse Keating 1f657f6
* Sun Apr 03 2011 Jesse Keating <jkeating@redhat.com> - 0.12.2-1
Jesse Keating 1f657f6
- New upstream release mostly bugfixes
Jesse Keating 1f657f6
- http://trac.edgewall.org/browser//tags/trac-0.12.2/ChangeLog
Jesse Keating 1f657f6
5395e68
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.12.1-4
5395e68
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
5395e68
Jesse Keating b859be1
* Fri Dec 10 2010 Jesse Keating <jkeating@redhat.com> - 0.12.1-3
Jesse Keating b859be1
- Update the trac-README.fedora content for global ini
Jesse Keating b859be1
Jesse Keating 4af08e0
* Fri Oct 15 2010 Jesse Keating <jkeating@redhat.com> - 0.12.1-2
Jesse Keating 4af08e0
- Fix README.fedora installation
Jesse Keating 4af08e0
Jesse Keating b478b13
* Tue Oct 12 2010 Jesse Keating <jkeating@redhat.com> - 0.12.1-1
Jesse Keating b478b13
- Update to 0.12.1
Jesse Keating b478b13
82874a7
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 0.11.7-2
82874a7
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
82874a7
2555e7f
* Wed Mar 10 2010 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 0.11.7-1
2555e7f
- New upstream release (including security fix)
2555e7f
d49cb8a
* Sat Mar 06 2010 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 0.11.6-3
d49cb8a
- don't package Windows commit hook
282e8de
- package now includes trac.test module
d49cb8a
04b415d
* Sun Jan 24 2010 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 0.11.6-2
04b415d
- add missing setuptools requirement
04b415d
- removed python-sqlite requirement as Python 2.6 already contains a suitable
04b415d
  module in the standard library
04b415d
- removed dependencies on subversion and python-pygments as these are actually
04b415d
  optional
04b415d
- added README.fedora to explain which packages can be installed for 
04b415d
  additional functionality
04b415d
92387d3
* Sat Dec 05 2009 Felix Schwarz <felix.schwarz@oss.schwarz.eu> - 0.11.6-1
92387d3
- New upstream release
92387d3
e99bbcc
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.4-2
e99bbcc
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
e99bbcc
a37d1eb
* Tue May 05 2009 Jesse Keating <jkeating@redhat.com> - 0.11.4-1
a37d1eb
- New upstream release to fix bugs and minor enhancements.
a37d1eb
7a5c176
* Tue Mar 31 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 0.11.3-4
7a5c176
- Fix unowned directory (#473989)
7a5c176
5e6fb0f
* Mon Mar 09 2009 Jesse Keating <jkeating@redhat.com> - 0.11.3-3
5e6fb0f
- Obsolete trac-webadmin, its now built in
5e6fb0f
ca2629c
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11.3-2
ca2629c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ca2629c
ae1c1ac
* Sun Feb 15 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.11.3-1
ae1c1ac
- Trac 0.11.3 contains a number of bug fixes and minor enhancements.
ae1c1ac
- The following list contains only a few highlights:
ae1c1ac
- 
ae1c1ac
-  * Compatibility with Python 2.6 (#7876, #7458)
ae1c1ac
-  * PostgreSQL db backend improvement (#4987, #7600)
ae1c1ac
-  * Highlighting of search results is more robust (#7324, #7830)
ae1c1ac
-  * Unicode related fixes (#7672, #7959, #7845, #7935, #8024)
ae1c1ac
-  * Fixed Trac link rendering in ReST (#7712)
ae1c1ac
- 
ae1c1ac
- You can find a more detailed release note at:
ae1c1ac
- http://trac.edgewall.org/wiki/TracDev/ReleaseNotes/0.11
ae1c1ac
e46ae64
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 0.11.2.1-4
e46ae64
- Rebuild for Python 2.6
e46ae64
b9a5d90
* Fri Nov 28 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.11.2.1-3
b9a5d90
- Add dependency on python-pygments
b9a5d90
- Rebuild for Python 2.6
b9a5d90
b802f27
* Tue Nov 18 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.11.2.1-2
b802f27
- Upload new sources
b802f27
- Add new files to CVS
b802f27
958045f
* Tue Nov 18 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.11.2.1-0.1
958045f
- Update to 0.11.2.1
958045f
958045f
* Mon Jun 23 2008 Ryan B. Lynch <ryan.b.lynch@gmail.com> - 0.11-1
958045f
- Update to 0.11
958045f
3ff8e64
* Sun Jun 22 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.10.5-1
3ff8e64
- Update to 0.10.5
3ff8e64
a34de06
* Thu Jan  3 2008 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.10.4-2
a34de06
- Simplify files section so that it picks up the egg info files.
a34de06
a66462a
* Thu May  3 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.10.4-1
a66462a
- Update to 0.10.4
a66462a
1f4345f
* Mon Mar 12 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.10.3.1-2
1f4345f
- Switch requires back to python-sqlite
1f4345f
f4025bd
* Sat Mar 10 2007 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.10.3.1-1
f4025bd
- Update to 0.10.3.1 to fix security bug
f4025bd
Joost Soeterbroek 13e57a4
* Sun Jan  7 2007 Joost Soeterbroek <joost.soeterbroek@gmail.com> - 0.10.3-2
Joost Soeterbroek 13e57a4
- change req: python-sqlite -> python-sqlite2
Joost Soeterbroek 13e57a4
Joost Soeterbroek 6b1533e
* Tue Jan  2 2007 Joost Soeterbroek <joost.soeterbroek@gmail.com> - 0.10.3
Joost Soeterbroek 6b1533e
- upstream release 0.10.3 (#221162)
Joost Soeterbroek 6b1533e
Joost Soeterbroek be7953f
* Sat Dec  9 2006 Joost Soeterbroek <joost.soeterbroek@gmail.com> - 0.10.3
Joost Soeterbroek be7953f
- rebuild for python 2.5, add python-devel to BR
Joost Soeterbroek be7953f
Joost Soeterbroek 8f16c2e
* Tue Nov 28 2006 Joost Soeterbroek <joost.soeterbroek@gmail.com> - 0.10.2
Joost Soeterbroek 8f16c2e
- upstream release 0.10.2 (#217539)
Joost Soeterbroek 8f16c2e
Joost Soeterbroek 2d61c02
* Sat Nov 11 2006 Joost Soeterbroek <joost.soeterbroek@gmail.com> - 0.10.1
Joost Soeterbroek 2d61c02
- upstream release 0.10.1 (fixes CSRF vulnerability, bugzilla #215077)
Joost Soeterbroek 2d61c02
Joost Soeterbroek 3b9355f
* Thu Sep 28 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.10
Joost Soeterbroek 3b9355f
- upstream release 0.10 'Zengia'
Joost Soeterbroek 3b9355f
Joost Soeterbroek 9579ad4
* Wed Aug 30 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.6-3
Joost Soeterbroek 9579ad4
- remove %%ghost for .pyo files; bugzilla #205439
Joost Soeterbroek 9579ad4
Joost Soeterbroek 21b2e33
* Wed Aug 30 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.6-2
Joost Soeterbroek 21b2e33
- rebuild for Fedora Extras 6
Joost Soeterbroek 21b2e33
Joost Soeterbroek 3951fd0
* Thu Jul  6 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.6-1
Joost Soeterbroek 3951fd0
- upstream release 0.9.6
Joost Soeterbroek 3951fd0
Joost Soeterbroek c1c44e7
* Tue Apr 18 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.5-1
Joost Soeterbroek c1c44e7
- bug fix release 0.9.5
Joost Soeterbroek c1c44e7
Joost Soeterbroek e7c4295
* Wed Feb 15 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.4-1
Joost Soeterbroek e7c4295
- 0.9.4
Joost Soeterbroek e7c4295
 * Deletion of reports has been fixed.
Joost Soeterbroek e7c4295
 * Various encoding issues with the timeline RSS feed have been fixed.
Joost Soeterbroek e7c4295
 * Fixed a memory leak when syncing with the repository.
Joost Soeterbroek e7c4295
 * Milestones in the roadmap are now ordered more intelligently.
Joost Soeterbroek e7c4295
 * Fixed bugs: 
Joost Soeterbroek e7c4295
   1064, 1150, 2006, 2253, 2324, 2330, 2408, 2430, 2431, 2459, 2544, 
Joost Soeterbroek e7c4295
   2459, 2481, 2485, 2536, 2544, 2553, 2580, 2583, 2606, 2613, 2621, 
Joost Soeterbroek e7c4295
   2664, 2666, 2680, 2706, 2707, 2735
Joost Soeterbroek e7c4295
Joost Soeterbroek 5cf37de
* Mon Feb 13 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.3-5
Joost Soeterbroek 5cf37de
- Rebuild for Fedora Extras 5
Joost Soeterbroek 5cf37de
Joost Soeterbroek 86318db
* Mon Jan 16 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.3-4
Joost Soeterbroek 86318db
- updated trac.conf to allow for trac.*cgi 
Joost Soeterbroek 86318db
Joost Soeterbroek d66afb8
* Mon Jan 16 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.3-3
Joost Soeterbroek d66afb8
- re-added tracd and trac.fcgi by user request.
Joost Soeterbroek d66afb8
Joost Soeterbroek 45dbc09
* Tue Jan 10 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.3-2
Joost Soeterbroek 45dbc09
- removed trac.fcgi (bugzilla #174546, comment #11)
Joost Soeterbroek 45dbc09
- applied patch (bugzilla #174546, attachment id=123008)
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Mon Jan  9 2006 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.3-1
Joost Soeterbroek 45dbc09
- 0.9.3
Joost Soeterbroek 45dbc09
- removed tracd (bugzilla #174546, comment #6)
Joost Soeterbroek 45dbc09
- added trac.conf for httpd
Joost Soeterbroek 45dbc09
- removed %%{python_sitelib}/trac/test.py
Joost Soeterbroek 45dbc09
- removed comments
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Tue Dec  6 2005 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.2-2
Joost Soeterbroek 45dbc09
- added /etc/init.d/tracd
Joost Soeterbroek 45dbc09
- added /etc/sysconfig/tracd
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Tue Dec  6 2005 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.2-1
Joost Soeterbroek 45dbc09
- 0.9.2
Joost Soeterbroek 45dbc09
- fixes SQL Injection Vulnerability in ticket search module.
Joost Soeterbroek 45dbc09
- fixes broken ticket email notifications.
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Sat Dec  3 2005 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9.1-1
Joost Soeterbroek 45dbc09
- 0.9.1
Joost Soeterbroek 45dbc09
- fixes SQL Injection Vulnerability
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Tue Nov 29 2005 Joost Soeterbroek <fedora@soeterbroek.com> - 0.9-1
Joost Soeterbroek 45dbc09
- Rebuild for Fedora Extras
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Tue Nov  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.9-1
Joost Soeterbroek 45dbc09
- 0.9.
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Mon Jun 20 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.4-0.1
Joost Soeterbroek 45dbc09
- 0.8.4.
Joost Soeterbroek 45dbc09
- Move tracd to %%{_sbindir} and man page to section 8.
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Thu Jun 16 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.3-0.1
Joost Soeterbroek 45dbc09
- 0.8.3.
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Wed Jun  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.2-0.1
Joost Soeterbroek 45dbc09
- 0.8.2.
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Sun May 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.1-0.2
Joost Soeterbroek 45dbc09
- Rebuild for FC4.
Joost Soeterbroek 45dbc09
Joost Soeterbroek 45dbc09
* Fri Apr  8 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.1-0.1
Jesse Keating b478b13
- First build.