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 30B87138359 for ; Fri, 18 Sep 2020 15:53:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A139BE086A; Fri, 18 Sep 2020 15:53:29 +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 87DA5E086A for ; Fri, 18 Sep 2020 15:53:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 52E6834107D for ; Fri, 18 Sep 2020 15:53:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8FD2386 for ; Fri, 18 Sep 2020 15:53:24 +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: <1600444393.89fe3b83c812d5d08b9ff208e33556ae7d76ff5b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/versioneer/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/versioneer/versioneer-0.18.ebuild X-VCS-Directories: dev-python/versioneer/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 89fe3b83c812d5d08b9ff208e33556ae7d76ff5b X-VCS-Branch: master Date: Fri, 18 Sep 2020 15:53:24 +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: 74cf3f2f-8dac-43fe-be0a-fc2e96b03723 X-Archives-Hash: a926f953533ba2f195ef2daa980fc24d commit: 89fe3b83c812d5d08b9ff208e33556ae7d76ff5b Author: Michał Górny gentoo org> AuthorDate: Fri Sep 18 15:50:57 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Sep 18 15:53:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89fe3b83 dev-python/versioneer: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/versioneer/versioneer-0.18.ebuild | 29 ---------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/versioneer/versioneer-0.18.ebuild b/dev-python/versioneer/versioneer-0.18.ebuild deleted file mode 100644 index e1e48453834..00000000000 --- a/dev-python/versioneer/versioneer-0.18.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{6,7} ) - -inherit distutils-r1 - -DESCRIPTION="Easy VCS-based management of project version strings" -HOMEPAGE="https://pypi.org/project/versioneer/ https://github.com/warner/python-versioneer" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -SLOT="0" -LICENSE="public-domain" -KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sparc x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -python_test() { - esetup.py make_versioneer - git config --global user.email "you@example.com" - git config --global user.name "Your Name" - - ${PYTHON} test/git/test_git.py -v || die -}