forked from pool/python-bpython
Accepting request 601611 from home:badshah400:branches:devel:languages:python
- Update to version 0.17:
* New features:
- gh#bpython/bpython#641: Implement Ctrl+O.
- Add default_autoreload config option.
* Fixes:
- Fix deprecation warnings.
- Do not call signal outside of main thread.
- Fix option-backspace behavior.
- gh#bpython/bpython#648: Fix paste helper.
- gh#bpython/bpython#653: Handle docstrings more carefully.
- gh#bpython/bpython#654: Do not modify history file during
tests.
- gh#bpython/bpython#658: Fix newline handling.
- gh#bpython/bpython#670: Fix handlign of ANSI escape codes.
- gh#bpython/bpython#687: Fix encoding of jedi completions.
OBS-URL: https://build.opensuse.org/request/show/601611
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bpython?expand=0&rev=3
This commit is contained in:
committed by
Git OBS Bridge
parent
e121276732
commit
a67523776d
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:faf3ddf602bd8ad7f133011778966333b9dcefbc3100df27a200b648906f655f
|
||||
size 201898
|
||||
3
bpython-0.17.tar.gz
Normal file
3
bpython-0.17.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:342d8577e0a8d75b657e5cc2075cdceeb852e2e5ee04a59c5ea7418980806ad5
|
||||
size 214230
|
||||
@@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Apr 26 13:58:01 UTC 2018 - badshah400@gmail.com
|
||||
|
||||
- Update to version 0.17:
|
||||
* New features:
|
||||
- gh#bpython/bpython#641: Implement Ctrl+O.
|
||||
- Add default_autoreload config option.
|
||||
* Fixes:
|
||||
- Fix deprecation warnings.
|
||||
- Do not call signal outside of main thread.
|
||||
- Fix option-backspace behavior.
|
||||
- gh#bpython/bpython#648: Fix paste helper.
|
||||
- gh#bpython/bpython#653: Handle docstrings more carefully.
|
||||
- gh#bpython/bpython#654: Do not modify history file during
|
||||
tests.
|
||||
- gh#bpython/bpython#658: Fix newline handling.
|
||||
- gh#bpython/bpython#670: Fix handlign of ANSI escape codes.
|
||||
- gh#bpython/bpython#687: Fix encoding of jedi completions.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 7 22:41:01 UTC 2017 - toddrme2178@gmail.com
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package python-bpython
|
||||
#
|
||||
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2018 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
|
||||
@@ -13,17 +13,18 @@
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||
%bcond_with test
|
||||
Name: python-bpython
|
||||
Version: 0.16
|
||||
Version: 0.17
|
||||
Release: 0
|
||||
License: MIT
|
||||
Summary: Fancy Interface to the Python Interpreter
|
||||
Url: http://www.bpython-interpreter.org/
|
||||
License: MIT
|
||||
Group: Development/Languages/Python
|
||||
Url: http://www.bpython-interpreter.org/
|
||||
Source: https://files.pythonhosted.org/packages/source/b/bpython/bpython-%{version}.tar.gz
|
||||
BuildRequires: %{python_module Babel}
|
||||
BuildRequires: %{python_module Sphinx}
|
||||
@@ -42,12 +43,12 @@ BuildRequires: %{python_module six >= 1.5}
|
||||
BuildRequires: %{python_module wcwidth}
|
||||
BuildRequires: python-mock
|
||||
%endif
|
||||
Requires: %{name}-common = %{version}
|
||||
Requires: python-curtsies >= 0.1.18
|
||||
Requires: python-greenlet
|
||||
Requires: python-pygments
|
||||
Requires: python-requests
|
||||
Requires: python-six >= 1.5
|
||||
Requires: %{name}-common = %{version}
|
||||
Recommends: python-pyOpenSSL
|
||||
Recommends: python-pyasn1
|
||||
Recommends: python-ndg-httpsclient
|
||||
@@ -76,6 +77,7 @@ ideas to enhance the standard interpreter without getting carried away.
|
||||
%package -n %{name}-common
|
||||
Provides: %{python_module bpython-common = %{version}}
|
||||
Summary: Fancy Interface to the Python Interpreter - common files
|
||||
Group: Development/Languages/Python
|
||||
|
||||
%description -n %{name}-common
|
||||
This package contains files shared between the various versions of
|
||||
@@ -133,7 +135,6 @@ desktop-file-edit --set-name=bpython-%{$python_bin_suffix} \
|
||||
rm %{buildroot}%{_datadir}/appdata/bpython.appdata.xml
|
||||
rm %{buildroot}%{_datadir}/applications/bpython.desktop
|
||||
|
||||
|
||||
%if %{with test}
|
||||
%check
|
||||
%python_exec setup.py test
|
||||
|
||||
Reference in New Issue
Block a user