forked from pool/python-cliff
Accepting request 407220 from devel:languages:python
- Switch to pypi.io as Source url - update to 2.1.0: * Updated from global requirements * Update --max-width help * Add more test coverage for shell formatter * Add more test coverage for CSV formatter * Support multiple sub commands in completion * Factorize more test data * Factorize some test data * Factorize common test code * Factorize argparse importing * Updated from global requirements * Updated from global requirements * Add CLIFF_MAX_TERM_WIDTH envvar to complement --max-width * Fix prettytable.PrettyTable().max_width wrong usage * Fix AttributeError when entry point load failed * Distinguish no existed columns in ShowOne * Refactor HelpCommand * Updated from global requirements * Remove httplib2 from test-requirements.txt * Sync help message for --help * handle empty list in table formatter * Drop Python 2.6 support * Revert "app,command: disallow abbrev by default" * Fixes terminal_width on Windows * Updated from global requirements * remove openstack-common.conf * Add doc for deferred_help parameter * Fix pep8 failure OBS-URL: https://build.opensuse.org/request/show/407220 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-cliff?expand=0&rev=26
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f5ba6fe0940547549947d5a24ca3354145a603d3a9ba054f209d20b66dc02be7
|
||||
size 48522
|
||||
3
cliff-2.1.0.tar.gz
Normal file
3
cliff-2.1.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:0c3d100cbf47d168bdca70acf890f1fc024abdadac13ede1336b0f8075403dea
|
||||
size 54500
|
||||
@@ -1,3 +1,55 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 7 13:15:49 UTC 2016 - tbechtold@suse.com
|
||||
|
||||
- Switch to pypi.io as Source url
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 7 06:05:54 UTC 2016 - tbechtold@suse.com
|
||||
|
||||
- update to 2.1.0:
|
||||
* Updated from global requirements
|
||||
* Update --max-width help
|
||||
* Add more test coverage for shell formatter
|
||||
* Add more test coverage for CSV formatter
|
||||
* Support multiple sub commands in completion
|
||||
* Factorize more test data
|
||||
* Factorize some test data
|
||||
* Factorize common test code
|
||||
* Factorize argparse importing
|
||||
* Updated from global requirements
|
||||
* Updated from global requirements
|
||||
* Add CLIFF_MAX_TERM_WIDTH envvar to complement --max-width
|
||||
* Fix prettytable.PrettyTable().max_width wrong usage
|
||||
* Fix AttributeError when entry point load failed
|
||||
* Distinguish no existed columns in ShowOne
|
||||
* Refactor HelpCommand
|
||||
* Updated from global requirements
|
||||
* Remove httplib2 from test-requirements.txt
|
||||
* Sync help message for --help
|
||||
* handle empty list in table formatter
|
||||
* Drop Python 2.6 support
|
||||
* Revert "app,command: disallow abbrev by default"
|
||||
* Fixes terminal_width on Windows
|
||||
* Updated from global requirements
|
||||
* remove openstack-common.conf
|
||||
* Add doc for deferred_help parameter
|
||||
* Fix pep8 failure
|
||||
* app,command: disallow abbrev by default
|
||||
* app: work-around abbrev
|
||||
* remove unnecessary dependency on argparse
|
||||
* Make verbose and quiet mutually exclusive
|
||||
* setup: fix Python versions classifiers
|
||||
* Don't import unused logging
|
||||
* Don't use non-existent method of Mock
|
||||
* Replace dashes with underscores in bash completion
|
||||
* Updated from global requirements
|
||||
* Resize columns to fit screen width
|
||||
* fix fuzzy search for same-distance case
|
||||
* Correct path to docs
|
||||
* only use unicodecsv for python 2.x
|
||||
* Fix test class docstring for py 3.5
|
||||
- Adjust Requires and BuildRequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 16 11:34:00 UTC 2015 - tbechtold@suse.com
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-cliff
|
||||
#
|
||||
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,13 +17,13 @@
|
||||
|
||||
|
||||
Name: python-cliff
|
||||
Version: 1.15.0
|
||||
Version: 2.1.0
|
||||
Release: 0
|
||||
Url: https://github.com/dreamhost/cliff
|
||||
Summary: Command Line Interface Formulation Framework
|
||||
License: Apache-2.0
|
||||
Group: Development/Languages/Python
|
||||
Source: http://pypi.python.org/packages/source/c/cliff/cliff-%{version}.tar.gz
|
||||
Source: https://pypi.io/packages/source/c/cliff/cliff-%{version}.tar.gz
|
||||
Patch0: relax-sphinx-requirement.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: python-argparse
|
||||
@@ -35,7 +35,7 @@ BuildRequires: python-Sphinx
|
||||
BuildRequires: python-cmd2
|
||||
BuildRequires: python-coverage >= 3.6
|
||||
BuildRequires: python-httplib2 >= 0.7.5
|
||||
BuildRequires: python-mock >= 1.2
|
||||
BuildRequires: python-mock >= 2.0
|
||||
BuildRequires: python-nose
|
||||
BuildRequires: python-oslosphinx
|
||||
BuildRequires: python-pbr
|
||||
@@ -43,21 +43,13 @@ BuildRequires: python-pyparsing >= 2.0.1
|
||||
BuildRequires: python-six
|
||||
BuildRequires: python-stevedore
|
||||
Requires: python-PrettyTable >= 0.7
|
||||
%if 0%{?suse_version} <= 1110
|
||||
Requires: python-argparse
|
||||
%endif
|
||||
Requires: python-PyYAML >= 3.1.0
|
||||
Requires: python-cmd2 >= 0.6.7
|
||||
Requires: python-pyparsing >= 2.0.1
|
||||
Requires: python-six >= 1.9.0
|
||||
Requires: python-stevedore >= 1.5.0
|
||||
Requires: python-stevedore >= 1.10.0
|
||||
Requires: python-unicodecsv >= 0.8.0
|
||||
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
|
||||
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
%py_requires
|
||||
%else
|
||||
BuildArch: noarch
|
||||
%endif
|
||||
|
||||
%description
|
||||
cliff is a framework for building command line programs. It uses
|
||||
|
||||
@@ -2,11 +2,10 @@ Index: test-requirements.txt
|
||||
===================================================================
|
||||
--- test-requirements.txt.orig
|
||||
+++ test-requirements.txt
|
||||
@@ -5,6 +5,6 @@ nose
|
||||
mock>=1.2
|
||||
coverage>=3.6
|
||||
@@ -5,5 +5,5 @@ nose # LGPL
|
||||
mock>=2.0 # BSD
|
||||
coverage>=3.6 # Apache-2.0
|
||||
# this is required for the docs build jobs
|
||||
-sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2
|
||||
-sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2 # BSD
|
||||
+sphinx
|
||||
oslosphinx>=2.5.0 # Apache-2.0
|
||||
httplib2>=0.7.5
|
||||
oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0
|
||||
|
||||
Reference in New Issue
Block a user