[arch-commits] Commit in certbot-dns-nsone/repos (2 files)

George Rawlinson grawlinson at gemini.archlinux.org
Wed Mar 23 06:14:36 UTC 2022


    Date: Wednesday, March 23, 2022 @ 06:14:36
  Author: grawlinson
Revision: 1171228

archrelease: copy trunk to community-testing-any

Added:
  certbot-dns-nsone/repos/community-testing-any/
  certbot-dns-nsone/repos/community-testing-any/PKGBUILD
    (from rev 1171227, certbot-dns-nsone/trunk/PKGBUILD)

----------+
 PKGBUILD |   57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

Copied: certbot-dns-nsone/repos/community-testing-any/PKGBUILD (from rev 1171227, certbot-dns-nsone/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2022-03-23 06:14:36 UTC (rev 1171228)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson <grawlinson at archlinux.org>
+# Contributor: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=certbot-dns-nsone
+pkgver=1.25.0
+pkgrel=1
+pkgdesc="NS1 DNS Authenticator plugin for Certbot"
+arch=('any')
+license=('Apache')
+url="https://pypi.python.org/pypi/$pkgname"
+depends=(
+  'certbot'
+  'python-acme'
+  'dns-lexicon'
+)
+makedepends=(
+  'python-build'
+  'python-wheel'
+  'python-installer'
+)
+checkdepends=('python-pytest')
+source=("https://files.pythonhosted.org/packages/source/${pkgname::1}/$pkgname/$pkgname-$pkgver.tar.gz"{,.asc})
+validpgpkeys=('148C30F6F7E429337A72D992B00B9CC82D7ADF2C'
+              '1B41B758F9A78C7F444C20FA3E5B4152E3ADB1FD'
+              'A2CFB51FA275A7286234E7B24D17C995CD9775F2'
+              '86379B4F0AF371B50CD9E5FF3402831161D1D280')
+sha512sums=('fd40aa9a34d5aa0b4abdb0967df9751443d46980d2eafdfc4641f7ecd952fdd751b09b364fce606dd43efafc5f94e0862e3b41590eed38cafeeed360963b969a'
+            'SKIP')
+b2sums=('bfbda6e1ddb1bf2f9f013ae1d15f32cb5fc2b2213d9f31ed7ae79d5c0337163ab820848267c72d7c5b4a9e5c163d622048bab4994f0cf9b3adf594a8b17feaf3'
+        'SKIP')
+
+prepare() {
+  cd "$pkgname-$pkgver"
+
+  # nuke setuptools from orbit ^W install_requires
+  sed \
+    -e '/setuptools>=/d' \
+    -i setup.py
+}
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  python -m build --wheel --no-isolation
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+
+  python -m pytest
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  python -m installer --destdir="$pkgdir" dist/*.whl
+}



More information about the arch-commits mailing list