Received: by mail.netbsd.org (Postfix, from userid 605) id D0C7784D2F; Mon, 14 Nov 2022 13:32:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0DA1084D0C for ; Mon, 14 Nov 2022 13:32:33 +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 z92V9N7n9KT6 for ; Mon, 14 Nov 2022 13:32:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 521FA84C86 for ; Mon, 14 Nov 2022 13:32:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4BDBFFA90; Mon, 14 Nov 2022 13:32:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1668432752189250" MIME-Version: 1.0 Date: Mon, 14 Nov 2022 13:32:32 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/www/py-cookies To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221114133232.4BDBFFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1668432752189250 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Nov 14 13:32:32 UTC 2022 Modified Files: pkgsrc/www/py-cookies: DESCR Makefile Log Message: py-cookies: mark as not for python 3.11 (upstream looks rather dead, and there's no way to open tickets with them; no users in pkgsrc; removal candidate?) To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/www/py-cookies/DESCR cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-cookies/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1668432752189250 Content-Disposition: inline Content-Length: 1299 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=utf-8 Modified files: Index: pkgsrc/www/py-cookies/DESCR diff -u pkgsrc/www/py-cookies/DESCR:1.1 pkgsrc/www/py-cookies/DESCR:1.2 --- pkgsrc/www/py-cookies/DESCR:1.1 Fri Sep 29 14:33:38 2017 +++ pkgsrc/www/py-cookies/DESCR Mon Nov 14 13:32:32 2022 @@ -1,4 +1,4 @@ cookies.py is a Python module for working with HTTP cookies: parsing and -rendering ‘Cookie:’ request headers and ‘Set-Cookie:’ response headers, +rendering 'Cookie:' request headers and 'Set-Cookie:' response headers, and exposing a convenient API for creating and modifying cookies. It can -be used as a replacement of Python’s Cookie.py (aka http.cookies). +be used as a replacement of Python's Cookie.py (aka http.cookies). Index: pkgsrc/www/py-cookies/Makefile diff -u pkgsrc/www/py-cookies/Makefile:1.2 pkgsrc/www/py-cookies/Makefile:1.3 --- pkgsrc/www/py-cookies/Makefile:1.2 Tue Jan 4 20:55:17 2022 +++ pkgsrc/www/py-cookies/Makefile Mon Nov 14 13:32:32 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2022/01/04 20:55:17 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2022/11/14 13:32:32 wiz Exp $ DISTNAME= cookies-2.2.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -13,5 +13,7 @@ LICENSE= mit USE_LANGUAGES= # none +PYTHON_VERSIONS_INCOMPATIBLE= 311 + .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1668432752189250--