Steve Kowalik 2021-03-18 04:14:15 +00:00 committed by Git OBS Bridge
commit bfe3ea5f7c
5 changed files with 141 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

View File

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

38
no-jaraco-apt.patch Normal file
View File

@ -0,0 +1,38 @@
Index: jaraco.context-3.0.0/setup.cfg
===================================================================
--- jaraco.context-3.0.0.orig/setup.cfg
+++ jaraco.context-3.0.0/setup.cfg
@@ -20,7 +20,6 @@ packages = find:
include_package_data = true
python_requires = >=3.6
install_requires =
- jaraco.apt
yg.lockfile
contextlib2; python_version=="2.7"
setup_requires = setuptools_scm >= 1.15.0
Index: jaraco.context-3.0.0/jaraco/context.py
===================================================================
--- jaraco.context-3.0.0.orig/jaraco/context.py
+++ jaraco.context-3.0.0/jaraco/context.py
@@ -13,7 +13,7 @@ try:
except Exception:
import contextlib as contextlib2
-import jaraco.apt
+# import jaraco.apt
import yg.lockfile
@@ -144,9 +144,9 @@ def dependency_context(package_names, ag
stderr=subprocess.STDOUT,
)
log.debug('Aptitude output:\n%s', output)
- installed_packages = jaraco.apt.parse_new_packages(
- output, include_automatic=aggressively_remove
- )
+ # installed_packages = jaraco.apt.parse_new_packages(
+ # output, include_automatic=aggressively_remove
+ # )
if not installed_packages:
lock.release()
log.info('Installed ' + ', '.join(installed_packages))

View File

@ -0,0 +1,5 @@
-------------------------------------------------------------------
Tue Sep 15 06:54:39 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
- Initial package for 3.0.0

View File

@ -0,0 +1,72 @@
#
# spec file for package python-jaraco.context
#
# 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-%{**}}
%define skip_python2 1
Name: python-jaraco.context
Version: 3.0.0
Release: 0
Summary: Tools to work with functools
License: MIT
URL: https://github.com/jaraco/jaraco.context
Source0: https://files.pythonhosted.org/packages/source/j/jaraco.context/jaraco.context-%{version}.tar.gz
Patch0: no-jaraco-apt.patch
BuildRequires: %{python_module pytest-black}
BuildRequires: %{python_module pytest-cov}
BuildRequires: %{python_module pytest-flake8}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module yg.lockfile}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-yg.lockfile
BuildArch: noarch
%python_subpackages
%description
jaraco.functools Tools for working with functools.
Additional functools in the spirit of stdlibs functools.
%prep
%setup -q -n jaraco.context-%{version}
%autopatch -p1
%build
%python_build
%install
%python_install
%python_expand rm %{buildroot}%{$python_sitelib}/jaraco/__init__.py
%py3_compile %{buildroot}%{python3_sitelib}/jaraco/
%py3_compile -O %{buildroot}%{python3_sitelib}/jaraco/
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest
%files %{python_files}
%license LICENSE
%doc docs/*.rst README.rst CHANGES.rst
%{python_sitelib}/jaraco.context-%{version}-py*.egg-info
%{python_sitelib}/jaraco/context.py*
%pycache_only %{python_sitelib}/jaraco/__pycache__/*.py*
%changelog