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: Mon, 18 Feb 2019 13:55:01
Message-Id: 1550494323.9cd919f3002ba3d335805216ef86c531eeda3149.perfinion@gentoo
1 commit: 9cd919f3002ba3d335805216ef86c531eeda3149
2 Author: Jason Zaman <perfinion <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 17 16:10:46 2019 +0000
4 Commit: Jason Zaman <perfinion <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 18 12:52:03 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd919f3
7
8 dev-python/gast: bump 0.2.2
9
10 Signed-off-by: Jason Zaman <perfinion <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-python/gast/Manifest | 1 +
14 dev-python/gast/gast-0.2.2.ebuild | 18 ++++++++++++++++++
15 2 files changed, 19 insertions(+)
16
17 diff --git a/dev-python/gast/Manifest b/dev-python/gast/Manifest
18 index 1ed2ae93063..bac8daa8b12 100644
19 --- a/dev-python/gast/Manifest
20 +++ b/dev-python/gast/Manifest
21 @@ -1 +1,2 @@
22 DIST gast-0.2.0.tar.gz 9400 BLAKE2B 1392b9ef3a007d89b6b7af5ca49f3dcaa0689e166845ea25c2e544578f65915114d763b54503825dc2b6958a71ac284ec7ae2cc2cfa861494da28df786d679b4 SHA512 651719c3035d21e02e39cd83fd54212a12c39addf69f7c9e8810ccb7bb9aae7828e176ad0adf55182f0628f18d76cb1e286e498a9665ddb12e91a51dc2303381
23 +DIST gast-0.2.2.tar.gz 10294 BLAKE2B ad81309b1dd938a07f0cd39c21d4f89af6d902c136b8fe12afc5b26827c778f12561e06c66648a5b672b1c9d9eb79b3dfde7cad0acf8c7099451841b67c0daf4 SHA512 0be9b2b66b7815153e6f294b4db6b028c321d8a94d97c89d89b026df73e0c95dc2ee8af5c10f2eee51cbfb94af4b5a0da8a682896861870b98dec4c6c59a5dd3
24
25 diff --git a/dev-python/gast/gast-0.2.2.ebuild b/dev-python/gast/gast-0.2.2.ebuild
26 new file mode 100644
27 index 00000000000..ee257e64286
28 --- /dev/null
29 +++ b/dev-python/gast/gast-0.2.2.ebuild
30 @@ -0,0 +1,18 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python2_7 python{3_5,3_6,3_7} )
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="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE=""
47 +
48 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"