public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Parag Nemade <panemade AT redhat DOT com>
To: git-commits@fedoraproject.org
Subject: [rpms/ansible-lint] rawhide: Remove upstream released patch
Date: Wed, 01 Jul 2026 03:04:10 GMT	[thread overview]
Message-ID: <178287505067.1.9516355538797187722.rpms-ansible-lint-0a56db1773be@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/ansible-lint
Branch : rawhide
Commit : 0a56db1773be241724cd32f56bf539cb2e2855fd
Author : Parag Nemade <panemade AT redhat DOT com>
Date   : 2026-07-01T08:19:25+05:30
Stats  : +0/-34 in 1 file(s)
URL    : https://src.fedoraproject.org/rpms/ansible-lint/c/0a56db1773be241724cd32f56bf539cb2e2855fd?branch=rawhide

Log:
Remove upstream released patch

---
diff --git a/Fix-py-3.15-dataclasses-import-issue.patch b/Fix-py-3.15-dataclasses-import-issue.patch
deleted file mode 100644
index 23a5916..0000000
--- a/Fix-py-3.15-dataclasses-import-issue.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-diff -urN ansible-lint-26.4.0.orig/src/ansiblelint/utils.py ansible-lint-26.4.0/src/ansiblelint/utils.py
---- ansible-lint-26.4.0.orig/src/ansiblelint/utils.py	2026-04-01 20:07:03.000000000 +0530
-+++ ansible-lint-26.4.0/src/ansiblelint/utils.py	2026-06-20 17:37:22.549215606 +0530
-@@ -39,7 +39,7 @@
-     MutableMapping,
-     Sequence,
- )
--from dataclasses import _MISSING_TYPE, dataclass, field
-+from dataclasses import MISSING, dataclass, field
- from functools import cache, lru_cache
- from pathlib import Path
- from typing import TYPE_CHECKING, Any
-@@ -907,8 +911,10 @@
- 
-     raw_task: MutableMapping[str, Any]
-     filename: str = ""
--    _normalized_task: MutableMapping[str, Any] | _MISSING_TYPE = field(
--        init=False, repr=False
-+    _normalized_task: MutableMapping[str, Any] | Any = field(
-+        init=False,
-+        repr=False,
-+        default=MISSING,
-     )
-     error: MatchError | None = None
-     position: str = ""
-@@ -969,7 +975,7 @@
-                 # When we cannot normalize it, we just use the raw task instead
-                 # to avoid adding extra complexity to the rules.
-                 self._normalized_task = self.raw_task
--        if isinstance(self._normalized_task, _MISSING_TYPE):
-+        if self._normalized_task is MISSING:
-             msg = "Task was not normalized"
-             raise TypeError(msg)
-         return self._normalized_task

                 reply	other threads:[~2026-07-01  3:04 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=178287505067.1.9516355538797187722.rpms-ansible-lint-0a56db1773be@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