Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/thriftpy/
Date: Wed, 28 Jun 2017 04:03:02
Message-Id: 1498622414.b2b55cac12516c971e819d1d9087361de51d41c7.bicatali@gentoo
1 commit: b2b55cac12516c971e819d1d9087361de51d41c7
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 27 20:49:12 2017 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 28 04:00:14 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b55cac
7
8 dev-python/thriftpy: initial import
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-python/thriftpy/Manifest | 1 +
13 dev-python/thriftpy/metadata.xml | 19 +++++++++++++++++++
14 dev-python/thriftpy/thriftpy-0.3.9.ebuild | 28 ++++++++++++++++++++++++++++
15 3 files changed, 48 insertions(+)
16
17 diff --git a/dev-python/thriftpy/Manifest b/dev-python/thriftpy/Manifest
18 new file mode 100644
19 index 00000000000..1d436488486
20 --- /dev/null
21 +++ b/dev-python/thriftpy/Manifest
22 @@ -0,0 +1 @@
23 +DIST thriftpy-0.3.9.tar.gz 208164 SHA256 309e57d97b5bfa01601393ad4f245451e989d6206a59279e56866b264a99796d SHA512 ad2b7f568db47f7f26235fc5fb6180c974eb6738f154461860c7329d263252ee627b979098c3e9ffe8ed42a0fb08a9110a6842a923ac800166d80a23d4e6a3cb WHIRLPOOL d371078349d345f01537ffc63eb924507921819d6e9c1577d0b522067cb1b36a8feae2211860c51c17b5e5fcf5c37f0c65c46b8d71687a114fb7c31667feb809
24
25 diff --git a/dev-python/thriftpy/metadata.xml b/dev-python/thriftpy/metadata.xml
26 new file mode 100644
27 index 00000000000..33592bf9bb0
28 --- /dev/null
29 +++ b/dev-python/thriftpy/metadata.xml
30 @@ -0,0 +1,19 @@
31 +<?xml version="1.0" encoding="UTF-8"?>
32 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
33 +<pkgmetadata>
34 + <maintainer type="project">
35 + <email>sci@g.o</email>
36 + <name>Gentoo Science Project</name>
37 + </maintainer>
38 + <longdescription lang="en">
39 + Thrift is a software framework for the development of reliable and
40 + performant communication and data serialization. It combines a software
41 + stack with a code generation to build services that operate seamlessly
42 + across a number of different development languages.
43 + This is a pure Python implementation of Apache Thrift.
44 + </longdescription>
45 + <upstream>
46 + <remote-id type="pypi">thriftpy</remote-id>
47 + <remote-id type="github">eleme/thriftpy</remote-id>
48 + </upstream>
49 +</pkgmetadata>
50
51 diff --git a/dev-python/thriftpy/thriftpy-0.3.9.ebuild b/dev-python/thriftpy/thriftpy-0.3.9.ebuild
52 new file mode 100644
53 index 00000000000..d0d687f397c
54 --- /dev/null
55 +++ b/dev-python/thriftpy/thriftpy-0.3.9.ebuild
56 @@ -0,0 +1,28 @@
57 +# Copyright 1999-2017 Gentoo Foundation
58 +# Distributed under the terms of the GNU General Public License v2
59 +
60 +EAPI=6
61 +
62 +PYTHON_COMPAT=( python{2_7,3_5,3_6} )
63 +
64 +inherit distutils-r1
65 +
66 +DESCRIPTION="Pure python implementation of Apache Thrift"
67 +HOMEPAGE="https://thriftpy.readthedocs.org/"
68 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
69 +
70 +LICENSE="MIT"
71 +SLOT="0"
72 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
73 +IUSE=""
74 +
75 +RDEPEND="
76 + dev-python/flake8[${PYTHON_USEDEP}]
77 + dev-python/ply[${PYTHON_USEDEP}]
78 + dev-python/toro[${PYTHON_USEDEP}]
79 + www-servers/tornado[${PYTHON_USEDEP}]
80 +"
81 +DEPEND="
82 + dev-python/setuptools[${PYTHON_USEDEP}]
83 + >=dev-python/cython-0.23[${PYTHON_USEDEP}]
84 +"