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.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 AAED7158021 for ; Sat, 10 Dec 2022 15:46:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91C68E07D1; Sat, 10 Dec 2022 15:46:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7CB7BE07D1 for ; Sat, 10 Dec 2022 15:46:24 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A7A003412EE for ; Sat, 10 Dec 2022 15:46:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43FE677C for ; Sat, 10 Dec 2022 15:46:22 +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: <1670687175.d488fd864aecf11fa3f03d1d60c2a8add1d46b07.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pychm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pychm/pychm-0.8.6.ebuild X-VCS-Directories: dev-python/pychm/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: d488fd864aecf11fa3f03d1d60c2a8add1d46b07 X-VCS-Branch: master Date: Sat, 10 Dec 2022 15:46:22 +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: 6f64b4d3-5dd7-4ccc-be80-02ba59ad8e5b X-Archives-Hash: 4722b1e9dc5f8a9626ebb55616aaa4c0 commit: d488fd864aecf11fa3f03d1d60c2a8add1d46b07 Author: Michał Górny gentoo org> AuthorDate: Sat Dec 10 15:43:36 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 10 15:46:15 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d488fd86 dev-python/pychm: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pychm/pychm-0.8.6.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/pychm/pychm-0.8.6.ebuild b/dev-python/pychm/pychm-0.8.6.ebuild deleted file mode 100644 index 5a33f0e58ffd..000000000000 --- a/dev-python/pychm/pychm-0.8.6.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{7..10} ) - -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 ~arm ~ppc x86" - -RDEPEND="dev-libs/chmlib" -DEPEND="${RDEPEND}" - -distutils_enable_tests pytest - -src_test() { - # need to avoid relative import of 'chm' directory but tests rely - # on locating files relatively via tests/... - mv tests .. || die - cd .. || die - distutils-r1_src_test -}