Wed Aug 7 12:13:01 2019 UTC ()
pdf2djvu: Update to 0.9.13

pdf2djvu (0.9.13) unstable; urgency=low

  [ Jakub Wilk ]
  * Fix build failure with Poppler ≥ 0.76.
  * Improve warning message for (unhandled) hide actions.
  * Windows: fix reading files with non-ASCII characters in names.
    https://github.com/jwilk/pdf2djvu/issues/138
  * Upgrade libraries bundled with the Windows package:
    - Poppler 0.77;
    - FreeType 2.10;
    - OpenJPEG 2.3.1.
  * Improve the test suite:
    + Don't enforce the C locale.
    + Make it easy to pass arguments to nose.
      (make test noseargs=...)
  * Update the Polish translation.
  * Use HTTPS for exiv2.org URLs.
  * Update poppler-data URL.
  * Add support for heap profiling using gperftools.

  [ Samy Mahmoudi ]
  * Improve build-time logging.

 -- Jakub Wilk <jwilk@jwilk.net>  Mon, 10 Jun 2019 19:06:35 +0200

pdf2djvu (0.9.12) unstable; urgency=low

  * Fix build failure with Poppler ≥ 0.72.
  * Improve the test suite.
  * Improve typography in the manual page.
  * Upgrade libraries bundled with the Windows package:
    - Poppler 0.72;
    - poppler-data 0.4.9;
    - GraphicsMagick 1.3.31;
    - FreeType 2.9.1;
    - Expat 2.2.6.
  * Windows: fix GraphicsMagick configuration search path.
  * Windows: install miscellaneous documentation files.
    Regression introduced in 0.8.1.
  * Windows build system: don't download sources without explicit user's
    consent.

 -- Jakub Wilk <jwilk@jwilk.net>  Wed, 02 Jan 2019 16:46:27 +0100

pdf2djvu (0.9.11) unstable; urgency=low

  * Fix build failure with Poppler ≥ 0.70.
  * Improve error handling.
  * Improve the build system:
    + Fix Poppler (≥ 0.69) headers detection with old compilers that require
      the -std option to enable C++11 mode.
    + Honor the CPPFLAGS environment variable only at configure time, not when
      running make. (This was already the case for other *FLAGS variables.)
  * Improve the test suite:
    + Make it easy to use custom Python interpreter.
      (make test PYTHON=/path/to/python)
    + Make it easy to test against installed version of pdf2djvu.
      (make test-installed)
  * Improve documentation:
    + Use HTTPS for leon.bottou.org URL.

 -- Jakub Wilk <jwilk@jwilk.net>  Thu, 25 Oct 2018 23:07:15 +0200


(nia)
diff -r1.78 -r1.79 pkgsrc/print/pdf2djvu/Makefile
diff -r1.14 -r1.15 pkgsrc/print/pdf2djvu/distinfo

cvs diff -r1.78 -r1.79 pkgsrc/print/pdf2djvu/Makefile (expand / switch to unified diff)

--- pkgsrc/print/pdf2djvu/Makefile 2019/07/23 17:20:00 1.78
+++ pkgsrc/print/pdf2djvu/Makefile 2019/08/07 12:13:01 1.79
@@ -1,28 +1,30 @@ @@ -1,28 +1,30 @@
1# $NetBSD: Makefile,v 1.78 2019/07/23 17:20:00 wiz Exp $ 1# $NetBSD: Makefile,v 1.79 2019/08/07 12:13:01 nia Exp $
2 2
3DISTNAME= pdf2djvu-0.9.10 3DISTNAME= pdf2djvu-0.9.13
4PKGREVISION= 12 
5CATEGORIES= print 4CATEGORIES= print
6MASTER_SITES= https://github.com/jwilk/pdf2djvu/releases/download/${PKGVERSION_NOREV}/ 5MASTER_SITES= ${MASTER_SITE_GITHUB:=jwilk/}
 6GITHUB_RELEASE= ${PKGVERSION_NOREV}
7EXTRACT_SUFX= .tar.xz 7EXTRACT_SUFX= .tar.xz
8 8
9MAINTAINER= ryoon@NetBSD.org 9MAINTAINER= ryoon@NetBSD.org
10HOMEPAGE= http://jwilk.net/software/pdf2djvu 10HOMEPAGE= http://jwilk.net/software/pdf2djvu
11COMMENT= Creates DjVu files from PDF files 11COMMENT= Creates DjVu files from PDF files
12LICENSE= gnu-gpl-v2 12LICENSE= gnu-gpl-v2
13 13
14DEPENDS+= djvulibre-tools-[0-9]*:../../graphics/djvulibre-tools 14DEPENDS+= djvulibre-tools-[0-9]*:../../graphics/djvulibre-tools
15 15
16WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} 16WRKSRC= ${WRKDIR}/${PKGNAME_NOREV}
17GNU_CONFIGURE= yes 17GNU_CONFIGURE= yes
18USE_PKGLOCALEDIR= yes 18USE_PKGLOCALEDIR= yes
19USE_LANGUAGES= c++ 19USE_LANGUAGES= c++
20USE_TOOLS+= pkg-config gmake intltool msgfmt xgettext 20USE_TOOLS+= pkg-config gmake intltool msgfmt xgettext
 21
21CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale 22CONFIGURE_ARGS+= --localedir=${PREFIX}/${PKGLOCALEDIR}/locale
 23CONFIGURE_ARGS+= --disable-rpath
22 24
23.include "../../converters/libiconv/buildlink3.mk" 25.include "../../converters/libiconv/buildlink3.mk"
24.include "../../graphics/GraphicsMagick/buildlink3.mk" 26.include "../../graphics/GraphicsMagick/buildlink3.mk"
25.include "../../graphics/djvulibre-lib/buildlink3.mk" 27.include "../../graphics/djvulibre-lib/buildlink3.mk"
26.include "../../print/poppler-includes/buildlink3.mk" 28.include "../../print/poppler-includes/buildlink3.mk"
27.include "../../print/poppler/buildlink3.mk" 29.include "../../print/poppler/buildlink3.mk"
28.include "../../mk/bsd.pkg.mk" 30.include "../../mk/bsd.pkg.mk"

cvs diff -r1.14 -r1.15 pkgsrc/print/pdf2djvu/distinfo (expand / switch to unified diff)

--- pkgsrc/print/pdf2djvu/distinfo 2018/09/29 19:02:31 1.14
+++ pkgsrc/print/pdf2djvu/distinfo 2019/08/07 12:13:01 1.15
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.14 2018/09/29 19:02:31 tnn Exp $ 1$NetBSD: distinfo,v 1.15 2019/08/07 12:13:01 nia Exp $
2 2
3SHA1 (pdf2djvu-0.9.10.tar.xz) = a6651d5f458b73858e4a7b45e452ee587fc51077 3SHA1 (pdf2djvu-0.9.13.tar.xz) = 100614ae77cfc200740d62a9f0afa841f6782663
4RMD160 (pdf2djvu-0.9.10.tar.xz) = 79681b300ec3e829bd9f4cb458cbddeabbbc5b37 4RMD160 (pdf2djvu-0.9.13.tar.xz) = 2a8b473ca93eafc3b7f35daf4824410e91af6edf
5SHA512 (pdf2djvu-0.9.10.tar.xz) = a17f4d0d24beed0ab68ac56f907426d3a49ef219ca36b1cd7114edd41bd892ae35b567f5cd60c1620a82e8dbab380cdc9500ce20ca88fb7f8513ec63da0e59de 5SHA512 (pdf2djvu-0.9.13.tar.xz) = 067c721d4f587fd38121ea104e1c08930df58108a2270d7142e539715c031b5bb6b302921dfd68ace09fddfb5c881f081d6a6d866f6038255e89754fc34bc006
6Size (pdf2djvu-0.9.10.tar.xz) = 291944 bytes 6Size (pdf2djvu-0.9.13.tar.xz) = 296420 bytes