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 9141B1382C5 for ; Sat, 12 Dec 2020 15:49:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44E9FE09E4; Sat, 12 Dec 2020 15:49:35 +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 2DC80E09E4 for ; Sat, 12 Dec 2020 15:49:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 E45FF340F32 for ; Sat, 12 Dec 2020 15:49:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68F87489 for ; Sat, 12 Dec 2020 15:49:32 +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: <1607700017.dd77d340c5c0f8ae9af9ae5b63df13855f091499.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/glicko2-9999.ebuild X-VCS-Directories: dev-python/glicko2/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: dd77d340c5c0f8ae9af9ae5b63df13855f091499 X-VCS-Branch: master Date: Sat, 12 Dec 2020 15:49:32 +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: 076e7db5-6d10-47d5-9279-442a061a0127 X-Archives-Hash: cd2b212fd770ed59015fac6193df9713 commit: dd77d340c5c0f8ae9af9ae5b63df13855f091499 Author: Alessandro Barbieri gmail com> AuthorDate: Fri Dec 11 00:37:40 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Fri Dec 11 15:20:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dd77d340 dev-python/glicko2: remove live ebuild Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Alessandro Barbieri gmail.com> dev-python/glicko2/glicko2-9999.ebuild | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/dev-python/glicko2/glicko2-9999.ebuild b/dev-python/glicko2/glicko2-9999.ebuild deleted file mode 100644 index 58cfa80b..00000000 --- a/dev-python/glicko2/glicko2-9999.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" -PYTHON_COMPAT=( python3_7 pypy3) - -inherit distutils-r1 - -case "${PV}" in -9999) - SRC_URI="" - EGIT_REPO_URI="https://github.com/sublee/glicko2.git" - inherit git-r3 - ;; -esac - -DESCRIPTION="An implementation of the Glicko-2 rating system for Python" -HOMEPAGE="https://github.com/sublee/glicko2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" - -distutils_enable_tests setup.py - -src_prepare() { - sed -i -e "s/distribute/setuptools/g" setup.py - eapply_user -}