Received: by mail.netbsd.org (Postfix, from userid 605) id D18C884DD6; Wed, 13 Feb 2019 15:16:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5A3C084DD4 for ; Wed, 13 Feb 2019 15:16:01 +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 KhQZhug23C21 for ; Wed, 13 Feb 2019 15:16:00 +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 9101984DB3 for ; Wed, 13 Feb 2019 15:16:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8B512FB16; Wed, 13 Feb 2019 15:16:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1550070960140040" MIME-Version: 1.0 Date: Wed, 13 Feb 2019 15:16:00 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/converters/qrencode To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20190213151600.8B512FB16@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. --_----------=_1550070960140040 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Wed Feb 13 15:16:00 UTC 2019 Modified Files: pkgsrc/converters/qrencode: Makefile buildlink3.mk distinfo Log Message: qrencode: update to 4.0.2 Version 4.0.2 (2018.6.6) ------------------------ * Build script fixes. (Thanks to @mgorny) Version 4.0.1 (2018.6.4) ------------------------ * CMake support improved. * New test scripts have been added. * Some compile time warnings have been fixed. Version 4.0.0 (2017.9.21) ------------------------- * Memory efficiency has been improved. * QRcode_clearCache() has been deprecated. * Error correction code generating functions have been improved. * Command line tool "qrencode" has been improved: * XPM support. (Thanks to Tobias Klauser) * PNG32 (direct color mode) support. (Thanks to Greg Hart) * EPS output now supports foreground and background color. * New options "-r" and "--svg-path" have been added. (Thanks to Robert Petersen and @Oblomov) * CMake support has been added. (optional) (Thanks to @misery) * Various bug fixes. * Various performance improvements. Release Note: While the API has not been changed since the previous major release, we incremented the major version number of libqrencode to 4 because the implementation of the library has been largely changed. This release improves the performance and memory footprints of code generation. Now you can build libqrencode with CMake. If you build the test programs, please note that the required SDL version has been changed from 1.2 to 2.0. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/converters/qrencode/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/converters/qrencode/buildlink3.mk cvs rdiff -u -r1.8 -r1.9 pkgsrc/converters/qrencode/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1550070960140040 Content-Disposition: inline Content-Length: 2951 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/converters/qrencode/Makefile diff -u pkgsrc/converters/qrencode/Makefile:1.13 pkgsrc/converters/qrencode/Makefile:1.14 --- pkgsrc/converters/qrencode/Makefile:1.13 Mon Sep 4 18:08:19 2017 +++ pkgsrc/converters/qrencode/Makefile Wed Feb 13 15:16:00 2019 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.13 2017/09/04 18:08:19 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2019/02/13 15:16:00 tnn Exp $ # -DISTNAME= qrencode-3.4.4 +DISTNAME= qrencode-4.0.2 CATEGORIES= converters MASTER_SITES= https://fukuchi.org/works/qrencode/ EXTRACT_SUFX= .tar.bz2 @@ -16,8 +16,6 @@ USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ USE_LIBTOOL= yes -MAKE_JOBS_SAFE= no - # The tests are not actually installed anyway, and at least # one of these tests requires SDL. CONFIGURE_ARGS+= --without-tests @@ -26,6 +24,8 @@ PKGCONFIG_OVERRIDE+= libqrencode.pc.in .include "options.mk" +.include "../../converters/libiconv/buildlink3.mk" +.include "../../devel/zlib/buildlink3.mk" .include "../../graphics/png/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/converters/qrencode/buildlink3.mk diff -u pkgsrc/converters/qrencode/buildlink3.mk:1.4 pkgsrc/converters/qrencode/buildlink3.mk:1.5 --- pkgsrc/converters/qrencode/buildlink3.mk:1.4 Sun Jan 7 13:03:58 2018 +++ pkgsrc/converters/qrencode/buildlink3.mk Wed Feb 13 15:16:00 2019 @@ -1,11 +1,11 @@ -# $NetBSD: buildlink3.mk,v 1.4 2018/01/07 13:03:58 rillig Exp $ +# $NetBSD: buildlink3.mk,v 1.5 2019/02/13 15:16:00 tnn Exp $ BUILDLINK_TREE+= qrencode .if !defined(QRENCODE_BUILDLINK3_MK) QRENCODE_BUILDLINK3_MK:= -BUILDLINK_API_DEPENDS.qrencode+= qrencode>=3.4.1 +BUILDLINK_API_DEPENDS.qrencode+= qrencode>=4.0.2 BUILDLINK_PKGSRCDIR.qrencode?= ../../converters/qrencode .endif # QRENCODE_BUILDLINK3_MK Index: pkgsrc/converters/qrencode/distinfo diff -u pkgsrc/converters/qrencode/distinfo:1.8 pkgsrc/converters/qrencode/distinfo:1.9 --- pkgsrc/converters/qrencode/distinfo:1.8 Tue Nov 3 01:43:54 2015 +++ pkgsrc/converters/qrencode/distinfo Wed Feb 13 15:16:00 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.8 2015/11/03 01:43:54 agc Exp $ +$NetBSD: distinfo,v 1.9 2019/02/13 15:16:00 tnn Exp $ -SHA1 (qrencode-3.4.4.tar.bz2) = 6de54316081e5528e415b250730dcddbfdaa4b0e -RMD160 (qrencode-3.4.4.tar.bz2) = f0486350b340bae411a9f4a48ead20ca83bd06a6 -SHA512 (qrencode-3.4.4.tar.bz2) = 4835d462542e37e5460635e0dd84e291ff0976a6aec61c63f9950c1e60b446bc913220726e14f6379322bfd32ccd9bcd5fceed9ca10cb95343c952d8472b983d -Size (qrencode-3.4.4.tar.bz2) = 369136 bytes +SHA1 (qrencode-4.0.2.tar.bz2) = aa4ed7d87fb5bce3b2078ecf3a1472e78f1d3041 +RMD160 (qrencode-4.0.2.tar.bz2) = c8df9964d0d7f13f6e2708febd05c10d8d49607c +SHA512 (qrencode-4.0.2.tar.bz2) = 2429c7938e32eacbaf327c029c7745ba33259f879661a8b6470cc617c780daf5bd1d5689599151df62e84badd2568eccab6c12f157331e512ab24a3899e0f002 +Size (qrencode-4.0.2.tar.bz2) = 430309 bytes --_----------=_1550070960140040--