From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1543927-garchives=archives.gentoo.org@lists.gentoo.org>
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (2048 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id B7FF715800A
	for <garchives@archives.gentoo.org>; Sun,  6 Aug 2023 10:03:33 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 85ADD2BC013;
	Sun,  6 Aug 2023 10:03:32 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id 6AF1D2BC013
	for <gentoo-commits@lists.gentoo.org>; Sun,  6 Aug 2023 10:03:32 +0000 (UTC)
Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52])
	(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
	 key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 494A7340CCC
	for <gentoo-commits@lists.gentoo.org>; Sun,  6 Aug 2023 10:03:31 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B692F18
	for <gentoo-commits@lists.gentoo.org>; Sun,  6 Aug 2023 10:03:29 +0000 (UTC)
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org>
Message-ID: <1691316205.e7e5a19938c8fd06231e3decc239285a5e86cc6e.mgorny@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/slixmpp/
X-VCS-Repository: repo/gentoo
X-VCS-Files: dev-python/slixmpp/slixmpp-1.8.4.ebuild dev-python/slixmpp/slixmpp-9999.ebuild
X-VCS-Directories: dev-python/slixmpp/
X-VCS-Committer: mgorny
X-VCS-Committer-Name: Michał Górny
X-VCS-Revision: e7e5a19938c8fd06231e3decc239285a5e86cc6e
X-VCS-Branch: master
Date: Sun,  6 Aug 2023 10:03:29 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 5e41ed41-d6d0-4c95-a238-071e626dc9b9
X-Archives-Hash: 4ca232103f39086f4b1a7da7fb90115c

commit:     e7e5a19938c8fd06231e3decc239285a5e86cc6e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Aug  6 10:02:22 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  6 10:03:25 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7e5a199

dev-python/slixmpp: Fix testing C extensions

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/slixmpp/slixmpp-1.8.4.ebuild | 5 +++++
 dev-python/slixmpp/slixmpp-9999.ebuild  | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/dev-python/slixmpp/slixmpp-1.8.4.ebuild b/dev-python/slixmpp/slixmpp-1.8.4.ebuild
index 2a474636c9be..9e2a370ce4ef 100644
--- a/dev-python/slixmpp/slixmpp-1.8.4.ebuild
+++ b/dev-python/slixmpp/slixmpp-1.8.4.ebuild
@@ -36,3 +36,8 @@ RDEPEND="
 "
 
 distutils_enable_tests unittest
+
+python_test() {
+	rm -rf slixmpp || die
+	eunittest
+}

diff --git a/dev-python/slixmpp/slixmpp-9999.ebuild b/dev-python/slixmpp/slixmpp-9999.ebuild
index 45970b5ba9c9..4dd970318658 100644
--- a/dev-python/slixmpp/slixmpp-9999.ebuild
+++ b/dev-python/slixmpp/slixmpp-9999.ebuild
@@ -35,3 +35,8 @@ RDEPEND="
 "
 
 distutils_enable_tests unittest
+
+python_test() {
+	rm -rf slixmpp || die
+	eunittest
+}