From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/poezio/
Date: Mon, 11 Apr 2022 08:57:58 +0000 (UTC) [thread overview]
Message-ID: <1649667469.93e681cb00ce6ce70d38feea81ee7e961de615a9.flow@gentoo> (raw)
commit: 93e681cb00ce6ce70d38feea81ee7e961de615a9
Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 11 08:55:51 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Mon Apr 11 08:57:49 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93e681cb
net-im/poezio: add 0.14, update live ebuild
Thanks to Michał Górny for helping with python_test().
Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
net-im/poezio/Manifest | 1 +
.../{poezio-9999.ebuild => poezio-0.14.ebuild} | 20 ++++++++++++++------
net-im/poezio/poezio-9999.ebuild | 18 +++++++++++++-----
3 files changed, 28 insertions(+), 11 deletions(-)
diff --git a/net-im/poezio/Manifest b/net-im/poezio/Manifest
index 8c63c9fa1b81..02b8eba1a8a6 100644
--- a/net-im/poezio/Manifest
+++ b/net-im/poezio/Manifest
@@ -1 +1,2 @@
DIST poezio-0.13.1.tar.gz 632572 BLAKE2B e8d3d34c5ca8d236a5a434b4b339cab5ea7286c60db3ef5a6012d406848537b587e834b86f7b6049ee8e637a82e883b2d874134bc1f7d64106e0b0f81aab218f SHA512 6c211ef0fa2fc4bd4cce6ab896166eec6bcdc16ad9e774f4d6bf261b404c9ef68b18d934097da0e165b0cce9bd7779da520ac9c3eac30ccf8280f98ef6aa19c6
+DIST poezio-0.14.tar.gz 662379 BLAKE2B 467741d82945c084c79811d41ff85358ad236d0dcefca7e6f1f8ed5d78aa127f800d2370d624ebaf9e2eb20e1038f280c2e874694ea2b86965fe329b82c4b7d8 SHA512 6e68954a918c645592e2d2f8a265e2f2445a39e256c0525a5517e758a90cc404e066cc08d67ad0f8a3c7d6f3efd61f13a776737d110dd23df7a5f7fab54fc6b5
diff --git a/net-im/poezio/poezio-9999.ebuild b/net-im/poezio/poezio-0.14.ebuild
similarity index 74%
copy from net-im/poezio/poezio-9999.ebuild
copy to net-im/poezio/poezio-0.14.ebuild
index 608644fde1b2..81e2f3ab9a0b 100644
--- a/net-im/poezio/poezio-9999.ebuild
+++ b/net-im/poezio/poezio-0.14.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{7..10} )
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1 optfeature xdg
DESCRIPTION="Console XMPP client that looks like most famous IRC clients"
HOMEPAGE="https://poez.io/"
-LICENSE="ZLIB"
+LICENSE="GPL-3+"
SLOT="0"
if [[ "${PV}" == "9999" ]]; then
@@ -28,7 +28,7 @@ RDEPEND="
dev-python/aiodns[${PYTHON_USEDEP}]
dev-python/pyasn1-modules[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
- >=dev-python/slixmpp-1.7.1[${PYTHON_USEDEP}]
+ >=dev-python/slixmpp-1.8.2[${PYTHON_USEDEP}]
"
PATCHES=(
@@ -51,6 +51,14 @@ src_compile() {
fi
}
+# Poezio provides its own Python C extension 'poopt', which needs to be
+# correctly discovered to run the tests. See
+# https://projects.gentoo.org/python/guide/test.html#importerrors-for-c-extensions
+python_test() {
+ cd "${T}" || die
+ epytest "${S}"/test
+}
+
src_install() {
distutils-r1_src_install
diff --git a/net-im/poezio/poezio-9999.ebuild b/net-im/poezio/poezio-9999.ebuild
index 608644fde1b2..162044b8bbf3 100644
--- a/net-im/poezio/poezio-9999.ebuild
+++ b/net-im/poezio/poezio-9999.ebuild
@@ -1,16 +1,16 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
-DISTUTILS_USE_SETUPTOOLS=rdepend
+DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{7..10} )
inherit distutils-r1 optfeature xdg
DESCRIPTION="Console XMPP client that looks like most famous IRC clients"
HOMEPAGE="https://poez.io/"
-LICENSE="ZLIB"
+LICENSE="GPL-3+"
SLOT="0"
if [[ "${PV}" == "9999" ]]; then
@@ -28,7 +28,7 @@ RDEPEND="
dev-python/aiodns[${PYTHON_USEDEP}]
dev-python/pyasn1-modules[${PYTHON_USEDEP}]
dev-python/pyasn1[${PYTHON_USEDEP}]
- >=dev-python/slixmpp-1.7.1[${PYTHON_USEDEP}]
+ >=dev-python/slixmpp-1.8.2[${PYTHON_USEDEP}]
"
PATCHES=(
@@ -51,6 +51,14 @@ src_compile() {
fi
}
+# Poezio provides its own Python C extension 'poopt', which needs to be
+# correctly discovered to run the tests. See
+# https://projects.gentoo.org/python/guide/test.html#importerrors-for-c-extensions
+python_test() {
+ cd "${T}" || die
+ epytest "${S}"/test
+}
+
src_install() {
distutils-r1_src_install
next reply other threads:[~2022-04-11 8:58 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-11 8:57 Florian Schmaus [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-09 11:17 [gentoo-commits] repo/gentoo:master commit in: net-im/poezio/ Florian Schmaus
2025-04-09 11:17 Florian Schmaus
2024-06-03 18:09 Florian Schmaus
2023-12-11 12:05 Florian Schmaus
2023-10-14 12:57 Florian Schmaus
2023-03-16 18:52 Michał Górny
2023-03-16 18:52 Michał Górny
2023-02-26 14:25 Florian Schmaus
2022-05-16 10:13 Florian Schmaus
2022-05-16 10:13 Florian Schmaus
2022-04-13 14:46 Sam James
2021-08-17 9:16 Florian Schmaus
2021-08-17 9:16 Florian Schmaus
2021-07-13 0:39 Sam James
2021-07-12 14:20 Florian Schmaus
2021-07-12 14:09 Florian Schmaus
2021-07-12 11:40 Florian Schmaus
2021-06-24 8:39 Florian Schmaus
2021-01-03 9:12 Sam James
2021-01-01 1:34 Michał Górny
2020-11-09 12:27 Andrey Utkin
2020-11-09 12:27 Andrey Utkin
2020-09-01 20:17 Andrey Utkin
2020-09-01 20:17 Andrey Utkin
2020-04-18 9:39 Michał Górny
2019-09-02 17:17 Andrey Utkin
2019-01-24 19:54 Andrey Utkin
2018-08-18 19:54 Andrey Utkin
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=1649667469.93e681cb00ce6ce70d38feea81ee7e961de615a9.flow@gentoo \
--to=flow@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