Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id C10451A923A for ; Mon, 6 Dec 2021 14:45:24 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CF9AB85046; Mon, 6 Dec 2021 14:45:23 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1498B84E8E for ; Mon, 6 Dec 2021 14:45:23 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id PtNXA03b9DAk for ; Mon, 6 Dec 2021 14:45:22 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 82D1184CE3 for ; Mon, 6 Dec 2021 14:45:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 74B54FAEC; Mon, 6 Dec 2021 14:45:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_163880192222900" MIME-Version: 1.0 Date: Mon, 6 Dec 2021 14:45:22 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/security/py-gssapi To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211206144522.74B54FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_163880192222900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Dec 6 14:45:22 UTC 2021 Modified Files: pkgsrc/security/py-gssapi: distinfo Added Files: pkgsrc/security/py-gssapi/patches: patch-setup.py Log Message: py-gssapi: fix build To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 pkgsrc/security/py-gssapi/distinfo cvs rdiff -u -r0 -r1.1 pkgsrc/security/py-gssapi/patches/patch-setup.py Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_163880192222900 Content-Disposition: inline Content-Length: 1677 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-gssapi/distinfo diff -u pkgsrc/security/py-gssapi/distinfo:1.18 pkgsrc/security/py-gssapi/distinfo:1.19 --- pkgsrc/security/py-gssapi/distinfo:1.18 Tue Oct 26 11:17:46 2021 +++ pkgsrc/security/py-gssapi/distinfo Mon Dec 6 14:45:22 2021 @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.18 2021/10/26 11:17:46 nia Exp $ +$NetBSD: distinfo,v 1.19 2021/12/06 14:45:22 wiz Exp $ BLAKE2s (gssapi-1.7.2.tar.gz) = 2a08fd0e959d0cdb2619a29f27cc0751be13fa52da605e33f78e7b4db47f0b9b SHA512 (gssapi-1.7.2.tar.gz) = 2d14c286e50c3dda3a2e58588860abbda249fa3ff4fe8e7a759cd8bb009ca7d20a6a06cf9b5b7eea42dce4ba740c8a8cebf190d085ffa3e66ec79882bda882ed Size (gssapi-1.7.2.tar.gz) = 1227616 bytes +SHA1 (patch-setup.py) = 506e05b248a6d372f0cff92881dc0f5e21499210 Added files: Index: pkgsrc/security/py-gssapi/patches/patch-setup.py diff -u /dev/null pkgsrc/security/py-gssapi/patches/patch-setup.py:1.1 --- /dev/null Mon Dec 6 14:45:22 2021 +++ pkgsrc/security/py-gssapi/patches/patch-setup.py Mon Dec 6 14:45:22 2021 @@ -0,0 +1,15 @@ +$NetBSD: patch-setup.py,v 1.1 2021/12/06 14:45:22 wiz Exp $ + +Match this setting with py-setuptools. + +--- setup.py.orig 2021-10-10 21:13:06.000000000 +0000 ++++ setup.py +@@ -13,7 +13,7 @@ import shlex + # the deprecation warning. Must be done before importing setuptools, + # setuptools also must be imported before distutils. + # https://github.com/pypa/setuptools/blob/main/docs/deprecated/distutils-legacy.rst +-os.environ['SETUPTOOLS_USE_DISTUTILS'] = 'local' ++#os.environ['SETUPTOOLS_USE_DISTUTILS'] = 'local' + + from setuptools import setup # noqa: E402 + from setuptools import Distribution # noqa: E402 --_----------=_163880192222900--