1
0
Fork 0

Merge branch 'master' of github.com:TheChymera/overlay

This commit is contained in:
Horea Christian 2019-12-23 17:20:27 +01:00
commit f44d2a484f
5 changed files with 72 additions and 0 deletions

View File

@ -0,0 +1,4 @@
*trimesh-3.3.5 (04 Nov 2019)
04 Nov 2019; <chymera@gentoo.org> +metadata.xml, +trimesh-3.3.5.ebuild:
dev-python/trimesh: version bump ahead of Genoo Science

View File

@ -0,0 +1 @@
DIST pyvote-0.1.tar.gz 17689 SHA256 5c8f104866e2bfe47047524cbb2b6b773c0aeaee11f13800257112b93220028c SHA512 be6a0b5aa71ef4e151a5d95411c8614d956217d71ab53d3b0ff3f1a209c7980efa87545ab234465b6411daa1d9b63722670500323aff55e27240cc1d5ce8aa88 WHIRLPOOL 3c3be95e37b69a7df5a4a25dbb50ab7f4f91127af097e5f8435514495b22dad4db678a60c6ca3ffa2ede99b2de3d3c78979ae95382a65dd09e071201683d2d4c

View File

@ -0,0 +1,19 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>horea.christ@gmail.com</email>
<name>Horea Christian</name>
</maintainer>
<maintainer type="project">
<email>sci@gentoo.org</email>
<name>Gentoo Science Project</name>
</maintainer>
<longdescription lang="en">
This package provides a Python module and a Bash interface which can
compute the probability of a 2-choice popular election being decided by
one vote. Predictions are based on either a series of forecasts, a beta
(or normal) probability density function for outcomes, or a fixed
outcome probability.
</longdescription>
</pkgmetadata>

View File

@ -0,0 +1,24 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6} )
inherit distutils-r1
DESCRIPTION="Estimate the probability of votes changing election outcomes"
HOMEPAGE="https://github.com/TheChymera/pyvote.git"
SRC_URI="https://github.com/TheChymera/pyvote/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
DEPEND=""
RDEPEND="
dev-python/argh[${PYTHON_USEDEP}]
dev-python/mpmath[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
"

View File

@ -0,0 +1,24 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 python3_{5,6} )
inherit distutils-r1 git-r3
DESCRIPTION="Estimate the probability of votes changing election outcomes"
HOMEPAGE="https://github.com/TheChymera/pyvote.git"
EGIT_REPO_URI="https://github.com/TheChymera/pyvote.git"
LICENSE="MIT"
SLOT="0"
KEYWORDS=""
IUSE="test"
DEPEND=""
RDEPEND="
dev-python/argh[${PYTHON_USEDEP}]
dev-python/mpmath[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
"