commit d12543cdc189e90c06b819db5bb08629859a095e Author: tigro Date: Sat Jan 4 15:33:39 2025 +0300 import python-nbformat-5.9.2-5.el10 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d52a00 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/nbformat-5.9.2.tar.gz diff --git a/.python-nbformat.metadata b/.python-nbformat.metadata new file mode 100644 index 0000000..5a7a904 --- /dev/null +++ b/.python-nbformat.metadata @@ -0,0 +1 @@ +cead65d27023c88f202b863f8c06451036cd0d2b SOURCES/nbformat-5.9.2.tar.gz diff --git a/SOURCES/nbformat-build-test.patch b/SOURCES/nbformat-build-test.patch new file mode 100644 index 0000000..5b5a1e2 --- /dev/null +++ b/SOURCES/nbformat-build-test.patch @@ -0,0 +1,27 @@ +diff -up nbformat-5.8.0/pyproject.toml.build-test nbformat-5.8.0/pyproject.toml +--- nbformat-5.8.0/pyproject.toml.build-test 2020-02-01 17:00:00.000000000 -0700 ++++ nbformat-5.8.0/pyproject.toml 2023-05-28 17:02:35.912729567 -0600 +@@ -1,10 +1,10 @@ + [build-system] +-requires = ["hatchling>=1.5", "hatch-nodejs-version"] ++requires = ["hatchling>=1.5"] + build-backend = "hatchling.build" + + [project] + name = "nbformat" +-dynamic = ["version"] ++version = "{VERSION}" + description = "The Jupyter Notebook format" + license = { file = "LICENSE" } + keywords = ["Interactive", "Interpreter", "Shell", "Web"] +@@ -59,9 +59,6 @@ test = [ + [project.scripts] + jupyter-trust = "nbformat.sign:TrustNotebookApp.launch_instance" + +-[tool.hatch.version] +-source = "nodejs" +- + [tool.hatch.envs.docs] + features = ["docs"] + [tool.hatch.envs.docs.scripts] + diff --git a/SPECS/python-nbformat.spec b/SPECS/python-nbformat.spec new file mode 100644 index 0000000..69a47af --- /dev/null +++ b/SPECS/python-nbformat.spec @@ -0,0 +1,221 @@ +# Unset -s on python shebang - ensure that extensions installed with pip +# to user locations are seen and properly loaded +%global py3_shebang_flags %(echo %py3_shebang_flags | sed s/s//) + +%global srcname nbformat + +Name: python-%{srcname} +Version: 5.9.2 +Release: 5%{?dist} +Summary: The Jupyter Notebook format + +License: BSD +URL: https://pypi.python.org/pypi/%{srcname} +Source0: https://files.pythonhosted.org/packages/source/n/%{srcname}/%{srcname}-%{version}.tar.gz +# Removed dependency on hatch-nodejs-version +Patch0: nbformat-build-test.patch + +BuildArch: noarch + +BuildRequires: python%{python3_pkgversion}-devel +BuildRequires: pyproject-rpm-macros +# For tests +BuildRequires: python%{python3_pkgversion}-fastjsonschema +BuildRequires: python%{python3_pkgversion}-testpath + +%description +This package contains the base implementation of the Jupyter Notebook format, +and Python APIs for working with notebooks. + + +%package -n python%{python3_pkgversion}-%{srcname} +Summary: The Jupyter Notebook format +%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}} + +%description -n python%{python3_pkgversion}-%{srcname} +This package contains the base implementation of the Jupyter Notebook format, +and Python APIs for working with notebooks. + + +%prep +%autosetup -p1 -n %{srcname}-%{version} +mkdir -p nbformat/tests + +# Remove useless test dependencies +sed -i '/"pre-commit",/d' pyproject.toml +sed -i '/"check-manifest",/d' pyproject.toml + +# Set version statically +# {VERSION} is a part of Patch0 +sed -i "s/{VERSION}/%{version}/" pyproject.toml + +%generate_buildrequires +%pyproject_buildrequires -r -x test + +%build +%pyproject_wheel + + +%install +%pyproject_install +%pyproject_save_files %{srcname} + +%check +%pytest + + +%files -n python%{python3_pkgversion}-%{srcname} -f %pyproject_files +%doc CHANGELOG.md README.md +%license LICENSE +%{_bindir}/jupyter-trust + +%changelog +* Sat Jan 04 2025 Arkady L. Shane - 5.9.2-5 +- Rebuilt for MSVSphere 10 + +* Fri Jul 19 2024 Fedora Release Engineering - 5.9.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sun Jun 09 2024 Python Maint - 5.9.2-4 +- Rebuilt for Python 3.13 + +* Fri Jan 26 2024 Fedora Release Engineering - 5.9.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Mon Jan 22 2024 Fedora Release Engineering - 5.9.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Thu Sep 07 2023 Orion Poplawski - 5.9.2-1 +- Update to 5.9.2 + +* Fri Jul 21 2023 Fedora Release Engineering - 5.9.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sun Jul 16 2023 Orion Poplawski - 5.9.1-1 +- Update to 5.9.1 + +* Thu Jun 29 2023 Python Maint - 5.8.0-2 +- Rebuilt for Python 3.12 + +* Sun May 28 2023 Orion Poplawski - 5.8.0-1 +- Update to 5.8.0 + +* Fri Jan 20 2023 Fedora Release Engineering - 5.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Thu Dec 01 2022 Lumír Balhar - 5.7.0-1 +- Update to 5.7.0 (rhbz#1909560) + +* Fri Jul 22 2022 Fedora Release Engineering - 5.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Tue Jun 14 2022 Python Maint - 5.4.0-2 +- Rebuilt for Python 3.11 + +* Wed Jun 08 2022 Orion Poplawski - 5.4.0-1 +- Update to 5.4.0 + +* Sat Jan 29 2022 Orion Poplawski - 5.1.3-1 +- Update to 5.1.3 + +* Fri Jan 21 2022 Fedora Release Engineering - 5.0.8-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Mon Nov 29 2021 Karolina Surma - 5.0.8-5 +- Remove -s from Python shebang in `jupyter-trust` to let Jupyter see + pip installed extensions + +* Fri Jul 23 2021 Fedora Release Engineering - 5.0.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Fri Jun 04 2021 Python Maint - 5.0.8-3 +- Rebuilt for Python 3.10 + +* Wed Jan 27 2021 Fedora Release Engineering - 5.0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Tue Oct 27 2020 Orion Poplawski - 5.0.8-1 +- Update to 5.0.8 + +* Wed Sep 09 2020 Lumír Balhar - 5.0.7-1 +- Update to 5.0.7 (#1425643) + +* Wed Jul 29 2020 Fedora Release Engineering - 5.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun May 24 2020 Miro Hrončok - 5.0.5-2 +- Rebuilt for Python 3.9 + +* Fri May 08 2020 Orion Poplawski - 5.0.5-1 +- Update to 5.0.5 + +* Thu Jan 30 2020 Fedora Release Engineering - 5.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 23 2020 Orion Poplawski - 5.0.4-1 +- Update to 5.0.4 + +* Sun Jan 12 2020 Orion Poplawski - 5.0.3-1 +- Update to 5.0.3 (bz#1789213) + +* Thu Sep 26 2019 Miro Hrončok - 4.4.0-9 +- Correct the BR of python3-jupyter-core + +* Sun Aug 18 2019 Miro Hrončok - 4.4.0-8 +- Rebuilt for Python 3.8 + +* Fri Jul 26 2019 Fedora Release Engineering - 4.4.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Feb 14 2019 Miro Hrončok - 4.4.0-6 +- Subpackage python2-nbformat has been removed + See https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal + +* Sat Feb 02 2019 Fedora Release Engineering - 4.4.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 14 2018 Fedora Release Engineering - 4.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Jun 19 2018 Miro Hrončok - 4.4.0-3 +- Rebuilt for Python 3.7 + +* Fri Feb 09 2018 Fedora Release Engineering - 4.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Aug 29 2017 Orion Poplawski - 4.4.0-1 +- Update to 4.4.0 + +* Tue Aug 8 2017 Zbigniew Jędrzejewski-Szmek - 4.3.0-3 +- Fix %%python_provide invocation + +* Thu Jul 27 2017 Fedora Release Engineering - 4.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Feb 22 2017 Orion Poplawski - 4.3.0-1 +- Update to 4.3.0 + +* Sat Feb 11 2017 Fedora Release Engineering - 4.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Mon Dec 19 2016 Miro Hrončok - 4.2.0-2 +- Rebuild for Python 3.6 + +* Sat Dec 17 2016 Orion Poplawski - 4.2.0-1 +- Update to 4.2.0 +- Modernize spec + +* Tue Jul 19 2016 Fedora Release Engineering - 4.0.0-5 +- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages + +* Thu Feb 04 2016 Fedora Release Engineering - 4.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Nov 10 2015 Fedora Release Engineering - 4.0.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Changes/python3.5 + +* Wed Jul 15 2015 Orion Poplawski - 4.0.0-2 +- Fixup BRs and EL7 build + +* Mon Jul 13 2015 Orion Poplawski - 4.0.0-1 +- Initial package