Skip to content

Commit

Permalink
Merge pull request #1 from mindolo/master
Browse files Browse the repository at this point in the history
Project debianization
  • Loading branch information
crisidev committed Jun 20, 2017
2 parents 33eefa8 + 2bb8fc8 commit bbafaf8
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,11 @@ ENV/

# Rope project settings
.ropeproject
.pybuild/

# Debian packages
debian/debhelper-build-stamp
debian/*.debhelper
debian/*.substvars
debian/*.log
debian/files
2 changes: 2 additions & 0 deletions debian/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python3-vault-ca
python-vault-ca
11 changes: 11 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
vault-ca (0.5-2) unstable; urgency=low

* update package support only python2 and python3

-- Matteo Bigoi <bigo@crisidev.org> Tue, 20 Jun 2017 19:53:31 +0000

vault-ca (0.5-1) unstable; urgency=low

* source package automatically created by stdeb 0.8.2

-- Matteo Bigoi <bigo@crisidev.org> Tue, 06 Jun 2017 20:06:08 +0000
1 change: 1 addition & 0 deletions debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9
21 changes: 21 additions & 0 deletions debian/control
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Source: vault-ca
Maintainer: Matteo Bigoi <bigo@crisidev.org>
Section: python
Priority: optional
Build-Depends: debhelper (>= 9), dh-python (>= 2),
python-setuptools (>= 33.1), python-all (>= 2.7), python-pytest-runner (>= 2.7), python-requests (>= 2.4), python-openssl (>= 16.2), python-pytest (>= 3.0), python-pytest-cov (>= 2.4), python-requests-mock (>= 1.0),
python3-setuptools (>= 0.6b3), python3-all (>= 3.4), python3-pytest-runner (>= 2.7), python3-requests (>= 2.4), python3-openssl (>= 16.2), python3-pytest (>= 3.0.6), python3-pytest-cov (>= 2.4), python3-requests-mock (>= 1.0)
Standards-Version: 3.9.1
X-Python-Version: >= 2.7
X-Python3-Version: >= 3.4

Package: python3-vault-ca
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-all (>= 3.4), python3-requests (>= 2.4), python3-openssl (>= 16.2)
Description: Set of utils (python3) to create your own CA using hashicorp Vault

Package: python-vault-ca
Architecture: all
Depends: ${misc:Depends}, ${python:Depends}, python-all (>= 2.7), python-requests (>= 2.4), python-openssl (>= 16.2)
Description: Set of utils (python2) to create your own CA using hashicorp Vault

5 changes: 5 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/make -f
export PYBUILD_NAME=vault-ca
%:
dh $@ --with python2,python3 --buildsystem=pybuild

1 change: 1 addition & 0 deletions debian/source/format
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.0 (quilt)
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ split_before_named_assigns=true
test = pytest

[tool:pytest]
addopts = -v --cov-report term-missing --cov-branch --cov=vault_ca tests/
addopts = -v --cov-report term-missing --cov=vault_ca tests/

0 comments on commit bbafaf8

Please sign in to comment.