Received: by mail.netbsd.org (Postfix, from userid 605) id 1DD6484D66; Thu, 6 May 2021 15:19:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 594E584D2D for ; Thu, 6 May 2021 15:19:40 +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 QhMauFWsGMMQ for ; Thu, 6 May 2021 15:19:39 +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 CD87D84CEA for ; Thu, 6 May 2021 15:19:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A00CDFA95; Thu, 6 May 2021 15:19:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_162031437943400" MIME-Version: 1.0 Date: Thu, 6 May 2021 15:19:39 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/lang/jimtcl To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20210506151939.A00CDFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_162031437943400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Thu May 6 15:19:39 UTC 2021 Modified Files: pkgsrc/lang/jimtcl: Makefile PLIST buildlink3.mk Log Message: jimtcl: make sure the unversioned solib symlink exists. Bump. pkgsrc wrappers get mighty confused without this To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/lang/jimtcl/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/lang/jimtcl/PLIST cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/jimtcl/buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_162031437943400 Content-Disposition: inline Content-Length: 1995 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/jimtcl/Makefile diff -u pkgsrc/lang/jimtcl/Makefile:1.5 pkgsrc/lang/jimtcl/Makefile:1.6 --- pkgsrc/lang/jimtcl/Makefile:1.5 Mon Feb 1 10:38:24 2021 +++ pkgsrc/lang/jimtcl/Makefile Thu May 6 15:19:39 2021 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2021/02/01 10:38:24 fcambus Exp $ +# $NetBSD: Makefile,v 1.6 2021/05/06 15:19:39 tnn Exp $ DISTNAME= jimtcl-0.80 +PKGREVISION= 1 CATEGORIES= lang MASTER_SITES= ${MASTER_SITE_GITHUB:=msteveb/} @@ -26,5 +27,8 @@ REPLACE_FILES.jimsh= build-jim-ext.in TEST_TARGET= test +post-install: + ${LN} -sf libjim.so.${PKGVERSION_NOREV} ${DESTDIR}${PREFIX}/lib/libjim.so + .include "../../mk/dlopen.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/lang/jimtcl/PLIST diff -u pkgsrc/lang/jimtcl/PLIST:1.4 pkgsrc/lang/jimtcl/PLIST:1.5 --- pkgsrc/lang/jimtcl/PLIST:1.4 Mon Feb 1 10:38:24 2021 +++ pkgsrc/lang/jimtcl/PLIST Thu May 6 15:19:39 2021 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.4 2021/02/01 10:38:24 fcambus Exp $ +@comment $NetBSD: PLIST,v 1.5 2021/05/06 15:19:39 tnn Exp $ bin/build-jim-ext bin/jimsh include/jim-config.h @@ -9,6 +9,7 @@ include/jim-win32compat.h include/jim.h lib/jim/README.extensions lib/jim/tcltest.tcl +lib/libjim.so lib/libjim.so.${PKGVERSION} lib/pkgconfig/jimtcl.pc share/doc/jimtcl/Tcl.html Index: pkgsrc/lang/jimtcl/buildlink3.mk diff -u pkgsrc/lang/jimtcl/buildlink3.mk:1.1 pkgsrc/lang/jimtcl/buildlink3.mk:1.2 --- pkgsrc/lang/jimtcl/buildlink3.mk:1.1 Thu May 6 10:38:34 2021 +++ pkgsrc/lang/jimtcl/buildlink3.mk Thu May 6 15:19:39 2021 @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.1 2021/05/06 10:38:34 tnn Exp $ +# $NetBSD: buildlink3.mk,v 1.2 2021/05/06 15:19:39 tnn Exp $ BUILDLINK_TREE+= jimtcl .if !defined(JIMTCL_BUILDLINK3_MK) JIMTCL_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.jimtcl+= jimtcl>=0.80 +BUILDLINK_API_DEPENDS.jimtcl+= jimtcl>=0.80nb1 BUILDLINK_PKGSRCDIR.jimtcl?= ../../lang/jimtcl .endif # JIMTCL_BUILDLINK3_MK --_----------=_162031437943400--