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 21AB01A9239 for ; Wed, 22 Dec 2021 22:41:21 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 3CD7784E8A; Wed, 22 Dec 2021 22:41:20 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7673884DBD for ; Wed, 22 Dec 2021 22:41:19 +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 4wOl0wzZe85n for ; Wed, 22 Dec 2021 22:41:19 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E279B84CE9 for ; Wed, 22 Dec 2021 22:41:18 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DAD88FAEC; Wed, 22 Dec 2021 22:41:18 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1640212878155100" MIME-Version: 1.0 Date: Wed, 22 Dec 2021 22:41:18 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/devel/py-tryton To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20211222224118.DAD88FAEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1640212878155100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Wed Dec 22 22:41:18 UTC 2021 Modified Files: pkgsrc/devel/py-tryton: Makefile options.mk Log Message: py-tryton: fix dependencies so that 'make test' passes Ride update To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 pkgsrc/devel/py-tryton/Makefile cvs rdiff -u -r1.14 -r1.15 pkgsrc/devel/py-tryton/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1640212878155100 Content-Disposition: inline Content-Length: 1696 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/py-tryton/Makefile diff -u pkgsrc/devel/py-tryton/Makefile:1.48 pkgsrc/devel/py-tryton/Makefile:1.49 --- pkgsrc/devel/py-tryton/Makefile:1.48 Wed Dec 22 22:25:12 2021 +++ pkgsrc/devel/py-tryton/Makefile Wed Dec 22 22:41:18 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2021/12/22 22:25:12 mef Exp $ +# $NetBSD: Makefile,v 1.49 2021/12/22 22:41:18 wiz Exp $ TRYTON_MODULE_NAME= tryton .include "../../devel/py-trytond/Makefile.common" CATEGORIES= devel python @@ -16,6 +16,7 @@ USE_LANGUAGES= # none DEPENDS+= ${PYPKGPREFIX}-chardet-[0-9]*:../../converters/py-chardet DEPENDS+= ${PYPKGPREFIX}-dateutil-[0-9]*:../../time/py-dateutil +DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3 DEPENDS.Darwin+= ${PYPKGPREFIX}-py2app-[0-9]*:../../devel/py-py2app post-install: @@ -23,6 +24,6 @@ post-install: ${DESTDIR}${PREFIX}/bin/tryton${PYVERSSUFFIX} || ${TRUE} .include "../../graphics/librsvg/buildlink3.mk" -#include "../../x11/py-gtk2/buildlink3.mk" +.include "../../x11/gtk3/buildlink3.mk" .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/py-tryton/options.mk diff -u pkgsrc/devel/py-tryton/options.mk:1.14 pkgsrc/devel/py-tryton/options.mk:1.15 --- pkgsrc/devel/py-tryton/options.mk:1.14 Wed Dec 22 22:38:14 2021 +++ pkgsrc/devel/py-tryton/options.mk Wed Dec 22 22:41:18 2021 @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.14 2021/12/22 22:38:14 wiz Exp $ +# $NetBSD: options.mk,v 1.15 2021/12/22 22:41:18 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.py-tryton PKG_SUPPORTED_OPTIONS= goocalendar -PKG_SUGGESTED_OPTIONS+= +PKG_SUGGESTED_OPTIONS+= .include "../../mk/bsd.options.mk" --_----------=_1640212878155100--