summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-docker-pycreds.spec181
-rw-r--r--sources1
3 files changed, 183 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..03969e0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/docker-pycreds-0.4.0.tar.gz
diff --git a/python-docker-pycreds.spec b/python-docker-pycreds.spec
new file mode 100644
index 0000000..8828379
--- /dev/null
+++ b/python-docker-pycreds.spec
@@ -0,0 +1,181 @@
+%global _empty_manifest_terminate_build 0
+Name: python-docker-pycreds
+Version: 0.4.0
+Release: 1
+Summary: Python bindings for the docker credentials store API
+License: Apache License 2.0
+URL: https://github.com/shin-/dockerpy-creds
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c5/e6/d1f6c00b7221e2d7c4b470132c931325c8b22c51ca62417e300f5ce16009/docker-pycreds-0.4.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-six
+
+%description
+# docker-pycreds
+
+[![CircleCI](https://circleci.com/gh/shin-/dockerpy-creds/tree/master.svg?style=svg)](https://circleci.com/gh/shin-/dockerpy-creds/tree/master)
+
+Python bindings for the docker credentials store API
+
+## Credentials store info
+
+[Docker documentation page](https://docs.docker.com/engine/reference/commandline/login/#/credentials-store)
+
+## Requirements
+
+On top of the dependencies in `requirements.txt`, the `docker-credential`
+executable for the platform must be installed on the user's system.
+
+## API usage
+
+```python
+
+import dockerpycreds
+
+store = dockerpycreds.Store('secretservice')
+store.store(
+ server='https://index.docker.io/v1/', username='johndoe',
+ secret='hunter2'
+)
+
+print(store.list())
+
+print(store.get('https://index.docker.io/v1/'))
+
+
+store.erase('https://index.docker.io/v1/')
+```
+
+
+
+
+%package -n python3-docker-pycreds
+Summary: Python bindings for the docker credentials store API
+Provides: python-docker-pycreds
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-docker-pycreds
+# docker-pycreds
+
+[![CircleCI](https://circleci.com/gh/shin-/dockerpy-creds/tree/master.svg?style=svg)](https://circleci.com/gh/shin-/dockerpy-creds/tree/master)
+
+Python bindings for the docker credentials store API
+
+## Credentials store info
+
+[Docker documentation page](https://docs.docker.com/engine/reference/commandline/login/#/credentials-store)
+
+## Requirements
+
+On top of the dependencies in `requirements.txt`, the `docker-credential`
+executable for the platform must be installed on the user's system.
+
+## API usage
+
+```python
+
+import dockerpycreds
+
+store = dockerpycreds.Store('secretservice')
+store.store(
+ server='https://index.docker.io/v1/', username='johndoe',
+ secret='hunter2'
+)
+
+print(store.list())
+
+print(store.get('https://index.docker.io/v1/'))
+
+
+store.erase('https://index.docker.io/v1/')
+```
+
+
+
+
+%package help
+Summary: Development documents and examples for docker-pycreds
+Provides: python3-docker-pycreds-doc
+%description help
+# docker-pycreds
+
+[![CircleCI](https://circleci.com/gh/shin-/dockerpy-creds/tree/master.svg?style=svg)](https://circleci.com/gh/shin-/dockerpy-creds/tree/master)
+
+Python bindings for the docker credentials store API
+
+## Credentials store info
+
+[Docker documentation page](https://docs.docker.com/engine/reference/commandline/login/#/credentials-store)
+
+## Requirements
+
+On top of the dependencies in `requirements.txt`, the `docker-credential`
+executable for the platform must be installed on the user's system.
+
+## API usage
+
+```python
+
+import dockerpycreds
+
+store = dockerpycreds.Store('secretservice')
+store.store(
+ server='https://index.docker.io/v1/', username='johndoe',
+ secret='hunter2'
+)
+
+print(store.list())
+
+print(store.get('https://index.docker.io/v1/'))
+
+
+store.erase('https://index.docker.io/v1/')
+```
+
+
+
+
+%prep
+%autosetup -n docker-pycreds-0.4.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-docker-pycreds -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.4.0-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..80c32ca
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+322f570cea6b4661c6ac335683988e18 docker-pycreds-0.4.0.tar.gz