public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dns-lexicon/
Date: Fri,  7 Jan 2022 16:49:26 +0000 (UTC)	[thread overview]
Message-ID: <1641574157.f9dcb8b36e3c9eb40e1c77b26793d379a8afeaf6.arthurzam@gentoo> (raw)

commit:     f9dcb8b36e3c9eb40e1c77b26793d379a8afeaf6
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan  7 16:44:56 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan  7 16:49:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9dcb8b3

dev-python/dns-lexicon: add 3.9.0

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/dns-lexicon/Manifest                 |  1 +
 dev-python/dns-lexicon/dns-lexicon-3.9.0.ebuild | 58 +++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/dev-python/dns-lexicon/Manifest b/dev-python/dns-lexicon/Manifest
index bed68b5cb48b..59d2eee5bb47 100644
--- a/dev-python/dns-lexicon/Manifest
+++ b/dev-python/dns-lexicon/Manifest
@@ -1,3 +1,4 @@
 DIST dns-lexicon-3.8.3.tar.gz 7834913 BLAKE2B a72b356d10d0af8367ce9d51d2c4d4a3a1cc8aa26d5edfa2cb1aca4b2eb67acdcadc46f46d5457430708f94fda9654a87ded76fa796c44a4b4e2a0d4f3accd13 SHA512 3035e9c5d073feb0dd910b79d8de02f2e9bfc81f922bce34ad33c22b583896a781e50f85104799a13133121ab5e88a372667cf0014399df50c5a829747d98073
 DIST dns-lexicon-3.8.4.tar.gz 7850337 BLAKE2B f72a338c00346091df2cf53fa01cbc34e81b235cb5100b4993ccf46f738e2588b08b7a57316c07c7eff1c039437e49371193c9952b6fd870f30a2c6b538d3e1e SHA512 7a598b38a847e384fda243b76af523701d80d84a2338ef5745ca9f82284675ace5f84bf93cccfeda101584194c15fdbd0d4d8f69fdd0db60ec42d4c063a7916c
 DIST dns-lexicon-3.8.5.tar.gz 7850115 BLAKE2B 27dfb837385e370142d82bc682627fa96efc8a4868f9a5532ace608e2739afbecee82dcb531e9a4e0cdf9b2c68e639ae5c7ad1f4774e80f989c13eaa86c93d7a SHA512 e50fdb5c0b0d250babaff0a2d485f9112732a9e975cb853329dbcec33fe592e80a28c469b17cc0a5544909285805c1c20578b5e5f4b22ff6259b624be8c6acde
+DIST dns-lexicon-3.9.0.tar.gz 7843652 BLAKE2B de6339c8f739d00aefca831adfccaed3914c0d9103e7dd5a175215761a27e29eca3c2e26c08239df2e6a34afbe7228013cab7123572c6481ed4e31fa2a20236d SHA512 4bc26018e0702345e86fa352eddff89358b34e878864e6273e89798cce81c4ef9e4ff06a1298481c8496237bb26d8d7c3286c82aac99117a49faa64ea329c307

diff --git a/dev-python/dns-lexicon/dns-lexicon-3.9.0.ebuild b/dev-python/dns-lexicon/dns-lexicon-3.9.0.ebuild
new file mode 100644
index 000000000000..ae7ae0b978ff
--- /dev/null
+++ b/dev-python/dns-lexicon/dns-lexicon-3.9.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Manipulate DNS records on various DNS providers in a standardized/agnostic way"
+HOMEPAGE="https://pypi.org/project/dns-lexicon/"
+SRC_URI="https://github.com/AnalogJ/lexicon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/lexicon-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+	dev-python/requests[${PYTHON_USEDEP}]
+	dev-python/tldextract[${PYTHON_USEDEP}]
+	dev-python/cryptography[${PYTHON_USEDEP}]
+	dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+	test? (
+		dev-python/boto3[${PYTHON_USEDEP}]
+		dev-python/zeep[${PYTHON_USEDEP}]
+		dev-python/vcrpy[${PYTHON_USEDEP}]
+	)
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+	# Requires the "localzone" module
+	lexicon/tests/providers/test_localzone.py
+	# Requires the "softlayer" module
+	lexicon/tests/providers/test_softlayer.py
+	# Requires the "transip" module
+	lexicon/tests/providers/test_transip.py
+	# Requires the "oci" module
+	lexicon/tests/providers/test_oci.py
+	# Uses tldextract which needs Internet access to download its database
+	lexicon/tests/providers/test_auto.py
+)
+
+pkg_postinst() {
+	if [[ -z ${REPLACING_VERSIONS} ]]; then
+		optfeature_header \
+			"Install the following packages to enable support for additional DNS providers:"
+		optfeature Gransy dev-python/zeep
+		optfeature Route53 dev-python/boto3
+		optfeature DDNS dev-python/dnspython
+	fi
+}


             reply	other threads:[~2022-01-07 16:49 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-07 16:49 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-23  4:57 [gentoo-commits] repo/gentoo:master commit in: dev-python/dns-lexicon/ Michał Górny
2024-07-06 19:35 Michał Górny
2023-12-30 18:28 Michał Górny
2023-11-07  5:58 Michał Górny
2023-11-07  5:58 Michał Górny
2023-10-22  8:50 Michał Górny
2023-10-19  4:00 Michał Górny
2023-10-15  3:26 Michał Górny
2023-10-13 15:49 Michał Górny
2023-10-01  3:22 Michał Górny
2023-08-14  6:26 Michał Górny
2023-08-08  5:31 Michał Górny
2023-07-24 11:31 Michał Górny
2023-06-20  8:49 Michał Górny
2023-06-12 14:59 Michał Górny
2023-06-12 14:59 Michał Górny
2023-02-17 11:04 Michał Górny
2023-01-10 14:42 Michał Górny
2022-11-14  4:36 Michał Górny
2022-10-26 18:42 Arthur Zamarin
2022-10-12 11:18 Michał Górny
2022-10-11 12:24 Michał Górny
2022-10-11 12:24 Michał Górny
2022-08-12 10:35 Arthur Zamarin
2022-06-21 17:32 Arthur Zamarin
2022-06-16  8:05 Michał Górny
2022-05-17  6:54 Michał Górny
2022-05-16 13:18 Michał Górny
2022-05-16  7:56 Michał Górny
2022-05-07  9:35 Michał Górny
2022-05-07  9:35 Michał Górny
2022-05-01 13:42 Michał Górny
2022-04-20  7:47 Michał Górny
2022-02-15  9:05 Michał Górny
2022-01-18  9:51 Michał Górny
2021-12-29 23:14 Michał Górny
2021-12-29  8:30 Michał Górny
2021-11-14  8:46 Michał Górny
2021-11-13  9:37 Michał Górny
2021-11-04  8:16 Michał Górny
2021-10-17  7:41 Michał Górny
2021-10-15 21:07 Michał Górny
2021-10-05  8:27 Michał Górny
2021-08-15 23:05 Louis Sautier
2021-08-15 17:03 Louis Sautier
2021-08-12 22:52 Louis Sautier
2020-12-02 23:13 Aaron Bauman
2020-03-26 20:52 Michał Górny
2020-02-05  5:50 Michał Górny
2019-10-13 13:15 罗百科
2019-10-13 13:15 罗百科

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1641574157.f9dcb8b36e3c9eb40e1c77b26793d379a8afeaf6.arthurzam@gentoo \
    --to=arthurzam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox