public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Kyle Elbert" <kcelbert@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cloudflare/
Date: Sat,  6 Apr 2024 10:13:21 +0000 (UTC)	[thread overview]
Message-ID: <1712398301.416eae106eeaf48567b061d3ba4f5e66cca9602b.kcelbert@gentoo> (raw)

commit:     416eae106eeaf48567b061d3ba4f5e66cca9602b
Author:     Kyle Elbert <kcelbert <AT> gmail <DOT> com>
AuthorDate: Sat Apr  6 10:09:41 2024 +0000
Commit:     Kyle Elbert <kcelbert <AT> gmail <DOT> com>
CommitDate: Sat Apr  6 10:11:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=416eae10

dev-python/cloudflare: new package, add 2.19.2

Signed-off-by: Kyle Elbert <kcelbert <AT> gmail.com>

 dev-python/cloudflare/Manifest                 |  1 +
 dev-python/cloudflare/cloudflare-2.19.2.ebuild | 68 ++++++++++++++++++++++++++
 dev-python/cloudflare/metadata.xml             | 12 +++++
 3 files changed, 81 insertions(+)

diff --git a/dev-python/cloudflare/Manifest b/dev-python/cloudflare/Manifest
new file mode 100644
index 0000000000..32f976d4d6
--- /dev/null
+++ b/dev-python/cloudflare/Manifest
@@ -0,0 +1 @@
+DIST cloudflare-2.19.2.gh.tar.gz 145051 BLAKE2B cd7c9d9352b055b115af443341dcc4d0a446aaf1ac7b7f8030dce0ff19da185b1effc9a679b8018920ade98cafaaf599af8aea8c57a924e59eb40670a3854b70 SHA512 eac9601f9cb9ea5dc140e48fb0f0e042396f6a7ec354f18b815d6c51094799dc3f25e1e69e78f87ec5c612f4304d15f779090962a8f96282d9b2fe8a9abfb690

diff --git a/dev-python/cloudflare/cloudflare-2.19.2.ebuild b/dev-python/cloudflare/cloudflare-2.19.2.ebuild
new file mode 100644
index 0000000000..a78d730013
--- /dev/null
+++ b/dev-python/cloudflare/cloudflare-2.19.2.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_USE_PEP517="setuptools"
+inherit distutils-r1
+
+DESCRIPTION="Python wrapper for the Cloudflare v4 API"
+HOMEPAGE="https://pypi.org/project/cloudflare/"
+#SRC_URI="https://files.pythonhosted.org/packages/9b/8c/973e3726c2aa73821bb4272717c6f9f6fc74e69d41ba871bdf97fc671782/${P}.tar.gz"
+#SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/cloudflare/python-cloudflare/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
+S="${WORKDIR}/python-${P}"
+LICENSE="MIT"
+SLOT="0"
+DEPEND="dev-python/jsonlines[${PYTHON_USEDEP}]"
+RDEPEND="( ${DEPEND}
+	dev-python/requests[${PYTHON_USEDEP}]
+	dev-python/pyyaml[${PYTHON_USEDEP}] )"
+PROPERTIES="test_network" #actually sends many test requests
+distutils_enable_tests pytest
+KEYWORDS="~amd64 ~arm64"
+RESTRICT="test mirror" #mirror restricted only because overlay
+
+python_prepare_all() {
+	# don't install tests or examples
+	sed -i -e "s/'cli4', 'examples'/'cli4'/" \
+		-e "s#'CloudFlare/tests',##" \
+		 setup.py || die
+
+	distutils-r1_python_prepare_all
+}
+python_test() {
+	pushd  CloudFlare/tests
+	if [ -z "${CLOUDFLARE_API_TOKEN}" ]; then
+		ewarn "Skipping some tests which require an actual cloudflare api token"
+		ewarn "To run them, provide the token in the environment variable CLOUDFLARE_API_TOKEN"
+		ewarn "The permissions needed are zone dns edit and user details read"
+		local EPYTEST_IGNORE=('test_dns_records.py' 'test_radar_returning_csv.py'
+			'test_dns_import_export.py' 'test_load_balancers.py' 'test_log_received.py'
+			'test_rulesets.py' 'test_urlscanner.py' 'test_paging_thru_zones.py'
+			'test_purge_cache.py'
+			'test_graphql.py' 'test_waiting_room.py' 'test_workers.py' 'test_cloudflare_calls.py' )
+		# these test(s) need an api key/token setup
+		# Permissions needed are zone dns edit and user details read, account worker scripts edit,
+			#  zone analytics read, zone load balancer edit, account ruleset edit, zone firewall edit
+			# account url scanner edit, zone waiting room edit, zone cache purge
+	fi
+	# Not sure what permissions/tokens/whatever this test needs, maybe both a token and old api login
+	# tried several of the ssl related options for the cert test but no luck either
+	# Tried several of the prefex related options to try to get loa docs working but nope
+	local EPYTEST_IGNORE+=('test_images_v2_direct_upload.py' 'test_issue114.py'
+		'test_certificates.py' 'test_loa_documents.py'
+		'test_load_balancers.py' 'test_rulesets.py')
+	# maybe needs a paid plan or just some unknown permission
+	local EPYTEST_DESELECT=(
+		'test_load_balancers.py::test_load_balancers_list_regions'
+		'test_load_balancers_get_regions'
+		'test_load_balancers.py::test_load_balancers_search'
+		'test_load_balancers.py::test_load_balancers_pools'
+		'test_rulesets.py::test_zones_ruleset_post'
+		'test_rulesets.py::test_zones_rulesets_get_specific'
+		'test_rulesets.py::test_zones_ruleset_delete'
+	)
+	epytest
+}

diff --git a/dev-python/cloudflare/metadata.xml b/dev-python/cloudflare/metadata.xml
new file mode 100644
index 0000000000..3373ff5e43
--- /dev/null
+++ b/dev-python/cloudflare/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>kcelbert@gmail.com</email>
+		<name>Kyle Elbert</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">cloudflare/python-cloudflare</remote-id>
+		<remote-id type="pypi">cloudflare</remote-id>
+	</upstream>
+</pkgmetadata>


             reply	other threads:[~2024-04-06 10:13 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-06 10:13 Kyle Elbert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-04-07 22:25 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/cloudflare/ Kyle Elbert
2024-04-09 20:39 Kyle Elbert
2024-04-30  0:20 Kyle Elbert
2024-06-19  5:07 Kyle Elbert
2024-06-19  6:20 Kyle Elbert
2024-06-25  0:41 Kyle Elbert
2024-06-25  0:41 Kyle Elbert
2024-06-25 18:44 Kyle Elbert
2024-06-26 10:29 Kyle Elbert
2024-06-26 10:56 Kyle Elbert
2024-06-26 12:59 Kyle Elbert
2024-07-17  6:30 Kyle Elbert

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=1712398301.416eae106eeaf48567b061d3ba4f5e66cca9602b.kcelbert@gentoo \
    --to=kcelbert@gmail.com \
    --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