Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 464A17A20B for ; Tue, 16 May 2017 12:43:49 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A605085582; Tue, 16 May 2017 12:43:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 344748557C for ; Tue, 16 May 2017 12:43:48 +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 JfQaZrrusohG for ; Tue, 16 May 2017 12:43:47 +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 804CD84DB8 for ; Tue, 16 May 2017 12:43:47 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 77556FBE4; Tue, 16 May 2017 12:43:47 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1494938627172980" MIME-Version: 1.0 Date: Tue, 16 May 2017 12:43:47 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/print/pdf2djvu To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20170516124347.77556FBE4@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. --_----------=_1494938627172980 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="UTF-8" Module Name: pkgsrc Committed By: ryoon Date: Tue May 16 12:43:47 UTC 2017 Modified Files: pkgsrc/print/pdf2djvu: Makefile distinfo Log Message: Update to 0.9.5 Changelog: pdf2djvu (0.9.5) unstable; urgency=low [ Jakub Wilk ] * Improve error handling: + Fix temporary files removal order. https://github.com/jwilk/pdf2djvu/issues/114 + Ignore duplicate page titles (with warning). Thanks to Juan Francisco Cantero Hurtado for the bug report. https://github.com/jwilk/pdf2djvu/issues/113 * Fix creating bookmarks with more than 255 children. Regression introduced in 0.7.20. * Fix incorrect progress output in parallel mode. * Windows: fix console output encoding. https://github.com/jwilk/pdf2djvu/issues/64 * Upgrade libraries bundled with the Windows package: - Poppler 0.49; - DjvuLibre 3.5.27; - GraphicsMagick 1.3.25; - Expat 2.2.0; - FreeType 2.6.5; - fontconfig 2.12.1; - gettext 0.19.8.1. * Improve documentation: + Don't mention “--page-title-template=” as a way of disabling page titles. This works only if “--no-page-titles” works; there's no reason to prefer the former. Thanks to Roland Winkler for the bug report. + Update nose homepage URL. + Update OpenMP URLs. + Fix typos. * Improve the test suite: + Fix test failure on GNU/Hurd, which doesn't correctly propagate virtual memory limits to subprocesses. http://savannah.gnu.org/bugs/?43320 * Drop support for Poppler < 0.17. * Build with “-std=gnu++98”. * Build with “-Wempty-body”. * Build with “-Werror=misleading-indentation”. * Don't enable unknown warning options for clang. * Update the Polish translation. [ Américo Monteiro ] * Update the Portuguese translation. [ Chris Leick ] * Update the German translation. [ Kyrill Detinov ] * Update the Russian translation. -- Jakub Wilk Wed, 14 Dec 2016 23:39:19 +0100 To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 pkgsrc/print/pdf2djvu/Makefile cvs rdiff -u -r1.11 -r1.12 pkgsrc/print/pdf2djvu/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1494938627172980 Content-Disposition: inline Content-Length: 1788 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/pdf2djvu/Makefile diff -u pkgsrc/print/pdf2djvu/Makefile:1.47 pkgsrc/print/pdf2djvu/Makefile:1.48 --- pkgsrc/print/pdf2djvu/Makefile:1.47 Fri May 12 12:03:23 2017 +++ pkgsrc/print/pdf2djvu/Makefile Tue May 16 12:43:47 2017 @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.47 2017/05/12 12:03:23 jperkin Exp $ +# $NetBSD: Makefile,v 1.48 2017/05/16 12:43:47 ryoon Exp $ # -DISTNAME= pdf2djvu-0.9.4 -PKGREVISION= 6 +DISTNAME= pdf2djvu-0.9.5 CATEGORIES= print -MASTER_SITES= https://bitbucket.org/jwilk/pdf2djvu/downloads/ +MASTER_SITES= https://github.com/jwilk/pdf2djvu/releases/download/${PKGVERSION_NOREV}/ EXTRACT_SUFX= .tar.xz MAINTAINER= ryoon@NetBSD.org Index: pkgsrc/print/pdf2djvu/distinfo diff -u pkgsrc/print/pdf2djvu/distinfo:1.11 pkgsrc/print/pdf2djvu/distinfo:1.12 --- pkgsrc/print/pdf2djvu/distinfo:1.11 Tue Mar 15 13:15:29 2016 +++ pkgsrc/print/pdf2djvu/distinfo Tue May 16 12:43:47 2017 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.11 2016/03/15 13:15:29 ryoon Exp $ +$NetBSD: distinfo,v 1.12 2017/05/16 12:43:47 ryoon Exp $ -SHA1 (pdf2djvu-0.9.4.tar.xz) = ae4adc1376375f38ef9e79514b5e026855d56bde -RMD160 (pdf2djvu-0.9.4.tar.xz) = a70e6aab9b027978541f2ea37936f55c3a9acd6f -SHA512 (pdf2djvu-0.9.4.tar.xz) = 6b97d0577ee6e623d8c877393f551dd2a5e19508e5cd6dc5bb2d3ae1a2b71c2f0ffc7020d85507bc52a25da09a301dd5ddf45ab2628928477e0846707ea57322 -Size (pdf2djvu-0.9.4.tar.xz) = 250332 bytes +SHA1 (pdf2djvu-0.9.5.tar.xz) = 31243c5c90cf89110191866159bdfd9164150e45 +RMD160 (pdf2djvu-0.9.5.tar.xz) = 638aaf4b4a2885a5138cad3df0e67bbe89496f2a +SHA512 (pdf2djvu-0.9.5.tar.xz) = d3628f40f17fc2a2449f45a51a5641cb0fc0f55fc71cc481cd71e029bc870280bdf938d3ed1e757c61ea100d9a67af316362f9e7c3cc10c0d704ca3645d6633a +Size (pdf2djvu-0.9.5.tar.xz) = 267188 bytes --_----------=_1494938627172980--