From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E533138359 for ; Sun, 13 Sep 2020 17:56:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9F26E0864; Sun, 13 Sep 2020 17:56:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C16D4E0864 for ; Sun, 13 Sep 2020 17:56:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4291433BE99 for ; Sun, 13 Sep 2020 17:56:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BAE64352 for ; Sun, 13 Sep 2020 17:56:01 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1600019756.63875ced4634935f2d06497865cd108ba51dc5b3.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/expects/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/expects/Manifest dev-python/expects/expects-0.9.0.ebuild X-VCS-Directories: dev-python/expects/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: 63875ced4634935f2d06497865cd108ba51dc5b3 X-VCS-Branch: master Date: Sun, 13 Sep 2020 17:56:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 33c3b966-e002-4c49-921d-3c735bd60017 X-Archives-Hash: 2c3e5416202f31dbdd054201ee9ee328 commit: 63875ced4634935f2d06497865cd108ba51dc5b3 Author: Louis Sautier gentoo org> AuthorDate: Sun Sep 13 17:27:08 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Sep 13 17:55:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63875ced dev-python/expects: bump to 0.9.0, add Python 3.9 support Also use distutils_enable_sphinx. Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Louis Sautier gentoo.org> dev-python/expects/Manifest | 1 + dev-python/expects/expects-0.9.0.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/expects/Manifest b/dev-python/expects/Manifest index 098f82f5481..136784a5773 100644 --- a/dev-python/expects/Manifest +++ b/dev-python/expects/Manifest @@ -1 +1,2 @@ DIST expects-0.8.0.tar.gz 27801 BLAKE2B 3371ad3b494a6cfaf463660d013dbd5c26d88e0cd7816be11a39466a831d2a3c19e9459967947651e004dc1bbc6f6e9a61eb0b9f69685482440056061fb9bd95 SHA512 c2379bb6b3b6181a0365a84b0602f2552de40760b7cbadd775705bacfe113ffbe55bcde818c5766f7079867ae38c8c02e318f3c9ffdccdddb58e6cf0559f1e25 +DIST expects-0.9.0.tar.gz 27901 BLAKE2B b504f0d7dc91f76a2e036693873efaecdbe1e96a376d930924e00268d6374fad2bdc953e7f684f2ad44bf4d9ca962c377d753ef627304a036c1197b23230a2b0 SHA512 82465cfa48d2c28e6584bc05b9895bf5a0ebb90f43ac828c8e2888a10695c24da7833560880fcd8e7deef9996187ec7be7d993fc9973e2887a66b0b463125fff diff --git a/dev-python/expects/expects-0.9.0.ebuild b/dev-python/expects/expects-0.9.0.ebuild new file mode 100644 index 00000000000..164210bad0d --- /dev/null +++ b/dev-python/expects/expects-0.9.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Expressive and extensible TDD/BDD assertion library for Python" +HOMEPAGE="https://github.com/jaimegildesagredo/expects" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm64" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( dev-python/mamba[${PYTHON_USEDEP}] )" + +distutils_enable_sphinx docs + +python_test() { + mamba || die "tests failed under ${EPYTHON}" +}