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 8B5E11382C5 for ; Sun, 20 Dec 2020 08:26:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 82858E0934; Sun, 20 Dec 2020 08:26:05 +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 6C01EE0934 for ; Sun, 20 Dec 2020 08:26:05 +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 503793410B0 for ; Sun, 20 Dec 2020 08:26:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD4E139F for ; Sun, 20 Dec 2020 08:26:01 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1608427522.d8160765cee6f23818975ffd3eb15bad953aa26c.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/glicko2/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/glicko2/Manifest dev-python/glicko2/glicko2-2.0.0.ebuild dev-python/glicko2/metadata.xml X-VCS-Directories: dev-python/glicko2/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: d8160765cee6f23818975ffd3eb15bad953aa26c X-VCS-Branch: master Date: Sun, 20 Dec 2020 08:26:01 +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: e9d83e40-229a-47e3-8491-e81dc1cbc6a7 X-Archives-Hash: 51d7c2804bc6526ad1f19ed8ca4e5fea commit: d8160765cee6f23818975ffd3eb15bad953aa26c Author: Alessandro Barbieri gmail com> AuthorDate: Sun Dec 20 01:06:05 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun Dec 20 01:25:22 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d8160765 dev-python/glicko2: "new" package Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/glicko2/Manifest | 1 + dev-python/glicko2/glicko2-2.0.0.ebuild | 24 ++++++++++++++++++++++++ dev-python/glicko2/metadata.xml | 12 ++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/glicko2/Manifest b/dev-python/glicko2/Manifest new file mode 100644 index 00000000..660ac924 --- /dev/null +++ b/dev-python/glicko2/Manifest @@ -0,0 +1 @@ +DIST glicko2-2.0.0.tar.gz 3612 BLAKE2B 4bb4becac2c619b4d54dbf872535002d6318e9d75cbe969f676d9a47dd83a5914e5fd8750fadfa07fb32e7b86b0ed316ff000b98403b96a0ca58ef63697c205c SHA512 f010653445ace4487d31ddec451927ce42a2728f14d57760bcc14d1279e3c5345e73bfe7552937102172a5f171c14a1c4debb10aee1e53d9c697cea66761c8f2 diff --git a/dev-python/glicko2/glicko2-2.0.0.ebuild b/dev-python/glicko2/glicko2-2.0.0.ebuild new file mode 100644 index 00000000..762aadfc --- /dev/null +++ b/dev-python/glicko2/glicko2-2.0.0.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=( python3_{7,8,9} pypy3) + +inherit distutils-r1 + +DESCRIPTION="glicko2 implementation in python" +HOMEPAGE="https://github.com/deepy/glicko2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +distutils_enable_tests setup.py + +src_prepare() { + sed -i -e "s/distribute/setuptools/g" \ + -e 's/setuptools.find_packages()/setuptools.find_packages(exclude=["*test*"])/g' \ + setup.py + default +} diff --git a/dev-python/glicko2/metadata.xml b/dev-python/glicko2/metadata.xml new file mode 100644 index 00000000..394abee8 --- /dev/null +++ b/dev-python/glicko2/metadata.xml @@ -0,0 +1,12 @@ + + + + + + This is my fork of lmeyerov's update to Ryan Kirkman's pyglicko2 + + + deepy/glicko2 + glicko2 + +