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 E8E2E138334 for ; Sun, 4 Aug 2019 13:44:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA531E0883; Sun, 4 Aug 2019 13:44:26 +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 BABA0E0883 for ; Sun, 4 Aug 2019 13:44:26 +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 AD60434987A for ; Sun, 4 Aug 2019 13:44:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2D6174B for ; Sun, 4 Aug 2019 13:44:23 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1564925639.0e6e6488980fadcd9dd72f0120d6551fcd81d132.alexxy@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rencode/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rencode/rencode-1.0.5-r1.ebuild X-VCS-Directories: dev-python/rencode/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 0e6e6488980fadcd9dd72f0120d6551fcd81d132 X-VCS-Branch: master Date: Sun, 4 Aug 2019 13:44: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: dc3f1b06-c861-48f5-aafd-7f9ba4cc5498 X-Archives-Hash: 2ca4fe3f6136e06d6ae225898195ab41 commit: 0e6e6488980fadcd9dd72f0120d6551fcd81d132 Author: Alexey Shvetsov gentoo org> AuthorDate: Sun Aug 4 13:33:59 2019 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Sun Aug 4 13:33:59 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e6e6488 dev-python/rencode: Works with py3.7 Package-Manager: Portage-2.3.70, Repoman-2.3.16 Signed-off-by: Alexey Shvetsov gentoo.org> dev-python/rencode/rencode-1.0.5-r1.ebuild | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/dev-python/rencode/rencode-1.0.5-r1.ebuild b/dev-python/rencode/rencode-1.0.5-r1.ebuild new file mode 100644 index 00000000000..eb75b5ce5c8 --- /dev/null +++ b/dev-python/rencode/rencode-1.0.5-r1.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) +inherit distutils-r1 + +DESCRIPTION="similar to bencode from the BitTorrent project" +HOMEPAGE="https://github.com/aresch/rencode" +SRC_URI="https://github.com/aresch/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="" +DEPEND="dev-python/cython[${PYTHON_USEDEP}]"