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 09955138350 for ; Fri, 13 Mar 2020 09:56:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B760E0CF9; Fri, 13 Mar 2020 09:56:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EF5F2E0CED for ; Fri, 13 Mar 2020 09:56: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 2184C34F05A for ; Fri, 13 Mar 2020 09:56:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 47C8118D for ; Fri, 13 Mar 2020 09:56: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: <1584093359.6e3b4c5604b9a5a67dfad674873ee7954698ad76.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/GitPython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/GitPython/GitPython-3.1.0.ebuild X-VCS-Directories: dev-python/GitPython/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6e3b4c5604b9a5a67dfad674873ee7954698ad76 X-VCS-Branch: master Date: Fri, 13 Mar 2020 09:56: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: 16efee7f-89de-45c8-abec-1fb75622b05c X-Archives-Hash: 66bfdca43dd855530ee70029dbab4186 commit: 6e3b4c5604b9a5a67dfad674873ee7954698ad76 Author: Michał Górny gentoo org> AuthorDate: Fri Mar 13 09:27:48 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Mar 13 09:55:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e3b4c56 dev-python/GitPython: Remove redundant MY_P* Signed-off-by: Michał Górny gentoo.org> dev-python/GitPython/GitPython-3.1.0.ebuild | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/dev-python/GitPython/GitPython-3.1.0.ebuild b/dev-python/GitPython/GitPython-3.1.0.ebuild index 586d0abb46d..8d0903d9899 100644 --- a/dev-python/GitPython/GitPython-3.1.0.ebuild +++ b/dev-python/GitPython/GitPython-3.1.0.ebuild @@ -8,20 +8,17 @@ PYTHON_REQ_USE="threads(+)" inherit distutils-r1 -MY_PN=GitPython -MY_P=${MY_PN}-${PV} GITDB_P=gitdb-4.0.2 SMMAP_P=smmap-3.0.1 DESCRIPTION="Library used to interact with Git repositories" HOMEPAGE="https://github.com/gitpython-developers/GitPython https://pypi.org/project/GitPython/" -SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz test? ( - https://dev.gentoo.org/~mgorny/dist/${MY_P}.gitbundle + https://dev.gentoo.org/~mgorny/dist/${P}.gitbundle https://dev.gentoo.org/~mgorny/dist/${GITDB_P}.gitbundle https://dev.gentoo.org/~mgorny/dist/${SMMAP_P}.gitbundle )" -S=${WORKDIR}/${MY_P} LICENSE="BSD" SLOT="0" @@ -41,7 +38,7 @@ src_test() { git config --global user.email "you@example.com" || die git config --global user.name "Your Name" || die - git clone "${DISTDIR}/${MY_P}.gitbundle" "${T}"/test || die + git clone "${DISTDIR}/${P}.gitbundle" "${T}"/test || die git clone "${DISTDIR}/${GITDB_P}.gitbundle" \ "${T}"/test/git/ext/gitdb || die git clone "${DISTDIR}/${SMMAP_P}.gitbundle" \