-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(packaging): Build Debian Packages
- Loading branch information
Showing
5 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
vault-ssh-renew (0.2.0a4-1) unstable; urgency=medium | ||
|
||
* Initial release. | ||
|
||
-- Niels Grewe <thebeing@halbordnung.de> Sat, 25 Jul 2020 00:04:00 +0200 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Source: vault-ssh-renew | ||
Section: python | ||
Priority: extra | ||
Maintainer: Niels Grewe <niels.grewe@halbordnung.de> | ||
Build-Depends: debhelper (>= 11), python3-all, python3-setuptools, dh-systemd (>= 1.5) | ||
XS-Python-Version: >=3.6 | ||
Standards-Version: 3.9.5 | ||
|
||
Package: vault-ssh-renew | ||
Architecture: all | ||
Pre-Depends: dpkg (>= 1.16.1), ${misc:Pre-Depends} | ||
Depends: ${python3:Depends}, ${misc:Depends}, python3-pkg-resources, python3-paramiko (>= 2.0.0), python3-click (>= 6.6), python3-requests (>= 2.12.4) | ||
Enhances: ssh-server | ||
Description: Automatic SSH Certificate Renewal Using Vault | ||
Automates the process of renewing SSH certificates from a Vault server. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#! /usr/bin/make -f | ||
|
||
export DH_VERBOSE = 1 | ||
export PYBUILD_NAME = vault-ssh-renew | ||
|
||
%: | ||
dh $@ --with python2,python3 --buildsystem=pybuild |