-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
3,844 additions
and
815 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,46 @@ | ||
language: python | ||
python: | ||
- "3.5" | ||
- "3.4" | ||
- "3.3" | ||
- "3.2" | ||
- "2.7" | ||
- "pypy" | ||
- "pypy3" | ||
matrix: | ||
include: | ||
# add a pep8 test | ||
- python: 3.4 | ||
- python: 3.5 | ||
env: TOXENV=pep8 | ||
# add a test of setup.py using python 3.4 | ||
# test setup.py using each tested version | ||
- python: 3.5 | ||
env: TOXENV=setup35 | ||
- python: 3.4 | ||
env: TOXENV=setup | ||
# add a setup.py test using python 2.7 | ||
env: TOXENV=setup34 | ||
- python: 3.3 | ||
env: TOXENV=setup33 | ||
- python: 2.7 | ||
env: TOXENV=setup27 | ||
allow_failures: | ||
# pep8 failures shouldn't be considered fatal | ||
- env: TOXENV=pep8 | ||
# pypy and pypy3 tests are just for fun | ||
- python: "pypy" | ||
- python: "pypy3" | ||
# install requirements | ||
install: | ||
# make sure gnupg, pgpdump, and the requested version of OpenSSL are installed | ||
# make sure libffi-dev, gnupg2, and pgpdump are installed | ||
- sudo apt-get update | ||
- sudo apt-get install -y gnupg pgpdump | ||
# install coveralls | ||
- sudo apt-get install -y libffi-dev gnupg2 pgpdump | ||
# ensure tox and coveralls are installed | ||
- pip install tox python-coveralls | ||
# set TOXENV if it isn't yet | ||
before_script: | ||
- if [[ -z "$TOXENV" ]]; then export TOXENV=py${TRAVIS_PYTHON_VERSION//.}; fi | ||
- if [[ "$TRAVIS_PYTHON_VERSION" == 'pypy' ]]; then export TOXENV=pypy; fi | ||
- if [[ "$TRAVIS_PYTHON_VERSION" == 'pypy3' ]]; then export TOXENV=pypy3; fi | ||
# use setup.py to invoke testing via coveralls | ||
# run tox | ||
script: | ||
- tox | ||
- ./tox.sh | ||
# and report coverage to coveralls, but only if this was a pytest run | ||
after_success: | ||
if [[ "${TOXENV}" == "py"* ]]; then coveralls; fi | ||
- if [[ "${TOXENV}" == "py"* ]]; then coveralls; fi |
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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
pgpy (0.4.0a-1) unstable; urgency=low | ||
|
||
* Updated to latest release | ||
|
||
-- Michael <[email protected]> Thu, 21 Apr 2016 21:15:38 -0700 | ||
|
||
pgpy (0.3.0-1) unstable; urgency=low | ||
|
||
* Initial release (Closes: #62) | ||
|
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 |
---|---|---|
|
@@ -2,12 +2,14 @@ Source: pgpy | |
Section: python | ||
Priority: optional | ||
Maintainer: Michael Greene <[email protected]> | ||
Build-Depends: debhelper (>= 8.0.0), cdbs, python-all-dev (>= 2.7), python3-all-dev (>= 3.2), python-setuptools, python3-setuptools | ||
Build-Depends: debhelper (>= 8.0.0), cdbs, | ||
python3-all-dev (>= 3.2), python3-setuptools, | ||
python-all-dev (>= 2.7), python-setuptools | ||
Standards-Version: 3.9.2 | ||
X-Python-Version: >= 2.7 | ||
X-Python3-Version: >= 3.2 | ||
Vcs-Git: https://github.com/Commod0re/PGPy.git | ||
Vcs-Browser: https://github.com/Commod0re/PGPy | ||
X-Python3-Version: >= 3.3 | ||
Vcs-Git: https://github.com/SecurityInnovation/PGPy.git | ||
Vcs-Browser: https://github.com/SecurityInnovation/PGPy | ||
|
||
Package: python-pgpy | ||
Architecture: all | ||
|
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
enum34 python-enum34 | ||
singledispatch python-singledispatch | ||
six python-six (>= 1.7.2) | ||
cryptography python-cryptography (>= 0.5.2), python-cryptography (<= 0.6.0) | ||
six python-six (>= 1.9.0) | ||
cryptography python-cryptography (>= 1.1.0) | ||
pyasn1 python-pyasn1 |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
enum34 -3.4 python3-enum34 | ||
singledispatch python3-singledispatch | ||
six python3-six (>= 1.7.2) | ||
cryptography python3-cryptography (>= 0.5.2), python3-cryptography (<= 0.6.0) | ||
six python3-six (>= 1.9.0) | ||
cryptography python3-cryptography (>= 1.1.0) | ||
pyasn1 python3-pyasn1 |
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
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
Oops, something went wrong.