public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
To: git-commits@fedoraproject.org
Subject: [rpms/python-fields] rawhide: Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473
Date: Tue, 18 Aug 2026 13:43:41 GMT [thread overview]
Message-ID: <178706062138.1.14176243908151096485.rpms-python-fields-47e6da50973f@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/python-fields
Branch : rawhide
Commit : 47e6da50973f620ca0d5f40f718a03ff5c41c95b
Author : Miro Hrončok <miro@hroncok.cz>
Date : 2026-08-18T15:43:28+02:00
Stats : +1/-190 in 6 file(s)
URL : https://src.fedoraproject.org/rpms/python-fields/c/47e6da50973f620ca0d5f40f718a03ff5c41c95b?branch=rawhide
Log:
Retired: Fails to install: https://forge.fedoraproject.org/releng/tickets/issues/13473
---
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 896b726..0000000
--- a/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/python-fields-5.0.0.tar.gz
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/python-fields-5.0.0-sphinx-1.3.patch b/python-fields-5.0.0-sphinx-1.3.patch
deleted file mode 100644
index 2f90aba..0000000
--- a/python-fields-5.0.0-sphinx-1.3.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/docs/conf.py 2019-02-14 15:06:58.494409885 -0800
-+++ b/docs/conf.py 2019-02-14 15:07:18.862800941 -0800
-@@ -11,7 +11,7 @@
- 'sphinx.ext.coverage',
- 'sphinx.ext.ifconfig',
- 'sphinx.ext.viewcode',
-- 'sphinxcontrib.napoleon'
-+ 'sphinx.ext.napoleon'
- ]
- if os.getenv('SPELLCHECK'):
- extensions += 'sphinxcontrib.spelling',
diff --git a/python-fields.rpmlintrc b/python-fields.rpmlintrc
deleted file mode 100644
index 61fd6ce..0000000
--- a/python-fields.rpmlintrc
+++ /dev/null
@@ -1 +0,0 @@
-addFilter(r'spelling-error .* en_US (eg|hynek|init|repr)( |$)')
diff --git a/python-fields.spec b/python-fields.spec
deleted file mode 100644
index 36afb34..0000000
--- a/python-fields.spec
+++ /dev/null
@@ -1,176 +0,0 @@
-%global srcname fields
-
-Name: python-%{srcname}
-Version: 5.0.0
-Release: 30%{?dist}
-Summary: Container class boilerplate killer
-
-License: BSD-2-Clause
-URL: https://github.com/ionelmc/%{name}
-Source0: https://github.com/ionelmc/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
-
-# Compatibility with python-sphinx >= 1.3, already applied upstream
-Patch0: %{name}-5.0.0-sphinx-1.3.patch
-
-BuildArch: noarch
-
-%description
-Container class boilerplate killer.
-
-Features:
-- Human-readable __repr__
-- Complete set of comparison methods
-- Keyword and positional argument support. Works like a normal class - you can
- override just about anything in the subclass (eg: a custom __init__). In
- contrast, hynek/characteristic forces different call schematics and calls
- your __init__ with different arguments.
-
-%package doc
-Summary: Documentation for '%{name}'
-BuildRequires: python%{python3_pkgversion}-sphinx
-BuildRequires: python%{python3_pkgversion}-sphinx-theme-py3doc-enhanced
-
-%description doc
-HTML API documentation for the '%{srcname}' Python module.
-
-%package -n python%{python3_pkgversion}-%{srcname}
-Summary: %{summary}
-%{?python_provide:%python_provide python%{python3_pkgversion}-%{srcname}}
-BuildRequires: python%{python3_pkgversion}-devel
-BuildRequires: python%{python3_pkgversion}-setuptools
-BuildRequires: python%{python3_pkgversion}-pytest
-BuildRequires: python%{python3_pkgversion}-pytest-benchmark
-Recommends: %{name}-doc = %{version}-%{release}
-
-%description -n python%{python3_pkgversion}-%{srcname}
-Container class boilerplate killer.
-
-Features:
-- Human-readable __repr__
-- Complete set of comparison methods
-- Keyword and positional argument support. Works like a normal class - you can
- override just about anything in the subclass (eg: a custom __init__). In
- contrast, hynek/characteristic forces different call schematics and calls
- your __init__ with different arguments.
-
-%prep
-%autosetup -p1
-sed -i 's/\[pytest\]/\[tool:pytest\]/' setup.cfg
-
-%build
-%py3_build
-PYTHONPATH=$PWD/src sphinx-build -b html docs docs/_build/html
-rm -rf docs/_build/html/.buildinfo docs/_build/html/.doctrees
-
-%install
-%py3_install
-
-%check
-# Perf tests require unmaintained 'characteristic' module
-PYTHONPATH=%{buildroot}%{python3_sitelib} py.test-%{python3_version} \
- --ignore=tests/test_perf.py \
- tests
-
-%files doc
-%license LICENSE
-%doc docs/_build/html
-
-%files -n python%{python3_pkgversion}-%{srcname}
-%license LICENSE
-%doc AUTHORS.rst CHANGELOG.rst README.rst
-%{python3_sitelib}/%{srcname}/
-%{python3_sitelib}/%{srcname}-%{version}-py%{python3_version}.egg-info/
-
-%changelog
-* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-30
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
-
-* Wed Jun 03 2026 Python Maint <python-maint@redhat.com> - 5.0.0-29
-- Rebuilt for Python 3.15
-
-* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-28
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
-
-* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 5.0.0-27
-- Rebuilt for Python 3.14.0rc3 bytecode
-
-* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 5.0.0-26
-- Rebuilt for Python 3.14.0rc2 bytecode
-
-* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-25
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
-
-* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 5.0.0-24
-- Rebuilt for Python 3.14
-
-* Sat Jan 18 2025 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-23
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
-
-* Fri Dec 13 2024 Scott K Logan <logans@cottsay.net> - 5.0.0-22
-- Update SPDX license identifier
-- Drop spec file support for EPEL 7
-- Drop unused rpmlintrc filter
-
-* Wed Sep 04 2024 Miroslav Suchý <msuchy@redhat.com> - 5.0.0-21
-- convert license to SPDX
-
-* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-20
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
-
-* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 5.0.0-19
-- Rebuilt for Python 3.13
-
-* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-18
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-17
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
-
-* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-16
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
-
-* Wed Jun 14 2023 Python Maint <python-maint@redhat.com> - 5.0.0-15
-- Rebuilt for Python 3.12
-
-* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-14
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
-
-* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-13
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
-
-* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 5.0.0-12
-- Rebuilt for Python 3.11
-
-* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-11
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
-
-* Tue Jul 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-10
-- Second attempt - Rebuilt for
- https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
-
-* Wed Jun 02 2021 Python Maint <python-maint@redhat.com> - 5.0.0-9
-- Rebuilt for Python 3.10
-
-* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-8
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
-
-* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-7
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
-
-* Sun May 24 2020 Miro Hrončok <mhroncok@redhat.com> - 5.0.0-6
-- Rebuilt for Python 3.9
-
-* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-5
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
-
-* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 5.0.0-4
-- Rebuilt for Python 3.8.0rc1 (#1748018)
-
-* Sat Aug 17 2019 Miro Hrončok <mhroncok@redhat.com> - 5.0.0-3
-- Rebuilt for Python 3.8
-
-* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.0-2
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
-
-* Thu Feb 14 2019 Scott K Logan <logans@cottsay.net> - 5.0.0-1
-- Initial package
diff --git a/sources b/sources
deleted file mode 100644
index 075f2cd..0000000
--- a/sources
+++ /dev/null
@@ -1 +0,0 @@
-SHA512 (python-fields-5.0.0.tar.gz) = feaba23b98271936d6dae20b1001978483c0fe89ccf217637fac536ae5814c2c02bac1c3ddc2a86dc0d2419a3b3658871018c0ea4b7905e1c2649aa905b8e5a3
reply other threads:[~2026-08-18 13:43 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178706062138.1.14176243908151096485.rpms-python-fields-47e6da50973f@fedoraproject.org \
--to=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox