mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
separate letsencrypt dependency
This commit is contained in:
parent
7a2f4b70cb
commit
26a066ae55
5 changed files with 22 additions and 4 deletions
|
|
@ -21,7 +21,8 @@ def build(version=None, requirements=None):
|
|||
:arg version: The version to attach to the script. Default: the version of
|
||||
the certbot package
|
||||
:arg requirements: The contents of the requirements file to embed. Default:
|
||||
contents of dependency-requirements.txt and certbot-requirements.txt
|
||||
contents of dependency-requirements.txt, letsencrypt-requirements.txt,
|
||||
and certbot-requirements.txt
|
||||
|
||||
"""
|
||||
special_replacements = {
|
||||
|
|
@ -29,6 +30,7 @@ def build(version=None, requirements=None):
|
|||
}
|
||||
if requirements:
|
||||
special_replacements['dependency-requirements.txt'] = ''
|
||||
special_replacements['letsencrypt-requirements.txt'] = ''
|
||||
special_replacements['certbot-requirements.txt'] = requirements
|
||||
|
||||
def replacer(match):
|
||||
|
|
|
|||
|
|
@ -854,6 +854,14 @@ zope.interface==4.1.3 \
|
|||
mock==1.0.1 \
|
||||
--hash=sha256:b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f \
|
||||
--hash=sha256:8f83080daa249d036cbccfb8ae5cc6ff007b88d6d937521371afabe7b19badbc
|
||||
|
||||
# Contains the requirements for the letsencrypt package.
|
||||
#
|
||||
# Since the letsencrypt package depends on certbot and using pip with hashes
|
||||
# requires that all installed packages have hashes listed, this allows
|
||||
# dependency-requirements.txt to be used without requiring a hash for a
|
||||
# (potentially unreleased) Certbot package.
|
||||
|
||||
letsencrypt==0.7.0 \
|
||||
--hash=sha256:105a5fb107e45bcd0722eb89696986dcf5f08a86a321d6aef25a0c7c63375ade \
|
||||
--hash=sha256:c36e532c486a7e92155ee09da54b436a3c420813ec1c590b98f635d924720de9
|
||||
|
|
|
|||
|
|
@ -318,6 +318,7 @@ if [ "$1" = "--le-auto-phase2" ]; then
|
|||
# -------------------------------------------------------------------------
|
||||
cat << "UNLIKELY_EOF" > "$TEMP_DIR/letsencrypt-auto-requirements.txt"
|
||||
{{ dependency-requirements.txt }}
|
||||
{{ letsencrypt-requirements.txt }}
|
||||
{{ certbot-requirements.txt }}
|
||||
UNLIKELY_EOF
|
||||
# -------------------------------------------------------------------------
|
||||
|
|
|
|||
|
|
@ -165,6 +165,3 @@ zope.interface==4.1.3 \
|
|||
mock==1.0.1 \
|
||||
--hash=sha256:b839dd2d9c117c701430c149956918a423a9863b48b09c90e30a6013e7d2f44f \
|
||||
--hash=sha256:8f83080daa249d036cbccfb8ae5cc6ff007b88d6d937521371afabe7b19badbc
|
||||
letsencrypt==0.7.0 \
|
||||
--hash=sha256:105a5fb107e45bcd0722eb89696986dcf5f08a86a321d6aef25a0c7c63375ade \
|
||||
--hash=sha256:c36e532c486a7e92155ee09da54b436a3c420813ec1c590b98f635d924720de9
|
||||
|
|
|
|||
10
letsencrypt-auto-source/pieces/letsencrypt-requirements.txt
Normal file
10
letsencrypt-auto-source/pieces/letsencrypt-requirements.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Contains the requirements for the letsencrypt package.
|
||||
#
|
||||
# Since the letsencrypt package depends on certbot and using pip with hashes
|
||||
# requires that all installed packages have hashes listed, this allows
|
||||
# dependency-requirements.txt to be used without requiring a hash for a
|
||||
# (potentially unreleased) Certbot package.
|
||||
|
||||
letsencrypt==0.7.0 \
|
||||
--hash=sha256:105a5fb107e45bcd0722eb89696986dcf5f08a86a321d6aef25a0c7c63375ade \
|
||||
--hash=sha256:c36e532c486a7e92155ee09da54b436a3c420813ec1c590b98f635d924720de9
|
||||
Loading…
Reference in a new issue