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 1AB81138334 for ; Sat, 2 Nov 2019 11:39:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30AE5E077D; Sat, 2 Nov 2019 11:39:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 15E35E077D for ; Sat, 2 Nov 2019 11:39:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E3C4634C6DC for ; Sat, 2 Nov 2019 11:39:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 39633883 for ; Sat, 2 Nov 2019 11:39:21 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1572694741.6748844e5a0cdfc56ddeb8b0de86db748dbafff0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pychm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pychm/Manifest dev-python/pychm/pychm-0.8.5.ebuild X-VCS-Directories: dev-python/pychm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6748844e5a0cdfc56ddeb8b0de86db748dbafff0 X-VCS-Branch: master Date: Sat, 2 Nov 2019 11:39:21 +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: 70348686-76ba-4c1d-86bd-2dfb47e2fa59 X-Archives-Hash: 8b2ba597e65f649649e4f513c6939100 commit: 6748844e5a0cdfc56ddeb8b0de86db748dbafff0 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 2 11:39:01 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 2 11:39:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6748844e dev-python/pychm: Bump to 0.8.5 Signed-off-by: Michał Górny gentoo.org> dev-python/pychm/Manifest | 1 + dev-python/pychm/pychm-0.8.5.ebuild | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/dev-python/pychm/Manifest b/dev-python/pychm/Manifest index 0aa9cf92cd2..99c807879f1 100644 --- a/dev-python/pychm/Manifest +++ b/dev-python/pychm/Manifest @@ -1 +1,2 @@ DIST pychm-0.8.4.tar.gz 28803 BLAKE2B c6b66c83b1bd5b20280cb60636ccf2780f665fd589b107542c887fc791642f780701b84c8863883e02496c626b92552e3bbfdacd025723fccdb7947de62ada61 SHA512 0c0c107e59ea9f5fef97a0c2869349b5e90fc9eb7a37c35e8a929eaf764c7abe5a06a389340a912b9ba2f71172f3c94a78da016707bb201bbd07bdc3feddfe0d +DIST pychm-0.8.5.gh.tar.gz 23539 BLAKE2B 4671ccca56153ee493f239de46a01c9e878448f46ecb7e1a39156457562d7f7ac951007e04bd534ea26455da68607eab9b2e2266eed71a7b14c90f103888887e SHA512 3f6b175710880fd4e45c4407af06bec580839517727ee0f5f706747c78be727171f7f8ad2d8fa9add0065825556c3a5d48cc1a6016705f34569350c495f5710d diff --git a/dev-python/pychm/pychm-0.8.5.ebuild b/dev-python/pychm/pychm-0.8.5.ebuild new file mode 100644 index 00000000000..301661fc7b7 --- /dev/null +++ b/dev-python/pychm/pychm-0.8.5.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) + +inherit distutils-r1 + +DESCRIPTION="Python bindings for the chmlib library" +HOMEPAGE="https://github.com/dottedmag/pychm" +SRC_URI="https://github.com/dottedmag/pychm/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="dev-libs/chmlib" +DEPEND="${RDEPEND} + test? ( dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + pytest -vv || die +}