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

George Rawlinson grawlinson at gemini.archlinux.org
Wed Mar 23 06:10:35 UTC 2022


    Date: Wednesday, March 23, 2022 @ 06:10:35
  Author: grawlinson
Revision: 1171216

archrelease: copy trunk to community-testing-any

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

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

Copied: certbot-dns-dnsimple/repos/community-testing-any/PKGBUILD (from rev 1171215, certbot-dns-dnsimple/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2022-03-23 06:10:35 UTC (rev 1171216)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson <grawlinson at archlinux.org>
+# Contributor: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=certbot-dns-dnsimple
+pkgver=1.25.0
+pkgrel=1
+pkgdesc="DNSimple 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=('85d3d958cb3545f64ec94959f33d879c833df290f613b0894efaa4dd0f06a1c0325531a25ebda733858ce2380a1781ab3f8647317f81812c3886cc2b3b407163'
+            'SKIP')
+b2sums=('9c603ba9cf064ef9d3ce0abb83109e9314d4e110ab322c6759b3912b3addfc3786f64d31aa6dba7077abf82181ded4d1abcb4b150dc1f5718e72f9695a2897a6'
+        '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