45898b7
%if 0%{?fedora} > 12
45898b7
%global with_python3 1
45898b7
%endif
45898b7
45898b7
%if 0%{?with_python3}
cf38e36
%global python_runtimes  python python-debug python3 python3-debug
45898b7
%else
45898b7
%global python_runtimes  python python-debug
45898b7
%endif # with_python3
abbed67
abbed67
539ba86
# Python 2.5+ is not supported by Zope, so it does not exist in
539ba86
# recent Fedora releases. That's why zope subpackage is disabled.
Tom Lane 74fce09
%global zope 0
Tom Lane 74fce09
%if %zope
Tom Lane 74fce09
%global ZPsycopgDAdir %{_localstatedir}/lib/zope/Products/ZPsycopgDA
Tom Lane 74fce09
%endif
840879a
840879a
840879a
Summary:	A PostgreSQL database adapter for Python
840879a
Name:		python-psycopg2
Jozef Mlich 2931434
Version:	2.6.1
b91d3b8
Release:	5%{?dist}
6ad371e
# The exceptions allow linking to OpenSSL and PostgreSQL's libpq
afd3c83
License:	LGPLv3+ with exceptions
840879a
Group:		Applications/Databases
7d45e32
Url:		http://www.psycopg.org/psycopg/
2ad0900
670ad5d
Source0:	http://www.psycopg.org/psycopg/tarballs/PSYCOPG-2-6/psycopg2-%{version}.tar.gz
Tom Lane fa335f9
abbed67
BuildRequires:	postgresql-devel
abbed67
BuildRequires:	python-devel
abbed67
BuildRequires:	python-debug
cf38e36
%if 0%{?with_python3}
abbed67
BuildRequires:	python3-devel
abbed67
BuildRequires:	python3-debug
cf38e36
%endif # with_python3
Jozef Mlich 2931434
BuildRequires:	python-sphinx
Tom Lane fa335f9
BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
840879a
2ad0900
Conflicts:	python-psycopg2-zope < %{version}
6c1f416
840879a
%description
Tom Lane 9897864
Psycopg is the most popular PostgreSQL adapter for the Python
Tom Lane 9897864
programming language. At its core it fully implements the Python DB
Tom Lane 9897864
API 2.0 specifications. Several extensions allow access to many of the
Tom Lane 9897864
features offered by PostgreSQL.
a08f87b
abbed67
%package debug
abbed67
Summary: A PostgreSQL database adapter for Python 2 (debug build)
abbed67
# Require the base package, as we're sharing .py/.pyc files:
Tom Lane 9897864
Requires:	%{name} = %{version}-%{release}
abbed67
abbed67
%description debug
abbed67
This is a build of the psycopg PostgreSQL database adapter for the debug
Tom Lane 9897864
build of Python 2.
abbed67
45898b7
%if 0%{?with_python3}
abbed67
%package -n python3-psycopg2
abbed67
Summary: A PostgreSQL database adapter for Python 3
abbed67
abbed67
%description  -n python3-psycopg2
Tom Lane 9897864
This is a build of the psycopg PostgreSQL database adapter for Python 3.
abbed67
abbed67
%package -n python3-psycopg2-debug
abbed67
Summary: A PostgreSQL database adapter for Python 3 (debug build)
abbed67
# Require base python 3 package, as we're sharing .py/.pyc files:
Tom Lane 9897864
Requires:	python3-psycopg2 = %{version}-%{release}
abbed67
abbed67
%description -n python3-psycopg2-debug
abbed67
This is a build of the psycopg PostgreSQL database adapter for the debug
Tom Lane 9897864
build of Python 3.
45898b7
%endif # with_python3
abbed67
840879a
%package doc
840879a
Summary:	Documentation for psycopg python PostgreSQL database adapter
840879a
Group:		Documentation
840879a
Requires:	%{name} = %{version}-%{release}
840879a
840879a
%description doc
840879a
Documentation and example files for the psycopg python PostgreSQL
840879a
database adapter.
840879a
Tom Lane 74fce09
%if %zope
Tom Lane 74fce09
%package zope
Tom Lane 74fce09
Summary:	Zope Database Adapter ZPsycopgDA
6ad371e
# The exceptions allow linking to OpenSSL and PostgreSQL's libpq
Tom Lane 74fce09
License:	GPLv2+ with exceptions or ZPLv1.0
Tom Lane 74fce09
Group:		Applications/Databases
Tom Lane 9897864
Requires:	%{name} = %{version}-%{release}
Tom Lane 9897864
Requires:	zope
840879a
Tom Lane 74fce09
%description zope
Tom Lane 74fce09
Zope Database Adapter for PostgreSQL, called ZPsycopgDA
Tom Lane 74fce09
%endif
840879a
840879a
%prep
Tom Lane 9897864
%setup -q -n psycopg2-%{version}
840879a
840879a
%build
abbed67
for python in %{python_runtimes} ; do
abbed67
  $python setup.py build
abbed67
done
Tom Lane 74fce09
840879a
# Fix for wrong-file-end-of-line-encoding problem; upstream also must fix this.
840879a
for i in `find doc -iname "*.html"`; do sed -i 's/\r//' $i; done
840879a
for i in `find doc -iname "*.css"`; do sed -i 's/\r//' $i; done
840879a
Tom Lane 74fce09
# Get rid of a "hidden" file that rpmlint complains about
Tom Lane 74fce09
rm -f doc/html/.buildinfo
Tom Lane 74fce09
2fed961
make -C doc/src html
2fed961
840879a
%install
Tom Lane 74fce09
abbed67
DoInstall() {
abbed67
  PythonBinary=$1
abbed67
abbed67
  Python_SiteArch=$($PythonBinary -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")
840879a
abbed67
  mkdir -p %{buildroot}$Python_SiteArch/psycopg2
abbed67
  $PythonBinary setup.py install --no-compile --root %{buildroot}
abbed67
abbed67
  # We're not currently interested in packaging the test suite.
abbed67
  rm -rf %{buildroot}$Python_SiteArch/psycopg2/tests
abbed67
}
abbed67
abbed67
rm -rf %{buildroot}
abbed67
for python in %{python_runtimes} ; do
abbed67
  DoInstall $python
abbed67
done
Tom Lane 74fce09
Tom Lane 74fce09
%if %zope
Tom Lane 74fce09
install -d %{buildroot}%{ZPsycopgDAdir}
Tom Lane 74fce09
cp -pr ZPsycopgDA/* %{buildroot}%{ZPsycopgDAdir}
Tom Lane 74fce09
%endif
840879a
840879a
%clean
840879a
rm -rf %{buildroot}
840879a
840879a
%files
840879a
%defattr(-,root,root)
3dad90d
%doc AUTHORS LICENSE NEWS README.rst
840879a
%dir %{python_sitearch}/psycopg2
840879a
%{python_sitearch}/psycopg2/*.py
840879a
%{python_sitearch}/psycopg2/*.pyc
abbed67
%{python_sitearch}/psycopg2/_psycopg.so
02f0d00
%{python_sitearch}/psycopg2/*.pyo
d999951
%{python_sitearch}/psycopg2-%{version}-py2*.egg-info
abbed67
abbed67
%files debug
abbed67
%defattr(-,root,root)
abbed67
%doc LICENSE
abbed67
%{python_sitearch}/psycopg2/_psycopg_d.so
abbed67
45898b7
%if 0%{?with_python3}
abbed67
%files -n python3-psycopg2
abbed67
%defattr(-,root,root)
3dad90d
%doc AUTHORS LICENSE NEWS README.rst
abbed67
%dir %{python3_sitearch}/psycopg2
abbed67
%{python3_sitearch}/psycopg2/*.py
041192a
%{python3_sitearch}/psycopg2/_psycopg.cpython-3?m*.so
abbed67
%dir %{python3_sitearch}/psycopg2/__pycache__
Tom Lane 72c2284
%{python3_sitearch}/psycopg2/__pycache__/*.pyc
d999951
%{python3_sitearch}/psycopg2-%{version}-py3*.egg-info
abbed67
abbed67
%files -n python3-psycopg2-debug
abbed67
%defattr(-,root,root)
abbed67
%doc LICENSE
041192a
%{python3_sitearch}/psycopg2/_psycopg.cpython-3?dm*.so
45898b7
%endif # with_python3
abbed67
840879a
840879a
%files doc
840879a
%defattr(-,root,root)
840879a
%doc doc examples/
840879a
Tom Lane 74fce09
%if %zope
Tom Lane 74fce09
%files zope
Tom Lane 74fce09
%defattr(-,root,root)
Tom Lane 74fce09
%dir %{ZPsycopgDAdir}
Tom Lane 74fce09
%{ZPsycopgDAdir}/*.py
Tom Lane 74fce09
%{ZPsycopgDAdir}/*.pyo
Tom Lane 74fce09
%{ZPsycopgDAdir}/*.pyc
Tom Lane 74fce09
%{ZPsycopgDAdir}/dtml/*
Tom Lane 74fce09
%{ZPsycopgDAdir}/icons/*
Tom Lane 74fce09
%endif
840879a
840879a
%changelog
b91d3b8
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.6.1-5
b91d3b8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
b91d3b8
d999951
* Sun Nov 15 2015 Pavel Raiskup <praiskup@redhat.com> - 2.6.1-4
d999951
- again bump for new Python 3.5, not build previously?
d999951
- fix rpmlint issues
a041cef
- no pyo files with python 3.5
d999951
7586515
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org>
7586515
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
7586515
b86738d
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.1-2
b86738d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
b86738d
d999951
* Mon Jun 15 2015 Jozef Mlich <jmlich@redhat.com> 2.6.1-1
Jozef Mlich 2931434
- Update to 2.6.1
Jozef Mlich 2931434
670ad5d
* Mon Feb 9 2015 Devrim Gündüz <devrim@gunduz.org> 2.6-1
670ad5d
- Update to 2.6, per changes described at:
670ad5d
  http://www.psycopg.org/psycopg/articles/2015/02/09/psycopg-26-and-255-released/
670ad5d
c830da1
* Tue Jan 13 2015 Devrim Gündüz <devrim@gunduz.org> 2.5.4-1
c830da1
- Update to 2.5.4, per changes described at:
c830da1
  http://www.psycopg.org/psycopg/articles/2014/08/30/psycopg-254-released
c830da1
db1eaea
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.3-2
db1eaea
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
db1eaea
e97c3d9
* Fri Jul 04 2014 Pavel Raiskup <praiskup@redhat.com> - 2.5.3-1
e97c3d9
- rebase to most recent upstream version, per release notes:
e97c3d9
  http://www.psycopg.org/psycopg/articles/2014/05/13/psycopg-253-released/
e97c3d9
ef2f2ec
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.2-3
ef2f2ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
ef2f2ec
0ba65cd
* Tue May 13 2014 Bohuslav Kabrda <bkabrda@redhat.com> - 2.5.2-2
0ba65cd
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
0ba65cd
a199bae
* Tue Jan 7 2014 Devrim Gündüz <devrim@gunduz.org> 2.5.2-1
a199bae
- Update to 2.5.2, per changes described at:
a199bae
  http://www.psycopg.org/psycopg/articles/2014/01/07/psycopg-252-released
a199bae
134073e
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5.1-2
134073e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
134073e
3b300a1
* Sun Jul 07 2013 Pavel Raiskup <praiskup@redhat.com> - 2.5.1-1
3b300a1
- rebase to 2.5.1
3b300a1
7d45e32
* Thu May 16 2013 Devrim Gündüz <devrim@gunduz.org> 2.5-1
7d45e32
- Update to 2.5, per changes described at:
7d45e32
  http://www.psycopg.org/psycopg/articles/2013/04/07/psycopg-25-released/
7d45e32
9625eee
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-7
9625eee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
9625eee
0fc6b2d
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-6
0fc6b2d
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
0fc6b2d
041192a
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-5
041192a
- generalize python 3 fileglobbing to work with both Python 3.2 and 3.3
041192a
cf38e36
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-4
cf38e36
- replace "python3.2dmu" with "python3-debug"; with_python3 fixes
cf38e36
45898b7
* Fri Aug  3 2012 David Malcolm <dmalcolm@redhat.com> - 2.4.5-3
45898b7
- add with_python3 conditional
45898b7
67bf93a
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.5-2
67bf93a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
67bf93a
Tom Lane b6f0fd5
* Sat Apr  7 2012 Tom Lane <tgl@redhat.com> 2.4.5-1
Tom Lane b6f0fd5
- Update to 2.4.5
Tom Lane b6f0fd5
Tom Lane fa335f9
* Thu Feb  2 2012 Tom Lane <tgl@redhat.com> 2.4.4-1
Tom Lane fa335f9
- Update to 2.4.4
Tom Lane fa335f9
- More specfile neatnik-ism
Tom Lane fa335f9
8c257d7
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.4.2-3
8c257d7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
8c257d7
Tom Lane 72c2284
* Tue Nov 29 2011 Tom Lane <tgl@redhat.com> 2.4.2-2
Tom Lane 72c2284
- Fix mistaken %%dir marking on python3 files, per Dan Horak
Tom Lane 72c2284
Tom Lane 9897864
* Sat Jun 18 2011 Tom Lane <tgl@redhat.com> 2.4.2-1
Tom Lane 9897864
- Update to 2.4.2
Tom Lane 9897864
Related: #711095
Tom Lane 9897864
- Some neatnik specfile cleanups
Tom Lane 9897864
abbed67
* Thu Feb 10 2011 David Malcolm <dmalcolm@redhat.com> - 2.4-0.beta2
abbed67
- 2.4.0-beta2
abbed67
- add python 2 debug, python3 (optimized) and python3-debug subpackages
abbed67
3ddd2bf
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.3.2-2
3ddd2bf
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
3ddd2bf
Tom Lane 74fce09
* Wed Dec 29 2010 Tom Lane <tgl@redhat.com> 2.3.2-1
Tom Lane 74fce09
- Update to 2.3.2
Tom Lane 74fce09
- Clean up a few rpmlint warnings
Tom Lane 74fce09
afd3c83
* Fri Dec 03 2010 Jason L Tibbitts III <tibbs@math.uh.edu> - 2.2.2-3
afd3c83
- Fix incorrect (and invalid) License: tag.
afd3c83
8875a89
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.2.2-2
8875a89
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
8875a89
46d1631
* Tue Jul 20 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.2-1
481c0ca
- Update to 2.2.2
481c0ca
a08f87b
* Tue May 18 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.2.1-1
a08f87b
- Update to 2.2.1
a08f87b
- Improve description for 2.2 features.
a08f87b
- Changelog for 2.2.0 is: 
a08f87b
   http://initd.org/pub/software/psycopg/ChangeLog-2.2
a08f87b
5f0abee
* Wed Mar 17 2010 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.14-1
5f0abee
- Update to 2.0.14
5f0abee
- Update license (upstream switched to LGPL3)
5f0abee
2ad0900
* Sun Jan 24 2010 Tom Lane <tgl@redhat.com> 2.0.13-2
2ad0900
- Fix rpmlint complaints: remove unneeded explicit Requires:, use Conflicts:
2ad0900
  instead of bogus Obsoletes: to indicate lack of zope subpackage
2ad0900
5ca9a9e
* Sun Oct 18 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.13-1
5ca9a9e
- Update to 2.0.13
5ca9a9e
eb32e78
* Fri Aug 14 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.12-1
eb32e78
- Update to 2.0.12
eb32e78
bf3232d
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.11-2
bf3232d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
bf3232d
783bb1f
* Tue May 19 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.11-1
783bb1f
- Update to 2.0.11
783bb1f
9269647
* Tue Apr 21 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.10-1
9269647
- Update to 2.0.10
9269647
df276bd
* Fri Mar 20 2009 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.9-1
5effe45
- Update to 2.0.9
5effe45
c7e629e
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.8-3
c7e629e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
c7e629e
a298da8
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.8-2
a298da8
- Rebuild for Python 2.6
a298da8
5a9138c
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1
5a9138c
- Update to 2.0.8
5a9138c
5effe45
* Sat Nov 29 2008 Devrim GUNDUZ <devrim@gunduz.org> - 2.0.8-1
5effe45
- Update to 2.0.8
5effe45
293a506
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.0.7-3
293a506
- Rebuild for Python 2.6
293a506
6ad371e
* Thu May 29 2008 Todd Zullinger <tmz@pobox.com> - 2.0.7-2
6ad371e
- fix license tags
6ad371e
c357de4
* Wed Apr 30 2008 Devrim GUNDUZ <devrim@commandprompt.com> 2.0.7-1
c357de4
- Update to 2.0.7
c357de4
4bd375a
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 2.0.6-4.1
4bd375a
- Autorebuild for GCC 4.3
4bd375a
4b261e8
* Mon Jan 21 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3.1
4b261e8
- Rebuilt against PostgreSQL 8.3
4b261e8
bf4907f
* Thu Jan 3 2008 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-3
bf4907f
- Rebuild for rawhide changes
bf4907f
ff23cf2
* Tue Aug 28 2007 Fedora Release Engineering <rel-eng at fedoraproject dot org> - 2.0.6-2
ff23cf2
- Rebuild for selinux ppc32 issue.
ff23cf2
7f15d23
* Fri Jun 15 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.6-1
7f15d23
- Update to 2.0.6
7f15d23
6c1f416
* Thu Apr 26 2007 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-8
6c1f416
- Disabled zope package temporarily.
6c1f416
4464094
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-7
3093ec4
- Rebuilt
3093ec4
7b34a82
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-5
7b34a82
- Bumped up spec version
7b34a82
898aa0e
* Wed Dec 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-4
898aa0e
- Rebuilt for PostgreSQL 8.2.0
898aa0e
02f0d00
* Mon Sep 11 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-3
02f0d00
- Rebuilt
02f0d00
02f0d00
* Wed Sep 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-2
02f0d00
- Remove ghost'ing, per Python Packaging Guidelines
02f0d00
668cfca
* Mon Sep 4 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.5.1-1
668cfca
- Update to 2.0.5.1
668cfca
840879a
* Sun Aug 6 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-3
840879a
- Fixed zope package dependencies and macro definition, per bugzilla review (#199784)
840879a
- Fixed zope package directory ownership, per bugzilla review (#199784)
840879a
- Fixed cp usage for zope subpackage, per bugzilla review (#199784)
840879a
840879a
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-2
840879a
- Fixed 64 bit builds
840879a
- Fixed license
840879a
- Added Zope subpackage
840879a
- Fixed typo in doc description
840879a
- Added macro for zope subpackage dir
840879a
840879a
* Mon Jul 31 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.3-1
840879a
- Update to 2.0.3
840879a
- Fixed spec file, per bugzilla review (#199784)
840879a
840879a
* Sat Jul 22 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-3
840879a
- Removed python dependency, per bugzilla review. (#199784)
840879a
- Changed doc package group, per bugzilla review. (#199784)
840879a
- Replaced dos2unix with sed, per guidelines and bugzilla review (#199784)
840879a
- Fix changelog dates
840879a
d8f7001
* Sat Jul 22 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-2
840879a
- Added dos2unix to buildrequires
840879a
- removed python related part from package name
840879a
d8f7001
* Fri Jul 21 2006 - Devrim GUNDUZ <devrim@commandprompt.com> 2.0.2-1
840879a
- Fix rpmlint errors, including dos2unix solution
840879a
- Re-engineered spec file
840879a
d8f7001
* Mon Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com>
840879a
- First 2.0.X build
840879a
d8f7001
* Mon Jan 23 2006 - Devrim GUNDUZ <devrim@commandprompt.com>
840879a
- Update to 1.2.21
840879a
840879a
* Tue Dec 06 2005 - Devrim GUNDUZ <devrim@commandprompt.com>
840879a
- Initial release for 1.1.20