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 17C54158042 for ; Mon, 6 Sep 2021 06:28:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DDBFE086A; Mon, 6 Sep 2021 06:28:24 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E2721E086A for ; Mon, 6 Sep 2021 06:28:23 +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 F3BED342A64 for ; Mon, 6 Sep 2021 06:28:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9FA3EAB for ; Mon, 6 Sep 2021 06:28: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: <1630909633.267f230e036abd25ea33a3e03d2758b0ca5096d9.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyphen/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyphen/Manifest dev-python/pyphen/pyphen-0.10.0.ebuild X-VCS-Directories: dev-python/pyphen/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 267f230e036abd25ea33a3e03d2758b0ca5096d9 X-VCS-Branch: master Date: Mon, 6 Sep 2021 06:28: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: 98f00442-63e1-4bd3-adf6-c46bc2736e5a X-Archives-Hash: 742fbf41072f10d91282260d72cec44c commit: 267f230e036abd25ea33a3e03d2758b0ca5096d9 Author: Michał Górny gentoo org> AuthorDate: Mon Sep 6 06:27:13 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Sep 6 06:27:13 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=267f230e dev-python/pyphen: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/pyphen/Manifest | 1 - dev-python/pyphen/pyphen-0.10.0.ebuild | 22 ---------------------- 2 files changed, 23 deletions(-) diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest index c02ce58deb5..2a4124489d0 100644 --- a/dev-python/pyphen/Manifest +++ b/dev-python/pyphen/Manifest @@ -1,2 +1 @@ -DIST Pyphen-0.10.0.tar.gz 1894118 BLAKE2B c33283d6eb3dd7affb52b91826fa0f8fab8ec8f858158e905e8487dc2ad8c77a88e4b25699ed6272d246bcf8a926560e18ec224f59703452ea1ad5c921e4fb4b SHA512 b6d789ca6eb010c1c79b28a9a0e68620ea5600adc43111bed5dbda3cb8b3a4c8c05caa3fb44ea60b0ef4a20272f17cf5e6fe61f0d1e48038395407ff53da7a92 DIST Pyphen-0.11.0.tar.gz 1967507 BLAKE2B 0bea108e78894082f59693a4ffa6c7f9f6aaec5fc10d0ecf4dc9b6c12fbcfde2cdd835e813b1041797cbc30d5e6e33f5626a517e8cc0535a7a001c8ac779fa4c SHA512 cdb4ee065698e27a4662984b76ee5c494c0d8e7d6b377667399f40d0dffc2b1d730956f3fa1fe73a08c17601152c99321b6fd5dd4d48361c54e9a6b635f02f0d diff --git a/dev-python/pyphen/pyphen-0.10.0.ebuild b/dev-python/pyphen/pyphen-0.10.0.ebuild deleted file mode 100644 index 37507a56eff..00000000000 --- a/dev-python/pyphen/pyphen-0.10.0.ebuild +++ /dev/null @@ -1,22 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -PYTHON_COMPAT=( python3_{8..10} ) -inherit distutils-r1 - -DESCRIPTION="Python module for hyphenation using hunspell dictionaries" -HOMEPAGE="https://github.com/Kozea/Pyphen" -SRC_URI="https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz -> ${P^}.tar.gz" -S=${WORKDIR}/${P^} - -LICENSE="GPL-2+ LGPL-2+ MPL-1.1" -SLOT="0" -KEYWORDS="amd64 x86" - -distutils_enable_tests pytest - -python_test() { - epytest test.py -}