Sync from SUSE:SLFO:Main python-hatch-jupyter-builder revision 23835efd9dee6b25577ed7c0991242a8

This commit is contained in:
Adrian Schröter 2024-05-03 20:56:51 +02:00
commit 3d766d5a56
5 changed files with 144 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

View File

@ -0,0 +1,25 @@
Index: hatch_jupyter_builder-0.8.2/tests/test_plugin.py
===================================================================
--- hatch_jupyter_builder-0.8.2.orig/tests/test_plugin.py
+++ hatch_jupyter_builder-0.8.2/tests/test_plugin.py
@@ -100,7 +100,8 @@ dependencies = ["hatch-jupyter-builder@f
@pytest.mark.skipif(platform.python_implementation() == "PyPy", reason="Does not work on PyPy")
def test_hatch_build(tmp_path):
- venv.create(tmp_path, with_pip=True)
+ # openSUSE tests: use the system build dependencies
+ venv.create(tmp_path, with_pip=True, system_site_packages=True)
if os.name == "nt":
python = Path(tmp_path) / "Scripts/python.exe"
else:
@@ -113,6 +114,7 @@ def test_hatch_build(tmp_path):
# Handle running min version test.
if "PIP_CONSTRAINT" in env:
del env["PIP_CONSTRAINT"]
- subprocess.check_call([python, "-m", "pip", "install", "build"], cwd=tmp_path, env=env)
-
- subprocess.check_call([python, "-m", "build", "--sdist", "."], cwd=tmp_path, env=env)
+ subprocess.check_call([python, "-m", "build",
+ "--no-isolation", # openSUSE tests: use the system build dependencies
+ "--sdist", "."],
+ cwd=tmp_path, env=env)

BIN
hatch_jupyter_builder-0.8.3.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,14 @@
-------------------------------------------------------------------
Sun Apr 23 21:09:46 UTC 2023 - Ben Greiner <code@bnavigator.de>
- Update to 0.8.3
* Use local coverage #114 (@blink1073)
* Add more linting #106 (@blink1073)
* Fix test typing #104 (@blink1073)
* Add more ci checks #102 (@blink1073)
-------------------------------------------------------------------
Sun Dec 25 20:55:15 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Initial specfile for v0.8.2
- Required by jupyter-server 2

View File

@ -0,0 +1,79 @@
#
# spec file for package python-hatch-jupyter-builder
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
# This si with alts/libalternatives only and has never been something else
%bcond_without libalternatives
Name: python-hatch-jupyter-builder
Version: 0.8.3
Release: 0
Summary: A hatch plugin to help build Jupyter packages
License: BSD-3-Clause
URL: https://github.com/jupyterlab/hatch-jupyter-builder
Source: https://files.pythonhosted.org/packages/source/h/hatch_jupyter_builder/hatch_jupyter_builder-%{version}.tar.gz
# PATCH-FIX-OPENSUSE hatch-test-nonisolated.patch code@bnavigator.de
Patch1: hatch-test-nonisolated.patch
BuildRequires: %{python_module hatchling >= 1.5}
BuildRequires: %{python_module pip}
BuildRequires: alts
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: alts
Requires: python-hatchling >= 1.5
Provides: python-hatch_jupyter_builder = %{version}-%{release}
BuildArch: noarch
# SECTION test
BuildRequires: %{python_module build}
BuildRequires: %{python_module hatch}
BuildRequires: %{python_module pytest-mock}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module tomli}
# /SECTION
%python_subpackages
%description
This provides a build hook plugin for Hatch that
adds a build step for use with Jupyter packages.
%prep
%autosetup -p1 -n hatch_jupyter_builder-%{version}
sed -i '/addopts/ s/--color=yes//' pyproject.toml
%build
%pyproject_wheel
%install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/hatch-jupyter-builder
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%post
%python_install_alternative hatch-jupyter-builder
%postun
%python_uninstall_alternative hatch-jupyter-builder
%files %{python_files}
%license LICENSE.txt
%python_alternative %{_bindir}/hatch-jupyter-builder
%{python_sitelib}/hatch_jupyter_builder
%{python_sitelib}/hatch_jupyter_builder-%{version}.dist-info
%changelog