commit f2fe21bd29e8900d0a46cd6e3c058fb7dcfe57eb8efb4d798fe82a4fedcf576f Author: Matej Cepl Date: Fri Sep 10 19:27:51 2021 +0000 Accepting request 918018 from home:mcepl:branches:devel:languages:python Initial package for backports.entry_points_selectable 1.1.0. (Required by python-virtualenv) OBS-URL: https://build.opensuse.org/request/show/918018 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-backports.entry_points_selectable?expand=0&rev=1 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/backports.entry_points_selectable-1.1.0.tar.gz b/backports.entry_points_selectable-1.1.0.tar.gz new file mode 100644 index 0000000..5799465 --- /dev/null +++ b/backports.entry_points_selectable-1.1.0.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:988468260ec1c196dab6ae1149260e2f5472c9110334e5d51adcb77867361f6a +size 8770 diff --git a/python-backports.entry_points_selectable.changes b/python-backports.entry_points_selectable.changes new file mode 100644 index 0000000..4eadef9 --- /dev/null +++ b/python-backports.entry_points_selectable.changes @@ -0,0 +1,4 @@ +------------------------------------------------------------------- +Wed Aug 4 13:35:05 UTC 2021 - Matej Cepl + +- Initial package for backports.entry_points_selectable 1.1.0. diff --git a/python-backports.entry_points_selectable.spec b/python-backports.entry_points_selectable.spec new file mode 100644 index 0000000..8fcccda --- /dev/null +++ b/python-backports.entry_points_selectable.spec @@ -0,0 +1,78 @@ +# +# spec file for package python-backports.entry_points_selectable +# +# Copyright (c) 2021 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-%{**}} +# See pep#0420 ... implicit namespace packages are available only in Python 3.3 +%define skip_python2 1 +Name: python-backports.entry_points_selectable +Version: 1.1.0 +Release: 0 +Summary: Compatibility shim providing selectable entry points for older implementations +License: MIT +URL: https://github.com/jaraco/backports.entry_points_selectable +Source: https://files.pythonhosted.org/packages/source/b/backports.entry_points_selectable/backports.entry_points_selectable-%{version}.tar.gz +BuildRequires: python-rpm-macros +BuildRequires: %{python_module setuptools} +BuildRequires: fdupes +BuildRequires: %{python_module importlib_metadata} +BuildRequires: %{python_module pytest >= 4.6} +BuildRequires: %{python_module pytest-flake8} +BuildRequires: %{python_module pytest-cov} +BuildRequires: %{python_module pytest-black >= 0.3.7} +BuildRequires: %{python_module pytest-mypy} +# BuildRequires: %%{python_module pytest-checkdocs >= 2.4} +# BuildRequires: %%{python_module pytest-enabler >= 1.0.1} +# # For docs +# BuildRequires: %%{python_module Sphinx} +# BuildRequires: %%{python_module jaraco.packaging >= 8.2} +# BuildRequires: %%{python_module rst.linker >= 1.9} +BuildArch: noarch +%python_subpackages + +%description +Compatibility shim providing selectable entry points for older implementations + +%prep +%autosetup -p1 -n backports.entry_points_selectable-%{version} + +%build +%python_build + +%install +%python_install + +# PEP-420 allows implicit packages without an additional __init__.py +%{python_expand # remove explicit __init__.py files +rm -v %{buildroot}%{$python_sitelib}/backports/__init__.py \ + %{buildroot}%{$python_sitelib}/backports/__pycache__/__init__.* +%fdupes %{buildroot}%{$python_sitelib} +} + +%check +%pytest + +%files %{python_files} +%doc CHANGES.rst README.rst +%license LICENSE +%dir %{python_sitelib}/backports +%{python_sitelib}/backports.entry_points_selectable* +%{python_sitelib}/backports/entry_points_selectable.py +%dir %{python_sitelib}/backports/__pycache__ +%pycache_only %{python_sitelib}/backports/__pycache__/* + +%changelog