Received: by mail.netbsd.org (Postfix, from userid 605) id 91F7884D6B; Tue, 2 May 2023 16:15:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C06E284D5F for ; Tue, 2 May 2023 16:15:05 +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 Ks7VYEaY0G3M for ; Tue, 2 May 2023 16:15:05 +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 39E9384C13 for ; Tue, 2 May 2023 16:15:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 371A1FA87; Tue, 2 May 2023 16:15:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1683044105140700" MIME-Version: 1.0 Date: Tue, 2 May 2023 16:15:05 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/py-sqlalchemy-utils To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20230502161505.371A1FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1683044105140700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue May 2 16:15:05 UTC 2023 Modified Files: pkgsrc/databases/py-sqlalchemy-utils: options.mk Log Message: py-sqlalchemy-utils: stop using versioned_dependencies This is Python 3-only already. XXX: these should probably be TEST_DEPENDS instead To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/databases/py-sqlalchemy-utils/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1683044105140700 Content-Disposition: inline Content-Length: 1670 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-sqlalchemy-utils/options.mk diff -u pkgsrc/databases/py-sqlalchemy-utils/options.mk:1.7 pkgsrc/databases/py-sqlalchemy-utils/options.mk:1.8 --- pkgsrc/databases/py-sqlalchemy-utils/options.mk:1.7 Mon Jul 11 13:34:53 2022 +++ pkgsrc/databases/py-sqlalchemy-utils/options.mk Tue May 2 16:15:05 2023 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.7 2022/07/11 13:34:53 adam Exp $ +# $NetBSD: options.mk,v 1.8 2023/05/02 16:15:05 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.py-sqlalchemy-utils PKG_SUPPORTED_OPTIONS= arrow babel color furl intervals ipaddress json password @@ -9,7 +9,6 @@ PKG_SUGGESTED_OPTIONS+= # blank .if !empty(PKG_OPTIONS:Marrow) DEPENDS+= ${PYPKGPREFIX}-arrow>=0.3.4:../../time/py-arrow -PYTHON_VERSIONS_INCOMPATIBLE= 27 .endif .if !empty(PKG_OPTIONS:Mbabel) @@ -45,8 +44,6 @@ DEPENDS+= ${PYPKGPREFIX}-phonenumbers>=5 .endif .if !empty(PKG_OPTIONS:Mtests) -PYTHON_VERSIONED_DEPENDENCIES= pygments test -.include "../../lang/python/versioned_dependencies.mk" DEPENDS+= ${PYPKGPREFIX}-jinja2>=2.3:../../textproc/py-jinja2 DEPENDS+= ${PYPKGPREFIX}-docutils>=0.10:../../textproc/py-docutils DEPENDS+= ${PYPKGPREFIX}-flexmock>=0.9.7:../../devel/py-flexmock @@ -63,6 +60,8 @@ DEPENDS+= ${PYPKGPREFIX}-anyjson>=0.3.3: DEPENDS+= ${PYPKGPREFIX}-passlib>=1.6<2.0:../../security/py-passlib DEPENDS+= ${PYPKGPREFIX}-phonenumbers>=5.9.2:../../textproc/py-phonenumbers DEPENDS+= ${PYPKGPREFIX}-dateutil-[0-9]*:../../time/py-dateutil +DEPENDS+= ${PYPKGPREFIX}-pygments-[0-9]*:../../textproc/py-pygments +DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test .endif .if !empty(PKG_OPTIONS:Mtimezone) --_----------=_1683044105140700--