From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1414962-garchives=archives.gentoo.org@lists.gentoo.org> 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 29077158093 for <garchives@archives.gentoo.org>; Sun, 3 Jul 2022 13:11:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5D9B4E0B66; Sun, 3 Jul 2022 13:11:11 +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 42847E0B66 for <gentoo-commits@lists.gentoo.org>; Sun, 3 Jul 2022 13:11:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DC1F6341E97 for <gentoo-commits@lists.gentoo.org>; Sun, 3 Jul 2022 13:11:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 44976522 for <gentoo-commits@lists.gentoo.org>; Sun, 3 Jul 2022 13:11:08 +0000 (UTC) From: "Sebastian Pipping" <sping@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" <sping@gentoo.org> Message-ID: <1656853829.3ef8df3cd9a2aa93d9ea20a2fab6630a067a1e6c.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/svneverever/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/svneverever/svneverever-1.7.1-r2.ebuild X-VCS-Directories: dev-vcs/svneverever/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 3ef8df3cd9a2aa93d9ea20a2fab6630a067a1e6c X-VCS-Branch: master Date: Sun, 3 Jul 2022 13:11:08 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 7119ade2-3abb-4f2f-9f8c-fb5452ca8311 X-Archives-Hash: c9cdff48c8fc4958cd089bc29e82e6aa commit: 3ef8df3cd9a2aa93d9ea20a2fab6630a067a1e6c Author: Sebastian Pipping <sping <AT> gentoo <DOT> org> AuthorDate: Sun Jul 3 13:09:07 2022 +0000 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org> CommitDate: Sun Jul 3 13:10:29 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ef8df3c dev-vcs/svneverever: Python 3.10 + EAPI 8 Closes: https://bugs.gentoo.org/853274 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org> Package-Manager: Portage-3.0.30, Repoman-3.0.3 dev-vcs/svneverever/svneverever-1.7.1-r2.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-vcs/svneverever/svneverever-1.7.1-r2.ebuild b/dev-vcs/svneverever/svneverever-1.7.1-r2.ebuild new file mode 100644 index 000000000000..8c1a552c2d41 --- /dev/null +++ b/dev-vcs/svneverever/svneverever-1.7.1-r2.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Tool collecting path entries across SVN history" +HOMEPAGE="https://github.com/hartwork/svneverever" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="dev-python/pysvn[${PYTHON_USEDEP}]"