diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-10 09:36:57 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 09:36:57 +0000 |
| commit | 66aaa0a9b497c2ada6636616f0591f4694068a60 (patch) | |
| tree | 88ec6346bcebfb4a5d6a96d6739ee191aab1a32a | |
| parent | 4cfa604ee21542e98d5fd92bb8cf298e2ed865f3 (diff) | |
automatic import of python-docker-pycreds
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-docker-pycreds.spec | 181 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 183 insertions, 0 deletions
@@ -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 + +[](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 + +[](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 + +[](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 @@ -0,0 +1 @@ +322f570cea6b4661c6ac335683988e18 docker-pycreds-0.4.0.tar.gz |
