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 37C2B138354 for ; Mon, 4 May 2020 08:54:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DEEAE09B0; Mon, 4 May 2020 08:54:12 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 A5CE8E09B7 for ; Mon, 4 May 2020 08:54:11 +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 5898034F561 for ; Mon, 4 May 2020 08:54:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DA418211 for ; Mon, 4 May 2020 08:54:08 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1588533011.8541788e878d1b02a64296b448dac39f4d0f7d66.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pure-protobuf/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-python/pure-protobuf/pure-protobuf-2.0.0-r1.ebuild X-VCS-Directories: dev-python/pure-protobuf/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 8541788e878d1b02a64296b448dac39f4d0f7d66 X-VCS-Branch: master Date: Mon, 4 May 2020 08:54:08 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 3ce22f4b-be6f-4463-b09c-6aeee5ddc4f6 X-Archives-Hash: 98f63ced5779310277207b65e52fd924 commit: 8541788e878d1b02a64296b448dac39f4d0f7d66 Author: Maciej Barć protonmail com> AuthorDate: Sun May 3 19:10:00 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Sun May 3 19:10:11 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8541788e dev-python/pure-protobuf: version 2.0.0 revision bump Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Maciej Barć protonmail.com> .../pure-protobuf/pure-protobuf-2.0.0-r1.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/dev-python/pure-protobuf/pure-protobuf-2.0.0-r1.ebuild b/dev-python/pure-protobuf/pure-protobuf-2.0.0-r1.ebuild new file mode 100644 index 0000000..e240faf --- /dev/null +++ b/dev-python/pure-protobuf/pure-protobuf-2.0.0-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_7 ) + +inherit distutils-r1 + +DESCRIPTION="A more Pythonic version of doxypy, a Doxygen filter for Python" +HOMEPAGE=" + https://github.com/eigenein/protobuf + https://pypi.org/project/pure-protobuf/ +" +SRC_URI="https://github.com/eigenein/protobuf/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +S="${WORKDIR}/protobuf-${PV}" + +distutils_enable_tests pytest + +python_install() { + # Package installs 'tests' package which is forbidden and likely a bug in the build system. + rm -r tests || die + + # Previously it did not actually install any python libs + python_foreach_impl esetup.py install + python_foreach_impl python_optimize +}