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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 10124158086 for ; Fri, 26 Nov 2021 08:21:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B3CF2BC05D; Fri, 26 Nov 2021 08:21:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2EAA32BC05D for ; Fri, 26 Nov 2021 08:21:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11F78343361 for ; Fri, 26 Nov 2021 08:21:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B799E1D6 for ; Fri, 26 Nov 2021 08:21:26 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1637914879.64efd45fb380852db674919f647a55b11aac9af0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cryptography/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cryptography/cryptography-36.0.0.ebuild X-VCS-Directories: dev-python/cryptography/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 64efd45fb380852db674919f647a55b11aac9af0 X-VCS-Branch: master Date: Fri, 26 Nov 2021 08:21:26 +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: 07437005-2f17-4063-8945-19f95cad3010 X-Archives-Hash: 7716e8af8b2468c9e27c437877bdaaa6 commit: 64efd45fb380852db674919f647a55b11aac9af0 Author: Sam James gentoo org> AuthorDate: Fri Nov 26 08:21:13 2021 +0000 Commit: Sam James gentoo org> CommitDate: Fri Nov 26 08:21:19 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64efd45f dev-python/cryptography: fix MisplacedEclassVar Signed-off-by: Sam James gentoo.org> dev-python/cryptography/cryptography-36.0.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-python/cryptography/cryptography-36.0.0.ebuild b/dev-python/cryptography/cryptography-36.0.0.ebuild index 7c14199e3e52..67cf4915f191 100644 --- a/dev-python/cryptography/cryptography-36.0.0.ebuild +++ b/dev-python/cryptography/cryptography-36.0.0.ebuild @@ -7,8 +7,6 @@ CARGO_OPTIONAL=yes PYTHON_COMPAT=( python3_{8..10} ) PYTHON_REQ_USE="threads(+)" -inherit cargo distutils-r1 multiprocessing - CRATES=" Inflector-0.11.4 aliasable-0.1.3 @@ -59,6 +57,8 @@ CRATES=" winapi-x86_64-pc-windows-gnu-0.4.0 " +inherit cargo distutils-r1 multiprocessing + VEC_P=cryptography_vectors-$(ver_cut 1-3) DESCRIPTION="Library providing cryptographic recipes and primitives" HOMEPAGE="https://github.com/pyca/cryptography/ https://pypi.org/project/cryptography/"