public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/python-argcomplete] rawhide: Update to v3.7.2
@ 2026-09-16 8:05 Steve Traylen
0 siblings, 0 replies; only message in thread
From: Steve Traylen @ 2026-09-16 8:05 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/python-argcomplete
Branch : rawhide
Commit : 6c4a3b92452f1a4e0667629b593ff92a8ba652c7
Author : Steve Traylen <steve.traylen@cern.ch>
Date : 2026-09-14T09:59:26+02:00
Stats : +3/-22 in 4 file(s)
URL : https://src.fedoraproject.org/rpms/python-argcomplete/c/6c4a3b92452f1a4e0667629b593ff92a8ba652c7?branch=rawhide
Log:
Update to v3.7.2
- Drop deprecated python-argcomplete-check-easy-install-script
- Resolves: rhbz#2495453
- Resolves: rhbz#2423700
---
diff --git a/.gitignore b/.gitignore
index 3d125b2..fadc318 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,3 +38,4 @@
/argcomplete-3.6.0.tar.gz
/argcomplete-3.6.2.tar.gz
/argcomplete-3.6.3.tar.gz
+/argcomplete-3.7.2.tar.gz
diff --git a/python-argcomplete.spec b/python-argcomplete.spec
index 20fb78a..f745a44 100644
--- a/python-argcomplete.spec
+++ b/python-argcomplete.spec
@@ -10,12 +10,11 @@
Name: python-argcomplete
Summary: Bash tab completion for argparse
-Version: 3.6.3
+Version: 3.7.2
Release: %autorelease
License: Apache-2.0
URL: https://github.com/kislyuk/argcomplete
Source0: %pypi_source argcomplete
-Patch: zsh-global-completion-fix.patch
BuildRequires: python3-devel
@@ -98,7 +97,6 @@ export PIP_NO_BUILD_ISOLATION=0
%license LICENSE.rst
%doc README.rst
%{_bindir}/activate-global-python-argcomplete
-%{_bindir}/python-argcomplete-check-easy-install-script
%{_bindir}/register-python-argcomplete
%{_sysconfdir}/bash_completion.d/_%{name}
diff --git a/sources b/sources
index 3b7ac6a..5a11c3e 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (argcomplete-3.6.3.tar.gz) = d07756a8439fd8f30ea2823bbbe35b102c6822af907eed5d43649a378a703d8c20394127a842c9d6ce0af50d333518450d15c29fc3471e178c681ad95fa43a0a
+SHA512 (argcomplete-3.7.2.tar.gz) = 7d421b907740e0369911bf9bf1819c1f09fb2683a9413b4a8a5c35433dc8d3b147906befe81f1cc0d0257ff76589bde686a218b32ecb3b5238725ca719c34493
diff --git a/zsh-global-completion-fix.patch b/zsh-global-completion-fix.patch
deleted file mode 100644
index 8979616..0000000
--- a/zsh-global-completion-fix.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- argcomplete-3.6.3/argcomplete/bash_completion.d/_python-argcomplete.orig 2026-07-27 20:25:34.011670769 -0300
-+++ argcomplete-3.6.3/argcomplete/bash_completion.d/_python-argcomplete 2026-07-27 20:25:38.131631021 -0300
-@@ -145,9 +145,13 @@
- req_argv=( "" "${COMP_WORDS[@]:1}" )
- __python_argcomplete_expand_tilde_by_ref executable
- else
-- executable="${words[1]}"
-+ # Reconstruct the unshifted words array from BUFFER to handle cases where
-+ # a helper completion function (like _python) has shifted the words array.
-+ local -a local_words
-+ local_words=( ${(z)BUFFER} )
-+ executable="${local_words[1]}"
- __python_argcomplete_expand_tilde_by_ref executable
-- req_argv=( "${words[@]:1}" )
-+ req_argv=( "${local_words[@]:1}" )
- fi
-
- local ARGCOMPLETE=0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-09-16 8:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-16 8:05 [rpms/python-argcomplete] rawhide: Update to v3.7.2 Steve Traylen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox