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 7C64D138330 for ; Wed, 30 May 2018 17:29:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98E0EE0920; Wed, 30 May 2018 17:28:56 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4726EE0920 for ; Wed, 30 May 2018 17:28:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 C2C91335CAB for ; Wed, 30 May 2018 17:28:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 709083D for ; Wed, 30 May 2018 17:28:52 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1527701317.dbc6b7f9b98b18ec5a345ebd1d8782cd4b12e453.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/absl-py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/absl-py/Manifest dev-python/absl-py/absl-py-0.2.2.ebuild X-VCS-Directories: dev-python/absl-py/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: dbc6b7f9b98b18ec5a345ebd1d8782cd4b12e453 X-VCS-Branch: master Date: Wed, 30 May 2018 17:28:52 +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: 3e7d3c1d-5ee3-48f0-a9d4-89c21809304e X-Archives-Hash: 5f3b8c200354110aed741d039434c151 commit: dbc6b7f9b98b18ec5a345ebd1d8782cd4b12e453 Author: Jason Zaman gentoo org> AuthorDate: Wed May 30 16:57:56 2018 +0000 Commit: Jason Zaman gentoo org> CommitDate: Wed May 30 17:28:37 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbc6b7f9 dev-python/absl-py: bump to 0.2.2 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-python/absl-py/Manifest | 1 + dev-python/absl-py/absl-py-0.2.2.ebuild | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/dev-python/absl-py/Manifest b/dev-python/absl-py/Manifest index 1cb603ab006..f4b5ce23f01 100644 --- a/dev-python/absl-py/Manifest +++ b/dev-python/absl-py/Manifest @@ -1 +1,2 @@ DIST absl-py-0.1.13.tar.gz 180047 BLAKE2B d10ff30109cf1a1b21d276b30e1066abc8c002d1c944a13e006a6fa097fc3fc98d4ca4441d194cee61137496aaa9a2314b71408ba507804376fb8750af0130e8 SHA512 ce93346a5f74bd4251789670dffdf983bf557f3e6a90ded9150998c53f8ed3a43fb1aa7b15556695e3d9dfa7a2237bb5462edadc23a8ceeb5f5ce2b87b0623ed +DIST absl-py-0.2.2.tar.gz 189357 BLAKE2B b53976b50f1738d671a32df2fabf197785cb4be1f68dbf7f0bdd5bbbb1a73439646f5b6a9ea42d5df40debdbb8e8c72c554f428a948f3117dba5d6a8e2b473f2 SHA512 d2a393e78acc9ac28fc9b1129c23de9c2ab6059a7527eaa29e4182356b16cbce1fede94af2a8b51af9d1c606b162d8ae84eb3036ced784a89d4f7547bfce73ed diff --git a/dev-python/absl-py/absl-py-0.2.2.ebuild b/dev-python/absl-py/absl-py-0.2.2.ebuild new file mode 100644 index 00000000000..34d6e2a3bb6 --- /dev/null +++ b/dev-python/absl-py/absl-py-0.2.2.ebuild @@ -0,0 +1,21 @@ +# 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} ) +inherit distutils-r1 + +DESCRIPTION="Abseil Python Common Libraries" +HOMEPAGE="https://github.com/abseil/abseil-py" +SRC_URI="https://github.com/abseil/abseil-py/archive/pypi-v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/six" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/abseil-py-pypi-v${PV}"