Received: by mail.netbsd.org (Postfix, from userid 605) id 7E47E84D79; Thu, 23 Apr 2020 20:04:06 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0893684D27 for ; Thu, 23 Apr 2020 20:04:06 +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 u8c4oKi8ZZbd for ; Thu, 23 Apr 2020 20:04: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 6126E84C8B for ; Thu, 23 Apr 2020 20:04:05 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5863AFB27; Thu, 23 Apr 2020 20:04:05 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1587672245130440" MIME-Version: 1.0 Date: Thu, 23 Apr 2020 20:04:05 +0000 From: "Santhosh Raju" Subject: CVS commit: pkgsrc/www/cliqz To: pkgsrc-changes@NetBSD.org Reply-To: fox@netbsd.org X-Mailer: log_accum Message-Id: <20200423200405.5863AFB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1587672245130440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fox Date: Thu Apr 23 20:04:05 UTC 2020 Modified Files: pkgsrc/www/cliqz: Makefile Log Message: www/cliqz: Fixes broken build. For now add py27-sqlite3-[0-9]* as a build dependency since python37-sqlite-[0-9]* is not being detected correctly. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/www/cliqz/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1587672245130440 Content-Disposition: inline Content-Length: 820 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/cliqz/Makefile diff -u pkgsrc/www/cliqz/Makefile:1.39 pkgsrc/www/cliqz/Makefile:1.40 --- pkgsrc/www/cliqz/Makefile:1.39 Sat Apr 18 07:58:36 2020 +++ pkgsrc/www/cliqz/Makefile Thu Apr 23 20:04:05 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2020/04/18 07:58:36 fox Exp $ +# $NetBSD: Makefile,v 1.40 2020/04/23 20:04:05 fox Exp $ DISTNAME= cliqz-1.35.0 CATEGORIES= www @@ -66,6 +66,9 @@ BUILD_DEPENDS+= py${PYTHON_VERSION_DEF .else BUILD_DEPENDS+= py37-sqlite3-[0-9]*:../../databases/py-sqlite3 .endif +# XXX: For now depend on python 2.7 version of sqlite3 since cliqz +# cannot detect py37-sqlite3 correctly. +BUILD_DEPENDS+= py27-sqlite3-[0-9]*:../../databases/py-sqlite3 BUILD_DEPENDS+= yasm>=1.1:../../devel/yasm BUILD_DEPENDS+= nasm>=1.1:../../devel/nasm --_----------=_1587672245130440--