[arch-commits] Commit in dns-lexicon/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Thu Dec 24 00:34:29 UTC 2020
Date: Thursday, December 24, 2020 @ 00:34:28
Author: felixonmars
Revision: 785822
archrelease: copy trunk to community-testing-any
Added:
dns-lexicon/repos/community-testing-any/
dns-lexicon/repos/community-testing-any/PKGBUILD
(from rev 785821, dns-lexicon/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: dns-lexicon/repos/community-testing-any/PKGBUILD (from rev 785821, dns-lexicon/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2020-12-24 00:34:28 UTC (rev 785822)
@@ -0,0 +1,55 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=dns-lexicon
+pkgver=3.5.1
+pkgrel=1
+pkgdesc="Manipulate DNS records on various DNS providers in a standardized/agnostic way"
+arch=('any')
+url="https://github.com/AnalogJ/lexicon"
+license=('MIT')
+depends=('python-beautifulsoup4' 'python-cryptography' 'python-future' 'python-yaml'
+ 'python-requests' 'python-tldextract' 'python-setuptools')
+makedepends=('python-dephell')
+optdepends=('python-pynamecheap: for Namecheap support'
+ 'python-boto3: for Route53 support'
+ 'python-softlayer: for SoftLayer support'
+ 'python-xmltodict: for Plesk support'
+ 'python-localzone: for localzone support'
+ 'python-zeep: for Gransy support')
+checkdepends=('python-pytest-runner' 'python-vcrpy' 'python-softlayer' 'python-boto3' 'python-mock'
+ 'python-pynamecheap' 'python-zeep' 'python-xmltodict' 'python-beautifulsoup4'
+ 'python-localzone' 'python-html5lib' 'python-dnspython' 'bind-tools')
+source=("https://github.com/AnalogJ/lexicon/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('1333d627811f25a8c8915cd5b4253771a917bb8e2824af35c6579dadf294248fa7bcb59863c4f53f8d95a0ae49d8de7d22e9042980978ea853d1a222523bbb4b')
+
+prepare() {
+ cd lexicon-$pkgver
+
+ # Wait for a proper fix
+ sed -i 's/cache_file=TLDEXTRACT_CACHE_FILE, //' lexicon/client.py
+ sed -i 's/tldextract = "\^2"/tldextract = ">=2"/' pyproject.toml
+
+ # poetry-generated setup.py is badly broken in several ways, including
+ # distribution of tests in the built package as well as using distutils for
+ # bad metadata. See https://github.com/sdispater/poetry/issues/866
+ dephell deps convert --from pyproject.toml --to setup.py
+}
+
+build() {
+ cd lexicon-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd lexicon-$pkgver
+ python setup.py pytest --addopts '--deselect lexicon/tests/providers/test_transip.py'
+}
+
+package() {
+ cd lexicon-$pkgver
+ python setup.py install -O1 --prefix=/usr --root="$pkgdir"
+
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list