Package init
This commit is contained in:
parent
3b29c2c993
commit
af7f2c497e
19
0fbf25e4857423f6a38ca7f5aeee1c84acaa3fc1.patch
Normal file
19
0fbf25e4857423f6a38ca7f5aeee1c84acaa3fc1.patch
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# HG changeset patch
|
||||||
|
# User robin <robin@reportlab.com>
|
||||||
|
# Date 1495525707 -3600
|
||||||
|
# Node ID 0fbf25e4857423f6a38ca7f5aeee1c84acaa3fc1
|
||||||
|
# Parent 0f6004ec2916b76cfbd0444de6f551bcb1949781
|
||||||
|
fix bitbucket issue 113
|
||||||
|
|
||||||
|
diff --git a/setup.py b/setup.py
|
||||||
|
--- a/setup.py
|
||||||
|
+++ b/setup.py
|
||||||
|
@@ -539,7 +539,7 @@
|
||||||
|
],
|
||||||
|
|
||||||
|
#this probably only works for setuptools, but distutils seems to ignore it
|
||||||
|
- install_requires=['pillow>=2.4.0','pip>=1.4.1', 'setuptools>=2.2'],
|
||||||
|
+ install_requires=['pillow>=2.4.0'],
|
||||||
|
)
|
||||||
|
print()
|
||||||
|
print('########## SUMMARY INFO #########')
|
||||||
89
python-reportlab.spec
Normal file
89
python-reportlab.spec
Normal file
@ -0,0 +1,89 @@
|
|||||||
|
%global cmapdir %(echo `rpm -qls ghostscript | grep CMap | awk '{print $2}'`)
|
||||||
|
|
||||||
|
Name: python-reportlab
|
||||||
|
Version: 3.4.0
|
||||||
|
Release: 10
|
||||||
|
Summary: ReportLab library to create PDF documents and graphic
|
||||||
|
License: BSD
|
||||||
|
URL: https://www.reportlab.com/
|
||||||
|
Source0: https://pypi.python.org/packages/source/r/reportlab/reportlab-%{version}.tar.gz
|
||||||
|
Patch0001: 0fbf25e4857423f6a38ca7f5aeee1c84acaa3fc1.patch
|
||||||
|
|
||||||
|
%description
|
||||||
|
The ReportLab Toolkit. An Open Source Python library for generating PDFs and graphics.
|
||||||
|
|
||||||
|
%package -n python2-reportlab
|
||||||
|
Summary: ReportLab library to create PDF documents and graphic
|
||||||
|
BuildRequires: gcc freetype-devel ghostscript python2-devel python2-pillow libart_lgpl-devel
|
||||||
|
Requires: dejavu-sans-fonts python2-pillow
|
||||||
|
%{?python_provide:%python_provide python2-reportlab}
|
||||||
|
|
||||||
|
%description -n python2-reportlab
|
||||||
|
The ReportLab Toolkit. An Open Source Python library for generating PDFs and graphics.
|
||||||
|
|
||||||
|
%package -n python3-reportlab
|
||||||
|
Summary: ReportLab library to create PDF documents and graphic
|
||||||
|
BuildRequires: python3-devel python3-pillow
|
||||||
|
Requires: dejavu-sans-fonts python3-pillow
|
||||||
|
%{?python_provide:%python_provide python3-reportlab}
|
||||||
|
|
||||||
|
%description -n python3-reportlab
|
||||||
|
The ReportLab Toolkit. An Open Source Python library for generating PDFs and graphics.
|
||||||
|
|
||||||
|
%package help
|
||||||
|
Summary: Documentation for python-reportlab
|
||||||
|
BuildArch: noarch
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
Provides: %{name}-doc = %{version}-%{release}
|
||||||
|
Obsoletes: %{name}-doc < %{version}-%{release} %{name}-docs < %{version}-%{release}
|
||||||
|
|
||||||
|
%description help
|
||||||
|
Help documents for ReportLab.
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -n reportlab-%{version} -p1
|
||||||
|
|
||||||
|
find src -name '*.py' | xargs sed -i -e '/^#!\//d'
|
||||||
|
|
||||||
|
sed -i '/\~\/\.local\/share\/fonts\/CMap/i''\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ '\'"%{cmapdir}"\''\,' \
|
||||||
|
src/reportlab/rl_settings.py
|
||||||
|
|
||||||
|
rm -rf %{py3dir}
|
||||||
|
cp -a . %{py3dir}
|
||||||
|
%build
|
||||||
|
CFLAGS="%{optflags}" %py2_build
|
||||||
|
pushd %{py3dir}
|
||||||
|
CFLAGS="%{optflags}" %py3_build
|
||||||
|
popd
|
||||||
|
|
||||||
|
PYTHONPATH="`pwd`/`ls -d build/lib*`" %{__python2} docs/genAll.py
|
||||||
|
|
||||||
|
%install
|
||||||
|
%py2_install
|
||||||
|
pushd %{py3dir}
|
||||||
|
%py3_install
|
||||||
|
popd
|
||||||
|
|
||||||
|
%check
|
||||||
|
%{__python2} setup.py tests
|
||||||
|
pushd %{py3dir}
|
||||||
|
%{__python3} setup.py tests
|
||||||
|
popd
|
||||||
|
|
||||||
|
%files -n python2-reportlab
|
||||||
|
%doc README.txt CHANGES.md
|
||||||
|
%license LICENSE.txt
|
||||||
|
%{python2_sitearch}/{reportlab/,reportlab-%{version}-py%{python2_version}.egg-info}
|
||||||
|
%exclude %{python2_sitearch}/reportlab/fonts
|
||||||
|
|
||||||
|
%files -n python3-reportlab
|
||||||
|
%doc README.txt CHANGES.md
|
||||||
|
%license LICENSE.txt
|
||||||
|
%{python3_sitearch}/{reportlab/,reportlab-%{version}-py%{python3_version}.egg-info}
|
||||||
|
|
||||||
|
%files help
|
||||||
|
%doc demos/ tools/
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Mon Mar 02 2020 Jiangping Hu <hujp1985@foxmail.com> - 3.4.0-10
|
||||||
|
- Package init
|
||||||
BIN
reportlab-3.4.0.tar.gz
Normal file
BIN
reportlab-3.4.0.tar.gz
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user