-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update various stale documentation files etc. upgrade the docker file…
… to buster, update dependecies that are packages along with stapled.
- Loading branch information
Showing
21 changed files
with
175 additions
and
111 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
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,5 +1,5 @@ | ||
Stapled (Staple Daemon) | ||
Copyright 2017 Greenhost BV | ||
Copyright 2019 Greenhost BV | ||
|
||
Licensed Apache Version 2.0 | ||
|
||
|
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,14 @@ | ||
stapled (1.4) buster; urgency=high | ||
|
||
* Tested against buster | ||
* Tested against Python 3.7 | ||
* Still tested against Python 3.5. | ||
* Still tested against stretch | ||
* Dependencies updated to latest versions | ||
* Improved exception handling of haproxy adder module | ||
|
||
-- Chris <[email protected]> Wed, 11 Sep 2019 14:44:23 +0200 | ||
|
||
stapled (1.3) stretch; urgency=low | ||
|
||
* Improved excpetion handling to limit flooding of logs | ||
|
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,10 @@ | ||
FROM debian:buster | ||
RUN apt-get update -qq | ||
RUN apt-get upgrade -y | ||
RUN apt-get install -q -y build-essential python3-cffi libffi-dev \ | ||
python-all python3-all python3-dev python3-setuptools python3-pip \ | ||
rpm tar gzip bzip2 git debhelper ca-certificates | ||
ADD ./requirements.txt ./requirements.txt | ||
RUN pip3 install --user pip | ||
RUN pip3 install --user docutils==0.15.2 | ||
RUN pip3 install --user -r requirements.txt |
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,6 @@ | ||
FROM debian:buster | ||
RUN apt-get update -qq | ||
RUN apt-get upgrade -y | ||
RUN apt-get install -y openssl ca-certificates python3-cffi \ | ||
python3-configargparse python3-daemon | ||
COPY ./refresh_testdata.sh ./refresh_testdata.sh |
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,35 +1,35 @@ | ||
# Project deps | ||
ConfigArgParse==0.14.0 | ||
future==0.17.1 | ||
cffi==1.12.2 | ||
cffi==1.12.3 | ||
|
||
## python-daemon deps | ||
lockfile==0.12.2 | ||
docutils==0.14 | ||
docutils==0.15.2 | ||
python-daemon==2.2.3 | ||
|
||
# Packaging and distribution | ||
twine==1.13.0 | ||
tqdm==4.31.1 | ||
twine==1.14.0 | ||
tqdm==4.35.0 | ||
idna==2.8 | ||
certifi==2018.11.29 | ||
certifi==2019.6.16 | ||
chardet==3.0.4 | ||
pkginfo==1.5.0.1 | ||
requests==2.21.0 | ||
requests==2.22.0 | ||
requests-toolbelt==0.9.1 | ||
urllib3==1.24.1 | ||
urllib3==1.25.3 | ||
stdeb==0.8.5 | ||
wheel==0.33.1 | ||
wheel==0.33.6 | ||
|
||
# Docs | ||
Sphinx==1.8.4 | ||
Sphinx==2.2.0 | ||
sphinx-argparse==0.2.5 | ||
sphinx-rtd-theme==0.4.3 | ||
|
||
# Linting | ||
pydocstyle==3.0.0 | ||
pydocstyle==4.0.1 | ||
pycodestyle==2.5.0 | ||
pylint==2.3.0 | ||
pylint==2.3.1 | ||
|
||
# Testing | ||
pytest==4.3.0 | ||
pytest==5.1.2 |
Oops, something went wrong.