diff options
Diffstat (limited to 'python-django-vault-helpers.spec')
-rw-r--r-- | python-django-vault-helpers.spec | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/python-django-vault-helpers.spec b/python-django-vault-helpers.spec new file mode 100644 index 0000000..edc28de --- /dev/null +++ b/python-django-vault-helpers.spec @@ -0,0 +1,87 @@ +%global _empty_manifest_terminate_build 0 +Name: python-django-vault-helpers +Version: 0.8.1 +Release: 1 +Summary: Helper functionality for obtaining secrets and credentials from Hashicorp Vault in a Django project +License: ISC +URL: https://gitlab.com/thelabnyc/django-vault-helpers +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/29/e8/11664fac63393ef1fdd956aeb764946a350ad78c3a3fb26a07ea509af153/django-vault-helpers-0.8.1.tar.gz +BuildArch: noarch + +Requires: python3-Django +Requires: python3-hvac +Requires: python3-portalocker +Requires: python3-pytz +Requires: python3-dateutil +Requires: python3-boto3 +Requires: python3-botocore +Requires: python3-dj-database-url +Requires: python3-flake8 +Requires: python3-freezegun +Requires: python3-psycopg2-binary +Requires: python3-requests-mock +Requires: python3-tox +Requires: python3-versiontag +Requires: python3-sentry-sdk + +%description + + +%package -n python3-django-vault-helpers +Summary: Helper functionality for obtaining secrets and credentials from Hashicorp Vault in a Django project +Provides: python-django-vault-helpers +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-django-vault-helpers + + +%package help +Summary: Development documents and examples for django-vault-helpers +Provides: python3-django-vault-helpers-doc +%description help + + +%prep +%autosetup -n django-vault-helpers-0.8.1 + +%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-django-vault-helpers -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 0.8.1-1 +- Package Spec generated |