Wed Mar 25 10:44:04 2020 UTC ()
libmwaw: Update to 0.3.16

- remove the QuarkXPress parser (must be in libqxp)
- retrieve the annotation in MsWord 5 document,
- try to better understand RagTime 5-6 document:
  + retrieve document with one spreasheet as
    spreadsheet,
  + retrieve character attachments and footnotes
    as comments
- add a parser for QuarkXPress v1-2 files
- small changes when converting MacWrite II/pro files
- transform bitmap in PNG if zlib is avalaible
- add a parser for Fractal Design/MetaCreations/Corel Painter v1-v10
- modernize the code(unique_ptr, ...)
- fix some fuzzer problems
- add a parser for Microsoft Multiplan v1.11 mac files
- Claris Resolve/Wingz: try to retrieve's the graphic, textbox, ...
- require c++-11 + modernize the code,
- AppleWorks/ClarisWorks: try to retrieve more data in dabase's file
  (the pictures, replace enum id by their values, the calculation's formula).
- PowerPoint: correct a problem with bullet's encoding in v3-v4 Mac's files,
- Microsoft Word: try to retrieve some metadata.
- correct many fuzzing's errors,
- FreeHand's parser: correct some minor errors.
- add a parser to read Windows PowerPoint 95 files
- add some parsers to read Mac PowerPoint v4 files and Windows PowerPoint v2,v4 files
- add some parsers to read Mac PowerPoint v1-v3 files and Windows PowerPoint v3 files
- accept to read structured input containing a DataFork's stream and a RsrcInfo's stream
  (or the three following streams DataFork,InfoFork,RsrcFork)
- modified the converters to create such an input when they find a rsrc fork...
- allow to compile with clang++ using arguments:
  "-Weverything -Wno-padded"
- allow to compile with clang++ using arguments:
  "-Weverything -Wno-padded -Wno-old-style-cast -Wno-covered-switch-default"
- fix some problems found by afl
- add a parser to Cricket Draw v1.1.1 files,
- add a parser for MouseWrite files
- add a parser for MaxWrite files
- add a parser to Cricket Draw v1.0.1 files,
- add a class to store transformation: MWAwTransformation
- add a parser for Aldus FreeHand version 1 and 2 files
  which are not converted by libfreehand's library.
  It seems logical to move back someday this parser
  in libfreehand library...
- ApplePict: read uncompressed Quicktime opcode
- ClarisWorks/AppleWorks: retrieve some metadata
- all: generate real date/time fields...
- all: improve the checking of formats when parsing a file
- RagTime v5-v6 parser: try to retrieve the embedded spreadsheets
  + begin to understand the hierarchical structures which store
    a chart (but not the meaning of each field),
- ClarisWorks/AppleWorks: find a new structure in the file's header
  (which could prevent to convert some database's file),
- BeagleWorks/GreatWorks/Word Perfect Works: retrieve the picture's
  field in a database
- all: improve a little the methods which create spreadsheets,
- all: make some constructors explicit.
- add a parser for Style documents(at least v1.6 and v1.9)
- add file signatures for FullPaint documents which have the same format as MacPaint..
- add a parser for Pixel Paint documents


(nia)
diff -r1.23 -r1.24 pkgsrc/converters/libmwaw/Makefile
diff -r1.10 -r1.11 pkgsrc/converters/libmwaw/distinfo

cvs diff -r1.23 -r1.24 pkgsrc/converters/libmwaw/Makefile (expand / switch to unified diff)

--- pkgsrc/converters/libmwaw/Makefile 2020/01/18 23:30:14 1.23
+++ pkgsrc/converters/libmwaw/Makefile 2020/03/25 10:44:04 1.24
@@ -1,39 +1,28 @@ @@ -1,39 +1,28 @@
1# $NetBSD: Makefile,v 1.23 2020/01/18 23:30:14 rillig Exp $ 1# $NetBSD: Makefile,v 1.24 2020/03/25 10:44:04 nia Exp $
2 2
3DISTNAME= libmwaw-0.3.7 3DISTNAME= libmwaw-0.3.16
4# next two lines added for 0.3.6-v2, remove after update to usual 
5# version number format 
6PKGNAME= ${DISTNAME:S/-v/./} 
7PKGREVISION= 11 
8WRKSRC= ${WRKDIR}/${DISTNAME:S/-v2//} 
9CATEGORIES= converters 4CATEGORIES= converters
10MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libmwaw/} 5MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libmwaw/}
11EXTRACT_SUFX= .tar.bz2 6EXTRACT_SUFX= .tar.xz
12 7
13MAINTAINER= jaapb@NetBSD.org 8MAINTAINER= jaapb@NetBSD.org
14HOMEPAGE= https://sourceforge.net/p/libmwaw/wiki/Home/ 9HOMEPAGE= https://sourceforge.net/p/libmwaw/wiki/Home/
15COMMENT= Import library for pre-OSX Mac text formats 10COMMENT= Import library for pre-OSX Mac text formats
16LICENSE= mpl-2.0 OR gnu-lgpl-v2 11LICENSE= mpl-2.0 OR gnu-lgpl-v2
17 12
18GNU_CONFIGURE= yes 13GNU_CONFIGURE= yes
19USE_LIBTOOL= yes 14USE_LIBTOOL= yes
20USE_TOOLS+= pkg-config 15USE_TOOLS+= pkg-config
21USE_LANGUAGES= c c++ 16USE_LANGUAGES= c c++
22 17
23CONFIGURE_ARGS+= --without-docs 18# C++11
24 19GCC_REQD+= 4.7
25BUILDLINK_TRANSFORM+= rm:-Werror 
26 20
27.include "../../mk/compiler.mk" 21CONFIGURE_ARGS+= --without-docs
28.if !empty(PKGSRC_COMPILER:Mclang) 
29CONFIGURE_ARGS+= --with-sharedptr=c++11 
30.else 
31CONFIGURE_ARGS+= --with-sharedptr=tr1 
32.endif 
33 22
34PKGCONFIG_OVERRIDE+= libmwaw.pc.in 23PKGCONFIG_OVERRIDE+= libmwaw.pc.in
35 24
36.include "../../converters/libwpg/buildlink3.mk" 25.include "../../converters/libwpg/buildlink3.mk"
37.include "../../converters/librevenge/buildlink3.mk" 26.include "../../converters/librevenge/buildlink3.mk"
38.include "../../devel/zlib/buildlink3.mk" 27.include "../../devel/zlib/buildlink3.mk"
39.include "../../mk/bsd.pkg.mk" 28.include "../../mk/bsd.pkg.mk"

cvs diff -r1.10 -r1.11 pkgsrc/converters/libmwaw/distinfo (expand / switch to unified diff)

--- pkgsrc/converters/libmwaw/distinfo 2016/08/15 18:58:13 1.10
+++ pkgsrc/converters/libmwaw/distinfo 2020/03/25 10:44:04 1.11
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.10 2016/08/15 18:58:13 ryoon Exp $ 1$NetBSD: distinfo,v 1.11 2020/03/25 10:44:04 nia Exp $
2 2
3SHA1 (libmwaw-0.3.7.tar.bz2) = 8b58073dff4ce59da929e25a627722d6c34f9788 3SHA1 (libmwaw-0.3.16.tar.xz) = dcb5fee35fd9a0489e8f8ce666c10899e3aa4bbd
4RMD160 (libmwaw-0.3.7.tar.bz2) = 8444d5d6310f45fa140356fbeb4cf963bdefa171 4RMD160 (libmwaw-0.3.16.tar.xz) = 111e5dc4e9cefbd812dafd4168ea0c0cc18aca04
5SHA512 (libmwaw-0.3.7.tar.bz2) = e1c68efbb4f12bd6e8817636df3d9e3d0bbc95ace634df98e8599b4e0b70bc407eb12e979ddcd54ddd585617d379d226b3e7d807399ec89537491a8f592964b1 5SHA512 (libmwaw-0.3.16.tar.xz) = c043d77e4b0efd7da594c1e370f24ee2d85afcb8a5e28179b4c3d76c8b7925f41ca5361bee12b35af732ef39f34fac46aa3636cb27c179ef9bb2b6feeaa19b0a
6Size (libmwaw-0.3.7.tar.bz2) = 1390872 bytes 6Size (libmwaw-0.3.16.tar.xz) = 1306872 bytes