From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/awxkit/
Date: Wed, 8 Nov 2023 06:38:35 +0000 (UTC) [thread overview]
Message-ID: <1699425509.e7023c1ef332a4c9e902ac01c217441ba2da968e.mgorny@gentoo> (raw)
commit: e7023c1ef332a4c9e902ac01c217441ba2da968e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 8 06:29:58 2023 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Nov 8 06:38:29 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7023c1e
dev-python/awxkit: Bump to 23.4.0
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/awxkit/Manifest | 1 +
dev-python/awxkit/awxkit-23.4.0.ebuild | 50 ++++++++++++++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/dev-python/awxkit/Manifest b/dev-python/awxkit/Manifest
index 245ccbe4c798..e505df009fb7 100644
--- a/dev-python/awxkit/Manifest
+++ b/dev-python/awxkit/Manifest
@@ -6,3 +6,4 @@ DIST awx-23.1.0.gh.tar.gz 70704479 BLAKE2B dc0e920b2036e71825afda5b65aa6e2326364
DIST awx-23.2.0.gh.tar.gz 70711100 BLAKE2B 5159c7231f085c01d543cf3c8be9ad22428f158911ae1941fde71a6988dbdc9e7e57a5990c4d616f0ceb1f156a707913fb7c74198df1c4de7d655151e2c39f9f SHA512 9d100ee05130cab5da63272c2f7b2bf8d729a7c2ca4c77a68b12dd282c94c657c38b217985f12c566b3c360d0d9d5fec506dcb1c2b306ef6b7aa63154b6c9840
DIST awx-23.3.0.gh.tar.gz 70716121 BLAKE2B 90172efb44e20287b4729bc9afa445d6d914b83c1c4c8c5c598ac74f3b89d8e91917ab10934973a88332590751cbfbc9ce8565f0c7ee84de6dea9d8a59ce9fa8 SHA512 4f25e56bf8b16fd5f1f1c4771c939c8604db3bf39a6110487ce95d5d0591a303771228776773eec78f917bf03a298d67ec475813aea97e7170ae09920f17cac5
DIST awx-23.3.1.gh.tar.gz 70712836 BLAKE2B 54009dcd4b7e6baeadf04271e3b6945ea7488c32c543641d003ed531d2d8ba0b06463bc9acce87dbf95fcde15b5f7ead1f147dd8381ec5f69a993731875b43d2 SHA512 9a7f677773aea528c9742c2e20d0f4b0f9543fe903afc14043ed31f83fc776093f661665312ecac9ae76b1e74228e0c4a709cb5b7d77e1f78aa4b0c0c7bb840c
+DIST awx-23.4.0.gh.tar.gz 69984966 BLAKE2B d82f0f8d14627cdd3bcb178e9c44f245b15c7ba84c6ffab2ef915ad0eceed9c0cacd5ef69ec96bd8fe2509423e617a47923072d15ee1ca2ab7f8c76ffd903626 SHA512 ab1ed729b40ca82febfe99ab2e2c8c84e1632243cc78484268225fce4cf7c545f2078df0517bade7b2ff3d12d7ad4b152a3a24dd8e0d5601cd2033b9f3cd3dd5
diff --git a/dev-python/awxkit/awxkit-23.4.0.ebuild b/dev-python/awxkit/awxkit-23.4.0.ebuild
new file mode 100644
index 000000000000..52670ed68dde
--- /dev/null
+++ b/dev-python/awxkit/awxkit-23.4.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_10 )
+
+inherit distutils-r1
+
+MY_P=awx-${PV}
+DESCRIPTION="Command line interface for Ansible AWX"
+HOMEPAGE="
+ https://github.com/ansible/awx/
+ https://pypi.org/project/awxkit/
+"
+# no sdist, as of 22.0.0
+SRC_URI="
+ https://github.com/ansible/awx/archive/${PV}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S="${WORKDIR}/${MY_P}/awxkit"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/pyyaml[${PYTHON_USEDEP}]
+ dev-python/requests[${PYTHON_USEDEP}]
+ dev-python/urllib3[${PYTHON_USEDEP}]
+ dev-python/websocket-client[${PYTHON_USEDEP}]
+ dev-python/pyjwt[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ dev-python/setuptools-scm[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+ export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+ printf '%s\n' "${PV}" > VERSION || die
+
+ sed -e 's|websocket-client==[[:digit:]\.]*|websocket-client|' \
+ -e "/'clean'/d" \
+ -i setup.py || die
+ distutils-r1_src_prepare
+}
next reply other threads:[~2023-11-08 6:38 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-08 6:38 Michał Górny [this message]
-- strict thread matches above, loose matches on Subject: below --
2023-12-30 18:26 [gentoo-commits] repo/gentoo:master commit in: dev-python/awxkit/ Michał Górny
2023-12-06 6:51 Michał Górny
2023-11-22 7:49 Michał Górny
2023-11-08 6:38 Michał Górny
2023-10-25 7:43 Michał Górny
2023-10-11 3:22 Michał Górny
2023-09-27 5:56 Michał Górny
2023-09-13 2:42 Michał Górny
2023-08-30 3:01 Michał Górny
2023-08-16 4:19 Michał Górny
2023-08-01 3:01 Michał Górny
2023-07-24 11:30 Michał Górny
2023-07-11 5:52 Michał Górny
2023-06-27 3:54 Michał Górny
2023-05-18 3:14 Michał Górny
2023-05-09 5:26 Michał Górny
2023-04-19 5:56 Michał Górny
2023-04-04 4:48 Michał Górny
2023-03-28 5:19 Michał Górny
2023-03-07 7:08 Michał Górny
2023-02-17 18:15 Patrick McLean
2023-02-14 5:08 Michał Górny
2023-01-24 7:04 Michał Górny
2022-12-23 11:25 Michał Górny
2022-12-03 9:09 Michał Górny
2022-11-21 19:16 Arthur Zamarin
2022-11-14 4:34 Michał Górny
2022-11-02 7:37 Michał Górny
2022-10-05 9:41 Michał Górny
2022-10-05 9:41 Michał Górny
2022-09-22 6:23 Michał Górny
2022-08-24 19:36 Arthur Zamarin
2022-08-02 16:47 Arthur Zamarin
2022-07-13 8:10 Michał Górny
2022-06-22 5:48 Michał Górny
2022-06-16 8:04 Michał Górny
2022-06-03 5:37 Michał Górny
2022-05-16 13:03 Michał Górny
2022-04-25 18:41 Arthur Zamarin
2022-03-31 11:33 Michał Górny
2022-03-09 18:26 Arthur Zamarin
2021-10-17 7:33 Michał Górny
2021-10-03 6:37 Michał Górny
2021-06-29 6:05 Michał Górny
2021-06-17 19:47 Michał Górny
2021-06-17 19:47 Michał Górny
2021-06-01 22:22 Michał Górny
2021-05-10 7:24 Michał Górny
2021-04-16 11:00 Zac Medico
2021-04-16 9:48 Zac Medico
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=1699425509.e7023c1ef332a4c9e902ac01c217441ba2da968e.mgorny@gentoo \
--to=mgorny@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