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 C2F1B139083 for ; Fri, 15 Dec 2017 09:32:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06FC2E0FE5; Fri, 15 Dec 2017 09:32:40 +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 D8307E0FE5 for ; Fri, 15 Dec 2017 09:32:39 +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 BC8C033BEA7 for ; Fri, 15 Dec 2017 09:32:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F67EAE74 for ; Fri, 15 Dec 2017 09:32:37 +0000 (UTC) From: "Andrey Grozin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Grozin" Message-ID: <1513330342.bbeab3695df5a954b1e84efb4e6cabc793e0c706.grozin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/rpyc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/rpyc/Manifest dev-python/rpyc/rpyc-3.4.4.ebuild X-VCS-Directories: dev-python/rpyc/ X-VCS-Committer: grozin X-VCS-Committer-Name: Andrey Grozin X-VCS-Revision: bbeab3695df5a954b1e84efb4e6cabc793e0c706 X-VCS-Branch: master Date: Fri, 15 Dec 2017 09:32:37 +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: fbe03dfb-d4df-432b-860f-af71229e766f X-Archives-Hash: 495cd88e65bd44e8c6065f9abcfa53c6 commit: bbeab3695df5a954b1e84efb4e6cabc793e0c706 Author: Andrey Grozin gentoo org> AuthorDate: Fri Dec 15 09:32:22 2017 +0000 Commit: Andrey Grozin gentoo org> CommitDate: Fri Dec 15 09:32:22 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbeab369 dev-python/rpyc: bump to 3.4.4 Package-Manager: Portage-2.3.18, Repoman-2.3.6 dev-python/rpyc/Manifest | 1 + dev-python/rpyc/rpyc-3.4.4.ebuild | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) diff --git a/dev-python/rpyc/Manifest b/dev-python/rpyc/Manifest index 8067a42bdb2..079ab32cdc6 100644 --- a/dev-python/rpyc/Manifest +++ b/dev-python/rpyc/Manifest @@ -1 +1,2 @@ DIST rpyc-3.3.0.tar.gz 53541 BLAKE2B e519128eee9792f1f66000c0e9be611f29cca30583195879dbe09329eba7ee8255e302cb036f452948505e8c5457397723fd0c2569470b1ec60684f35abe9041 SHA512 c586ab79d2ab3a8e14128c7ac5ae49a3311de0723453f801edb805819b06037ae015825fda32ac7620d99fdeceacbcbc5d1b4fadc3c7b2ac778e883ba9406793 +DIST rpyc-3.4.4.tar.gz 56199 BLAKE2B f56ef53a55d25335708c6750282c8e3d94492405f80e5cc03bcde879f8afbae70ec02cabe6d92bb62413dc92025ef42945e62802c7adb083b880fad31ebeff0d SHA512 0a176b05df28d92e67cb45372b46260611c1bc89f997c5a6760a760dff8792d5bb93505fdeccbd25c5ae7b04cf7aeeb7fd8964d4f124b00e50fbd3d55d7ba7b1 diff --git a/dev-python/rpyc/rpyc-3.4.4.ebuild b/dev-python/rpyc/rpyc-3.4.4.ebuild new file mode 100644 index 00000000000..d597a7823bc --- /dev/null +++ b/dev-python/rpyc/rpyc-3.4.4.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Remote Python Call (RPyC), a transparent and symmetric RPC library" +HOMEPAGE="http://rpyc.readthedocs.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +RDEPEND="dev-python/plumbum" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"