* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/etcd3/
@ 2022-01-23 0:13 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-01-23 0:13 UTC (permalink / raw
To: gentoo-commits
commit: 497aee6557aa1d62266aa8bb51c47e4ba8bf2769
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Nov 11 17:48:45 2021 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Jan 22 23:58:26 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=497aee65
dev-python/etcd3: initial import
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/etcd3/Manifest | 1 +
dev-python/etcd3/etcd3-0.12.0.ebuild | 37 ++++++++++++++++++++++++++++++++++++
dev-python/etcd3/metadata.xml | 11 +++++++++++
3 files changed, 49 insertions(+)
diff --git a/dev-python/etcd3/Manifest b/dev-python/etcd3/Manifest
new file mode 100644
index 000000000..5ffccd967
--- /dev/null
+++ b/dev-python/etcd3/Manifest
@@ -0,0 +1 @@
+DIST etcd3-0.12.0.tar.gz 63926 BLAKE2B adf6df5f1ced114387572c6a3361c7c57298b27be173fb91416ff989f7a252c81c1fcbe0bbbda3815102ad06fb2053d0585517ec75457a54e9617e61c6b53969 SHA512 d31cf0059036af91b489d6197fcda71314b5dcd068b6095212e1fec39d55b0bc4e943da3fdda6131fd1a6d48741334f5659e470c3284f0c6ab1a39d662d7d78a
diff --git a/dev-python/etcd3/etcd3-0.12.0.ebuild b/dev-python/etcd3/etcd3-0.12.0.ebuild
new file mode 100644
index 000000000..c3a5aa7ac
--- /dev/null
+++ b/dev-python/etcd3/etcd3-0.12.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_8 )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for the etcd API v3"
+HOMEPAGE="
+ https://pypi.org/project/etcd3
+ https://github.com/kragniz/python-etcd3
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+ >=dev-python/grpcio-1.2.0[${PYTHON_USEDEP}]
+ >=dev-python/tenacity-5.0.2[${PYTHON_USEDEP}]
+ >=dev-python/protobuf-python-3.6.1[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+ test? (
+ >=dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
+ >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
+ dev-python/grpcio-tools[${PYTHON_USEDEP}]
+ dev-python/hypothesis[${PYTHON_USEDEP}]
+ dev-python/pifpaf[${PYTHON_USEDEP}]
+ )
+"
+
+distutils_enable_tests pytest
diff --git a/dev-python/etcd3/metadata.xml b/dev-python/etcd3/metadata.xml
new file mode 100644
index 000000000..b15a54b02
--- /dev/null
+++ b/dev-python/etcd3/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>lssndrbarbieri@gmail.com</email>
+ <name>Alessandro Barbieri</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="pypi">etcd3</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/etcd3/
@ 2022-03-12 3:28 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-03-12 3:28 UTC (permalink / raw
To: gentoo-commits
commit: dc09cf22aaa369532965d6c2143a724a6f1e54d4
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Mar 12 02:16:20 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Mar 12 02:16:20 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dc09cf22
dev-python/etcd3: add etcd dependency
Closes: https://bugs.gentoo.org/831960
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/etcd3/etcd3-0.12.0.ebuild | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/dev-python/etcd3/etcd3-0.12.0.ebuild b/dev-python/etcd3/etcd3-0.12.0.ebuild
index c3a5aa7ac..60491b7c4 100644
--- a/dev-python/etcd3/etcd3-0.12.0.ebuild
+++ b/dev-python/etcd3/etcd3-0.12.0.ebuild
@@ -1,15 +1,15 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_8 )
+PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
DESCRIPTION="Python client for the etcd API v3"
HOMEPAGE="
- https://pypi.org/project/etcd3
+ https://pypi.org/project/etcd3/
https://github.com/kragniz/python-etcd3
"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
@@ -19,12 +19,13 @@ SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
+ dev-db/etcd
>=dev-python/grpcio-1.2.0[${PYTHON_USEDEP}]
>=dev-python/tenacity-5.0.2[${PYTHON_USEDEP}]
>=dev-python/protobuf-python-3.6.1[${PYTHON_USEDEP}]
"
-DEPEND="${RDEPEND}"
-BDEPEND="
+DEPEND="
+ ${RDEPEND}
test? (
>=dev-python/pyyaml-5.1[${PYTHON_USEDEP}]
>=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/etcd3/
@ 2022-03-14 4:02 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-03-14 4:02 UTC (permalink / raw
To: gentoo-commits
commit: 4ec6737c70829403363fc39d8620625c20922a90
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Mon Mar 14 03:51:31 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Mon Mar 14 03:51:31 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4ec6737c
dev-python/etcd3: ignore some tests
Closes: https://bugs.gentoo.org/835033
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/etcd3/etcd3-0.12.0.ebuild | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/dev-python/etcd3/etcd3-0.12.0.ebuild b/dev-python/etcd3/etcd3-0.12.0.ebuild
index 60491b7c4..cb51b591e 100644
--- a/dev-python/etcd3/etcd3-0.12.0.ebuild
+++ b/dev-python/etcd3/etcd3-0.12.0.ebuild
@@ -3,6 +3,14 @@
EAPI=8
+EPYTEST_DESELECT=(
+ tests/test_etcd3.py::TestClient::test_compact
+ tests/test_etcd3.py::TestClient::test_user_pwd_auth
+)
+EPYTEST_IGNORE=(
+ tests/test_etcd3.py::TestEtcd3
+ tests/test_etcd3.py::TestAlarms
+)
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/etcd3/
@ 2022-03-17 13:57 Alessandro Barbieri
0 siblings, 0 replies; 4+ messages in thread
From: Alessandro Barbieri @ 2022-03-17 13:57 UTC (permalink / raw
To: gentoo-commits
commit: 044243b521c74171a81a0de394a6bdbe8f9f958c
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Mar 17 13:17:08 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Thu Mar 17 13:17:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=044243b5
dev-python/etcd3: deselect tests instead of ignore
Closes: https://bugs.gentoo.org/835480
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/etcd3/etcd3-0.12.0.ebuild | 2 --
1 file changed, 2 deletions(-)
diff --git a/dev-python/etcd3/etcd3-0.12.0.ebuild b/dev-python/etcd3/etcd3-0.12.0.ebuild
index cb51b591e..a67dc504b 100644
--- a/dev-python/etcd3/etcd3-0.12.0.ebuild
+++ b/dev-python/etcd3/etcd3-0.12.0.ebuild
@@ -6,8 +6,6 @@ EAPI=8
EPYTEST_DESELECT=(
tests/test_etcd3.py::TestClient::test_compact
tests/test_etcd3.py::TestClient::test_user_pwd_auth
-)
-EPYTEST_IGNORE=(
tests/test_etcd3.py::TestEtcd3
tests/test_etcd3.py::TestAlarms
)
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2022-03-17 13:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-14 4:02 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/etcd3/ Alessandro Barbieri
-- strict thread matches above, loose matches on Subject: below --
2022-03-17 13:57 Alessandro Barbieri
2022-03-12 3:28 Alessandro Barbieri
2022-01-23 0:13 Alessandro Barbieri
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox