diff options
author | Jason Zaman <perfinion@gentoo.org> | 2018-09-22 00:46:35 +0800 |
---|---|---|
committer | Jason Zaman <perfinion@gentoo.org> | 2018-09-22 01:50:07 +0800 |
commit | 65e215bd498f85a5f5f07618bfdac3712bc9f20a (patch) | |
tree | 78da53dee6f3b7fe2c9016ccedfe5821ba38029a /dev-python/gast | |
parent | profiles: powerpc: Re-add media-video/vlc[libav] p.use.stable.mask (diff) | |
download | gentoo-65e215bd498f85a5f5f07618bfdac3712bc9f20a.tar.gz gentoo-65e215bd498f85a5f5f07618bfdac3712bc9f20a.tar.bz2 gentoo-65e215bd498f85a5f5f07618bfdac3712bc9f20a.zip |
dev-python/gast: new package
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Diffstat (limited to 'dev-python/gast')
-rw-r--r-- | dev-python/gast/Manifest | 1 | ||||
-rw-r--r-- | dev-python/gast/gast-0.2.0.ebuild | 18 | ||||
-rw-r--r-- | dev-python/gast/metadata.xml | 11 |
3 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/gast/Manifest b/dev-python/gast/Manifest new file mode 100644 index 000000000000..1ed2ae930637 --- /dev/null +++ b/dev-python/gast/Manifest @@ -0,0 +1 @@ +DIST gast-0.2.0.tar.gz 9400 BLAKE2B 1392b9ef3a007d89b6b7af5ca49f3dcaa0689e166845ea25c2e544578f65915114d763b54503825dc2b6958a71ac284ec7ae2cc2cfa861494da28df786d679b4 SHA512 651719c3035d21e02e39cd83fd54212a12c39addf69f7c9e8810ccb7bb9aae7828e176ad0adf55182f0628f18d76cb1e286e498a9665ddb12e91a51dc2303381 diff --git a/dev-python/gast/gast-0.2.0.ebuild b/dev-python/gast/gast-0.2.0.ebuild new file mode 100644 index 000000000000..9965a03d1bf9 --- /dev/null +++ b/dev-python/gast/gast-0.2.0.ebuild @@ -0,0 +1,18 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_6 ) +inherit distutils-r1 + +DESCRIPTION="A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST)" +HOMEPAGE="https://pypi.org/project/gast/" +SRC_URI="https://pypi.io/packages/source/g/gast/gast-0.2.0.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" diff --git a/dev-python/gast/metadata.xml b/dev-python/gast/metadata.xml new file mode 100644 index 000000000000..ca8e3611427a --- /dev/null +++ b/dev-python/gast/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>perfinion@gentoo.org</email> + </maintainer> + <longdescription lang="en"> + A generic AST to represent Python2 and Python3's Abstract Syntax Tree(AST). + GAST provides a compatibility layer between the AST of various Python versions, as produced by ast.parse from the standard ast module. + </longdescription> +</pkgmetadata> |