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

George Rawlinson grawlinson at gemini.archlinux.org
Wed Mar 23 06:15:17 UTC 2022


    Date: Wednesday, March 23, 2022 @ 06:15:16
  Author: grawlinson
Revision: 1171230

archrelease: copy trunk to community-testing-any

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

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

Copied: certbot-dns-ovh/repos/community-testing-any/PKGBUILD (from rev 1171229, certbot-dns-ovh/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2022-03-23 06:15:16 UTC (rev 1171230)
@@ -0,0 +1,57 @@
+# Maintainer: George Rawlinson <grawlinson at archlinux.org>
+# Contributor: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=certbot-dns-ovh
+pkgver=1.25.0
+pkgrel=1
+pkgdesc="OVH 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=('e1c2e29c7505b4a9f691ca264011db39ba3f3771bbb082ac465a0fd78040fb953dcd291c52a148245f54a24abff72b77209691ff2bb01f134bbb0aaf4a121ef4'
+            'SKIP')
+b2sums=('9a0413d830c7e21eb778551acdcd873587d0cdee9bf6b0f80ac414da92938855ad7f579528b63de857c4c6a79a47e9a0af63688555d11205bab8df314ac07852'
+        '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