Sync from SUSE:ALP:Source:Standard:1.0 saltbundlepy-docker-pycreds revision 7f977db225ae0bb12610aff40396f809

This commit is contained in:
Adrian Schröter 2024-07-12 12:18:07 +02:00
commit cc63d532c1
4 changed files with 168 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

BIN
docker-pycreds-0.4.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -0,0 +1,75 @@
-------------------------------------------------------------------
Mon Apr 4 12:35:48 UTC 2022 - Victor Zhestkov <victor.zhestkov@suse.com>
- Strictly require Python 3.10 with saltbundlepy requrement
-------------------------------------------------------------------
Mon Jan 14 19:40:27 UTC 2019 - Henne Vogelsang <hvogel@opensuse.org>
- update to version 0.4.0:
* Add support for store.list
-------------------------------------------------------------------
Tue Oct 9 13:08:35 UTC 2018 - dmueller@suse.com
- remove unused flake8 dependency
-------------------------------------------------------------------
Sun Jun 24 15:37:07 UTC 2018 - arun@gmx.de
- update to version 0.3.0:
* Allow overriding environment variables for credstore invocation
-------------------------------------------------------------------
Wed May 2 08:54:18 UTC 2018 - tchvatal@suse.com
- Version update to 0.2.3:
* Various small cleanups and more CI integrations
-------------------------------------------------------------------
Fri Feb 23 04:01:28 UTC 2018 - arun@gmx.de
- specfile:
* update copyright year
* add flake8 and pytest-cov to test requirements (according to setup.py)
- update to version 0.2.2:
* Add support for docker-credential-pass
* Add test-running Dockerfile
* Update setup.py
-------------------------------------------------------------------
Thu Aug 3 17:05:36 UTC 2017 - toddrme2178@gmail.com
- Implement single-spec version
- Remove fix-requirements.patch
This is only needed for setup.py test, which doesn't actually
run the tests anyway so isn't used.
-------------------------------------------------------------------
Tue Feb 21 20:24:35 UTC 2017 - dmueller@suse.com
- update fix-requirements.patch: drop flake8
- fix source url
-------------------------------------------------------------------
Fri Nov 4 20:28:54 UTC 2016 - jengelh@inai.de
- Summary/Description update
-------------------------------------------------------------------
Fri Nov 4 08:39:22 UTC 2016 - jmassaguerpla@suse.com
- relax test-requirements so that it builds on Factory
-------------------------------------------------------------------
Thu Nov 3 16:52:22 UTC 2016 - jmassaguerpla@suse.com
- Add the description
- Remove the SLE11 case
-------------------------------------------------------------------
Wed Oct 26 15:41:35 UTC 2016 - jmassaguerpla@suse.com
- initial import

View File

@ -0,0 +1,67 @@
#
# spec file for package saltbundlepy-docker-pycreds
#
# 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/
#
%{?!saltbundlepy_module:%define saltbundlepy_module() saltbundlepy-%{**}}
%define pythons saltbundlepy
# Disable python bytecompile for all distros
# It's called explicitly in the spec
%global __brp_python_bytecompile %{nil}
Name: saltbundlepy-docker-pycreds
Version: 0.4.0
Release: 0
Summary: Python bindings for the Docker credentials store API
License: Apache-2.0
Group: Development/Languages/Python
URL: https://github.com/shin-/dockerpy-creds
Source: https://files.pythonhosted.org/packages/source/d/docker-pycreds/docker-pycreds-%{version}.tar.gz
BuildRequires: %{saltbundlepy_module base >= 3.10}
BuildRequires: %{saltbundlepy_module pytest}
BuildRequires: %{saltbundlepy_module setuptools}
BuildRequires: %{saltbundlepy_module six}
BuildRequires: fdupes
BuildRequires: saltbundlepy-rpm-macros
Requires: saltbundlepy-base
BuildArch: noarch
%python_subpackages
%description
This package contains the Python bindings for the Docker credentials
store API.
%prep
%setup -q -n docker-pycreds-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}/%{$python_sitelib}/
%check
# Can't run tests as they are depending on crendentials store to exist already
#%%python_expand py.test-%{$python_bin_suffix} .
%files %{python_files}
%license LICENSE
%doc README.md
%{python_sitelib}/*
%changelog