diff options
author | AlphaJack | 2024-12-13 09:06:27 +0100 |
---|---|---|
committer | AlphaJack | 2024-12-13 09:06:27 +0100 |
commit | 9b2de4ba7d3b222cd7ad470baaaeee1ecfbdc211 (patch) | |
tree | 559006b23942a48fb8c9b021dd68827cd7dca694 | |
parent | 51b3c3d637a758b7bcec01a0ddabb845b56d0a15 (diff) | |
download | aur-9b2de4ba7d3b222cd7ad470baaaeee1ecfbdc211.tar.gz |
Removed top-level test folder, added dependency
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | PKGBUILD | 6 |
3 files changed, 7 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = certbot-dns-porkbun pkgdesc = Plugin for certbot to obtain certificates using a DNS TXT record for Porkbun domains pkgver = 0.9.1 - pkgrel = 1 + pkgrel = 2 url = https://github.com/infinityofspace/certbot_dns_porkbun arch = any license = MIT @@ -13,6 +13,7 @@ pkgbase = certbot-dns-porkbun depends = python-dnspython depends = python-pkb-client depends = python-requests + depends = python-tldextract source = https://github.com/infinityofspace/certbot_dns_porkbun/archive/refs/tags/v0.9.1.tar.gz b2sums = a193d5f7f924500386761844256cc7d9c890961bb78c9f67a76de832375afe0f33ea2e741a22aa141f8774d27977c2337ec4304e3bf037f99c6e34bf31639035 diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..dd38fa22d95f --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.tar* @@ -2,7 +2,7 @@ pkgname="certbot-dns-porkbun" pkgver=0.9.1 -pkgrel=1 +pkgrel=2 pkgdesc="Plugin for certbot to obtain certificates using a DNS TXT record for Porkbun domains" arch=("any") license=("MIT") @@ -10,7 +10,8 @@ url="https://github.com/infinityofspace/certbot_dns_porkbun" depends=("certbot>=1.18.0" "python-dnspython" "python-pkb-client" - "python-requests") + "python-requests" + "python-tldextract") makedepends=("python-build" "python-installer" "python-setuptools" "python-wheel") source=("https://github.com/infinityofspace/certbot_dns_porkbun/archive/refs/tags/v$pkgver.tar.gz") b2sums=('a193d5f7f924500386761844256cc7d9c890961bb78c9f67a76de832375afe0f33ea2e741a22aa141f8774d27977c2337ec4304e3bf037f99c6e34bf31639035') @@ -23,4 +24,5 @@ build(){ package(){ cd "certbot_dns_porkbun-$pkgver" python -m installer --destdir="$pkgdir" dist/*.whl + find "$pkgdir/usr/lib" -type d -path "*/site-packages/tests" -exec rm -rf {} + } |