Initial packaging.
Andrew Starr-Bochicchio
5 years ago
0 | python-certbot-dns-rfc2136 (0.22.0-1) UNRELEASED; urgency=medium | |
1 | ||
2 | * Initial release (Closes: #893307). | |
3 | ||
4 | -- Andrew Starr-Bochicchio <asb@debian.org> Sat, 17 Mar 2018 17:13:17 -0400 |
0 | 11 |
0 | Source: python-certbot-dns-rfc2136 | |
1 | Maintainer: Debian Let's Encrypt Team <letsencrypt-devel@lists.alioth.debian.org> | |
2 | Uploaders: Harlan Lieberman-Berg <hlieberman@debian.org>, | |
3 | Andrew Starr-Bochicchio <asb@debian.org> | |
4 | Section: python | |
5 | Priority: optional | |
6 | Build-Depends: debhelper (>= 11~), | |
7 | dh-python, | |
8 | python3, | |
9 | python3-acme (>= 0.22.0~), | |
10 | python3-certbot (>= 0.22.0~), | |
11 | python3-dns, | |
12 | python3-mock, | |
13 | python3-setuptools (>= 1.0), | |
14 | python3-sphinx (>= 1.3.1-1~), | |
15 | python3-sphinx-rtd-theme, | |
16 | python3-zope.interface | |
17 | Standards-Version: 4.1.3 | |
18 | Homepage: https://certbot.eff.org/ | |
19 | Vcs-Git: https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136.git | |
20 | Vcs-Browser: https://salsa.debian.org/letsencrypt-team/certbot/certbot-dns-rfc2136 | |
21 | Testsuite: autopkgtest-pkg-python | |
22 | ||
23 | Package: python3-certbot-dns-rfc2136 | |
24 | Architecture: all | |
25 | Depends: ${python3:Depends}, | |
26 | ${misc:Depends} | |
27 | Description: RFC 2136 DNS plugin for Certbot | |
28 | The objective of Certbot, Let's Encrypt, and the ACME (Automated | |
29 | Certificate Management Environment) protocol is to make it possible | |
30 | to set up an HTTPS server and have it automatically obtain a | |
31 | browser-trusted certificate, without any human intervention. This is | |
32 | accomplished by running a certificate management agent on the web | |
33 | server. | |
34 | . | |
35 | This agent is used to: | |
36 | . | |
37 | - Automatically prove to the Let's Encrypt CA that you control the website | |
38 | - Obtain a browser-trusted certificate and set it up on your web server | |
39 | - Keep track of when your certificate is going to expire, and renew it | |
40 | - Help you revoke the certificate if that ever becomes necessary. | |
41 | . | |
42 | This package contains the RFC 2136 DNS plugin to the main application. | |
43 | ||
44 | Package: python-certbot-dns-rfc2136-doc | |
45 | Architecture: all | |
46 | Section: doc | |
47 | Depends: ${sphinxdoc:Depends}, ${misc:Depends} | |
48 | Description: Documentation for the RFC 2136 DNS plugin for Certbot | |
49 | The objective of Certbot, Let's Encrypt, and the ACME (Automated | |
50 | Certificate Management Environment) protocol is to make it possible | |
51 | to set up an HTTPS server and have it automatically obtain a | |
52 | browser-trusted certificate, without any human intervention. This is | |
53 | accomplished by running a certificate management agent on the web | |
54 | server. | |
55 | . | |
56 | This package contains the documentation for the RFC 2136 DNS plugin to | |
57 | the main application. | |
58 |
0 | Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | |
1 | Source: https://pypi.python.org/pypi/certbot-dns-RFC 2136 | |
2 | Upstream-Name: certbot-dns-RFC 2136 | |
3 | ||
4 | Files: * | |
5 | Copyright: 2015, Electronic Frontier Foundation and others | |
6 | License: Apache-2.0 | |
7 | ||
8 | Files: debian/* | |
9 | Copyright: 2018, Harlan Lieberman-Berg <hlieberman@debian.org>, | |
10 | 2018, Andrew Starr-Bochicchio <asb@debian.org> | |
11 | License: Apache-2.0 | |
12 | ||
13 | License: Apache-2.0 | |
14 | Licensed under the Apache License, Version 2.0 (the "License"); | |
15 | you may not use this file except in compliance with the License. | |
16 | You may obtain a copy of the License at | |
17 | . | |
18 | https://www.apache.org/licenses/LICENSE-2.0 | |
19 | . | |
20 | Unless required by applicable law or agreed to in writing, software | |
21 | distributed under the License is distributed on an "AS IS" BASIS, | |
22 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
23 | See the License for the specific language governing permissions and | |
24 | limitations under the License. | |
25 | . | |
26 | On Debian systems, the complete text of the Apache version 2.0 | |
27 | license can be found in "/usr/share/common-licenses/Apache-2.0". |
0 | Document: python-certbot-dns-rfc2136-doc | |
1 | Title: Documentation for the RFC 2136 DNS Authenticator plugin for Certbot | |
2 | Author: Let's Encrypt Team | |
3 | Abstract: This HTML documentation contain the auto-generated | |
4 | documentation for the certbot-dns-rfc2136 module in Python. | |
5 | Section: Programming/Python | |
6 | ||
7 | Format: HTML | |
8 | Index: /usr/share/doc/python3-certbot-dns-rfc2136/html/index.html | |
9 | Files: /usr/share/doc/python3-certbot-dns-rfc2136/html/*.html |
0 | build/html |
0 | #!/usr/bin/make -f | |
1 | ||
2 | export PYBUILD_NAME = certbot-dns-rfc2136 | |
3 | ||
4 | %: | |
5 | dh $@ --with python3,sphinxdoc --buildsystem=pybuild | |
6 | ||
7 | override_dh_auto_build: | |
8 | dh_auto_build | |
9 | PYTHONPATH=. \ | |
10 | http_proxy='127.0.0.1:9' \ | |
11 | https_proxy='127.0.0.1:9' \ | |
12 | sphinx-build -N -bhtml docs/ build/html | |
13 | ||
14 | override_dh_installdocs: | |
15 | dh_installdocs --doc-main-package=python3-certbot-dns-rfc2136 \ | |
16 | -p python-certbot-dns-rfc2136-doc | |
17 | dh_installdocs -p python3-certbot-dns-rfc2136 |
0 | 3.0 (quilt) |
0 | -----BEGIN PGP PUBLIC KEY BLOCK----- | |
1 | ||
2 | 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 | |
39 | n7BVBdxwDVJQ | |
40 | =qw93 | |
41 | -----END PGP PUBLIC KEY BLOCK----- |