Accepting request 848406 from home:malcolmlewis:TESTING

Dependency to move Thonny into Tumbleweed. All tests enable. At present Leap releases do not have later versions of setuptools_scm[toml] to build.

OBS-URL: https://build.opensuse.org/request/show/848406
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-asttokens?expand=0&rev=1
This commit is contained in:
Matej Cepl 2020-11-14 11:04:09 +00:00 committed by Git OBS Bridge
commit 8274153f88
5 changed files with 111 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.osc

3
asttokens-2.0.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a42e57e28f2ac1c85ed9b1f84109401427e5c63c04f61d15b8842b027eec5128
size 50173

19
python-asttokens.changes Normal file
View File

@ -0,0 +1,19 @@
-------------------------------------------------------------------
Thu Nov 12 14:38:22 UTC 2020 - malcolmlewis@opensuse.org
- Updated to version 2.0.4:
* Fix for Python 3.9 keyword arguments.
* Don't verify slice nodes.
* Test 3.9 in tox and travis.
- Changes from version 2.0.3:
* Bump patch version.
-------------------------------------------------------------------
Wed Jan 8 15:00:01 UTC 2020 - malcolmlewis@opensuse.org
- Disable python2 build.
-------------------------------------------------------------------
Tue Nov 19 17:45:21 UTC 2019 - malcolmlewis@opensuse.org
- Initial build at version 2.0.2.

65
python-asttokens.spec Normal file
View File

@ -0,0 +1,65 @@
#
# spec file for package python-asttokens
#
# Copyright (c) 2019-2020 Malcolm J Lewis <malcolmlewis@opensuse.org>
#
# 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 http://bugs.opensuse.org/
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-asttokens
Version: 2.0.4
Release: 0
License: Apache-2.0
Summary: Annotate AST trees with source code positions
Url: https://github.com/gristlabs/asttokens
Group: Development/Languages/Python
Source: https://files.pythonhosted.org/packages/source/a/asttokens/asttokens-%{version}.tar.gz
BuildRequires: python-rpm-macros
BuildRequires: %{python_module astroid}
BuildRequires: %{python_module devel}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module six}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module toml}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
## Manual Begin
Requires: python-six
## Manual End
BuildArch: noarch
%python_subpackages
%description
Annotate AST trees with source code positions
%prep
%setup -q -n asttokens-%{version}
%build
export LC_ALL=en_US.utf8
%python_build
%install
export LC_ALL=en_US.utf8
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%python_exec -m unittest discover -v
%files %{python_files}
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog