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 1C151138334 for ; Tue, 31 Jul 2018 22:53:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99362E07EA; Tue, 31 Jul 2018 22:53:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 542C7E07EA for ; Tue, 31 Jul 2018 22:53:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A17DD335C99 for ; Tue, 31 Jul 2018 22:53:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B21C379 for ; Tue, 31 Jul 2018 22:53:44 +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: <1533077573.ad00fcb37f0e851f85cfd0fba73b36fd3a6169c3.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-cstruct/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-cstruct/Manifest dev-python/python-cstruct/metadata.xml dev-python/python-cstruct/python-cstruct-1.7.ebuild X-VCS-Directories: dev-python/python-cstruct/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: ad00fcb37f0e851f85cfd0fba73b36fd3a6169c3 X-VCS-Branch: master Date: Tue, 31 Jul 2018 22:53:44 +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: 3cc6e07c-631b-4462-bbd8-aea81c545f2f X-Archives-Hash: 07e27e5df6b150e051677ff0c3abe8bf commit: ad00fcb37f0e851f85cfd0fba73b36fd3a6169c3 Author: Zac Medico gentoo org> AuthorDate: Tue Jul 31 22:46:59 2018 +0000 Commit: Zac Medico gentoo org> CommitDate: Tue Jul 31 22:52:53 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad00fcb3 dev-python/python-cstruct: new package Package-Manager: Portage-2.3.44, Repoman-2.3.10 dev-python/python-cstruct/Manifest | 1 + dev-python/python-cstruct/metadata.xml | 11 ++++++++++ .../python-cstruct/python-cstruct-1.7.ebuild | 25 ++++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/dev-python/python-cstruct/Manifest b/dev-python/python-cstruct/Manifest new file mode 100644 index 00000000000..55d7d96d000 --- /dev/null +++ b/dev-python/python-cstruct/Manifest @@ -0,0 +1 @@ +DIST cstruct-1.7.tar.gz 8768 BLAKE2B 9b66c1cadb5c32965fe29de4e1f3bf2a3f00695d3c6ced4cf28dc85d8580b7fbad626633f9672e25521e5e2fde93049a953c6fe089fb154aa51c82f080427121 SHA512 c3a612ec4c5778801a9d506a49b8817b56fb99e1788c4894ce753178aa4472cedff3b842fe1f40a925e76efbf737166384c279ed0f697655d6ea8d5f1581973a diff --git a/dev-python/python-cstruct/metadata.xml b/dev-python/python-cstruct/metadata.xml new file mode 100644 index 00000000000..7570280ec6e --- /dev/null +++ b/dev-python/python-cstruct/metadata.xml @@ -0,0 +1,11 @@ + + + + + zmedico@gentoo.org + + + andreax79/python-cstruct + cstruct + + diff --git a/dev-python/python-cstruct/python-cstruct-1.7.ebuild b/dev-python/python-cstruct/python-cstruct-1.7.ebuild new file mode 100644 index 00000000000..942424ff8aa --- /dev/null +++ b/dev-python/python-cstruct/python-cstruct-1.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5,6,7} ) + +inherit distutils-r1 + +MY_PN=${PN#python-} +MY_P=${MY_PN}-${PV} +DESCRIPTION="C-style structs for Python" +HOMEPAGE="https://github.com/andreax79/python-cstruct https://pypi.org/project/cstruct/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +S=${WORKDIR}/${MY_P} + +DOCS=( README.md ) + +python_test() { + esetup.py test || die "tests failed under ${EPYTHON}" +}