forked from pool/python-bpython
Accepting request 882941 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/882941 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bpython?expand=0&rev=17
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:fec7d97be9912a50d8f5b34ca10d70715c99a33f0cd0b9e4977c1b0f617fa913
|
|
||||||
size 224127
|
|
||||||
3
bpython-0.21.tar.gz
Normal file
3
bpython-0.21.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:88aa9b89974f6a7726499a2608fa7ded216d84c69e78114ab2ef996a45709487
|
||||||
|
size 208206
|
||||||
@@ -1,3 +1,33 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 5 01:02:36 UTC 2021 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
- specfile:
|
||||||
|
* update copyright year
|
||||||
|
* AUTHORS and CHANGELOG are now .rst files
|
||||||
|
|
||||||
|
- update to version 0.21:
|
||||||
|
* General information:
|
||||||
|
+ Support for Python 2 has been dropped.
|
||||||
|
* New features:
|
||||||
|
+ #643: Provide bpython._version if built from Github tarballs
|
||||||
|
+ #849: Make import completion skip list configurable
|
||||||
|
+ #876: Check spelling with codespell Thanks to Christian Clauss
|
||||||
|
* Fixes:
|
||||||
|
+ #847: Fix import completion of modules
|
||||||
|
+ #857: Replace remaining use of deprecated imp with importlib
|
||||||
|
+ #862: Upgrade curtsies version requirements Thanks to Kelsey
|
||||||
|
Blair
|
||||||
|
+ #863: State correct default config file directory Thanks to
|
||||||
|
niloct
|
||||||
|
+ #866: Add more directories to the default import completion skip
|
||||||
|
list
|
||||||
|
+ #873: Handle 'd' when mapping colors
|
||||||
|
+ #874: Avoid breakage with six's importer
|
||||||
|
* Changes to dependencies:
|
||||||
|
+ curtsies >= 0.3.5 is now required
|
||||||
|
+ pyxdg is now required
|
||||||
|
+ wcwidth has been replaced with cwcwidth
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 30 22:26:06 UTC 2020 - Arun Persaud <arun@gmx.de>
|
Fri Oct 30 22:26:06 UTC 2020 - Arun Persaud <arun@gmx.de>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-bpython
|
# spec file for package python-bpython
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -17,9 +17,10 @@
|
|||||||
|
|
||||||
|
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
||||||
|
%define skip_python2 1
|
||||||
%bcond_with test
|
%bcond_with test
|
||||||
Name: python-bpython
|
Name: python-bpython
|
||||||
Version: 0.20
|
Version: 0.21
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Fancy Interface to the Python Interpreter
|
Summary: Fancy Interface to the Python Interpreter
|
||||||
License: MIT
|
License: MIT
|
||||||
@@ -33,23 +34,24 @@ BuildRequires: hicolor-icon-theme
|
|||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
Requires: %{name}-common = %{version}
|
Requires: %{name}-common = %{version}
|
||||||
Requires: python-curtsies >= 0.1.18
|
Requires: python-curtsies >= 0.3.5
|
||||||
Requires: python-greenlet
|
Requires: python-greenlet
|
||||||
Requires: python-pygments
|
Requires: python-pygments
|
||||||
|
Requires: python-pyxdg
|
||||||
Requires: python-requests
|
Requires: python-requests
|
||||||
Requires: python-six >= 1.5
|
Requires: python-six >= 1.5
|
||||||
Requires(post): update-alternatives
|
Requires(post): update-alternatives
|
||||||
Requires(postun): update-alternatives
|
Requires(postun):update-alternatives
|
||||||
|
Recommends: python-cwcwidth
|
||||||
Recommends: python-jedi
|
Recommends: python-jedi
|
||||||
Recommends: python-ndg-httpsclient
|
Recommends: python-ndg-httpsclient
|
||||||
Recommends: python-pyOpenSSL
|
Recommends: python-pyOpenSSL
|
||||||
Recommends: python-pyasn1
|
Recommends: python-pyasn1
|
||||||
Recommends: python-urwid
|
Recommends: python-urwid
|
||||||
Recommends: python-watchdog
|
Recommends: python-watchdog
|
||||||
Recommends: python-wcwidth
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if %{with test}
|
%if %{with test}
|
||||||
BuildRequires: %{python_module curtsies >= 0.1.18}
|
BuildRequires: %{python_module curtsies >= 0.3.5}
|
||||||
BuildRequires: %{python_module greenlet}
|
BuildRequires: %{python_module greenlet}
|
||||||
BuildRequires: %{python_module pygments}
|
BuildRequires: %{python_module pygments}
|
||||||
BuildRequires: %{python_module requests}
|
BuildRequires: %{python_module requests}
|
||||||
@@ -143,7 +145,7 @@ rm %{buildroot}%{_datadir}/applications/org.bpython-interpreter.bpython.desktop
|
|||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc AUTHORS CHANGELOG README.rst
|
%doc AUTHORS.rst CHANGELOG.rst README.rst
|
||||||
%dir %{python_sitelib}/bpython
|
%dir %{python_sitelib}/bpython
|
||||||
%{python_sitelib}/bpython/*
|
%{python_sitelib}/bpython/*
|
||||||
%dir %{python_sitelib}/bpdb
|
%dir %{python_sitelib}/bpdb
|
||||||
|
|||||||
Reference in New Issue
Block a user