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 A38851382C5 for ; Thu, 22 Mar 2018 05:50:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 92422E0984; Thu, 22 Mar 2018 05:50:46 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 68F45E0984 for ; Thu, 22 Mar 2018 05:50:45 +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 67D04335C4A for ; Thu, 22 Mar 2018 05:50:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C7E70258 for ; Thu, 22 Mar 2018 05:50:41 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1521697809.e257a29253841e5d84735fd9bec17976ddb30829.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/idna-ssl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/idna-ssl/Manifest dev-python/idna-ssl/idna-ssl-1.0.1.ebuild X-VCS-Directories: dev-python/idna-ssl/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: e257a29253841e5d84735fd9bec17976ddb30829 X-VCS-Branch: master Date: Thu, 22 Mar 2018 05:50:41 +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: 316a20f2-dbf4-4b9e-872f-945a19fbd1a6 X-Archives-Hash: 41343379fa7fca67def32a0af1b70699 commit: e257a29253841e5d84735fd9bec17976ddb30829 Author: Tim Harder gentoo org> AuthorDate: Thu Mar 22 05:11:06 2018 +0000 Commit: Tim Harder gentoo org> CommitDate: Thu Mar 22 05:50:09 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e257a292 dev-python/idna-ssl: version bump to 1.0.1 dev-python/idna-ssl/Manifest | 1 + dev-python/idna-ssl/idna-ssl-1.0.1.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/dev-python/idna-ssl/Manifest b/dev-python/idna-ssl/Manifest index 2b15d7ee04f..899bb0070a1 100644 --- a/dev-python/idna-ssl/Manifest +++ b/dev-python/idna-ssl/Manifest @@ -1 +1,2 @@ +DIST idna-ssl-1.0.1.tar.gz 3385 BLAKE2B a14a73b7aa79022c3831e3c66cfc31fe6f2f64474039712aabc0aac28c5ad9c98ba360bccfcacd5b37085c48c8db1f4184f7406489306dd7b87c1ac9599e8c28 SHA512 57a6891543c561cd96d35f3d01f702e8c54c592f0174f34322fd0794df8a80ad0117b558f2d0078d22cb8e0114aaa9b72c7217c91a40f02475334d7a94429c2e DIST idna_ssl-1.0.0.tar.gz 3375 BLAKE2B 28ecee9e271619b7a4f3698aacbdbf0e953ed9b52640818007dc86f34145d8ea000260991d44cfa4cd896b74172b0a32962c3053152558b8d621396df2e248de SHA512 d1f7479cc3edff164bb26deb05af757906ba91241bc668f1b087560087a89f741a0b36e166bfb8142128ceed6008621ab36a2556ed2304ea6374c19982bc663a diff --git a/dev-python/idna-ssl/idna-ssl-1.0.1.ebuild b/dev-python/idna-ssl/idna-ssl-1.0.1.ebuild new file mode 100644 index 00000000000..bb91e721918 --- /dev/null +++ b/dev-python/idna-ssl/idna-ssl-1.0.1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{4,5,6} ) + +inherit distutils-r1 + +DESCRIPTION="Patch ssl.match_hostname for Unicode(idna) domains support" +HOMEPAGE="https://github.com/aio-libs/idna-ssl https://pypi.python.org/pypi/idna_ssl" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +LICENSE="MIT" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/idna[${PYTHON_USEDEP}]"