From aba234eac2dc4214808fc2f04544be0b817343d953f2b44ddf89649b9aabb4a3 Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Wed, 2 Dec 2020 22:09:49 +0000 Subject: [PATCH] Accepting request 852716 from home:ecsos:messenger:matrix New packages. Need for python-sentry-sdk OBS-URL: https://build.opensuse.org/request/show/852716 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-executing?expand=0&rev=1 --- .gitattributes | 23 +++++++++++++++ .gitignore | 1 + executing-0.5.3.tar.gz | 3 ++ python-executing.changes | 20 +++++++++++++ python-executing.spec | 64 ++++++++++++++++++++++++++++++++++++++++ 5 files changed, 111 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 executing-0.5.3.tar.gz create mode 100644 python-executing.changes create mode 100644 python-executing.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/executing-0.5.3.tar.gz b/executing-0.5.3.tar.gz new file mode 100644 index 0000000..e4dbf62 --- /dev/null +++ b/executing-0.5.3.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c039c841e0b606fca7774b42302697b2f0eca78b4d0e3e582024cf881776379 +size 301720 diff --git a/python-executing.changes b/python-executing.changes new file mode 100644 index 0000000..91d613b --- /dev/null +++ b/python-executing.changes @@ -0,0 +1,20 @@ +------------------------------------------------------------------- +Wed Dec 2 20:23:30 UTC 2020 - ecsos + +- Update to 0.5.3 + - Handle pypy saying the current instruction is an extended arg +- Changes from 0.5.2 + - Convert path to string before checking filename cache +- Changes from 0.5.1 + - Get top level statement containing IPython node +- Changes from 0.5.0 + - Also cache Source objects by contents (lines) +- Changes from 0.4.4 + - Move packaging metadata into setup.cfg +- Changes from 0.4.3 + - Bump to 0.4.3 + +------------------------------------------------------------------- +Wed Mar 11 09:51:32 PM UTC 2020 - John Vandenberg + +- Initial spec for v0.4.2 diff --git a/python-executing.spec b/python-executing.spec new file mode 100644 index 0000000..8c7796f --- /dev/null +++ b/python-executing.spec @@ -0,0 +1,64 @@ +# +# spec file for package python-executing +# +# Copyright (c) 2020 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 +# 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-%{**}} +%define skip_python2 1 +Name: python-executing +Version: 0.5.3 +Release: 0 +License: MIT +Summary: Get the currently executing AST node of a frame, and other information +Url: https://github.com/alexmojaki/executing +Group: Development/Languages/Python +#Source: https://github.com/alexmojaki/executing/archive/v%%{version}/%%{name}-%%{version}.tar.gz +Source: https://files.pythonhosted.org/packages/source/e/executing/executing-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +BuildRequires: %{python_module devel} +BuildRequires: %{python_module setuptools_scm >= 4.0.0} +BuildRequires: %{python_module wheel} +BuildRequires: %{python_module toml} +BuildRequires: %{python_module pytest} +BuildRequires: %{python_module asttokens} +BuildRequires: fdupes +BuildArch: noarch + +%python_subpackages + +%description +Get the currently executing AST node of a frame, and other information + +%prep +%setup -q -n executing-%{version} + +%build +%python_build + +%install +%python_install +%python_expand %fdupes %{buildroot}%{$python_sitelib} + +%check +#%%pytest +%python_exec setup.py test + +%files %{python_files} +%doc README.md +%license LICENSE.txt +%{python_sitelib}/* + +%changelog