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 D7B2C138330 for ; Fri, 7 Oct 2016 18:11:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E1EBA21C1B3; Fri, 7 Oct 2016 18:11:33 +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 ABFB921C1B3 for ; Fri, 7 Oct 2016 18:11:33 +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 5D84634143E for ; Fri, 7 Oct 2016 18:11:32 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DB6E624AE for ; Fri, 7 Oct 2016 18:11:28 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1475863873.a4d38d745f765d1a71b01a061aeb8a7c495fd9d0.dolsen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/xdis/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/xdis/Manifest dev-python/xdis/metadata.xml dev-python/xdis/xdis-2.3.1.ebuild X-VCS-Directories: dev-python/xdis/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: a4d38d745f765d1a71b01a061aeb8a7c495fd9d0 X-VCS-Branch: master Date: Fri, 7 Oct 2016 18:11:28 +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: bf68f09a-a3df-4671-a3d1-cb8e9bcea069 X-Archives-Hash: bc8ae1c4a0c554589d4036de528ae93a commit: a4d38d745f765d1a71b01a061aeb8a7c495fd9d0 Author: Brian Dolbec gentoo org> AuthorDate: Wed Oct 5 23:34:35 2016 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Fri Oct 7 18:11:13 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4d38d74 dev-python/xdis: New package, dep of dev-python/uncompyle6 Package-Manager: portage-2.3.1_p8 dev-python/xdis/Manifest | 1 + dev-python/xdis/metadata.xml | 25 ++++++++++++++++++++++++ dev-python/xdis/xdis-2.3.1.ebuild | 41 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) diff --git a/dev-python/xdis/Manifest b/dev-python/xdis/Manifest new file mode 100644 index 00000000..26bdabf --- /dev/null +++ b/dev-python/xdis/Manifest @@ -0,0 +1 @@ +DIST xdis-2.3.1.tar.gz 69207 SHA256 9b28426a5b476b6740b83063604de7ef4af8b721a5da5894145fbae8921d25ae SHA512 5015914a13296d04e71050c2e916fd5770bfe8bba1f92bf3c64bca06365ea7547cbb216d7cfca19fdcef60af3943fa4ba4e7c27895b1da9c6240daf990051927 WHIRLPOOL c30ae717289c73069efbdb70cdd6388bb009e945c967de53b159aa2f8a606cdca8e28b265b4da56b7f77ab01b8a415b8d8d8b7e1b972370121ab86b18d8921e7 diff --git a/dev-python/xdis/metadata.xml b/dev-python/xdis/metadata.xml new file mode 100644 index 00000000..b836acc --- /dev/null +++ b/dev-python/xdis/metadata.xml @@ -0,0 +1,25 @@ + + + + + dol-sen@gentoo.org + Primary maintainer + + + python@gentoo.org + Python + + + + rb@dustyfeet.com + Rocky Bernstein + + spark_parser + + This Python module allows you to disassemble bytecode from + different versions of Python than you are running on. It can marshal + load Python bytecodes from different versions of Python. The + command-line routine pydisasm will show disassembly output using Python + 3.5 disassembly conventions + + diff --git a/dev-python/xdis/xdis-2.3.1.ebuild b/dev-python/xdis/xdis-2.3.1.ebuild new file mode 100644 index 00000000..f97ccb2 --- /dev/null +++ b/dev-python/xdis/xdis-2.3.1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy) + +inherit distutils-r1 + +DESCRIPTION="Python cross-version byte-code disassembler and marshal routines" +HOMEPAGE="https://github.com/rocky/python-xdis/ https://pypi.python.org/pypi/xdis" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND=">=dev-python/six-1.10.0[${PYTHON_USEDEP}]" +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + ) +" + +python_prepare_all() { + # Remove the 3.3 specific code from being run + rm -R "test_unit/3.3" || die + distutils-r1_python_prepare_all +} + +python_test() { + PYTHONPATH="${S}/test:${S}/test_unit:${BUILD_DIR}/lib" \ + py.test -v || die "Tests failed under ${EPYTHON}" + cd test + PYTHONPATH="${S}/test:${BUILD_DIR}/lib" \ + ${EPYTHON} test_pyenvlib.py --verify --simple --compile || die \ + "Tests failed under ${EPYTHON}" +}