Received: by mail.netbsd.org (Postfix, from userid 605) id 7A1CC84D36; Fri, 12 Jan 2018 14:41:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0546D84D03 for ; Fri, 12 Jan 2018 14:41:36 +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 iUF_-44woOjf for ; Fri, 12 Jan 2018 14:41:35 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 68F3284CDD for ; Fri, 12 Jan 2018 14:41:35 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E2C06FBDE; Fri, 12 Jan 2018 14:41:24 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1515768084132000" MIME-Version: 1.0 Date: Fri, 12 Jan 2018 14:41:24 +0000 From: "Filip Hajny" Subject: CVS commit: pkgsrc/devel/jq To: pkgsrc-changes@NetBSD.org Reply-To: fhajny@netbsd.org X-Mailer: log_accum Message-Id: <20180112144124.E2C06FBDE@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. --_----------=_1515768084132000 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: fhajny Date: Fri Jan 12 14:41:24 UTC 2018 Modified Files: pkgsrc/devel/jq: Makefile Log Message: devel/jq: Link against textproc/oniguruma to enable regexp support. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/devel/jq/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1515768084132000 Content-Disposition: inline Content-Length: 696 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/jq/Makefile diff -u pkgsrc/devel/jq/Makefile:1.10 pkgsrc/devel/jq/Makefile:1.11 --- pkgsrc/devel/jq/Makefile:1.10 Thu Aug 3 12:38:22 2017 +++ pkgsrc/devel/jq/Makefile Fri Jan 12 14:41:24 2018 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.10 2017/08/03 12:38:22 jperkin Exp $ +# $NetBSD: Makefile,v 1.11 2018/01/12 14:41:24 fhajny Exp $ DISTNAME= jq-1.5 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GITHUB:=stedolan/} GITHUB_PROJECT= jq @@ -20,4 +20,7 @@ GNU_CONFIGURE= yes CFLAGS.SunOS+= -D_XPG6 -D__EXTENSIONS__ +TEST_TARGET= check + +.include "../../textproc/oniguruma/buildlink3.mk" .include "../../mk/bsd.pkg.mk" --_----------=_1515768084132000--