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 1D276138359 for ; Thu, 1 Oct 2020 12:22:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63AC8E08FA; Thu, 1 Oct 2020 12:22:08 +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 4AD00E08FA for ; Thu, 1 Oct 2020 12:22:08 +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 8C0DB3408B8 for ; Thu, 1 Oct 2020 12:22:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90ABC37F for ; Thu, 1 Oct 2020 12:22:04 +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: <1601554916.6fe3fd6515afac9c69f8271430ee880f50558b8b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vobject/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/vobject/vobject-0.9.6.1-r1.ebuild X-VCS-Directories: dev-python/vobject/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6fe3fd6515afac9c69f8271430ee880f50558b8b X-VCS-Branch: master Date: Thu, 1 Oct 2020 12:22:04 +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: ef515802-7b82-48b5-9a35-38224453b07b X-Archives-Hash: f8b7fd5f59151dd072cf04c0fd4dc0ec commit: 6fe3fd6515afac9c69f8271430ee880f50558b8b Author: Michał Górny gentoo org> AuthorDate: Thu Oct 1 12:11:08 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Oct 1 12:21:56 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe3fd65 dev-python/vobject: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/vobject/vobject-0.9.6.1-r1.ebuild | 29 ---------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/vobject/vobject-0.9.6.1-r1.ebuild b/dev-python/vobject/vobject-0.9.6.1-r1.ebuild deleted file mode 100644 index 1f5d43e37d4..00000000000 --- a/dev-python/vobject/vobject-0.9.6.1-r1.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{6,7,8} ) - -inherit distutils-r1 - -DESCRIPTION="Python package for parsing and generating vCard and vCalendar files" -HOMEPAGE="https://eventable.github.io/vobject/ - https://pypi.org/project/vobject/ - https://github.com/eventable/vobject" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 x86" -IUSE="" - -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" -RDEPEND=">=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND}" - -DOCS=( ACKNOWLEDGEMENTS.txt README.md ) - -python_test() { - "${EPYTHON}" tests.py || die "Testing failed under ${EPYTHON}" -}