public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/python-fs] f45: Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473
@ 2026-08-18 13:25 
  0 siblings, 0 replies; only message in thread
From:  @ 2026-08-18 13:25 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/python-fs
Branch : f45
Commit : 80a0992f737497a61636cfbaab30b636c108104c
Author : Miro Hrončok <miro@hroncok.cz>
Date   : 2026-08-18T15:25:31+02:00
Stats  : +1/-217 in 8 file(s)
URL    : https://src.fedoraproject.org/rpms/python-fs/c/80a0992f737497a61636cfbaab30b636c108104c?branch=f45

Log:
Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473

---
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 19dda9c..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,2 +0,0 @@
-/fs-2.4.11.tar.gz
-/fs-2.4.16.tar.gz

diff --git a/570.patch b/570.patch
deleted file mode 100644
index fe2adc5..0000000
--- a/570.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From f6f260f97df29500a531baf1b370c3e4e4f3dc76 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= <thrnciar@redhat.com>
-Date: Thu, 23 Mar 2023 13:23:12 +0100
-Subject: [PATCH] Replace TestCase method aliases removed in Python 3.12
-
-Fixes: #568
----
- CHANGELOG.md    | 2 ++
- CONTRIBUTORS.md | 1 +
- fs/test.py      | 2 +-
- 3 files changed, 4 insertions(+), 1 deletion(-)
-
-diff --git a/fs/test.py b/fs/test.py
-index 32e6ea5c..9bfe811d 100644
---- a/fs/test.py
-+++ b/fs/test.py
-@@ -1082,7 +1082,7 @@ def test_remove(self):
-         self.fs.makedirs("foo/bar/baz/")
- 
-         error_msg = "resource 'foo/bar/egg/test.txt' not found"
--        assertRaisesRegex = getattr(self, "assertRaisesRegex", self.assertRaisesRegexp)
-+        assertRaisesRegex = getattr(self, "assertRaisesRegex", self.assertRaisesRegex)
-         with assertRaisesRegex(errors.ResourceNotFound, error_msg):
-             self.fs.remove("foo/bar/egg/test.txt")
- 

diff --git a/README.md b/README.md
deleted file mode 100644
index c9c10cb..0000000
--- a/README.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# python-fs
-
-The python-fs package
\ No newline at end of file

diff --git a/dead.package b/dead.package
new file mode 100644
index 0000000..d035a64
--- /dev/null
+++ b/dead.package
@@ -0,0 +1 @@
+Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473

diff --git a/plans/python-fs.fmf b/plans/python-fs.fmf
deleted file mode 100644
index f0aac0f..0000000
--- a/plans/python-fs.fmf
+++ /dev/null
@@ -1,11 +0,0 @@
-discover:
-  - name: smoke-tests
-    how: shell
-    tests:
-    - name: python-import-test
-      test: python3 -c 'import fs'
-      require:
-      - python3-fs
-      duration: 1m
-execute:
-  how: tmt

diff --git a/python-fs.spec b/python-fs.spec
deleted file mode 100644
index d9178aa..0000000
--- a/python-fs.spec
+++ /dev/null
@@ -1,174 +0,0 @@
-%global srcname fs
-
-# RHEL does not include the test dependencies
-%bcond tests %{undefined rhel}
-
-Name:           python-%{srcname}
-Version:        2.4.16
-Release:        18%{?dist}
-Summary:        Python's Filesystem abstraction layer
-
-# https://spdx.org/licenses/MIT.html
-License:        MIT
-URL:            https://pypi.org/project/fs/
-Source0:        https://github.com/PyFilesystem/pyfilesystem2/archive/v%{version}/%{srcname}-%{version}.tar.gz
-
-# Replace TestCase method aliases removed in Python 3.12
-# https://github.com/PyFilesystem/pyfilesystem2/pull/570
-# changelog fragment removed to avoid conflict
-Patch:          570.patch
-
-BuildArch:      noarch
-BuildRequires:  python3-devel
-
-BuildRequires:  python3dist(appdirs)
-BuildRequires:  python3dist(six)
-%if %{with tests}
-# Required for running tests
-BuildRequires:  python3dist(pytest)
-BuildRequires:  python3dist(pytest-randomly)
-BuildRequires:  python3dist(parameterized)
-%endif
-
-%global _description %{expand:
-Think of PyFilesystem's FS objects as the next logical step to Python's file
-objects. In the same way that file objects abstract a single file, FS objects
-abstract an entire filesystem.}
-
-%description %_description
-
-%package -n python3-%{srcname}
-Summary:        %{summary}
-
-%description -n python3-%{srcname} %_description
-
-%prep
-%autosetup -n pyfilesystem2-%{version} -p1
-
-%generate_buildrequires
-%pyproject_buildrequires
-
-%build
-%pyproject_wheel
-
-%install
-%pyproject_install
-%pyproject_save_files -l %{srcname}
-
-%if %{with tests}
-%check
-%pyproject_check_import
-
-# Almost all tests in tests/test_ftpfs.py need python3dist(pyftpdlib), which is
-# packaged, but this imports from pyftpdlib.tests, which is not packaged.
-ignore="${ignore-} --ignore=tests/test_ftpfs.py"
-
-# Regressions related to URL formation in Python 3.14
-# https://github.com/PyFilesystem/pyfilesystem2/issues/596
-k="${k-}${k+ and }not test_complex_geturl"
-# Matches test_geturl_for_fs but not test_geturl_for_fs_but_file_is_binaryio
-k="${k-}${k+ and }not (test_geturl_for_fs and not binary)"
-
-%pytest -k "${k-}" ${ignore-}
-%endif
-
-%files -n python3-%{srcname} -f %{pyproject_files}
-%doc README.md examples
-
-%changelog
-* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-18
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
-
-* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-17
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 2.4.16-16
-- Rebuilt for Python 3.14.0rc3 bytecode
-
-* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 2.4.16-15
-- Rebuilt for Python 3.14.0rc2 bytecode
-
-* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-14
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Thu Jul 10 2025 Parag Nemade <pnemade AT redhat DOT com> - 2.4.16-13
-- Convert a spec to use pyproject macros (rh#2377730)
-
-* Sat Jun 14 2025 Benjamin A. Beasley <code@musicinmybrain.net> - 2.4.16-12
-- Remove obsolete test skip (regression was fixed in Python 3.12.1)
-- Report and skip regressions related to URL formation in Python 3.14;
-  fixes RHBZ#2336951
-
-* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 2.4.16-11
-- Rebuilt for Python 3.14
-
-* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-9
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Sat Jun 08 2024 Python Maint <python-maint@redhat.com> - 2.4.16-8
-- Rebuilt for Python 3.13
-
-* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.16-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Fri Jul 07 2023 Parag Nemade <pnemade AT redhat DOT com> - 2.4.16-4
-- Help msuchy to count this package as already using SPDX license expression
-
-* Mon Jun 19 2023 Python Maint <python-maint@redhat.com> - 2.4.16-3
-- Rebuilt for Python 3.12
-
-* Thu May 25 2023 Yaakov Selkowitz <yselkowi@redhat.com> - 2.4.16-2
-- Disable tests in RHEL builds
-
-* Thu Mar 16 2023 Parag Nemade <pnemade AT redhat DOT com> - 2.4.16-1
-- Update to 2.4.16 version
-
-* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.11-13
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.11-12
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 2.4.11-11
-- Rebuilt for Python 3.11
-
-* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.11-10
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.11-9
-- Second attempt - Rebuilt for
-  https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 2.4.11-8
-- Rebuilt for Python 3.10
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.11-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.4.11-6
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Wed Jun 24 2020 Parag Nemade <pnemade AT redhat DOT com> - 2.4.11-5
-- Add missing BR: python3-setuptools
-
-* Mon Jun 01 2020 Parag Nemade <pnemade AT redhat DOT com> - 2.4.11-4
-- Disable few tests temporary for now (rhbz#1820916, rhbz#1841708)
-
-* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 2.4.11-3
-- Rebuilt for Python 3.9
-
-* Mon Mar 30 2020 Parag Nemade <pnemade AT redhat DOT com> - 2.4.11-2
-- enable tests and use upstream source tarball
-
-* Mon Mar 30 2020 Parag Nemade <pnemade AT redhat DOT com> - 2.4.11-1
-- Initial packaging
-

diff --git a/sources b/sources
deleted file mode 100644
index 5a7a79a..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (fs-2.4.16.tar.gz) = 24a50fdbb668916e19ef26b21feb345beb6d734e841435de2bef32672e4f6b8329a44e827b6d3bb878c2522098499dea4915adcfa381b0a3c9e20f8c4f7352bb

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-08-18 13:25 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-08-18 13:25 [rpms/python-fs] f45: Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473 

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox