Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/statistics/
Date: Tue, 01 Dec 2015 12:13:08
Message-Id: 1448971978.78b2e9b4c74ed07faba579401c1eda517133f20f.jlec@gentoo
1 commit: 78b2e9b4c74ed07faba579401c1eda517133f20f
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 1 12:11:12 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 1 12:12:58 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78b2e9b4
7
8 dev-python/statistics: New package, ebuild written by me
9
10 Package-Manager: portage-2.2.25
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/statistics/Manifest | 1 +
14 dev-python/statistics/metadata.xml | 12 ++++++++++++
15 dev-python/statistics/statistics-1.0.3.5.ebuild | 22 ++++++++++++++++++++++
16 3 files changed, 35 insertions(+)
17
18 diff --git a/dev-python/statistics/Manifest b/dev-python/statistics/Manifest
19 new file mode 100644
20 index 0000000..63aa707
21 --- /dev/null
22 +++ b/dev-python/statistics/Manifest
23 @@ -0,0 +1 @@
24 +DIST statistics-1.0.3.5.tar.gz 8303 SHA256 2dc379b80b07bf2ddd5488cad06b2b9531da4dd31edb04dc9ec0dc226486c138 SHA512 1d7fd2304a885dbd9ebc564323349f9c5ad1ea1ecea8182b52a1f42308963bd49f07c9dc9f0b87a35d2f6ed3c37429dbc38183c0b1bd65a527558e4504a9a3a0 WHIRLPOOL ce4b7309119da0eaa2a01678ce2b7e048fc895b82d31ec12e4b28371fa6c5e928537433d05afddc10a9f01434ba5be072bb52bd70fe7f724f12c55c25d85f852
25
26 diff --git a/dev-python/statistics/metadata.xml b/dev-python/statistics/metadata.xml
27 new file mode 100644
28 index 0000000..48b92cd
29 --- /dev/null
30 +++ b/dev-python/statistics/metadata.xml
31 @@ -0,0 +1,12 @@
32 +<?xml version="1.0" encoding="UTF-8"?>
33 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
34 +<pkgmetadata>
35 + <herd>python</herd>
36 + <upstream>
37 + <remote-id type="pypi">statistics</remote-id>
38 + <maintainer status="unknown">
39 + <email>stefano@××××××××××××××.com</email>
40 + <name>Stefano Crosta</name>
41 + </maintainer>
42 + </upstream>
43 +</pkgmetadata>
44
45 diff --git a/dev-python/statistics/statistics-1.0.3.5.ebuild b/dev-python/statistics/statistics-1.0.3.5.ebuild
46 new file mode 100644
47 index 0000000..a9d836c
48 --- /dev/null
49 +++ b/dev-python/statistics/statistics-1.0.3.5.ebuild
50 @@ -0,0 +1,22 @@
51 +# Copyright 1999-2015 Gentoo Foundation
52 +# Distributed under the terms of the GNU General Public License v2
53 +# $Id$
54 +
55 +EAPI=5
56 +
57 +PYTHON_COMPAT=( python2_7 python3_3 pypy pypy3 )
58 +
59 +inherit distutils-r1
60 +
61 +DESCRIPTION="A Python 2.* port of 3.4 Statistics Module"
62 +HOMEPAGE="https://github.com/digitalemagine/py-statistics http://pypi.python.org/pypi/statistics"
63 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
64 +
65 +LICENSE="Apache-2.0"
66 +SLOT="0"
67 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
68 +IUSE=""
69 +
70 +RDEPEND=""
71 +DEPEND="${REDEPEND}
72 + dev-python/setuptools[${PYTHON_USEDEP}]"