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 0CA2D15808D for ; Wed, 20 Apr 2022 17:24:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9BCEE09BC; Wed, 20 Apr 2022 17:24:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 C3716E09B5 for ; Wed, 20 Apr 2022 17:24:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 F3361341C1B for ; Wed, 20 Apr 2022 17:24:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3A709434 for ; Wed, 20 Apr 2022 17:24:48 +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: <1650475479.3c8a29f91c0dda422ae52c638b0fbd1009730115.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zope-event/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zope-event/zope-event-4.5.0-r1.ebuild X-VCS-Directories: dev-python/zope-event/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3c8a29f91c0dda422ae52c638b0fbd1009730115 X-VCS-Branch: master Date: Wed, 20 Apr 2022 17:24:48 +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: f4f4a49c-35a1-4f57-b6a9-4a4beef69152 X-Archives-Hash: f30b279995d0e8364037cf5262d6622e commit: 3c8a29f91c0dda422ae52c638b0fbd1009730115 Author: Michał Górny gentoo org> AuthorDate: Wed Apr 20 16:16:23 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Apr 20 17:24:39 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c8a29f9 dev-python/zope-event: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/zope-event/zope-event-4.5.0-r1.ebuild | 34 ------------------------ 1 file changed, 34 deletions(-) diff --git a/dev-python/zope-event/zope-event-4.5.0-r1.ebuild b/dev-python/zope-event/zope-event-4.5.0-r1.ebuild deleted file mode 100644 index 5367385c055b..000000000000 --- a/dev-python/zope-event/zope-event-4.5.0-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DISTUTILS_USE_SETUPTOOLS=rdepend -PYTHON_COMPAT=( python3_{7..10} pypy3 ) - -inherit distutils-r1 - -MY_PN=${PN/-/.} -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Event publishing / dispatch, used by Zope Component Architecture" -HOMEPAGE="https://github.com/zopefoundation/zope.event - https://docs.zope.org/zope.event/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="ZPL" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" - -RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]" - -distutils_enable_tests nose - -S="${WORKDIR}/${MY_P}" - -python_install_all() { - distutils-r1_python_install_all - - # remove .pth files since dev-python/namespace-zope handles the ns - find "${D}" -name '*.pth' -delete || die -}