Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9452e07f70 |
5 changed files with 1 additions and 110 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1,3 +0,0 @@
|
|||
/vault-0.0.1.tar.gz
|
||||
/vault-0.0.2.tar.gz
|
||||
/vault-0.0.3.tar.gz
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
# vault
|
||||
|
||||
The vault package
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
EOL project
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
SHA512 (vault-0.0.3.tar.gz) = eed630f74744da96cd593eddfa7293014ced101ff3cec246bcd7b86586eb41b73122fc6f12087160fb83e2c4bb4e695c8f0b832f3cdccb8a4e4db9a6d0206237
|
||||
103
vault.spec
103
vault.spec
|
|
@ -1,103 +0,0 @@
|
|||
Name: vault
|
||||
# NOTE: if you update version, *make sure* to also update `vault/__init__.py`
|
||||
Version: 0.0.3
|
||||
Release: 6%{?dist}
|
||||
Summary: Secrets storage for automated tasks
|
||||
|
||||
License: GPLv2+
|
||||
URL: https://pagure.io/taskotron/vault
|
||||
Source0: https://releases.pagure.org/%{name}/%{name}-%{version}.tar.gz
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
Requires: python3-alembic
|
||||
Requires: python3-flask
|
||||
Requires: python3-flask-httpauth
|
||||
Requires: python3-flask-login
|
||||
Requires: python3-flask-wtf
|
||||
Requires: python3-flask-oidc
|
||||
Requires: python3-flask-restful
|
||||
Requires: python3-flask-sqlalchemy
|
||||
Requires: python3-crypto
|
||||
Requires: python3-munch
|
||||
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
|
||||
%description
|
||||
Vault stores and controls encrypted data like passwords,
|
||||
API keys or other secrets.
|
||||
Implements bucket-based access control, and secret versioning.
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%check
|
||||
# This seems to be the only place where we can remove pyco files, see:
|
||||
# https://fedoraproject.org/wiki/Packaging:Python#Byte_compiling
|
||||
rm -f %{buildroot}%{_sysconfdir}/vault/*.py{c,o}
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
# apache and wsgi settings
|
||||
install -d %{buildroot}%{_datadir}/vault/conf
|
||||
install -p -m 0644 conf/vault.conf %{buildroot}%{_datadir}/vault/conf/
|
||||
install -p -m 0644 conf/vault.wsgi %{buildroot}%{_datadir}/vault/
|
||||
|
||||
# alembic config and data
|
||||
cp -r --preserve=timestamps alembic %{buildroot}%{_datadir}/vault/
|
||||
install -p -m 0644 alembic.ini %{buildroot}%{_datadir}/vault/
|
||||
|
||||
# vault config
|
||||
install -d %{buildroot}%{_sysconfdir}/vault
|
||||
install -p -m 0644 conf/settings.py.example %{buildroot}%{_sysconfdir}/vault/settings.py
|
||||
|
||||
%files
|
||||
%doc README.md
|
||||
%license LICENSE
|
||||
%{python3_sitelib}/vault
|
||||
%{python3_sitelib}/*.egg-info
|
||||
|
||||
%{_bindir}/vault
|
||||
%dir %{_sysconfdir}/vault
|
||||
%config(noreplace) %{_sysconfdir}/vault/settings.py
|
||||
%dir %{_datadir}/vault
|
||||
%{_datadir}/vault/*
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Jan 31 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.0.3-5
|
||||
- Rebuilt for Python 3.8.0rc1 (#1748018)
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.0.3-4
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Sat Jul 27 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Sun Feb 03 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.3-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Thu Jan 24 2019 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.0.3-1
|
||||
- Use Python 3
|
||||
- Use qa-make Makefile
|
||||
- Fix secrets serialization
|
||||
- Change the API side a bit
|
||||
- Move OIDC config
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.0.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Wed May 30 2018 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.0.2-1
|
||||
- Use python-flask-login for F27
|
||||
- New Release
|
||||
|
||||
* Tue May 22 2018 Josef Skladanka <jskladan@redhat.com> - 0.0.1-1
|
||||
- initial packaging
|
||||
Loading…
Add table
Add a link
Reference in a new issue