diff options
author | wiz <wiz@pkgsrc.org> | 2014-12-01 11:15:21 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-12-01 11:15:21 +0000 |
commit | 205865a7494f4a06c1714437623906dc104aeb00 (patch) | |
tree | bfe1e58756be89f0225a9354a2738bc11583e8f5 /converters | |
parent | b7750b9d7d7d1d8f7752e4ca696b9ac3f8ecd7b4 (diff) | |
download | pkgsrc-205865a7494f4a06c1714437623906dc104aeb00.tar.gz |
Update to 0.1.1:
libcdr 0.1.1
* Fix several problems found by Coverity.
* Fix crash when NULL is passed as input stream.
* Fix various crashes and hangs when reading broken files found with the
help of american-fuzzy-lop.
* Only export public symbols on Linux.
Diffstat (limited to 'converters')
-rw-r--r-- | converters/libcdr/Makefile | 5 | ||||
-rw-r--r-- | converters/libcdr/distinfo | 9 | ||||
-rw-r--r-- | converters/libcdr/patches/patch-configure | 15 |
3 files changed, 22 insertions, 7 deletions
diff --git a/converters/libcdr/Makefile b/converters/libcdr/Makefile index 2ae36a2fbbb..577d0e2868e 100644 --- a/converters/libcdr/Makefile +++ b/converters/libcdr/Makefile @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2014/11/07 19:39:27 adam Exp $ +# $NetBSD: Makefile,v 1.14 2014/12/01 11:15:21 wiz Exp $ -DISTNAME= libcdr-0.1.0 -PKGREVISION= 3 +DISTNAME= libcdr-0.1.1 CATEGORIES= converters MASTER_SITES= http://dev-www.libreoffice.org/src/libcdr/ EXTRACT_SUFX= .tar.xz diff --git a/converters/libcdr/distinfo b/converters/libcdr/distinfo index 38a3bbdc67a..20ea0145a68 100644 --- a/converters/libcdr/distinfo +++ b/converters/libcdr/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2014/07/22 11:07:58 wiz Exp $ +$NetBSD: distinfo,v 1.5 2014/12/01 11:15:21 wiz Exp $ -SHA1 (libcdr-0.1.0.tar.xz) = e42dbf8cb4ac4271b38a6105a0c2e4c2259038f5 -RMD160 (libcdr-0.1.0.tar.xz) = 2d249e5367f1355536a38a7691e09bbc41e9b8c4 -Size (libcdr-0.1.0.tar.xz) = 562240 bytes +SHA1 (libcdr-0.1.1.tar.xz) = adc8cfeeed330763dbff5e933401b6a0d76b114b +RMD160 (libcdr-0.1.1.tar.xz) = 5d6ea7a497103c1c6d889c8a74f0e97e13a3569f +Size (libcdr-0.1.1.tar.xz) = 564668 bytes +SHA1 (patch-configure) = 94dfa002ffd4c9240c6f05add2b317e854c425f0 diff --git a/converters/libcdr/patches/patch-configure b/converters/libcdr/patches/patch-configure new file mode 100644 index 00000000000..85f259fc312 --- /dev/null +++ b/converters/libcdr/patches/patch-configure @@ -0,0 +1,15 @@ +$NetBSD: patch-configure,v 1.1 2014/12/01 11:15:21 wiz Exp $ + +Fix unportable test(1) comparison operator. + +--- configure.orig 2014-11-24 14:03:55.000000000 +0000 ++++ configure +@@ -17644,7 +17644,7 @@ else + fi + + +-if test $platform_win32 == yes; then : ++if test $platform_win32 = yes; then : + + else + |