Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=OYjbLdRD; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=CQShOm2G Received: by mail.netbsd.org (Postfix, from userid 605) id 5514984E87; Tue, 30 Apr 2024 09:01:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714467718; bh=oPPGf5aKzdyujs4exCHGevP/2+RG9hK2/usMMEVSH9U=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=OYjbLdRDj0uv41pgVkVANoaDjmUINCEaQvgehgYZhqKdd5g90ySQxM4+Yyewl4R1N XZq9UeMcgr+blU5IdUQj615k2+pqL5BWHQr0Nn8MWk8WsGCXNBGroJy4a4NhIe6Gho nw8gL5LEa1KHkIZc+EBA1GeHXYnQw9sAjQw5RjmY= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 45ECD84E82 for ; Tue, 30 Apr 2024 09:01:57 +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 ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Yj8APeAX2Eo3 for ; Tue, 30 Apr 2024 09:01:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8E6A884CD8 for ; Tue, 30 Apr 2024 09:01:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1714467716; bh=oPPGf5aKzdyujs4exCHGevP/2+RG9hK2/usMMEVSH9U=; h=Date:From:Subject:To:Reply-To; b=CQShOm2GQjZ/PCzM4BZKSBLgpsICKQKjgXBhDs5RHZSxkrbLclq+EoKqjh+pjLMpx WFHyxLFsX6147k0L1Nk0/iWR9zQ2qlF1GFCw+S6Rc06BCWtE8VkKi6iH39ndUQkICg iY3qSf2eLVLuACH/HE1KNSenTVhoYLdkncL7FI28= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 87AA3FA2C; Tue, 30 Apr 2024 09:01:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1714467716144150" MIME-Version: 1.0 Date: Tue, 30 Apr 2024 09:01:56 +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: <20240430090156.87AA3FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1714467716144150 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Apr 30 09:01:56 UTC 2024 Modified Files: pkgsrc/lang/python: versioned_dependencies.mk Log Message: python: remove support for lxml from versioned_dependencies To generate a diff of this commit: cvs rdiff -u -r1.100 -r1.101 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. --_----------=_1714467716144150 Content-Disposition: inline Content-Length: 1397 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.100 pkgsrc/lang/python/versioned_dependencies.mk:1.101 --- pkgsrc/lang/python/versioned_dependencies.mk:1.100 Sun Jan 14 09:41:50 2024 +++ pkgsrc/lang/python/versioned_dependencies.mk Tue Apr 30 09:01:56 2024 @@ -1,4 +1,4 @@ -# $NetBSD: versioned_dependencies.mk,v 1.100 2024/01/14 09:41:50 wiz Exp $ +# $NetBSD: versioned_dependencies.mk,v 1.101 2024/04/30 09:01:56 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 Pillow X babel cairo cffi click coverage cryptography dns hypothesis lxml pip setuptools setuptools_scm test +# Possible values: OpenSSL Pillow X babel cairo cffi click coverage cryptography dns hypothesis pip setuptools setuptools_scm test # Default: (nothing) # @@ -60,9 +60,6 @@ _PY_VERS_PKG.27.dns= net/py-dns1 _PY_VERS_PKG.default.hypothesis= devel/py-hypothesis _PY_VERS_PKG.27.hypothesis= devel/py-hypothesis4 -_PY_VERS_PKG.default.lxml= textproc/py-lxml -_PY_VERS_PKG.27.lxml= textproc/py27-lxml - _PY_VERS_PKG.default.pip= devel/py-pip _PY_VERS_PKG.27.pip= devel/py-pip20 --_----------=_1714467716144150--