Received: by mail.netbsd.org (Postfix, from userid 605) id 46AB484E68; Mon, 26 Jul 2021 01:03:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 813E184D55 for ; Mon, 26 Jul 2021 01:03:29 +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 BECOPkJhNcLr for ; Mon, 26 Jul 2021 01:03:29 +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 CC93C84CE2 for ; Mon, 26 Jul 2021 01:03:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CA211FA95; Mon, 26 Jul 2021 01:03:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1627261408274020" MIME-Version: 1.0 Date: Mon, 26 Jul 2021 01:03:28 +0000 From: "Sijmen J. Mulder" Subject: CVS commit: pkgsrc/math/sc-im To: pkgsrc-changes@NetBSD.org Reply-To: sjmulder@netbsd.org X-Mailer: log_accum Message-Id: <20210726010328.CA211FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1627261408274020 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: sjmulder Date: Mon Jul 26 01:03:28 UTC 2021 Modified Files: pkgsrc/math/sc-im: Makefile options.mk Log Message: sc-im: Fix/bump for libxlsxwriter 1.1.1 To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/math/sc-im/Makefile cvs rdiff -u -r1.3 -r1.4 pkgsrc/math/sc-im/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1627261408274020 Content-Disposition: inline Content-Length: 1318 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/math/sc-im/Makefile diff -u pkgsrc/math/sc-im/Makefile:1.25 pkgsrc/math/sc-im/Makefile:1.26 --- pkgsrc/math/sc-im/Makefile:1.25 Wed Apr 21 13:25:00 2021 +++ pkgsrc/math/sc-im/Makefile Mon Jul 26 01:03:28 2021 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.25 2021/04/21 13:25:00 adam Exp $ +# $NetBSD: Makefile,v 1.26 2021/07/26 01:03:28 sjmulder Exp $ DISTNAME= sc-im-0.8.0 -PKGREVISION= 2 +PKGREVISION= 3 CATEGORIES= math MASTER_SITES= ${MASTER_SITE_GITHUB:=andmarti1424/} GITHUB_TAG= v${PKGVERSION_NOREV} Index: pkgsrc/math/sc-im/options.mk diff -u pkgsrc/math/sc-im/options.mk:1.3 pkgsrc/math/sc-im/options.mk:1.4 --- pkgsrc/math/sc-im/options.mk:1.3 Mon Jun 10 10:40:52 2019 +++ pkgsrc/math/sc-im/options.mk Mon Jul 26 01:03:28 2021 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2019/06/10 10:40:52 sjmulder Exp $ +# $NetBSD: options.mk,v 1.4 2021/07/26 01:03:28 sjmulder Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.sc-im PKG_SUPPORTED_OPTIONS+= color xls xlsx lua @@ -18,7 +18,7 @@ LDLIBS+= -lxlsreader .if !empty(PKG_OPTIONS:Mxlsx) CFLAGS+= -DXLSX -DXLSX_EXPORT -LDLIBS+= -lxlsxwriter +LDLIBS+= -lxlsxwriter -lcrypto -lminizip .include "../../archivers/libzip/buildlink3.mk" .include "../../textproc/libxml2/buildlink3.mk" .include "../../textproc/libxlsxwriter/buildlink3.mk" --_----------=_1627261408274020--