From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3AA72138331 for ; Tue, 23 Aug 2016 20:14:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6135A21C082; Tue, 23 Aug 2016 20:14:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DCD5521C03C for ; Tue, 23 Aug 2016 20:14:27 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BAC5C33BEE9 for ; Tue, 23 Aug 2016 20:14:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B0EEC2455 for ; Tue, 23 Aug 2016 20:14:23 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1471983257.e5e1f3ef68195823b58e320b288534117d7d0196.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/textx/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/textx/Manifest dev-python/textx/metadata.xml dev-python/textx/textx-1.4.ebuild X-VCS-Directories: dev-python/textx/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: e5e1f3ef68195823b58e320b288534117d7d0196 X-VCS-Branch: master Date: Tue, 23 Aug 2016 20:14:23 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 42736165-f72a-417e-8efc-f0c71efe5edd X-Archives-Hash: c55ae0244431fe6170ff4a3a1f5d4fef commit: e5e1f3ef68195823b58e320b288534117d7d0196 Author: Zac Medico gentoo org> AuthorDate: Tue Aug 23 20:10:06 2016 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Aug 23 20:14:17 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5e1f3ef dev-python/textx: add package Package-Manager: portage-2.3.0 dev-python/textx/Manifest | 1 + dev-python/textx/metadata.xml | 11 +++++++++++ dev-python/textx/textx-1.4.ebuild | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 46 insertions(+) diff --git a/dev-python/textx/Manifest b/dev-python/textx/Manifest new file mode 100644 index 00000000..56875a1 --- /dev/null +++ b/dev-python/textx/Manifest @@ -0,0 +1 @@ +DIST textX-1.4.tar.gz 21967 SHA256 6112b73b2c4713630824f7c57f14b3919a2c1e32a8246c37b009378b6079665c SHA512 7783f4dd1358d8e0df126f1be893c58e32f57015fd577bd20d00a17b63111d6e48222c9b78420a307fcd0833f6d9ac3a1398d55986681251f7c378cdcd68c8a4 WHIRLPOOL 8ef80f60e3a56322502912660e5296ad151b22692224c8cf04c83e2dc4e8700e78f0dae1d3f9db063f1e24e208a17d8c474a15ac57570221f9d9dedea29b9538 diff --git a/dev-python/textx/metadata.xml b/dev-python/textx/metadata.xml new file mode 100644 index 00000000..0de01bf --- /dev/null +++ b/dev-python/textx/metadata.xml @@ -0,0 +1,11 @@ + + + + + zmedico@gentoo.org + + + textX + igordejanovic/textX + + diff --git a/dev-python/textx/textx-1.4.ebuild b/dev-python/textx/textx-1.4.ebuild new file mode 100644 index 00000000..ccd24ed --- /dev/null +++ b/dev-python/textx/textx-1.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) + +inherit distutils-r1 + +MY_PN=textX +MY_P=${MY_PN}-${PV} +DESCRIPTION="Meta-language for DSL implementation inspired by Xtext" +HOMEPAGE="https://pypi.python.org/pypi/${MY_PN} https://github.com/igordejanovic/${MY_PN}" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +# pypi tarball omits tests +RESTRICT="test" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/arpeggio[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest[${PYTHON_USEDEP}] + ) +" +S=${WORKDIR}/${MY_P} + +python_test() { + py.test -v tests/functional || die "tests failed" +}