Received: by mail.netbsd.org (Postfix, from userid 605) id 385C884DA6; Tue, 2 Jul 2019 19:50:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B1E8A84D52 for ; Tue, 2 Jul 2019 19:50:09 +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 LVNl6GHsap3K for ; Tue, 2 Jul 2019 19:50:09 +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 0D30984CE9 for ; Tue, 2 Jul 2019 19:50:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 01DABFBF4; Tue, 2 Jul 2019 19:50:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1562097008210680" MIME-Version: 1.0 Date: Tue, 2 Jul 2019 19:50:08 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/geography/gpsd To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20190702195009.01DABFBF4@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. --_----------=_1562097008210680 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Tue Jul 2 19:50:08 UTC 2019 Modified Files: pkgsrc/geography/gpsd: buildlink3.mk Log Message: geography/gpsd: Update ABI in buildlink3.mk 3.19 was an ABI break, so force depending packages to use it. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/geography/gpsd/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1562097008210680 Content-Disposition: inline Content-Length: 889 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/geography/gpsd/buildlink3.mk diff -u pkgsrc/geography/gpsd/buildlink3.mk:1.5 pkgsrc/geography/gpsd/buildlink3.mk:1.6 --- pkgsrc/geography/gpsd/buildlink3.mk:1.5 Mon May 7 01:53:31 2012 +++ pkgsrc/geography/gpsd/buildlink3.mk Tue Jul 2 19:50:08 2019 @@ -1,14 +1,13 @@ -# $NetBSD: buildlink3.mk,v 1.5 2012/05/07 01:53:31 dholland Exp $ +# $NetBSD: buildlink3.mk,v 1.6 2019/07/02 19:50:08 gdt Exp $ BUILDLINK_TREE+= gpsd .if !defined(GPSD_BUILDLINK3_MK) GPSD_BUILDLINK3_MK:= -# 2.90 is the beginning of withdrawing of interfaces. Plus -# it's an ABI. -BUILDLINK_API_DEPENDS.gpsd+= gpsd>=2.90 -BUILDLINK_ABI_DEPENDS.gpsd+= gpsd>=2.96 +# 3.19 changed structures and is thus an ABI break. +BUILDLINK_API_DEPENDS.gpsd+= gpsd>=3.19 +BUILDLINK_ABI_DEPENDS.gpsd+= gpsd>=3.19 BUILDLINK_PKGSRCDIR.gpsd?= ../../geography/gpsd .endif # GPSD_BUILDLINK3_MK --_----------=_1562097008210680--