mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
With more and more of our wildcard instructions on https://certbot.eff.org telling people to use these plugins, I think we should get ready to move our DNS plugins to the stable channel. This PR removes grade: devel so the snap store doesn't prevent us from doing that when we want to. See #8128 where we did this to the Certbot snap for more info. You can see the snap tests passing with this change at https://dev.azure.com/certbot/certbot/_build/results?buildId=2797&view=results.
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
# This file is generated by tools/generate_dnsplugins_snapcraft.sh and should not be edited manually.
|
|
name: certbot-dns-linode
|
|
summary: Linode DNS Authenticator plugin for Certbot
|
|
description: Linode DNS Authenticator plugin for Certbot
|
|
confinement: strict
|
|
grade: stable
|
|
base: core20
|
|
adopt-info: certbot-dns-linode
|
|
|
|
parts:
|
|
certbot-dns-linode:
|
|
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:
|
|
- SNAP_BUILD: "True"
|
|
# To build cryptography and cffi if needed
|
|
build-packages: [gcc, libffi-dev, libssl-dev, python3-dev]
|
|
certbot-metadata:
|
|
plugin: dump
|
|
source: .
|
|
stage: [setup.py, certbot-shared]
|
|
override-pull: |
|
|
snapcraftctl pull
|
|
mkdir -p $SNAPCRAFT_PART_SRC/certbot-shared
|
|
|
|
slots:
|
|
certbot:
|
|
interface: content
|
|
content: certbot-1
|
|
read:
|
|
- $SNAP/lib/python3.8/site-packages
|
|
|
|
plugs:
|
|
certbot-metadata:
|
|
interface: content
|
|
content: metadata-1
|
|
target: $SNAP/certbot-shared
|