summaryrefslogtreecommitdiff
path: root/user/certbot/APKBUILD
blob: 8e9489e011a75134914bf465fa081dd27fc54fe5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Contributor: zlg <zlg+adelie@zlg.space>
# Maintainer: zlg <zlg+adelie@zlg.space>
pkgname=certbot
pkgver=0.30.0
pkgrel=0
pkgdesc="The EFF's reference ACME client"
url="https://certbot.eff.org/"
arch="noarch"
license="Apache-2.0"
depends="python3 py3-acme py3-configargparse py3-mock py3-configobj py3-cryptography
	py3-parsedatetime py3-rfc3339 py3-tz py3-zope-component py3-zope-interface
	coverage"
# define acme deps here and add them to makedepends
# so they get pulled in when bootstrapping.
_depends_acme="python3 py3-cryptography py3-josepy py3-mock py3-openssl py3-requests
	py3-requests-toolbelt py3-rfc3339 py3-six py3-tz"
makedepends="python3-dev $_depends_acme"
subpackages="py3-acme:acme"
source="certbot-$pkgver.tar.gz::https://github.com/certbot/certbot/archive/v$pkgver.tar.gz"

build() {
	cd "$builddir"
	python3 setup.py build
}

check() {
	cd "$builddir"
	python3 setup.py check
}

package() {
	cd "$builddir"
	python3 setup.py install --prefix=/usr --root="$pkgdir"
}

acme() {
	pkgdesc="ACME protocol implementation for Python"
	depends="$_depends_acme"
	cd "$builddir"/acme
	python3 setup.py build
	python3 setup.py install --prefix=/usr --root="$subpkgdir"
}

sha512sums="85095dd75ce639fcf93d748e2d32a686aecfa9002ccb2c23bdd4e33f1c47268386a86befbcca8180acf48881888fad484f485ad03fc7acef21a308c4d5432ac5  certbot-0.30.0.tar.gz"