Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=TSwitAcQ; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=tinbV0Ou Received: by mail.netbsd.org (Postfix, from userid 605) id 88BF684E66; Sun, 5 May 2024 20:22:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714940574; bh=5+hw+nFDhL5kFW4bWuURwzr0FJkhQ/xb9E3Ws3qdLZI=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=TSwitAcQ2DfZLzUJJ8Ynvj6TjlcPGakeRqW9HT5YTasISUxGbBroAuJT26fxQwhTp boaUf9T6/yBALOYnPxQCW8TrWHk5zfG3w2SffRX4HrrjgttMfTfrMBjPSM7pALH1ul CeinH1lQk01eIiX6kXYc812P1MQbkMA7BZB89OY0= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7BB1284E63 for ; Sun, 5 May 2024 20:22:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id srZ4vi8Khw5K for ; Sun, 5 May 2024 20:22:53 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C844D84CC9 for ; Sun, 5 May 2024 20:22:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714940573; bh=5+hw+nFDhL5kFW4bWuURwzr0FJkhQ/xb9E3Ws3qdLZI=; h=Date:From:Subject:To:Reply-To; b=tinbV0OuHU97Br/QR7OtmxjiiHG6x9MBN3dRGKN1Z2HfvdfyS/VTve4jfAoV6YLuw PkJ4La2ICaZAwWc2v981I3RWbt/8qC6w9I7sgREmou0XKLum/pHjpPjWzFpA7kUdjE kUF8mVAXOx7+/cKLrha3BrWk0QOAXmPAbF34m3pI= Received: by cvs.NetBSD.org (Postfix, from userid 500) id C4E2CFA2C; Sun, 5 May 2024 20:22:52 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_171494057291130" MIME-Version: 1.0 Date: Sun, 5 May 2024 20:22:52 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/lang/python To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20240505202252.C4E2CFA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_171494057291130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun May 5 20:22:52 UTC 2024 Modified Files: pkgsrc/lang/python: versioned_dependencies.mk Log Message: python: remove cffi from versioned_dependencies Unused. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 pkgsrc/lang/python/versioned_dependencies.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_171494057291130 Content-Disposition: inline Content-Length: 1328 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python/versioned_dependencies.mk diff -u pkgsrc/lang/python/versioned_dependencies.mk:1.110 pkgsrc/lang/python/versioned_dependencies.mk:1.111 --- pkgsrc/lang/python/versioned_dependencies.mk:1.110 Tue Apr 30 14:46:45 2024 +++ pkgsrc/lang/python/versioned_dependencies.mk Sun May 5 20:22:52 2024 @@ -1,4 +1,4 @@ -# $NetBSD: versioned_dependencies.mk,v 1.110 2024/04/30 14:46:45 wiz Exp $ +# $NetBSD: versioned_dependencies.mk,v 1.111 2024/05/05 20:22:52 wiz Exp $ # # This file determines which separate distribution of a Python # package is used as dependency, depending on the Python version @@ -9,7 +9,7 @@ # PYTHON_VERSIONED_DEPENDENCIES # The Python package which should be added as a dependency. # -# Possible values: OpenSSL cffi cryptography dns setuptools_scm test +# Possible values: OpenSSL cryptography dns setuptools_scm test # Default: (nothing) # @@ -29,9 +29,6 @@ _PY_VERS_PKG.default.OpenSSL= security/p _PY_VERS_PKG.27.OpenSSL= security/py27-OpenSSL _PY_VERS_PKG.dependency.OpenSSL= yes -_PY_VERS_PKG.default.cffi= devel/py-cffi -_PY_VERS_PKG.27.cffi= devel/py27-cffi - _PY_VERS_PKG.default.cryptography= security/py-cryptography _PY_VERS_PKG.27.cryptography= security/py27-cryptography _PY_VERS_PKG.dependency.cryptography= yes --_----------=_171494057291130--