48927be
# This package depends on automagic byte compilation
48927be
# https://fedoraproject.org/wiki/Changes/No_more_automagic_Python_bytecompilation_phase_2
48927be
%global _python_bytecompile_extra 1
48927be
09fec3e
%global cmapdir %(echo `rpm -qls ghostscript | grep CMap | awk '{print $2}'`)
ccbfc81
%global pypi reportlab
09fec3e
c9df95a
%bcond_without tests
c9df95a
a9df141
# Starting from Fedora 32 has been established switching to Python3 unless exceptions by FESCo.
a9df141
# https://fedoraproject.org/wiki/Changes/F31_Mass_Python_2_Package_Removal#Process_for_abandoning_Python_2_subpackages
a9df141
# https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3#Phase_4:_Retire_Python_2_for_other_packages.2C_but_keep_it_around_for_developers_and_users
a9df141
%if 0%{?fedora} < 32
c9df95a
%global with_python2 1
c9df95a
%endif
c9df95a
ccbfc81
Name:           python-%{pypi}
e5cb2a3
Version:        3.5.34
9fe7803
Release:        4%{?dist}
ccbfc81
Summary:        Library for generating PDFs and graphics
c9df95a
License:        BSD and GPLv2+
e6fc0de
URL:            https://www.reportlab.com/opensource/
ccbfc81
Source0:        https://pypi.python.org/packages/source/r/%{pypi}/%{pypi}-%{version}.tar.gz
ccbfc81
9fe7803
Patch0:         python-%{pypi}-3.5.34_python39.patch
9fe7803
198d499
BuildRequires:  gcc
09fec3e
BuildRequires:  freetype-devel
09fec3e
BuildRequires:  ghostscript
fd8339f
BuildRequires:  libart_lgpl-devel
c9df95a
Buildrequires:  fontpackages-devel
c9df95a
BuildRequires:  dejavu-sans-fonts
c9df95a
BuildRequires:  bitstream-vera-sans-fonts
c9df95a
c9df95a
Obsoletes:      %{name}-doc < 0:3.5.21-1
c9df95a
c9df95a
%description
c9df95a
This is the ReportLab PDF Toolkit. It allows rapid creation of rich PDF
c9df95a
documents, and also creation of charts in a variety of bitmap and vector
c9df95a
formats.
ccbfc81
c9df95a
%if 0%{?with_python2}
c9df95a
%package -n     python2-%{pypi}
c9df95a
Summary:        Library for generating PDFs and graphics
c9df95a
BuildRequires:  python2-devel
c9df95a
BuildRequires:  python2-pillow
09fec3e
Requires:       dejavu-sans-fonts
c9df95a
Requires:       bitstream-vera-sans-fonts
646ea84
Requires:       python2-pillow
ccbfc81
%{?python_provide:%python_provide python2-%{pypi}}
cvsextras 10e2495
c9df95a
%description -n python2-%{pypi}
c9df95a
This is the ReportLab PDF Toolkit. It allows rapid creation of rich PDF
c9df95a
documents, and also creation of charts in a variety of bitmap and vector
c9df95a
formats.
c9df95a
%endif
c9df95a
ccbfc81
%package -n     python3-%{pypi}
ccbfc81
Summary:        Library for generating PDFs and graphics
09fec3e
BuildRequires:  python3-devel
09fec3e
BuildRequires:  python3-pillow
09fec3e
Requires:       dejavu-sans-fonts
c9df95a
Requires:       bitstream-vera-sans-fonts
09fec3e
Requires:       python3-pillow
ccbfc81
%{?python_provide:%python_provide python3-%{pypi}}
9fe7803
%if 0%{?fedora} >= 32
9fe7803
Obsoletes: python2-reportlab < 0:%{version}-%{release}
9fe7803
%endif
09fec3e
ccbfc81
%description -n python3-%{pypi}
09fec3e
This is the ReportLab PDF Toolkit. It allows rapid creation of rich PDF 
09fec3e
documents, and also creation of charts in a variety of bitmap and vector 
09fec3e
formats.
09fec3e
cvsextras 10e2495
%prep
9fe7803
%autosetup -n %{pypi}-%{version} -N
9fe7803
9fe7803
%if 0%{?python3_version_nodots} == 39
9fe7803
%patch0 -p1 -b .python39
9fe7803
%endif
c9df95a
c2a34e3
# clean up hashbangs from libraries
c2a34e3
find src -name '*.py' | xargs sed -i -e '/^#!\//d'
09fec3e
# patch the CMap path by adding Fedora ghostscript path before the match
09fec3e
sed -i '/\~\/\.local\/share\/fonts\/CMap/i''\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ '\'%{cmapdir}\''\,' src/reportlab/rl_settings.py
c9df95a
c9df95a
# Remove Upstream Egg
c9df95a
rm -rf src/reportlab.egg-info
c9df95a
c9df95a
# Remove bundled libart
c9df95a
rm -rf src/rl_addons/renderPM/libart_lgpl
c9df95a
c9df95a
%if 0%{?with_python2}
c9df95a
rm -rf ../python2
c9df95a
cp -a . ../python2
c9df95a
%endif
cvsextras 10e2495
cvsextras 10e2495
%build
c9df95a
%if 0%{?with_python2}
c9df95a
pushd ../python2
c9df95a
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS} -I%{_includedir}/libart-2.0}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\
c9df95a
  %{__python2} setup.py --use-system-libart build --executable="%{__python2} -s"
09fec3e
popd
c9df95a
%endif
c9df95a
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS} -I%{_includedir}/libart-2.0}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\
c9df95a
  %{__python3} setup.py --use-system-libart build --executable="%{__python3} -s"
cvsextras 10e2495
cvsextras 10e2495
%install
c9df95a
%if 0%{?with_python2}
c9df95a
pushd ../python2
c9df95a
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS} -I%{_includedir}/libart-2.0}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\
c9df95a
  %{__python2} setup.py --use-system-libart install -O1 --skip-build --root ${RPM_BUILD_ROOT}
c9df95a
c9df95a
# Unbundled fonts
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/Vera.ttf %{buildroot}%{python2_sitearch}/reportlab/fonts/Vera.ttf
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/VeraBI.ttf %{buildroot}%{python2_sitearch}/reportlab/fonts/VeraBI.ttf
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/VeraBd.ttf %{buildroot}%{python2_sitearch}/reportlab/fonts/VeraBd.ttf
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/VeraIt.ttf %{buildroot}%{python2_sitearch}/reportlab/fonts/VeraIt.ttf
c9df95a
rm -f %{buildroot}%{python2_sitearch}/reportlab/fonts/bitstream-vera-license.txt
c9df95a
c9df95a
cp -a demos %{buildroot}%{python2_sitearch}/reportlab/
c9df95a
cp -a tools %{buildroot}%{python2_sitearch}/reportlab/
c691f2b
c691f2b
# Fix shebang in individual files
c691f2b
pathfix.py -pn -i "%{__python2}" %{buildroot}%{python2_sitearch}/reportlab/demos/tests/testdemos.py
c691f2b
pathfix.py -pn -i "%{__python2}" %{buildroot}%{python2_sitearch}/reportlab/tools/docco/docpy.py
c691f2b
pathfix.py -pn -i "%{__python2}" %{buildroot}%{python2_sitearch}/reportlab/tools/docco/graphdocpy.py
c691f2b
pathfix.py -pn -i "%{__python2}" %{buildroot}%{python2_sitearch}/reportlab/tools/docco/rl_doc_utils.py
c691f2b
pathfix.py -pn -i "%{__python2}" %{buildroot}%{python2_sitearch}/reportlab/tools/pythonpoint/pythonpoint.py
c691f2b
c691f2b
chmod 0755 %{buildroot}%{python2_sitearch}/reportlab/demos/tests/testdemos.py
c691f2b
chmod 0755 %{buildroot}%{python2_sitearch}/reportlab/tools/docco/docpy.py
c691f2b
chmod 0755 %{buildroot}%{python2_sitearch}/reportlab/tools/docco/graphdocpy.py
c691f2b
chmod 0755 %{buildroot}%{python2_sitearch}/reportlab/tools/docco/rl_doc_utils.py
c691f2b
chmod 0755 %{buildroot}%{python2_sitearch}/reportlab/tools/pythonpoint/pythonpoint.py
09fec3e
popd
c9df95a
%endif
024595c
c9df95a
CFLAGS="${CFLAGS:-${RPM_OPT_FLAGS} -I%{_includedir}/libart-2.0}" LDFLAGS="${LDFLAGS:-${RPM_LD_FLAGS}}"\
c9df95a
  %{__python3} setup.py --use-system-libart install -O1 --skip-build --root ${RPM_BUILD_ROOT}
ccbfc81
c9df95a
# Unbundled fonts
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/Vera.ttf %{buildroot}%{python3_sitearch}/reportlab/fonts/Vera.ttf
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/VeraBI.ttf %{buildroot}%{python3_sitearch}/reportlab/fonts/VeraBI.ttf
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/VeraBd.ttf %{buildroot}%{python3_sitearch}/reportlab/fonts/VeraBd.ttf
c9df95a
ln -sf %{_fontbasedir}/bitstream-vera/VeraIt.ttf %{buildroot}%{python3_sitearch}/reportlab/fonts/VeraIt.ttf
c9df95a
rm -f %{buildroot}%{python3_sitearch}/reportlab/fonts/bitstream-vera-license.txt
cvsextras 10e2495
c9df95a
cp -a demos %{buildroot}%{python3_sitearch}/reportlab/
c9df95a
cp -a tools %{buildroot}%{python3_sitearch}/reportlab/
c9df95a
c691f2b
# Fix shebang in individual files
c691f2b
pathfix.py -pn -i "%{__python3}" %{buildroot}%{python3_sitearch}/reportlab/demos/tests/testdemos.py
c691f2b
pathfix.py -pn -i "%{__python3}" %{buildroot}%{python3_sitearch}/reportlab/tools/docco/docpy.py
c691f2b
pathfix.py -pn -i "%{__python3}" %{buildroot}%{python3_sitearch}/reportlab/tools/docco/graphdocpy.py
c691f2b
pathfix.py -pn -i "%{__python3}" %{buildroot}%{python3_sitearch}/reportlab/tools/docco/rl_doc_utils.py
c691f2b
pathfix.py -pn -i "%{__python3}" %{buildroot}%{python3_sitearch}/reportlab/tools/pythonpoint/pythonpoint.py
c691f2b
c691f2b
chmod 0755 %{buildroot}%{python3_sitearch}/reportlab/demos/tests/testdemos.py
c691f2b
chmod 0755 %{buildroot}%{python3_sitearch}/reportlab/tools/docco/docpy.py
c691f2b
chmod 0755 %{buildroot}%{python3_sitearch}/reportlab/tools/docco/graphdocpy.py
c691f2b
chmod 0755 %{buildroot}%{python3_sitearch}/reportlab/tools/docco/rl_doc_utils.py
c691f2b
chmod 0755 %{buildroot}%{python3_sitearch}/reportlab/tools/pythonpoint/pythonpoint.py
c691f2b
c9df95a
# Generate PDF user guide
c9df95a
export PYTHONPATH=%{buildroot}%{python3_sitearch}
c9df95a
%{__python3} docs/genAll.py
c9df95a
c9df95a
%if %{with tests}
09fec3e
%check
c9df95a
%if 0%{?with_python2}
c9df95a
pushd ../python2
c9df95a
rm -f src/reportlab/graphics/__init__.py
ccbfc81
%{__python2} setup.py tests
ccbfc81
popd
c9df95a
%endif
c9df95a
rm -f src/reportlab/graphics/__init__.py
c9df95a
%{__python3} setup.py tests
c9df95a
%endif
cvsextras 10e2495
c9df95a
%if 0%{?with_python2}
ccbfc81
%files -n python2-%{pypi}
c9df95a
%doc README.txt CHANGES.md docs/reportlab-userguide.pdf
ccbfc81
%license LICENSE.txt
09fec3e
%{python2_sitearch}/reportlab/
09fec3e
%{python2_sitearch}/reportlab-%{version}-py%{python2_version}.egg-info
c9df95a
%endif
e34f304
ccbfc81
%files -n python3-%{pypi}
c9df95a
%doc README.txt CHANGES.md docs/reportlab-userguide.pdf
ccbfc81
%license LICENSE.txt
09fec3e
%{python3_sitearch}/reportlab/
09fec3e
%{python3_sitearch}/reportlab-%{version}-py%{python3_version}.egg-info
cvsextras 10e2495
cvsextras 10e2495
%changelog
9fe7803
* Fri Feb 28 2020 Antonio Trande <sagitter@fedoraproject.org> - 3.5.34-4
9fe7803
- Patched for Python-3.9 (rhbz#1808508)
9fe7803
fa00098
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.34-3
fa00098
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
fa00098
024595c
* Fri Jan 17 2020 Antonio Trande <sagitter@fedoraproject.org> - 3.5.34-2
024595c
- Fix permissions
024595c
e5cb2a3
* Tue Jan 14 2020 Antonio Trande <sagitter@fedoraproject.org> - 3.5.34-1
e5cb2a3
- Release 3.5.34
e5cb2a3
0c23012
* Thu Oct 31 2019 Antonio Trande <sagitter@fedoraproject.org> - 3.5.32-1
0c23012
- Release 3.5.32
0c23012
8097d52
* Thu Oct 03 2019 Antonio Trande <sagitter@fedoraproject.org> - 3.5.28-1
8097d52
- Release 3.5.28 (rhbz#1757766)
8097d52
83236a7
* Thu Sep 19 2019 Antonio Trande <sagitter@fedoraproject.org> - 3.5.26-1
83236a7
- Release 3.5.26 (rhbz#1752842)
83236a7
c5664cd
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 3.5.23-5
c5664cd
- Rebuilt for Python 3.8
c5664cd
5b73c79
* Fri Aug 16 2019 Antonio Trande <sagitter@fedoraproject.org> - 3.5.23-4
5b73c79
- Rebuild for Python 3.8
5b73c79
a92aa35
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.5.23-3
a92aa35
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a92aa35
a9df141
* Sat Jun 22 2019 Antonio Trande <sagitter@fedoraproject.org> - 3.5.23-2
a9df141
- Reintroduce python2-reportlab on Fedora 31 (rhbz#1723034)
a9df141
c9df95a
* Wed Jun 12 2019 Antonio Trande <sagitter@fedoraproject.org> - 3.5.23-1
c9df95a
- Release 3.5.23 (rhbz#1713011)
c9df95a
- Unbundle libart (rhbz#1435836)
c9df95a
c9df95a
* Wed May 08 2019 Antonio Trande <sagitter@fedoraproject.org> - 3.5.21-1
c9df95a
- Release 3.5.21 (rhbz#1600316)
c9df95a
- Obsolete Python2 on Fedora 31+
c9df95a
37be0ca
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-10
37be0ca
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
37be0ca
e6fc0de
* Sun Oct 28 2018 William Moreno Reyes <williamjmorenor@gmail.com> - 3.4.0-9
c9df95a
- Update url
e6fc0de
  See: https://bugzilla.redhat.com/show_bug.cgi?id=1622664
e6fc0de
910db02
* Thu Aug 23 2018 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 3.4.0-8
910db02
- Correct egg-info dependency information
910db02
6e16a55
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-7
6e16a55
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
6e16a55
8a5099b
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 3.4.0-6
8a5099b
- Rebuilt for Python 3.7
8a5099b
f6b26ff
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-5
f6b26ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
f6b26ff
7b78381
* Tue Oct 24 2017 williamjmorenor@gmail.com - 3.4.0-4
7b78381
- Adjust requirements
7b78381
26bd2ab
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-3
26bd2ab
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
26bd2ab
af72e58
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.4.0-2
af72e58
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
af72e58
1b7f96d
* Tue Jun 06 2017 William Moreno <williamjmorenor@gmail.com> - 3.4.0-1
1b7f96d
- Update to 3.4.0 upstream release
1b7f96d
033d3b6
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-4
033d3b6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
033d3b6
ad83b85
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 3.3.0-3
ad83b85
- Rebuild for Python 3.6
ad83b85
fa9647c
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.0-2
fa9647c
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
fa9647c
df269cd
* Sat Apr 09 2016 William Moreno <williamjmorenor@gmail.com> - 3.3.0-1
df269cd
- Update to v3.3.0
df269cd
- Update python macros
df269cd
- Enable %%test
df269cd
- Use license macro
df269cd
- Provide python2 subpackage
df269cd
787e8de
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.0-3
787e8de
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
787e8de
a45d1b6
* Tue Nov 10 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.0-2
a45d1b6
- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5
a45d1b6
164a949
* Mon Oct 26 2015 Peter Gordon <peter@thecodergeek.com> - 3.2.0-1
164a949
- Update to new upstream release (3.2.0)
164a949
- Drop font locations patches (fixed upstream):
164a949
  - 3.1.8-font-locations.patch
164a949
  - 2.5-font-locations.patch
42e6ad4
- Resolves: #1175228 (python-reportlab-3.2.0 is available).
42e6ad4
- Resolves: #1277162 (Wrong dependency version number for pillow.)
42e6ad4
- Resolves: #1267446 (Missing Requires: on pillow)
164a949
378cc90
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-5
378cc90
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
378cc90
9d5efd2
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-4
9d5efd2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
9d5efd2
d1f7eee
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.1.8-3
d1f7eee
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d1f7eee
8d9f712
* Wed May 28 2014 Kalev Lember <kalevlember@gmail.com> - 3.1.8-2
8d9f712
- Rebuilt for https://fedoraproject.org/wiki/Changes/Python_3.4
8d9f712
09fec3e
* Tue Apr 22 2014 Christopher Meng <rpm@cicku.me> - 3.1.8-1
09fec3e
- Update to 3.1.8
09fec3e
- Documentation package should be -doc instead of -docs.
09fec3e
141dd7d
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-8
141dd7d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
141dd7d
e87e914
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-7
e87e914
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
e87e914
9c96b4e
* Wed Jan 16 2013 Toshio Kuratomi <toshio@fedoraproject.org> - 2.5-6
9c96b4e
- Add a dep on python-imaging to process images
9c96b4e
e28b735
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-5
e28b735
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
e28b735
3bf52ff
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-4
3bf52ff
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
3bf52ff
4d3032f
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.5-3
4d3032f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
4d3032f
5fee2dd
* Thu Jan 06 2011 Konstantin Ryabitsev <icon@fedoraproject.org> - 2.5-2
ccf9db5
- Update to version 2.5 of reportlab.
ccf9db5
- Remove tabs in specfile.
ccf9db5
987e774
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 2.3-3
987e774
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
987e774
234b1a0
* Mon Nov 23 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 2.3-2
234b1a0
- Do not bundle fonts
234b1a0
- Point the config to Fedora's font locations
234b1a0
c2a34e3
* Thu Nov 12 2009 Konstantin Ryabitsev <icon@fedoraproject.org> - 2.3-1
c2a34e3
- Updated to 2.3
c2a34e3
- New version is no longer noarch.
89be2d9
c2a34e3
* Fri Apr 17 2009 Toshio Kuratomi <toshio@fedoraproject.org> - 2.1-6
c2a34e3
- Rebuild for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
0f432b7
a12bfbe
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.1-5
a12bfbe
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
a12bfbe
d2f276c
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.1-4
d2f276c
- Fix locations for Python 2.6
d2f276c
cdca6a8
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 2.1-3
cdca6a8
- Rebuild for Python 2.6
cdca6a8
57f9ac8
* Mon Jan  7 2008 Brian Pepple <bpepple@fedoraproject.org> - 2.1-2
57f9ac8
- Remove luxi font. (#427845)
57f9ac8
- Add patch to not search for the luxi font.
57f9ac8
6bba992
* Sat May 26 2007 Brian Pepple <bpepple@fedoraproject.org> - 2.1-1
6bba992
- Update to 2.1.
6bba992
e34f304
* Wed Dec 27 2006 Brian Pepple <bpepple@fedoraproject.org> - 2.0-2
e34f304
- Make docs subpackage.
e34f304
3360b93
* Wed Dec 27 2006 Brian Pepple <bpepple@fedoraproject.org> - 2.0-1
3360b93
- Update to 2.0.
3360b93
ebf8bc4
* Fri Dec  8 2006 Brian Pepple <bpepple@fedoraproject.org> - 1.21.1-2
ebf8bc4
- Rebuild against new python.
ebf8bc4
30429ec
* Thu Sep  7 2006 Brian Pepple <bpepple@fedoraproject.org> - 1.21.1-1
30429ec
- Update to 1.20.1.
30429ec
5842bd3
* Tue Feb 14 2006 Brian Pepple <bdpepple@ameritech.net> - 1.20-5
5842bd3
- rebuilt for new gcc4.1 snapshot and glibc changes
5842bd3
5b41376
* Mon Dec 26 2005 Brian Pepple <bdpepple@ameritech.net> - 1.20-4
5b41376
- Add dist tag. (#176479)
5b41376
5d14128
* Mon May  9 2005 Brian Pepple <bdpepple@ameritech.net> - 1.20-3.fc4
5d14128
- Switchback to sitelib patch.
5d14128
- Make package noarch.
5d14128
5e01348
* Thu Apr  7 2005 Brian Pepple <bdpepple@ameritech.net> - 1.20-2.fc4
5e01348
- Use python_sitearch to fix x86_64 build.
5e01348
0beb175
* Wed Mar 30 2005 Brian Pepple <bdpepple@ameritech.net> - 1.20-1.fc4
0beb175
- Rebuild for Python 2.4.
0beb175
- Update to 1.20.
0beb175
- Switch to the new python macros for python-abi
0beb175
- Add dist tag.
0beb175
cvsextras 10e2495
* Sat Apr 24 2004 Brian Pepple <bdpepple@ameritech.net> 0:1.19-0.fdr.2
c2a34e3
- Removed ghosts.
cvsextras 10e2495
cvsextras 10e2495
* Sat Mar 20 2004 Brian Pepple <bdpepple@ameritech.net> 0:1.19-0.fdr.1
c9df95a
- Initial Fedora RPM build