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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 34B26158090 for ; Tue, 10 May 2022 20:31:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B843E09A8; Tue, 10 May 2022 20:31:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0F59CE09A8 for ; Tue, 10 May 2022 20:31:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 89C7D34153B for ; Tue, 10 May 2022 20:31:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E4BC3BF for ; Tue, 10 May 2022 20:31:29 +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: <1652214671.a6bc0a4670ea1a397e28f2ccaaa1b7c2ba6b3f62.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/metadata.xml dev-python/setuptools-git/setuptools-git-1.2-r3.ebuild X-VCS-Directories: dev-python/setuptools-git/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a6bc0a4670ea1a397e28f2ccaaa1b7c2ba6b3f62 X-VCS-Branch: master Date: Tue, 10 May 2022 20:31:29 +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: d28fca8c-03fe-4d89-8af8-56b29ec18897 X-Archives-Hash: 7c39da04292d2b134ef16a93f4dca6a7 commit: a6bc0a4670ea1a397e28f2ccaaa1b7c2ba6b3f62 Author: Michał Górny gentoo org> AuthorDate: Tue May 10 20:29:12 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue May 10 20:31:11 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6bc0a46 dev-python/setuptools-git: EAPI 8, PEP517 Signed-off-by: Michał Górny gentoo.org> dev-python/setuptools-git/metadata.xml | 2 +- .../setuptools-git/setuptools-git-1.2-r3.ebuild | 34 ++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/dev-python/setuptools-git/metadata.xml b/dev-python/setuptools-git/metadata.xml index 2498c20dc742..c3272923f931 100644 --- a/dev-python/setuptools-git/metadata.xml +++ b/dev-python/setuptools-git/metadata.xml @@ -12,6 +12,6 @@ setuptools-git - wichert/setuptools-git + msabramo/setuptools-git diff --git a/dev-python/setuptools-git/setuptools-git-1.2-r3.ebuild b/dev-python/setuptools-git/setuptools-git-1.2-r3.ebuild new file mode 100644 index 000000000000..94d1776c9317 --- /dev/null +++ b/dev-python/setuptools-git/setuptools-git-1.2-r3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..10} pypy3 ) + +inherit distutils-r1 + +DESCRIPTION="Setuptools revision control system plugin for Git" +HOMEPAGE=" + https://github.com/msabramo/setuptools-git/ + https://pypi.org/project/setuptools-git/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos" + +RDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + dev-vcs/git +" +BDEPEND=${RDEPEND} + +distutils_enable_tests unittest + +src_test() { + git config --global user.name "test user" || die + git config --global user.email "test@email.com" || die + distutils-r1_src_test +}