72 lines
2.0 KiB
RPMSpec
72 lines
2.0 KiB
RPMSpec
Name: rst2pdf
|
|
Version: 0.95.1
|
|
Release: 1mamba
|
|
Summary: Convert reStructuredText to PDF via ReportLab
|
|
Group: System/Libraries/Python
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Stefano Cotta Ramusino <stefano.cotta@openmamba.org>
|
|
URL: https://github.com/rst2pdf/rst2pdf
|
|
Source: https://github.com/rst2pdf/rst2pdf.git/%{version}/rst2pdf-%{version}.tar.bz2
|
|
Patch: rst2pdf-0.16-docutils_0.8.patch
|
|
License: MIT
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: ldconfig
|
|
BuildRequires: libglib-devel
|
|
BuildRequires: libjson-glib-devel
|
|
BuildRequires: libpython3-devel
|
|
BuildRequires: libxml2-devel
|
|
BuildRequires: python3
|
|
## AUTOBUILDREQ-END
|
|
Requires: python3 >= %python_version
|
|
Requires: python-reportlab-py3
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
|
|
%description
|
|
Convert reStructuredText to PDF via ReportLab.
|
|
|
|
%prep
|
|
%setup -q
|
|
#%patch -p1
|
|
|
|
%build
|
|
%{__python3} setup.py build
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
%{__python3} setup.py install \
|
|
-O1 --skip-build \
|
|
--root="%{buildroot}" \
|
|
--install-headers=%{python3_inc}/python \
|
|
--install-lib=%{python3_sitearch} \
|
|
--single-version-externally-managed \
|
|
--record=%{name}.filelist
|
|
|
|
sed -i "s,.*/man/.*,&.gz," %{name}.filelist
|
|
|
|
#install -D -m 644 doc/rst2pdf.1 \
|
|
# %{buildroot}/%{_mandir}/man1/rst2pdf.1
|
|
#echo "%{_mandir}/man1/rst2pdf.1.gz" >> %{name}.filelist
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
|
|
|
%files -f %{name}.filelist
|
|
%defattr(-,root,root)
|
|
%doc LICENSE.txt
|
|
|
|
%changelog
|
|
* Wed Feb 03 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 0.95.1-1mamba
|
|
- update to 0.95.1
|
|
|
|
* Thu Aug 09 2012 Automatic Build System <autodist@mambasoft.it> 0.92-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Wed Dec 21 2011 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 0.16-2mamba
|
|
- fixing compatibility with docutils 0.8
|
|
|
|
* Tue Oct 12 2010 Stefano Cotta Ramusino <stefano.cotta@openmamba.org> 0.16-1mamba
|
|
- package created by autospec
|