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 17AAB138334 for ; Wed, 23 Oct 2019 11:35:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0F4EBE0802; Wed, 23 Oct 2019 11:35:03 +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 3CD47E0802 for ; Wed, 23 Oct 2019 11:35:02 +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 CC27434C23E for ; Wed, 23 Oct 2019 11:35:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 60195779 for ; Wed, 23 Oct 2019 11:34:58 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1571830495.23a4778277dc2d85ebc8cdc0f4c5b709bcbb52e0.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/yapsy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/yapsy/yapsy-1.11.223-r1.ebuild X-VCS-Directories: dev-python/yapsy/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: 23a4778277dc2d85ebc8cdc0f4c5b709bcbb52e0 X-VCS-Branch: master Date: Wed, 23 Oct 2019 11:34:58 +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: c66b5a1b-706a-4283-8bef-4f89e1511dfb X-Archives-Hash: 4d5b8f162a7958a5e9bb47bda28a330b commit: 23a4778277dc2d85ebc8cdc0f4c5b709bcbb52e0 Author: Sergey Popov gentoo org> AuthorDate: Wed Oct 23 11:33:52 2019 +0000 Commit: Sergey Popov gentoo org> CommitDate: Wed Oct 23 11:34:55 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23a47782 dev-python/yapsy: drop old revision Signed-off-by: Sergey Popov gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-python/yapsy/yapsy-1.11.223-r1.ebuild | 43 ------------------------------- 1 file changed, 43 deletions(-) diff --git a/dev-python/yapsy/yapsy-1.11.223-r1.ebuild b/dev-python/yapsy/yapsy-1.11.223-r1.ebuild deleted file mode 100644 index 13dba5efd1f..00000000000 --- a/dev-python/yapsy/yapsy-1.11.223-r1.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -MY_P="Yapsy-${PV}" -PYTHON_COMPAT=( python{2_7,3_5} ) - -inherit distutils-r1 - -DESCRIPTION="A fat-free DIY Python plugin management toolkit" -HOMEPAGE="http://yapsy.sourceforge.net/" -SRC_URI="mirror://sourceforge/yapsy/${MY_P}/${MY_P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" - -S="${WORKDIR}/${MY_P}" - -python_prepare_all() { - # Disable erroneous test - sed -e 's:test_default_plugins_place_is_parent_dir:_&:' \ - -i test/test_PluginFileLocator.py || die - distutils-r1_python_prepare_all -} - -python_compile_all() { - use doc && emake -C doc html -} - -python_test() { - esetup.py test -} - -python_install_all() { - use doc && local HTML_DOCS=( doc/_build/html/. ) - distutils-r1_python_install_all -}