* [gentoo-commits] repo/proj/guru:master commit in: dev-python/skills/
@ 2020-05-01 9:59 Andrew Ammerlaan
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2020-05-01 9:59 UTC (permalink / raw
To: gentoo-commits
commit: 287df4760b327c115960e6cee6fa548fcc51e8db
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Thu Apr 30 19:35:02 2020 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 30 22:22:48 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=287df476
dev-python/skills: new package
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/skills/Manifest | 1 +
dev-python/skills/metadata.xml | 27 +++++++++++++++++++++++++++
dev-python/skills/skills-0.3.0.ebuild | 26 ++++++++++++++++++++++++++
3 files changed, 54 insertions(+)
diff --git a/dev-python/skills/Manifest b/dev-python/skills/Manifest
new file mode 100644
index 0000000..9a98022
--- /dev/null
+++ b/dev-python/skills/Manifest
@@ -0,0 +1 @@
+DIST skills-0.3.0.zip 37199 BLAKE2B c27ac509c56ebf1152924c577a0e540a92f658977f5694be3647a658185990611ce30ebf27d755f032eee135a151a2e7228927a9054a502cf528573053789129 SHA512 0f825d0abe1fe9f1733f0be27e62bff97972a43ea09fb6ac4bf64098dfa6bf71c5408a9d0b5cb47fccfd7d539691f31c45787ab82ca408954c9a531553e20989
diff --git a/dev-python/skills/metadata.xml b/dev-python/skills/metadata.xml
new file mode 100644
index 0000000..fc86a46
--- /dev/null
+++ b/dev-python/skills/metadata.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>lssndrbarbieri@gmail.com</email>
+ <name>Alessandro Barbieri</name>
+ </maintainer>
+ <upstream>
+ <bugs-to>https://github.com/McLeopold/PythonSkills/issues</bugs-to>
+ <changelog>https://raw.githubusercontent.com/McLeopold/PythonSkills/master/CHANGES.rst</changelog>
+ <maintainer>
+ <email>mcleopold@gmail.com</email>
+ <name>Scott Hamilton</name>
+ </maintainer>
+ <remote-id type="pypi">skills</remote-id>
+ <remote-id type="github">McLeopold/PythonSkills</remote-id>
+ </upstream>
+ <longdescription lang="en">
+This is a Python port of the Moserware.Skills project that's available at
+
+http://github.com/moserware/Skills
+
+For more details on how the algorithm works, see
+
+http://www.moserware.com/2010/03/computing-your-skill.html
+ </longdescription>
+</pkgmetadata>
diff --git a/dev-python/skills/skills-0.3.0.ebuild b/dev-python/skills/skills-0.3.0.ebuild
new file mode 100644
index 0000000..e555ea0
--- /dev/null
+++ b/dev-python/skills/skills-0.3.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python3_{6,7} pypy3 )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+
+inherit distutils-r1
+
+DESCRIPTION="Python Implementation of the TrueSkill, Glicko and Elo Ranking Algorithms"
+HOMEPAGE="
+ https://github.com/McLeopold/PythonSkills
+ https://pypi.org/project/skills
+"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64"
+
+RDEPEND=""
+DEPEND=""
+BDEPEND="app-arch/unzip"
+
+distutils_enable_tests setup.py
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/skills/
@ 2021-04-13 13:22 Andrew Ammerlaan
0 siblings, 0 replies; 3+ messages in thread
From: Andrew Ammerlaan @ 2021-04-13 13:22 UTC (permalink / raw
To: gentoo-commits
commit: 78a624a260618e82c42c28a670a56973e5c7cb00
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Tue Apr 13 13:03:12 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr 13 13:03:12 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=78a624a2
dev-python/skills: bump python compat
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-python/skills/skills-0.3.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/skills/skills-0.3.0.ebuild b/dev-python/skills/skills-0.3.0.ebuild
index 024bc28ff..8167098e5 100644
--- a/dev-python/skills/skills-0.3.0.ebuild
+++ b/dev-python/skills/skills-0.3.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
-PYTHON_COMPAT=( python3_7 pypy3 )
+PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
DISTUTILS_USE_SETUPTOOLS=bdepend
inherit distutils-r1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: dev-python/skills/
@ 2022-05-30 6:39 Florian Schmaus
0 siblings, 0 replies; 3+ messages in thread
From: Florian Schmaus @ 2022-05-30 6:39 UTC (permalink / raw
To: gentoo-commits
commit: 128c3826d4b1c7ca95f046304675d5100376501a
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun May 29 20:51:34 2022 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Sun May 29 21:04:51 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=128c3826
dev-python/skills: EAPI 8
Closes: https://bugs.gentoo.org/848330
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
dev-python/skills/{skills-0.3.0.ebuild => skills-0.3.0-r1.ebuild} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-python/skills/skills-0.3.0.ebuild b/dev-python/skills/skills-0.3.0-r1.ebuild
similarity index 84%
rename from dev-python/skills/skills-0.3.0.ebuild
rename to dev-python/skills/skills-0.3.0-r1.ebuild
index 233b94994..7fee8077f 100644
--- a/dev-python/skills/skills-0.3.0.ebuild
+++ b/dev-python/skills/skills-0.3.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI="7"
+EAPI=8
-PYTHON_COMPAT=( python3_{8,9} pypy3 )
DISTUTILS_USE_SETUPTOOLS=bdepend
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
inherit distutils-r1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-05-30 6:39 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-05-01 9:59 [gentoo-commits] repo/proj/guru:master commit in: dev-python/skills/ Andrew Ammerlaan
-- strict thread matches above, loose matches on Subject: below --
2021-04-13 13:22 Andrew Ammerlaan
2022-05-30 6:39 Florian Schmaus
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox