From 8274153f88170e014f6dbb4aff7db6374c08aae7b85786bfee68196f2e6dd896 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Sat, 14 Nov 2020 11:04:09 +0000 Subject: [PATCH] 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 --- .gitattributes | 23 ++++++++++++++ .gitignore | 1 + asttokens-2.0.4.tar.gz | 3 ++ python-asttokens.changes | 19 ++++++++++++ python-asttokens.spec | 65 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 111 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 asttokens-2.0.4.tar.gz create mode 100644 python-asttokens.changes create mode 100644 python-asttokens.spec diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..9b03811 --- /dev/null +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..57affb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.osc diff --git a/asttokens-2.0.4.tar.gz b/asttokens-2.0.4.tar.gz new file mode 100644 index 0000000..52b5db8 --- /dev/null +++ b/asttokens-2.0.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a42e57e28f2ac1c85ed9b1f84109401427e5c63c04f61d15b8842b027eec5128 +size 50173 diff --git a/python-asttokens.changes b/python-asttokens.changes new file mode 100644 index 0000000..ab154a0 --- /dev/null +++ b/python-asttokens.changes @@ -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. diff --git a/python-asttokens.spec b/python-asttokens.spec new file mode 100644 index 0000000..c2a80fd --- /dev/null +++ b/python-asttokens.spec @@ -0,0 +1,65 @@ +# +# spec file for package python-asttokens +# +# Copyright (c) 2019-2020 Malcolm J Lewis +# +# 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