Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python310-argcomplete-3.4.0-1.1 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: python310-argcomplete Distribution: openSUSE Tumbleweed
Version: 3.4.0 Vendor: openSUSE
Release: 1.1 Build date: Mon Jul 15 13:25:31 2024
Group: Development/Languages/Python Build host: reproducible
Size: 229840 Source RPM: python-argcomplete-3.4.0-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/kislyuk/argcomplete
Summary: Bash tab completion for argparse
Argcomplete provides easy, extensible command line tab completion of
arguments for your Python script.

It makes two assumptions:

* You're using bash as your shell
* You're using argparse to manage your command line arguments/options

Argcomplete is particularly useful if your program has lots of options
or subparsers, and if your program can dynamically suggest completions
for your argument/option values (for example, if the user is browsing
resources over the network).

Provides

Requires

License

Apache-2.0

Changelog

* Mon Jul 15 2024 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Update to 3.4.0
    * No stdin for python calls from bash completion functions (#488)
    - Prevents usage of stdin by (python) executables that are called
      during completion generation. This prevents the completion locking up
      the entire shell when the python script is broken i.e. it enters an
      interactive mode (REPL) instead of generating the completions, as
      expected.
    * Localize shell variable REPLY to avoid overwriting users’ value (#489)
    - The variable REPLY is used by default by the ``read`` shell builtin
      to store the return value, and like all bash/zsh variables, is scoped
      globally. This change allows this variable to be used for other needs
      by appropriately scoping its internal use by an argcomplete utility
      function that uses ``read``.
  - Drop patches for issued fixed upstream
    * bash-repl.patch
* Thu Apr 18 2024 Daniel Garcia <daniel.garcia@suse.com>
  - Update to 3.3.0 (bsc#1222880):
    * Preserve compatibility with argparse option tuples of length 4.
      This update is required to use argcomplete on Python 3.11.9+ or
      3.12.3+.
  - update to 3.2.3:
    * Allow register-python-argcomplete output to be used as lazy-loaded
      zsh completion module (#475)
    - Move debug_stream initialization to helper method to allow fd 9
      behavior to be overridden in subclasses (#471)
* Tue Jan 30 2024 Dirk Müller <dmueller@suse.com>
  - update to 3.2.2:
    * Expand tilde in zsh
* Wed Jan 03 2024 Ben Greiner <code@bnavigator.de>
  - Remove coverage check
  - Fix zsh test failures: avoid coloring terminal
* Fri Dec 29 2023 Dirk Müller <dmueller@suse.com>
  - update to 3.2.1:
    * Allow explicit zsh global completion activation (#467)
    * Fix and test global completion in zsh (#463, #466)
    * Add –yes option to activate-global-python-argcomplete (#461)
    * Test suite improvements
  - drop without_zsh.patch: obsolete
* Mon Nov 27 2023 Dirk Müller <dmueller@suse.com>
  - update to 3.1.6:
    * Respect user choice in activate-global-python-argcomplete
    * Escape colon in zsh completions. Fixes #456
    * Call \_default as a fallback in zsh global completion
* Fri Nov 10 2023 Dirk Müller <dmueller@suse.com>
  - update to 3.1.4:
    * Call \_default as a fallback in zsh global completion
    * zsh: Allow to use external script (#453)
    * Add support for Python 3.12 and drop EOL 3.6 and 3.7 (#449)
    * Use homebrew prefix by default
    * zsh: Allow to use external script (#453)
* Tue Oct 24 2023 Dirk Müller <dmueller@suse.com>
  - add setuptools_scm for proper version detection
* Thu Oct 05 2023 Dirk Müller <dmueller@suse.com>
  - update to 3.1.2:
    * Ensure Python 3.12+ compatibility in check_console_script
* Tue Jul 04 2023 John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
  - Update to version 3.1.1
    * Search through asdf shims
    * Use \` as escape character in PowerShell (#434)
  - from version 3.1.0
    * setup.py -> pyproject.toml migration start (#427)
    * Improve user install logic in activate-global-python-argcomplete (#437)
    * Ensure Python 3.7 compatibility in check_console_script (#436)
    * ZSH implementation fixes (#431, #433)
    * Documentation improvements
  - Drop obsolete patch
    * trim-test-deps.patch
* Tue May 30 2023 Andreas Schwab <schwab@suse.de>
  - bash-repl.patch: Use correct place for auxiliary bashrc.sh file from pexpect
* Fri May 05 2023 Daniel Garcia <daniel.garcia@suse.com>
  - Add without_zsh.patch
  - Delete skip_tcsh_tests.patch
  - Delete without_fish.patch
  - Update to 3.0.8:
    * Test suite shell wrapper: Accept OSError on exit
  - 3.0.7:
    * Test suite: Use general regex to cut zsh reset ANSI sequences (#425)
  - 3.0.6:
    * Allow importlib-metadata 6.x; skip test failures on Python 3.7 (#420, #424)
    * Note completers can return iterables of strings, not just lists (#422)
    * Documentation and test improvements
  - 3.0.5:
    * Call _default as fallback in zsh global completion hook
    * Begin support for mapping-emitting completers
  - 3.0.4:
    * activate-global-python-argcomplete: do not overwrite existing dotfile in user directory
    * Add NOTICE file
    * Establish long term name for split_line as argcomplete.lexers.split_line
  - 3.0.3:
    * Re-add split_line to API (#419)
  - 3.0.2:
    * Fix zsh default completion issues
  - 3.0.1:
    * Fix zsh autoload issues
  - 3.0.0:
    * Fully support zsh. Argcomplete now supports completion
      descriptions and global completion in zsh.
    * Clean up top level namespace.
    * Documentation and test improvements.
  - 2.1.2:
    * Test infrastructure improvements
    * Indicate that there is no support commitment for fish and tcsh shells
  - 2.1.1:
    * Documentation and test improvements
  - 2.1.0:
    * Remove scripts for contrib-supported shells from global namespace
  - 2.0.6:
    * setup.py: exclude test.* subpackages from find_packages (#406)
    * Support PowerShell (#405)
    * CI updates
  - 2.0.5:
    * Revert "Support powershell (#392)"
* Fri Apr 21 2023 Dirk Müller <dmueller@suse.com>
  - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 Matej Cepl <mcepl@suse.com>
  - Make calling of %{sle15modernpython} optional.
* Fri Mar 24 2023 Daniel Garcia <daniel.garcia@suse.com>
  - Remove importlib-metadata requirement, it's not needed for python > 3.7
* Thu Mar 16 2023 Matej Cepl <mcepl@suse.com>
  - Add without_fish.patch which makes fish only optional
    BuildRequires (gh#kislyuk/argcomplete!410).
* Tue Jan 31 2023 Dirk Müller <dmueller@suse.com>
  - fix substitution on tests/test.py to test the current python flavor
* Wed Jul 06 2022 Dirk Müller <dmueller@suse.com>
  - update to 2.0.0:
    * Truncate input after cursor.
    * Support of path completion in fish
    * Drop support for Python 2.7 and 3.5
    * Add support for Python 3.10
    * Test, documentation, and release infrastructure improvements
* Sun Jun 06 2021 Dirk Müller <dmueller@suse.com>
  - update to 1.12.3:
    * Update importlib-metadata version pin
    * Display script debug output in tcsh
    * Fish support improvements
    * Print ``warn()`` message from beginning of line
    * Test infrastructure improvements

Files

/etc/alternatives/python-argcomplete-check-easy-install-script
/etc/alternatives/register-python-argcomplete
/usr/bin/python-argcomplete-check-easy-install-script
/usr/bin/python-argcomplete-check-easy-install-script-3.10
/usr/bin/register-python-argcomplete
/usr/bin/register-python-argcomplete-3.10
/usr/lib/python3.10/site-packages/argcomplete
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/INSTALLER
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/LICENSE.rst
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/METADATA
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/NOTICE
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/RECORD
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/REQUESTED
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/WHEEL
/usr/lib/python3.10/site-packages/argcomplete-3.4.0.dist-info/top_level.txt
/usr/lib/python3.10/site-packages/argcomplete/__init__.py
/usr/lib/python3.10/site-packages/argcomplete/__pycache__
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/_check_console_script.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/_check_console_script.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/_check_module.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/_check_module.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/completers.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/completers.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/exceptions.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/exceptions.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/finders.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/finders.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/io.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/io.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/lexers.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/lexers.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/shell_integration.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/__pycache__/shell_integration.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/_check_console_script.py
/usr/lib/python3.10/site-packages/argcomplete/_check_module.py
/usr/lib/python3.10/site-packages/argcomplete/bash_completion.d
/usr/lib/python3.10/site-packages/argcomplete/bash_completion.d/_python-argcomplete
/usr/lib/python3.10/site-packages/argcomplete/completers.py
/usr/lib/python3.10/site-packages/argcomplete/exceptions.py
/usr/lib/python3.10/site-packages/argcomplete/finders.py
/usr/lib/python3.10/site-packages/argcomplete/io.py
/usr/lib/python3.10/site-packages/argcomplete/lexers.py
/usr/lib/python3.10/site-packages/argcomplete/packages
/usr/lib/python3.10/site-packages/argcomplete/packages/__init__.py
/usr/lib/python3.10/site-packages/argcomplete/packages/__pycache__
/usr/lib/python3.10/site-packages/argcomplete/packages/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/packages/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/packages/__pycache__/_argparse.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/packages/__pycache__/_argparse.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/packages/__pycache__/_shlex.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/argcomplete/packages/__pycache__/_shlex.cpython-310.pyc
/usr/lib/python3.10/site-packages/argcomplete/packages/_argparse.py
/usr/lib/python3.10/site-packages/argcomplete/packages/_shlex.py
/usr/lib/python3.10/site-packages/argcomplete/py.typed
/usr/lib/python3.10/site-packages/argcomplete/shell_integration.py
/usr/share/doc/packages/python310-argcomplete
/usr/share/doc/packages/python310-argcomplete/README.rst
/usr/share/licenses/python310-argcomplete
/usr/share/licenses/python310-argcomplete/LICENSE.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Jul 27 00:11:29 2024