2023-08-18 11:31:25 +08:00
|
|
|
%global pypi_name hatch-jupyter-builder
|
|
|
|
|
%global source_name hatch_jupyter_builder
|
2023-08-25 10:29:03 +08:00
|
|
|
|
2023-08-18 11:31:25 +08:00
|
|
|
|
|
|
|
|
Name: python-%{pypi_name}
|
2023-08-25 10:29:03 +08:00
|
|
|
Version: 0.8.3
|
|
|
|
|
Release: 2
|
|
|
|
|
Summary: This provides a build hook plugin for Hatch that adds a build step for use with Jupyter packages.
|
2023-08-18 11:31:25 +08:00
|
|
|
|
|
|
|
|
License: BSD-3-Clause
|
|
|
|
|
URL: https://github.com/jupyterlab/hatch-jupyter-builder
|
|
|
|
|
Source0: https://files.pythonhosted.org/packages/b1/b2/3c304707d4d3c30b2c87f1b8f8b2eb4a682662fea13bd5ab8f16c4c0eb0b/hatch_jupyter_builder-0.8.3.tar.gz
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
|
|
BuildRequires: python3-devel
|
|
|
|
|
BuildRequires: python3-setuptools
|
|
|
|
|
BuildRequires: python3-pip
|
|
|
|
|
BuildRequires: python3-wheel
|
|
|
|
|
BuildRequires: python3-hatchling
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
|
This provides a build hook plugin for Hatch that adds a build step for use with Jupyter packages.
|
|
|
|
|
|
2023-08-25 10:29:03 +08:00
|
|
|
%package -n python3-%{pypi_name}
|
2023-08-18 11:31:25 +08:00
|
|
|
Summary: %{summary}
|
|
|
|
|
%{?python_provide:%python_provide python3-%{source_name}}
|
|
|
|
|
|
|
|
|
|
%package help
|
|
|
|
|
Summary: Fix common misspellings in text files.
|
2023-08-25 10:29:03 +08:00
|
|
|
Provides: python3-%{pypi_name}-doc
|
2023-08-18 11:31:25 +08:00
|
|
|
%description help
|
|
|
|
|
This provides a build hook plugin for Hatch that adds a build step for use with Jupyter packages.
|
|
|
|
|
|
2023-08-25 10:29:03 +08:00
|
|
|
%description -n python3-%{pypi_name}
|
2023-08-18 11:31:25 +08:00
|
|
|
This provides a build hook plugin for Hatch that adds a build step for use with Jupyter packages.
|
|
|
|
|
|
|
|
|
|
%prep
|
2023-08-25 10:29:03 +08:00
|
|
|
%autosetup -n %{source_name}-%{version}
|
2023-08-18 11:31:25 +08:00
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
%pyproject_build
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
|
%pyproject_install
|
|
|
|
|
install -d -m755 %{buildroot}/%{_pkgdocdir}
|
|
|
|
|
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
|
|
|
|
|
pushd %{buildroot}
|
|
|
|
|
touch doclist.lst
|
|
|
|
|
if [ -d usr/share/man ]; then
|
|
|
|
|
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
|
|
|
|
|
fi
|
|
|
|
|
popd
|
|
|
|
|
mv %{buildroot}/doclist.lst .
|
|
|
|
|
|
2023-08-25 10:29:03 +08:00
|
|
|
%files -n python3-%{pypi_name}
|
2023-08-18 11:31:25 +08:00
|
|
|
%license LICENSE.txt
|
|
|
|
|
%doc README.md
|
|
|
|
|
%{python3_sitelib}/hatch_jupyter_builder*
|
|
|
|
|
%{_bindir}/hatch-jupyter-builder
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%files help
|
|
|
|
|
%{_docdir}/*
|
|
|
|
|
|
|
|
|
|
%changelog
|
2023-08-25 10:29:03 +08:00
|
|
|
* Fri Aug 25 2023 luolu12 <luluoc@isoftstone.com> - 0.8.3-2
|
|
|
|
|
- Fix the provider name.
|
|
|
|
|
|
2023-08-18 11:31:25 +08:00
|
|
|
* Thu Aug 17 2023 luolu12 <luluoc@isoftstone.com> - 0.8.3-1
|
|
|
|
|
- Initial package.
|