[trac10/el6] Initial import.

Jon Ciesla limb at fedoraproject.org
Wed Jun 5 14:44:49 UTC 2013


commit d3058ac1910ada6e98ab88fe33ccfe87569f33de
Author: Jon Ciesla <limburgher at gmail.com>
Date:   Wed Jun 5 09:40:12 2013 -0500

    Initial import.

 .gitignore                  |    1 +
 sources                     |    1 +
 trac-README.fedora          |   44 ++++++
 trac.ini                    |  160 ++++++++++++++++++++++
 trac.ini-environment_sample |   23 +++
 trac.wsgi                   |   19 +++
 trac10.spec                 |  313 +++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 561 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..c7b754d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/Trac-1.0.1.tar.gz
diff --git a/sources b/sources
index e69de29..fe27a60 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+c869fa40e29fa4597e2c9c960de9f2f3  Trac-1.0.1.tar.gz
diff --git a/trac-README.fedora b/trac-README.fedora
new file mode 100644
index 0000000..0e7202a
--- /dev/null
+++ b/trac-README.fedora
@@ -0,0 +1,44 @@
+
+Additional packages you might want to install
+=============================================
+
+trac has a very limited set requirements which are actually needed to run the
+application. In Fedora we only specify *mandatory* requirements so we don't 
+pull in a lot of bloat for people that don't need it.
+
+This is a list of additional packages you might want to install to get more
+functionality:
+ * subversion -- browse subversion repositories in trac
+ * pytz -- use real time zones (including summer/winter time) for date display
+ * python-pygments -- source code highlighting
+ * python-psycopg2 -- use a Postgres database (instead of sqlite)
+ * MySQL-python -- use a MySQL database (instead of sqlite)
+
+
+Additional plugins 
+=============================================
+
+Besides the packages mentioned above which extend the core trac, there are some
+plugins which are packaged for Fedora. Typically their names start with 'trac-'.
+To get a list of packaged plugins, issue:
+  yum list 'trac-*'
+
+
+Global Trac ini
+=============================================
+As of trac 0.11 a default global ini is no longer used.  The Fedora package
+still ships one for convenience.  If you want to make use of this config you
+will need to add a section in your project conf/trac.ini:
+
+[inherit]
+file = /etc/trac/trac.ini
+
+or use --inherit=/etc/trac/trac.ini when creating a new project
+
+See http://trac.edgewall.org/wiki/TracIni#GlobalConfiguration for more info.
+
+trac.*gi
+=============================================
+As of trac-0.12.2-8, we no longer ship trac.*gi files by default.
+The trac.wsgi file is now in /usr/share/doc/<NVR>/, and the config you need should
+be generated with trac-admin deploy per upstream.  See BZ 720760 for more information.
diff --git a/trac.ini b/trac.ini
new file mode 100644
index 0000000..ea200d3
--- /dev/null
+++ b/trac.ini
@@ -0,0 +1,160 @@
+# -*- coding: utf-8 -*-
+
+
+[inherit]
+
+plugins_dir = /etc/trac/plugins.d/
+templates_dir = /etc/trac/templates.d/
+
+
+[logging]
+
+## log_format =
+log_level = WARN
+log_type = syslog
+## log_file = /var/log/trac.log
+
+
+[ticket-workflow]
+
+accept = new -> assigned
+accept.operations = set_owner_to_self
+accept.permissions = TICKET_MODIFY
+leave = * -> *
+leave.default = 1
+leave.operations = leave_status
+reassign = new,assigned,reopened -> new
+reassign.operations = set_owner
+reassign.permissions = TICKET_MODIFY
+reopen = closed -> reopened
+reopen.operations = del_resolution
+reopen.permissions = TICKET_CREATE
+resolve = new,assigned,reopened -> closed
+resolve.operations = set_resolution
+resolve.permissions = TICKET_MODIFY
+
+
+[trac]
+
+authz_file = /etc/httpd/conf.d/AUTH.policy
+auto_reload = true
+base_url = ##URL_OF_WEB_SERVER_ROOT##
+check_auth_ip = true
+database = sqlite:db/trac.db
+default_charset = iso-8859-15
+default_handler = WikiModule
+## default_timezone = 
+## htdocs_location = 
+ignore_auth_case = false
+mainnav = wiki,timeline,roadmap,browser,tickets,newticket,search
+metanav = login,logout,settings,help,about
+permission_policies = AuthzPolicy, DefaultPermissionPolicy, LegacyAttachmentPolicy
+permission_store = DefaultPermissionStore
+repository_type = svn
+## request_filters = 
+timeout = 5
+
+
+[search]
+
+min_query_length = 3
+
+
+[attachment]
+
+max_size = 262144
+render_unsafe_content = false
+
+
+[ticket]
+
+default_component = 
+default_milestone = 
+default_priority = major
+default_type = defect
+default_version = 
+restrict_owner = false
+
+
+[wiki]
+
+ignore_missing_pages = false
+render_unsafe_content = true
+split_page_names = false
+
+
+[timeline]
+
+changeset_long_messages = false
+changeset_show_files = 0
+default_daysback = 30
+ticket_show_details = false
+
+
+[browser]
+
+downloadable_paths = /trunk, /branches/*, /tags/*
+hide_properties = svk:merge
+render_unsafe_content = true
+
+
+[changeset]
+
+max_diff_bytes = 10000000
+max_diff_files = 0
+wiki_format_messages = true
+
+
+[doxygen]
+
+default_documentation = 
+encoding = iso-8859-1
+ext = htm html png
+## html_output =
+index = main.html
+path = /var/lib/trac/doxygen
+source_ext = idl odl java cs py php php4 inc phtml m cpp cxx c hpp hxx h
+title = Doxygen
+## wiki_index =
+
+
+[mimeviewer]
+
+enscript_modes = text/x-dylan:dylan:4
+enscript_path = enscript
+max_preview_size = 262144
+mime_map = text/x-dylan:dylan,text/x-idl:ice,text/x-ada:ads:adb
+php_path = php
+silvercity_modes = 
+tab_width = 8
+
+
+[mtn]
+
+cachespec = localmem
+mtn_binary = /usr/bin/mtn
+## xtracerts =
+
+
+[notification]
+
+## always_notify_owner = true
+## always_notify_reporter = true
+## always_notify_updater = true
+## mime_encoding = base64
+## smtp_always_bcc = 
+## smtp_always_cc = 
+## smtp_default_domain =
+## smtp_enabled = false
+## smtp_from =
+## smtp_password = 
+## smtp_port = 25
+## smtp_replyto =
+## smtp_server =
+## smtp_subject_prefix = __default__
+## smtp_user = trac
+## use_public_cc = false
+## use_short_addr = false
+## use_tls = true
+
+
diff --git a/trac.ini-environment_sample b/trac.ini-environment_sample
new file mode 100644
index 0000000..72eaa28
--- /dev/null
+++ b/trac.ini-environment_sample
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+
+[inherit]
+file = /etc/trac/trac.ini
+
+[project]
+descr = ##TEXT_OF_PROJECT_DESCRIPTION##
+name = ##TEXT_OF_PROJECT_FULL_NAME##
+footer =##TEXT_OF_FOOTER##
+icon = ##URL_FOR_ICON_IMAGE##
+url = ##URL_FOR_PROJECT_SITE##
+
+[header_logo]
+alt = ##TEXT_OF_PROJECT_FULL_NAME##
+height = -1
+link = ##URL_FOR_PROJECT_SITE##
+src = ##URL_FOR_HEADER_IMAGE##
+width = -1
+
+[trac]
+authz_module_name = ##TEXT_OF_PROJECT_SHORTNAME##
+repository_dir = /path/of/svn/parent/dir/##TEXT_OF_PROJECT_SHORTNAME##
+
diff --git a/trac.wsgi b/trac.wsgi
new file mode 100644
index 0000000..270c788
--- /dev/null
+++ b/trac.wsgi
@@ -0,0 +1,19 @@
+# Replace all occurrences of /srv/trac with your trac root below
+# and uncomment the respective SetEnv and PythonOption directives.
+WSGIScriptAlias /trac /var/www/cgi-bin/trac.wsgi
+
+<Directory /var/www/>
+    WSGIApplicationGroup %{GLOBAL}
+    Order deny,allow
+    Allow from all
+</Directory>
+# <LocationMatch /cgi-bin/trac\.f?cgi>
+#     SetEnv TRAC_ENV /opt/trac/hn-aci
+# </LocationMatch>
+# <IfModule mod_python.c>
+# <Location /cgi-bin/trac.cgi>
+#     SetHandler mod_python
+#     PythonHandler trac.web.modpython_frontend
+#     #PythonOption TracEnv /srv/trac
+# </Location>
+# </IfModule>
diff --git a/trac10.spec b/trac10.spec
new file mode 100644
index 0000000..96339a3
--- /dev/null
+++ b/trac10.spec
@@ -0,0 +1,313 @@
+%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
+
+Name:           trac10
+Version:        1.0.1
+Release:        4%{?dist}
+Summary:        Enhanced wiki and issue tracking system
+Group:          Applications/Internet
+License:        BSD
+URL:            http://trac.edgewall.com/
+Source0:        http://ftp.edgewall.com/pub/trac/Trac-%{version}.tar.gz
+Source2:        trac.ini
+Source3:        trac.ini-environment_sample
+Source4:        trac-README.fedora
+Source5:        trac.wsgi
+BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+BuildArch:      noarch
+BuildRequires:  python-devel
+BuildRequires:  python-setuptools-devel
+BuildRequires:  python-genshi06 >= 0.6
+Requires:       python-setuptools
+Requires:       python-genshi06 >= 0.6
+
+%description
+Trac is an integrated system for managing software projects, an
+enhanced wiki, a flexible web-based issue tracker, and an interface to
+the Subversion revision control system.  At the core of Trac lies an
+integrated wiki and issue/bug database. Using wiki markup, all objects
+managed by Trac can directly link to other issues/bug reports, code
+changesets, documentation and files.  Around the core lies other
+modules, providing additional features and tools to make software
+development more streamlined and effective.
+
+%prep
+%setup -q -n Trac-%{version}
+
+find contrib -type f -exec chmod -x '{}' \;
+# don't package windows specific files
+rm -f contrib/trac-post-commit-hook.cmd
+%{__cp} -a %{SOURCE4} README.fedora
+
+%build
+%{__python} setup.py build
+
+%check
+PYTHONPATH=$(pwd) %{__python} setup.py test
+
+%install
+rm -rf $RPM_BUILD_ROOT
+
+# --skip-build causes bad stuff in siteconfig.py as of 0.8.4
+%{__python} setup.py install -O1 --root $RPM_BUILD_ROOT
+
+install -dm 755 $RPM_BUILD_ROOT%{_var}/www/cgi-bin
+install -Dpm 755 %{SOURCE5} contrib/cgi-bin/
+
+install -Dpm 644 %{SOURCE2} $RPM_BUILD_ROOT/etc/trac/trac.ini
+install -Dpm 644 %{SOURCE3} $RPM_BUILD_ROOT/etc/trac/trac.ini-environment_sample
+install -dpm 755 $RPM_BUILD_ROOT/etc/trac/{plugin,template}s.d
+
+find sample-plugins/ -type f -name '*.py' -exec install -pm 644 '{}' $RPM_BUILD_ROOT/etc/trac/plugins.d \;
+
+find sample-plugins/ -type f -name '*.ini*' -exec install -pm 644 '{}' $RPM_BUILD_ROOT/etc/trac/ \;
+
+install -dm 755 $RPM_BUILD_ROOT%{_sbindir}
+mv $RPM_BUILD_ROOT{%{_bindir}/tracd,%{_sbindir}/tracd}
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+%files
+%defattr(-,root,root,-)
+%doc AUTHORS ChangeLog COPYING INSTALL README README.fedora RELEASE THANKS UPGRADE contrib/
+%{_bindir}/trac-admin
+%{_sbindir}/tracd
+%{python_sitelib}/*
+%dir %{_sysconfdir}/trac
+%config(noreplace) %{_sysconfdir}/trac/*
+
+%changelog
+* Tue May 07 2013 Jon Ciesla <limburgher at gmail.com> - 1.0.1-4
+- Use sysconfdir.
+
+* Fri May 03 2013 Jon Ciesla <limburgher at gmail.com> - 1.0.1-3
+- Create trac10 for EL-6.
+
+* Wed May 01 2013 Luke Macken <lmacken at redhat.com> - 1.0.1-2
+- Run the test suite
+
+* Mon Feb 04 2013 Jon Ciesla <limburgher at gmail.com> - 1.0.1-1
+- 1.0.1, BZ 907068
+
+* Wed Sep 12 2012 Jon Ciesla <limburgher at gmail.com> - 1.0-1
+- 1.0, BZ 855519
+- Pidfile patch upstreamed.
+
+* Fri Jul 27 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.12.3-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
+
+* Fri Jun 29 2012 Jon Ciesla <limburgher at gmail.com> - 0.12.3-3
+- Drop httpd dep, BZ 232921.
+
+* Fri May 04 2012 Jon Ciesla <limburgher at gmail.com> - 0.12.3-2
+- Patch for pidfile open mode, BZ 818385.
+
+* Thu Feb 09 2012 Jon Ciesla <limburgher at gmail.com> - 0.12.3-1
+- Update to 0.12.3, BZ 788775.
+
+* Mon Feb 06 2012 Jon Ciesla <limburgher at gmail.com> - 0.12.2-8
+- Only ship trac.wsgi in doc, updated README.
+
+* Sat Jan 14 2012 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.12.2-7
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
+
+* Wed Oct 26 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.12.2-6
+- Rebuilt for glibc bug#747377
+
+* Tue Jun 14 2011 Jon Ciesla <limb at jcomserv.net> - 0.12.2-5
+- Added .wsgi file, BZ 701762.
+- No longer ship mod_python trac.conf, deprecated.
+
+* Sun Apr 03 2011 Jesse Keating <jkeating at redhat.com> - 0.12.2-1
+- New upstream release mostly bugfixes
+- http://trac.edgewall.org/browser//tags/trac-0.12.2/ChangeLog
+
+* Wed Feb 09 2011 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.12.1-4
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
+
+* Fri Dec 10 2010 Jesse Keating <jkeating at redhat.com> - 0.12.1-3
+- Update the trac-README.fedora content for global ini
+
+* Fri Oct 15 2010 Jesse Keating <jkeating at redhat.com> - 0.12.1-2
+- Fix README.fedora installation
+
+* Tue Oct 12 2010 Jesse Keating <jkeating at redhat.com> - 0.12.1-1
+- Update to 0.12.1
+
+* Thu Jul 22 2010 David Malcolm <dmalcolm at redhat.com> - 0.11.7-2
+- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
+
+* Wed Mar 10 2010 Felix Schwarz <felix.schwarz at oss.schwarz.eu> - 0.11.7-1
+- New upstream release (including security fix)
+
+* Sat Mar 06 2010 Felix Schwarz <felix.schwarz at oss.schwarz.eu> - 0.11.6-3
+- don't package Windows commit hook
+- package now includes trac.test module
+
+* Sun Jan 24 2010 Felix Schwarz <felix.schwarz at oss.schwarz.eu> - 0.11.6-2
+- add missing setuptools requirement
+- removed python-sqlite requirement as Python 2.6 already contains a suitable
+  module in the standard library
+- removed dependencies on subversion and python-pygments as these are actually
+  optional
+- added README.fedora to explain which packages can be installed for 
+  additional functionality
+
+* Sat Dec 05 2009 Felix Schwarz <felix.schwarz at oss.schwarz.eu> - 0.11.6-1
+- New upstream release
+
+* Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.11.4-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
+
+* Tue May 05 2009 Jesse Keating <jkeating at redhat.com> - 0.11.4-1
+- New upstream release to fix bugs and minor enhancements.
+
+* Tue Mar 31 2009 Michael Schwendt <mschwendt at fedoraproject.org> - 0.11.3-4
+- Fix unowned directory (#473989)
+
+* Mon Mar 09 2009 Jesse Keating <jkeating at redhat.com> - 0.11.3-3
+- Obsolete trac-webadmin, its now built in
+
+* Wed Feb 25 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.11.3-2
+- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
+
+* Sun Feb 15 2009 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.11.3-1
+- Trac 0.11.3 contains a number of bug fixes and minor enhancements.
+- The following list contains only a few highlights:
+- 
+-  * Compatibility with Python 2.6 (#7876, #7458)
+-  * PostgreSQL db backend improvement (#4987, #7600)
+-  * Highlighting of search results is more robust (#7324, #7830)
+-  * Unicode related fixes (#7672, #7959, #7845, #7935, #8024)
+-  * Fixed Trac link rendering in ReST (#7712)
+- 
+- You can find a more detailed release note at:
+- http://trac.edgewall.org/wiki/TracDev/ReleaseNotes/0.11
+
+* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm at gmail.com> - 0.11.2.1-4
+- Rebuild for Python 2.6
+
+* Fri Nov 28 2008 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.11.2.1-3
+- Add dependency on python-pygments
+- Rebuild for Python 2.6
+
+* Tue Nov 18 2008 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.11.2.1-2
+- Upload new sources
+- Add new files to CVS
+
+* Tue Nov 18 2008 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.11.2.1-0.1
+- Update to 0.11.2.1
+
+* Mon Jun 23 2008 Ryan B. Lynch <ryan.b.lynch at gmail.com> - 0.11-1
+- Update to 0.11
+
+* Sun Jun 22 2008 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.10.5-1
+- Update to 0.10.5
+
+* Thu Jan  3 2008 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.10.4-2
+- Simplify files section so that it picks up the egg info files.
+
+* Thu May  3 2007 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.10.4-1
+- Update to 0.10.4
+
+* Mon Mar 12 2007 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.10.3.1-2
+- Switch requires back to python-sqlite
+
+* Sat Mar 10 2007 Jeffrey C. Ollie <jeff at ocjtech.us> - 0.10.3.1-1
+- Update to 0.10.3.1 to fix security bug
+
+* Sun Jan  7 2007 Joost Soeterbroek <joost.soeterbroek at gmail.com> - 0.10.3-2
+- change req: python-sqlite -> python-sqlite2
+
+* Tue Jan  2 2007 Joost Soeterbroek <joost.soeterbroek at gmail.com> - 0.10.3
+- upstream release 0.10.3 (#221162)
+
+* Sat Dec  9 2006 Joost Soeterbroek <joost.soeterbroek at gmail.com> - 0.10.3
+- rebuild for python 2.5, add python-devel to BR
+
+* Tue Nov 28 2006 Joost Soeterbroek <joost.soeterbroek at gmail.com> - 0.10.2
+- upstream release 0.10.2 (#217539)
+
+* Sat Nov 11 2006 Joost Soeterbroek <joost.soeterbroek at gmail.com> - 0.10.1
+- upstream release 0.10.1 (fixes CSRF vulnerability, bugzilla #215077)
+
+* Thu Sep 28 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.10
+- upstream release 0.10 'Zengia'
+
+* Wed Aug 30 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.6-3
+- remove %%ghost for .pyo files; bugzilla #205439
+
+* Wed Aug 30 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.6-2
+- rebuild for Fedora Extras 6
+
+* Thu Jul  6 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.6-1
+- upstream release 0.9.6
+
+* Tue Apr 18 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.5-1
+- bug fix release 0.9.5
+
+* Wed Feb 15 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.4-1
+- 0.9.4
+ * Deletion of reports has been fixed.
+ * Various encoding issues with the timeline RSS feed have been fixed.
+ * Fixed a memory leak when syncing with the repository.
+ * Milestones in the roadmap are now ordered more intelligently.
+ * Fixed bugs: 
+   1064, 1150, 2006, 2253, 2324, 2330, 2408, 2430, 2431, 2459, 2544, 
+   2459, 2481, 2485, 2536, 2544, 2553, 2580, 2583, 2606, 2613, 2621, 
+   2664, 2666, 2680, 2706, 2707, 2735
+
+* Mon Feb 13 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.3-5
+- Rebuild for Fedora Extras 5
+
+* Mon Jan 16 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.3-4
+- updated trac.conf to allow for trac.*cgi 
+
+* Mon Jan 16 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.3-3
+- re-added tracd and trac.fcgi by user request.
+
+* Tue Jan 10 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.3-2
+- removed trac.fcgi (bugzilla #174546, comment #11)
+- applied patch (bugzilla #174546, attachment id=123008)
+
+* Mon Jan  9 2006 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.3-1
+- 0.9.3
+- removed tracd (bugzilla #174546, comment #6)
+- added trac.conf for httpd
+- removed %%{python_sitelib}/trac/test.py
+- removed comments
+
+* Tue Dec  6 2005 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.2-2
+- added /etc/init.d/tracd
+- added /etc/sysconfig/tracd
+
+* Tue Dec  6 2005 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.2-1
+- 0.9.2
+- fixes SQL Injection Vulnerability in ticket search module.
+- fixes broken ticket email notifications.
+
+* Sat Dec  3 2005 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9.1-1
+- 0.9.1
+- fixes SQL Injection Vulnerability
+
+* Tue Nov 29 2005 Joost Soeterbroek <fedora at soeterbroek.com> - 0.9-1
+- Rebuild for Fedora Extras
+
+* Tue Nov  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.9-1
+- 0.9.
+
+* Mon Jun 20 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.4-0.1
+- 0.8.4.
+- Move tracd to %%{_sbindir} and man page to section 8.
+
+* Thu Jun 16 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.3-0.1
+- 0.8.3.
+
+* Wed Jun  1 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.2-0.1
+- 0.8.2.
+
+* Sun May 29 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.1-0.2
+- Rebuild for FC4.
+
+* Fri Apr  8 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.8.1-0.1
+- First build.


More information about the scm-commits mailing list