14
0
forked from pool/python-cmd2

- update to 0.8.9:

* Bug Fixes
    * Fixed extra slash that could print when tab completing users on Windows
    * Prevent crashes that could occur attempting to open a file in non-existent directory or with very long filename
    * Make sure pip installs version 0.8.x if you have python 2.7
    * Commands using the @with_argparser_and_unknown_args were not correctly recognized when tab completing
    * Fixed issue where completion display function was overwritten when a submenu quits
    * Fixed ``AttributeError`` on Windows when running a ``select`` command cause by **pyreadline** not implementing ``remove_history_item``
  * Bug Fixes
    * Fixed a bug with all argument decorators where the wrapped function wasn't returning a value and thus couldn't cause the cmd2 app to quit
  * Enhancements
    * Added warning about **libedit** variant of **readline** not being supported on macOS
    * Added tab-completion of alias names in value filed of **alias** command
    * Enhanced the ``py`` console in the following ways
        * Added tab completion of Python identifiers instead of **cmd2** commands
        * Separated the ``py`` console history from the **cmd2** history
    * Added support for verbose help with -v where it lists a brief summary of what each command does
    * Added support for categorizing commands into groups within the help menu
        * See the [Grouping Commands](http://cmd2.readthedocs.io/en/latest/argument_processing.html?highlight=verbose#grouping-commands) section of the docs for more info
        * See [help_categories.py](https://github.com/python-cmd2/cmd2/blob/master/examples/help_categories.py) for an example
    * Tab completion of paths now supports ~user user path expansion
    * Simplified implementation of various tab completion functions so they no longer require ``ctypes``
    * Expanded documentation of ``display_matches`` list to clarify its purpose. See cmd2.py for this documentation.
    * Adding opening quote to tab completion if any of the completion suggestions have a space.
    * Tab completion has been overhauled and now supports completion of strings with quotes and spaces.
    * Tab completion will automatically add an opening quote if a string with a space is completed.
    * Added ``delimiter_complete`` function for tab completing delimited strings
    * Added more control over tab completion behavior including the following flags. The use of these flags is documented in cmd2.py
        * ``allow_appended_space``
        * ``allow_closing_quote``

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-cmd2?expand=0&rev=28
This commit is contained in:
2018-09-05 20:19:13 +00:00
committed by Git OBS Bridge
parent 408ee37caa
commit cdaa4d1044
4 changed files with 154 additions and 7 deletions

View File

@@ -18,19 +18,32 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-cmd2
Version: 0.7.9
Version: 0.8.9
Release: 0
Summary: Extra features for standard library's cmd module
License: MIT
Group: Development/Languages/Python
Url: http://packages.python.org/cmd2/
Source: https://files.pythonhosted.org/packages/source/c/cmd2/cmd2-%{version}.tar.gz
BuildRequires: %{python_module devel}
BuildRequires: %{python_module contextlib2}
BuildRequires: %{python_module mock}
BuildRequires: %{python_module pyperclip}
BuildRequires: %{python_module pytest-xdist}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wcwidth}
BuildRequires: python-enum34
BuildRequires: python-rpm-macros
BuildRequires: python-subprocess32
Requires: python-pyparsing >= 2.0.1
Requires: python-pyperclip
Requires: python-pyreadline
Requires: python-six
Requires: python-wcwidth
%ifpython2
Requires: python-contextlib2
Requires: python-enum34
Requires: python-subprocess32
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildArch: noarch
@@ -64,9 +77,12 @@ Drop-in replacement adds several features for command-prompt tools:
%install
%python_install
%check
%python_exec setup.py test
%files %{python_files}
%defattr(-,root,root,-)
%doc README.md LICENSE
%license LICENSE
%doc README.md
%{python_sitelib}/*
%changelog