mirror of
https://github.com/certbot/certbot.git
synced 2026-06-07 15:52:08 -04:00
Fixes #8103. * Update the DNS plugin generator script to core20 syntax * Generate new snapcraft.yamls for the DNS plugins * Update certbot.wrapper to search for python3.8 paths
39 lines
1 KiB
Bash
Executable file
39 lines
1 KiB
Bash
Executable file
#!/bin/bash
|
|
# Generate the snapcraft.yaml file for all DNS plugins
|
|
set -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
CERTBOT_DIR="$(dirname "${DIR}")"
|
|
|
|
for PLUGIN_PATH in "${CERTBOT_DIR}"/certbot-dns-*; do
|
|
PLUGIN=$(basename "${PLUGIN_PATH}")
|
|
DESCRIPTION=$(grep description "${PLUGIN_PATH}/setup.py" | sed -E 's|\s+description="(.*)",|\1|g')
|
|
mkdir -p "${PLUGIN_PATH}/snap"
|
|
cat <<EOF > "${PLUGIN_PATH}/snap/snapcraft.yaml"
|
|
name: ${PLUGIN}
|
|
summary: ${DESCRIPTION}
|
|
description: ${DESCRIPTION}
|
|
confinement: strict
|
|
grade: devel
|
|
base: core20
|
|
adopt-info: ${PLUGIN}
|
|
|
|
parts:
|
|
${PLUGIN}:
|
|
plugin: python
|
|
source: .
|
|
constraints: [\$SNAPCRAFT_PART_SRC/snap-constraints.txt]
|
|
override-pull: |
|
|
snapcraftctl pull
|
|
snapcraftctl set-version \`grep ^version \$SNAPCRAFT_PART_SRC/setup.py | cut -f2 -d= | tr -d "'[:space:]"\`
|
|
build-environment:
|
|
- EXCLUDE_CERTBOT_DEPS: "True"
|
|
|
|
slots:
|
|
certbot:
|
|
interface: content
|
|
content: certbot-1
|
|
read:
|
|
- \$SNAP/lib/python3.8/site-packages
|
|
EOF
|
|
done
|