From 4f5e3a0b42b19bc911740174c4c17be21c930a09 Mon Sep 17 00:00:00 2001 From: Johnny Hughes Date: Tue, 20 Aug 2024 21:07:47 +0000 Subject: [PATCH] python-tomli-w package is retired on branch c10s for CS-2475 --- .fmf/version | 1 - .gitignore | 2 - README.md | 3 - ci.fmf | 1 - dead.package | 1 + gating.yaml | 6 -- plans/internal/CI-Tier-1.fmf | 11 ---- python-tomli-w.spec | 119 ----------------------------------- sources | 1 - 9 files changed, 1 insertion(+), 144 deletions(-) delete mode 100644 .fmf/version delete mode 100644 .gitignore delete mode 100644 README.md delete mode 100644 ci.fmf create mode 100644 dead.package delete mode 100644 gating.yaml delete mode 100644 plans/internal/CI-Tier-1.fmf delete mode 100644 python-tomli-w.spec delete mode 100644 sources diff --git a/.fmf/version b/.fmf/version deleted file mode 100644 index d00491f..0000000 --- a/.fmf/version +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 04fe8eb..0000000 --- a/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -/tomli-w-0.4.0.tar.gz -/tomli-w-1.0.0.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 431a022..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# python-tomli-w - -The python-tomli-w package diff --git a/ci.fmf b/ci.fmf deleted file mode 100644 index c5aa0e0..0000000 --- a/ci.fmf +++ /dev/null @@ -1 +0,0 @@ -resultsdb-testcase: separate diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..67e8e8b --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +python-tomli-w package is retired on branch c10s for CS-2475 \ No newline at end of file diff --git a/gating.yaml b/gating.yaml deleted file mode 100644 index 7a0a3af..0000000 --- a/gating.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- !Policy -product_versions: - - rhel-10 -decision_context: osci_compose_gate -rules: - - !PassingTestCaseRule {test_case_name: osci.brew-build./plans/internal/CI-Tier-1.functional} diff --git a/plans/internal/CI-Tier-1.fmf b/plans/internal/CI-Tier-1.fmf deleted file mode 100644 index a33e231..0000000 --- a/plans/internal/CI-Tier-1.fmf +++ /dev/null @@ -1,11 +0,0 @@ -summary: Internal CI-Tier-1 tests plan -discover: - - name: python-tomli-w - how: fmf - filter: 'tag: CI-Tier-1' - url: https://pkgs.devel.redhat.com/git/tests/python-tomli-w -execute: - how: tmt -adjust: - enabled: false - when: distro == centos-stream or distro == fedora diff --git a/python-tomli-w.spec b/python-tomli-w.spec deleted file mode 100644 index 0000dfa..0000000 --- a/python-tomli-w.spec +++ /dev/null @@ -1,119 +0,0 @@ -%bcond_without check - -Name: python-tomli-w -Version: 1.0.0 -Release: 12%{?dist} -Summary: A Python library for writing TOML - -# SPDX -License: MIT -URL: https://github.com/hukkin/tomli-w -Source0: %{url}/archive/%{version}/tomli-w-%{version}.tar.gz - -BuildArch: noarch -BuildRequires: python3-devel - -%global _description %{expand: -Tomli-W is a Python library for writing TOML. It is a write-only counterpart -to Tomli, which is a read-only TOML parser. Tomli-W is fully compatible -with TOML v1.0.0.} - -%description %_description - -%package -n python3-tomli-w -Summary: %{summary} - -%description -n python3-tomli-w %_description - - -%prep -%autosetup -p1 -n tomli-w-%{version} -# Measuring coverage is discouraged in Python packaging guidelines: -sed -i '/pytest-cov/d' tests/requirements.txt -# We don't need tomli on Python 3.11+ -%if v"%{python3_version}" >= v"3.11" -sed -i '/tomli/d' tests/requirements.txt -sed -Ei 's/tomli(\.|$)/tomllib\1/' tests/*.py -%endif -# This testing dependency is optional and we don't have it in (EP)EL, -# it has many missing transitive dependencies that we don't want to maintain -%if 0%{?rhel} -sed -i '/pytest-randomly/d' tests/requirements.txt -%endif - - -%generate_buildrequires -# We intentionally don't use tox here to avoid a dependency on it in ELN/RHEL, -# the tox deps only list -r tests/requirements.txt anyway and sometimes -# did not run any tests at all. -%pyproject_buildrequires %{?with_check:tests/requirements.txt} - - -%build -%pyproject_wheel - - -%install -%pyproject_install -%pyproject_save_files tomli_w - - -%check -%pyproject_check_import tomli_w -%if %{with check} -%pytest -v -%endif - - -%files -n python3-tomli-w -f %{pyproject_files} -%doc README.md -%doc CHANGELOG.md -%license LICENSE - - -%changelog -* Mon Jun 24 2024 Troy Dawson - 1.0.0-12 -- Bump release for June 2024 mass rebuild - -* Fri Jan 26 2024 Fedora Release Engineering - 1.0.0-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Mon Jan 22 2024 Fedora Release Engineering - 1.0.0-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jul 21 2023 Fedora Release Engineering - 1.0.0-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Thu Jun 29 2023 Python Maint - 1.0.0-8 -- Rebuilt for Python 3.12 - -* Tue Jun 13 2023 Python Maint - 1.0.0-7 -- Bootstrap for Python 3.12 - -* Wed May 31 2023 Miro Hrončok - 1.0.0-6 -- On Python 3.11+, do not BuildRequire python3-tomli for tests - -* Fri Jan 20 2023 Fedora Release Engineering - 1.0.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Fri Jul 22 2022 Fedora Release Engineering - 1.0.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Tue Jun 14 2022 Python Maint - 1.0.0-3 -- Rebuilt for Python 3.11 - -* Mon Jun 13 2022 Python Maint - 1.0.0-2 -- Bootstrap for Python 3.11 - -* Tue Feb 22 2022 Tomáš Hrnčiar - 1.0.0-1 -- Update to 1.0 -- Fixes: rhbz#2053820 - -* Fri Jan 21 2022 Fedora Release Engineering - 0.4.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Thu Jan 20 2022 Michel Alexandre Salim - 0.4.0-2 -- Add boostrap and check toggles to ease bootstrapping new EPEL releases - -* Wed Oct 27 2021 Tomáš Hrnčiar - 0.4.0-1 -- Initial package diff --git a/sources b/sources deleted file mode 100644 index 84dc32d..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (tomli-w-1.0.0.tar.gz) = 406f81e4e8151e55e8367031b5880f51de41016711238a114c82962012de4b90d5e465c503a8979d565d07843fbc4804a53c29848e4f6e5f20f9ec5dc5ce536a