diff options
author | ryoon <ryoon@pkgsrc.org> | 2015-09-24 22:56:37 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2015-09-24 22:56:37 +0000 |
commit | 1309d8edc6e8753d80efb1c01901aa9b447b0970 (patch) | |
tree | 5207a3a99ba092b744720ecec87968a055490deb /print | |
parent | 9c894da2697aa64b9b1b903ea87276e602bba9bf (diff) | |
download | pkgsrc-1309d8edc6e8753d80efb1c01901aa9b447b0970.tar.gz |
Update to 5.1.3
Changelog:
2015-05-24 Jay Berkenbilt <ejb@ql.org>
* 5.1.3: release
* Bug fix: fix-qdf was not handling object streams with more than
255 objects in them.
* Handle Microsoft crypt provider initialization properly for case
where no keys have been previously created, such as in a fresh
Windows installation.
* Include time.h in QUtil.hh for time_t
Diffstat (limited to 'print')
-rw-r--r-- | print/qpdf/Makefile | 5 | ||||
-rw-r--r-- | print/qpdf/distinfo | 8 | ||||
-rw-r--r-- | print/qpdf/patches/patch-include_qpdf_QUtil.hh | 14 |
3 files changed, 6 insertions, 21 deletions
diff --git a/print/qpdf/Makefile b/print/qpdf/Makefile index dec6cc26086..38f8c34df3d 100644 --- a/print/qpdf/Makefile +++ b/print/qpdf/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.9 2015/06/12 10:50:59 wiz Exp $ +# $NetBSD: Makefile,v 1.10 2015/09/24 22:56:37 ryoon Exp $ -DISTNAME= qpdf-5.1.2 -PKGREVISION= 1 +DISTNAME= qpdf-5.1.3 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=qpdf/} diff --git a/print/qpdf/distinfo b/print/qpdf/distinfo index ca711358860..38a204c225c 100644 --- a/print/qpdf/distinfo +++ b/print/qpdf/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.8 2015/01/26 11:54:17 mef Exp $ +$NetBSD: distinfo,v 1.9 2015/09/24 22:56:37 ryoon Exp $ -SHA1 (qpdf-5.1.2.tar.gz) = ede3938fdf2e3bf603fce6eb2bd93b3a2e1d13b9 -RMD160 (qpdf-5.1.2.tar.gz) = 959b8412ecf3d2aefde07a2eb2c60c0aea8f5b3f -Size (qpdf-5.1.2.tar.gz) = 7664268 bytes +SHA1 (qpdf-5.1.3.tar.gz) = 805aeaeaff16c0e5fedc4ad3881d3bf03642f08f +RMD160 (qpdf-5.1.3.tar.gz) = 45f7bcf12a034928ba8feefc5ad1d282709e179a +Size (qpdf-5.1.3.tar.gz) = 7681578 bytes SHA1 (patch-include_qpdf_QUtil.hh) = 762000dd8e4f61ed9638a7ba4c4e5ba6540268cd SHA1 (patch-make_libtool.mk) = 8622d6a446da284269102dde38bf14271363dfdc diff --git a/print/qpdf/patches/patch-include_qpdf_QUtil.hh b/print/qpdf/patches/patch-include_qpdf_QUtil.hh deleted file mode 100644 index 0c43b9342ef..00000000000 --- a/print/qpdf/patches/patch-include_qpdf_QUtil.hh +++ /dev/null @@ -1,14 +0,0 @@ -$NetBSD: patch-include_qpdf_QUtil.hh,v 1.2 2015/01/26 11:54:17 mef Exp $ - -Pull time.h to define time_t on FreeBSD. - ---- include/qpdf/QUtil.hh.orig 2014-06-08 06:06:13.000000000 +0900 -+++ include/qpdf/QUtil.hh 2015-01-26 20:47:22.000000000 +0900 -@@ -14,6 +14,7 @@ - #include <list> - #include <stdexcept> - #include <stdio.h> -+#include <time.h> - - class RandomDataProvider; - |