Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 814267A26C for ; Thu, 26 Jan 2017 13:01:52 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 2EC568559C; Thu, 26 Jan 2017 13:01:52 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B448F85590 for ; Thu, 26 Jan 2017 13:01:51 +0000 (UTC) X-Virus-Scanned: amavisd-new at 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 CKalmMxId-mh for ; Thu, 26 Jan 2017 13:01:51 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 1D58B8556E for ; Thu, 26 Jan 2017 13:01:51 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4D223FBA6; Thu, 26 Jan 2017 13:01:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148543569670460" MIME-Version: 1.0 Date: Thu, 26 Jan 2017 13:01:36 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/databases/py-bsddb3 To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170126130136.4D223FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_148543569670460 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Thu Jan 26 13:01:36 UTC 2017 Modified Files: pkgsrc/databases/py-bsddb3: Makefile Log Message: Allow db6 and set up the environment correctly so this builds automatically against it. Users have to have accepted the db6 license already for installing it anyway. To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 pkgsrc/databases/py-bsddb3/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148543569670460 Content-Disposition: inline Content-Length: 1070 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/databases/py-bsddb3/Makefile diff -u pkgsrc/databases/py-bsddb3/Makefile:1.52 pkgsrc/databases/py-bsddb3/Makefile:1.53 --- pkgsrc/databases/py-bsddb3/Makefile:1.52 Thu Jan 26 12:03:15 2017 +++ pkgsrc/databases/py-bsddb3/Makefile Thu Jan 26 13:01:36 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.52 2017/01/26 12:03:15 wiz Exp $ +# $NetBSD: Makefile,v 1.53 2017/01/26 13:01:36 wiz Exp $ DISTNAME= bsddb3-6.2.4 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -10,7 +10,7 @@ HOMEPAGE= http://pypi.python.org/pypi/bs COMMENT= Python bindings for Oracle Berkeley DB LICENSE= modified-bsd -BDB_ACCEPTED= db4 db5 +BDB_ACCEPTED= db6 db5 db4 PYSETUPBUILDARGS= --berkeley-db=${BDBBASE} PYSETUPINSTALLARGS= --berkeley-db=${BDBBASE} @@ -27,6 +27,8 @@ SUBST_STAGE.bdb= pre-configure SUBST_FILES.bdb= ${WRKSRC}/setup2.py ${WRKSRC}/setup3.py SUBST_SED.bdb= -e "s,dblib = 'db',dblib = '${BDB_TYPE}',g" +MAKE_ENV+= YES_I_HAVE_THE_RIGHT_TO_USE_THIS_BERKELEY_DB_VERSION=1 + do-test: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${PYTHONBIN} test.py --_----------=_148543569670460--