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 13D43139694 for ; Tue, 2 May 2017 14:02:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5EFAE0D26; Tue, 2 May 2017 14:02:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0D38E0D26 for ; Tue, 2 May 2017 14:02:30 +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 E28723416A5 for ; Tue, 2 May 2017 14:02:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7189D7454 for ; Tue, 2 May 2017 14:02: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: <1493733701.7bf057c73be2bf5b2175b7806d379cbfb2646519.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools-git/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/setuptools-git/setuptools-git-1.1.ebuild X-VCS-Directories: dev-python/setuptools-git/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7bf057c73be2bf5b2175b7806d379cbfb2646519 X-VCS-Branch: master Date: Tue, 2 May 2017 14:02: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-Archives-Salt: e7dd3709-c948-463a-b162-dd5395ca2ef7 X-Archives-Hash: a97b40a4468629d9147cbe54d4470bbf commit: 7bf057c73be2bf5b2175b7806d379cbfb2646519 Author: Michał Górny gentoo org> AuthorDate: Tue May 2 13:33:24 2017 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 2 14:01:41 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bf057c7 dev-python/setuptools-git: Clean old versions up .../setuptools-git/setuptools-git-1.1.ebuild | 26 ---------------------- 1 file changed, 26 deletions(-) diff --git a/dev-python/setuptools-git/setuptools-git-1.1.ebuild b/dev-python/setuptools-git/setuptools-git-1.1.ebuild deleted file mode 100644 index 89891be9d8b..00000000000 --- a/dev-python/setuptools-git/setuptools-git-1.1.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit distutils-r1 - -DESCRIPTION="Setuptools revision control system plugin for Git" -HOMEPAGE="https://github.com/wichert/setuptools-git" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 x86" - -DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - dev-vcs/git" -RDEPEND="${DEPEND}" - -python_test() { - git config --global user.name "test user" || die - git config --global user.email "test@email.com" || die - esetup.py test - retr=$? -}