Gentoo Archives: gentoo-commits

From: Jason Zaman <perfinion@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/gast/
Date: Fri, 21 Sep 2018 17:51:36
Message-Id: 1537552207.65e215bd498f85a5f5f07618bfdac3712bc9f20a.perfinion@gentoo
1 commit: 65e215bd498f85a5f5f07618bfdac3712bc9f20a
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 21 16:46:35 2018 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 21 17:50:07 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65e215bd
7
8 dev-python/gast: new package
9
10 Package-Manager: Portage-2.3.49, Repoman-2.3.10
11
12 dev-python/gast/Manifest | 1 +
13 dev-python/gast/gast-0.2.0.ebuild | 18 ++++++++++++++++++
14 dev-python/gast/metadata.xml | 11 +++++++++++
15 3 files changed, 30 insertions(+)
16
17 diff --git a/dev-python/gast/Manifest b/dev-python/gast/Manifest
18 new file mode 100644
19 index 00000000000..1ed2ae93063
20 --- /dev/null
21 +++ b/dev-python/gast/Manifest
22 @@ -0,0 +1 @@
23 +DIST gast-0.2.0.tar.gz 9400 BLAKE2B 1392b9ef3a007d89b6b7af5ca49f3dcaa0689e166845ea25c2e544578f65915114d763b54503825dc2b6958a71ac284ec7ae2cc2cfa861494da28df786d679b4 SHA512 651719c3035d21e02e39cd83fd54212a12c39addf69f7c9e8810ccb7bb9aae7828e176ad0adf55182f0628f18d76cb1e286e498a9665ddb12e91a51dc2303381
24
25 diff --git a/dev-python/gast/gast-0.2.0.ebuild b/dev-python/gast/gast-0.2.0.ebuild
26 new file mode 100644
27 index 00000000000..9965a03d1bf
28 --- /dev/null
29 +++ b/dev-python/gast/gast-0.2.0.ebuild
30 @@ -0,0 +1,18 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python2_7 python3_6 )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST)"
40 +HOMEPAGE="https://pypi.org/project/gast/"
41 +SRC_URI="https://pypi.io/packages/source/g/gast/gast-0.2.0.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
49
50 diff --git a/dev-python/gast/metadata.xml b/dev-python/gast/metadata.xml
51 new file mode 100644
52 index 00000000000..ca8e3611427
53 --- /dev/null
54 +++ b/dev-python/gast/metadata.xml
55 @@ -0,0 +1,11 @@
56 +<?xml version="1.0" encoding="UTF-8"?>
57 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
58 +<pkgmetadata>
59 + <maintainer type="person">
60 + <email>perfinion@g.o</email>
61 + </maintainer>
62 + <longdescription lang="en">
63 + A generic AST to represent Python2 and Python3's Abstract Syntax Tree(AST).
64 + GAST provides a compatibility layer between the AST of various Python versions, as produced by ast.parse from the standard ast module.
65 + </longdescription>
66 +</pkgmetadata>