14
0
Files
python-ptpython/python-ptpython.spec
Daniel Garcia 184df04510 Accepting request 1008046 from home:yarunachalam:branches:devel:languages:python
- Update to version 3.0.20: 2021-09-14
  New features:
  - For `DictionaryCompleter`: show parentheses after methods.
  Fixes:
  - Don't crash when trying to complete broken mappings in `DictionaryCompleter`.
  - Don't crash when an older version of `black` is installed that is not
  compatible.
- Update to version 3.0.19: 2021-07-08
  Fixes:
  - Fix handling of `SystemExit` (fixes "ValueError: I/O operation on closed
  file").
  - Allow usage of `await` in assignment expressions or for-loops.

OBS-URL: https://build.opensuse.org/request/show/1008046
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-ptpython?expand=0&rev=15
2022-10-05 10:18:06 +00:00

103 lines
2.9 KiB
RPMSpec

#
# spec file for package python-ptpython
#
# Copyright (c) 2022 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%define skip_python2 1
Name: python-ptpython
Version: 3.0.20
Release: 0
Summary: Python REPL build on top of prompt_toolkit
License: ISC
Group: Development/Languages/Python
URL: https://github.com/jonathanslenders/ptpython
Source: https://files.pythonhosted.org/packages/source/p/ptpython/ptpython-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-Pygments
Requires: python-appdirs
Requires: python-docopt
Requires: python-jedi >= 0.9.0
Requires: python-prompt_toolkit >= 3.0.0
BuildArch: noarch
# SECTION test requirements
BuildRequires: %{python_module Pygments}
BuildRequires: %{python_module appdirs}
BuildRequires: %{python_module docopt}
BuildRequires: %{python_module ipython}
BuildRequires: %{python_module jedi >= 0.9.0}
BuildRequires: %{python_module prompt_toolkit >= 3.0.0}
# /SECTION
Recommends: python-ptpython-ptipython
%python_subpackages
%description
Ptpython is an advanced Python REPL.
%package ptipython
Summary: Python REPL build on top of prompt_toolkit - IPython support
Group: Development/Languages/Python
Requires: python-ipython
Requires: python-ptpython
%description ptipython
Ptpython is an advanced Python REPL.
This package provides IPython support to Ptpython.
%prep
%setup -q -n ptpython-%{version}
sed -i -e '/^#!\//, 1d' ptpython/entry_points/run_*.py
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
rm %{buildroot}%{_bindir}/pt{,i}python?*
%python_clone -a %{buildroot}%{_bindir}/ptpython
%python_clone -a %{buildroot}%{_bindir}/ptipython
%post
%python_install_alternative ptpython
%post ptipython
%python_install_alternative ptipython
%postun
%python_uninstall_alternative ptpython
%postun ptipython
%python_uninstall_alternative ptipython
%check
# no upstream tests under tests/
%files %{python_files}
%doc CHANGELOG README.rst
%license LICENSE
%{python_sitelib}/*
%python_alternative %{_bindir}/ptpython
%files %{python_files ptipython}
%license LICENSE
%python_alternative %{_bindir}/ptipython
%changelog