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 7BE301382C5 for ; Fri, 4 May 2018 00:21:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 991B3E08D4; Fri, 4 May 2018 00:21:31 +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 7118BE08D3 for ; Fri, 4 May 2018 00:21:31 +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 084DD335C73 for ; Fri, 4 May 2018 00:21:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6D7F330 for ; Fri, 4 May 2018 00:21:28 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1525393272.0f4963a9cb4fb24a310c5a0bbfc6f7c44a768d9b.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/josepy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/josepy/Manifest dev-python/josepy/josepy-1.1.0.ebuild X-VCS-Directories: dev-python/josepy/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 0f4963a9cb4fb24a310c5a0bbfc6f7c44a768d9b X-VCS-Branch: master Date: Fri, 4 May 2018 00:21:28 +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: fd8c4787-54ca-43b6-bcdd-ceb1c3a01af7 X-Archives-Hash: 177ad1d04d7cd314870194d9060bda1f commit: 0f4963a9cb4fb24a310c5a0bbfc6f7c44a768d9b Author: Matthew Thode gentoo org> AuthorDate: Fri May 4 00:17:21 2018 +0000 Commit: Matt Thode gentoo org> CommitDate: Fri May 4 00:21:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4963a9 dev-python/josepy: 1.1.0 bup Package-Manager: Portage-2.3.27, Repoman-2.3.9 dev-python/josepy/Manifest | 1 + dev-python/josepy/josepy-1.1.0.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/dev-python/josepy/Manifest b/dev-python/josepy/Manifest index 33e6de28269..1bd101c2365 100644 --- a/dev-python/josepy/Manifest +++ b/dev-python/josepy/Manifest @@ -1 +1,2 @@ DIST josepy-1.0.1.tar.gz 50251 BLAKE2B eb75e05dec890c92043357740829edf96f49f0c77b85211b9a9077ef39bfe59df2ee5952c1569559a07b6505870d796b3aa9e2b0fdba6943860b035f09a004b2 SHA512 51f0e1286a05ebc42f388d13e47e7bd2d1eb11ba1cf06f4d52d627d4a3c2d01f73f1ce9c9ff23ed7dd78ba18142af23e3de4277a63dc69b433bbc3e7aedfd6eb +DIST josepy-1.1.0.tar.gz 51286 BLAKE2B 57da7c74308b7698e84e19307283f9c09e61ee4f99ffcc98f02f50c24a96efd485540b878d5d52248a51f81356ab406654c6016614e32a1810cc1ff46b49ba39 SHA512 eee886565b1cb92e6d7a42f1e3666a158c162fb891f90de844118ac32b24f6deccf2eee5990ba100827109203f7da99c2b55735fb7bda05fd7a447dca39d6362 diff --git a/dev-python/josepy/josepy-1.1.0.ebuild b/dev-python/josepy/josepy-1.1.0.ebuild new file mode 100644 index 00000000000..11712885f36 --- /dev/null +++ b/dev-python/josepy/josepy-1.1.0.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 python3_5 python3_6 ) +inherit distutils-r1 + +DESCRIPTION="JOSE protocol implementation in Python" +HOMEPAGE="https://github.com/jezdez/josepy" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc64 ~x86" +IUSE="" + +DEPEND=" + >=dev-python/setuptools-1.0[${PYTHON_USEDEP}] + >=dev-python/cryptography-0.8[${PYTHON_USEDEP}] + >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}] + >=dev-python/six-1.9.0[${PYTHON_USEDEP}] +" +RDEPEND="${DEPEND} + !<=app-crypt/acme-0.20.0"