python-furo/python-furo.spec
2022-09-06 16:24:05 -06:00

134 lines
4.3 KiB
RPMSpec

Name: python-furo
Version: 2022.06.21
Release: 1%{?dist}
Summary: Clean customizable Sphinx documentation theme
License: MIT
URL: https://pradyunsg.me/furo/
Source0: https://github.com/pradyunsg/furo/archive/%{version}/furo-%{version}.tar.gz
# Source1 and Source2 created with ./prepare_vendor.sh
Source1: furo-%{version}-vendor.tar.xz
Source2: furo-%{version}-vendor-licenses.txt
BuildArch: noarch
BuildRequires: make
BuildRequires: nodejs-devel
BuildRequires: npm
BuildRequires: python-sphinx-doc
BuildRequires: python3-devel
BuildRequires: python3-docs
BuildRequires: %{py3_dist beautifulsoup4}
BuildRequires: %{py3_dist myst-parser}
BuildRequires: %{py3_dist nodeenv}
BuildRequires: %{py3_dist pip}
BuildRequires: %{py3_dist pygments}
BuildRequires: %{py3_dist sphinx}
BuildRequires: %{py3_dist sphinx-basic-ng}
BuildRequires: %{py3_dist sphinx-copybutton}
BuildRequires: %{py3_dist sphinx-design}
BuildRequires: %{py3_dist sphinx-inline-tabs}
BuildRequires: %{py3_dist sphinx-theme-builder}
BuildRequires: %{py3_dist wheel}
BuildRequires: yarnpkg
%global _description %{expand:
Furo is a Sphinx theme, which is:
- Intentionally minimal --- the most important thing is the content, not
the scaffolding around it.
- Responsive --- adapting perfectly to the available screen space, to
work on all sorts of devices.
- Customizable --- change the color palette, font families, logo and
more!
- Easy to navigate --- with carefully-designed sidebar navigation and
inter-page links.
- Good looking content --- through clear typography and well-stylized
elements.
- Good looking search --- helps readers find what they want quickly.
- Biased for smaller docsets --- intended for smaller documentation
sets, where presenting the entire hierarchy in the sidebar is not
overwhelming.}
%description %_description
%package -n python3-furo
Summary: Clean customizable Sphinx documentation theme
%description -n python3-furo %_description
%package doc
Summary: Documentation for %{name}
# This project is MIT. Other files bundled with the documentation have the
# following licenses:
# - searchindex.js: BSD-2-Clause
# - _sources/kitchen-sink/*.rst.txt: CC-BY-SA-4.0
# - _static/basic.css: BSD-2-Clause
# - _static/clipboard.min.js: MIT
# - _static/copy*: MIT
# - _static/doctools.js: BSD-2-Clause
# - _static/jquery*.js: MIT
# - _static/language_data.js: BSD-2-Clause
# - _static/pygments.css: BSD-2-Clause
# - _static/searchtools.js: BSD-2-Clause
# - _static/underscore*.js: MIT
License: MIT AND BSD-2-Clause AND CC-BY-SA-4.0
%description doc
Documentation for %{name}.
%prep
%autosetup -n furo-%{version} -a1
cp -p %{SOURCE2} .
# Don't ship version control files
find . -name .gitignore -delete
# Substitute the installed nodejs version for the requested version
sed -i 's,^\(node-version = \)".*",\1"%{nodejs_version}",' pyproject.toml
# Create a node header tarball so we don't try to download it
mkdir -p node-v%{nodejs_version}/include
cp -a %{_includedir}/node node-v%{nodejs_version}/include
tar czf node-v%{nodejs_version}-headers.tar.gz node-v%{nodejs_version}
npm config set tarball $PWD/node-v%{nodejs_version}-headers.tar.gz
# sass-loader needs a sass implementation
sed -i '/sass-loader/a\ "sass": "^1.54.5",' package.json
# Use local objects.inv for intersphinx
sed -e 's|\("https://docs\.python\.org/3", \)None|\1"%{_docdir}/python3-docs/html/objects.inv"|' \
-e 's|\("https://www\.sphinx-doc\.org/en/master", \)None|\1"%{_docdir}/python-sphinx-doc/html/objects.inv"|' \
-i docs/conf.py
%build
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1
export YARN_CACHE_FOLDER="$PWD/.package-cache"
yarn install --offline
nodeenv --node=system --prebuilt --clean-src $PWD/.nodeenv
%pyproject_wheel
%install
%pyproject_install
%pyproject_save_files furo
# Build documentation
PYTHONPATH=%{buildroot}%{python3_sitelib} sphinx-build -b html docs html
rm -rf html/{.buildinfo,.doctrees}
%check
# There aren't any tests. When there are, do this:
#%%pytest
%pyproject_check_import
%files -n python3-furo -f %{pyproject_files}
%doc README.md
%license LICENSE
%files doc
%doc html
%license LICENSE
%changelog
* Thu Aug 25 2022 Jerry James <loganjerry@gmail.com> - 2022.06.21-1
- Initial RPM