pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/converters/libe-book Update to 0.1.2:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1580eb96a77b
branches:  trunk
changeset: 644641:1580eb96a77b
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Fri Jan 16 09:02:29 2015 +0000

description:
Update to 0.1.2:

libe-book 0.1.2

- Check arguments of public functions. Passing NULL no longer causes
  a crash.
- Use symbol visibility on Linux. The library only exports the two public
  functions now.
- Fix handling of --enable-experimental configure option.
- Fix various crashes and hangs when reading broken files, found with the
  help of american-fuzzy-lop.
- FictionBook v.2:
  + Fix incorrect mime type for JPEG images that occurs occasionally in
    FB2 files.
  + Handle zipped files that contain more than one file.
  + Add support for headings.
  + Add support for text language.
- Broad Band eBook:
  + Convert dimensions and font sizes correctly. This makes the output
    actually usable :-)
  + Parse basic paragraph and character properties.
  + Add initial support for images. Only Plot tag is supported, as
    Canvas is much more complex and can contain other objects too, not
    just a single image.
  + Recognize GIF images too.
  + Parse important page properties, like dimensions and margins.
  + Substitute the default fonts embedded on the devices for Liberation
    fonts.
  + Try to reconstruct headings from table of contents.

diffstat:

 converters/libe-book/Makefile                |   5 ++---
 converters/libe-book/distinfo                |   9 +++++----
 converters/libe-book/patches/patch-configure |  15 +++++++++++++++
 3 files changed, 22 insertions(+), 7 deletions(-)

diffs (47 lines):

diff -r 88546dabca67 -r 1580eb96a77b converters/libe-book/Makefile
--- a/converters/libe-book/Makefile     Fri Jan 16 08:57:54 2015 +0000
+++ b/converters/libe-book/Makefile     Fri Jan 16 09:02:29 2015 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.11 2014/11/07 19:39:27 adam Exp $
+# $NetBSD: Makefile,v 1.12 2015/01/16 09:02:29 wiz Exp $
 
-DISTNAME=      libe-book-0.1.1
-PKGREVISION=   3
+DISTNAME=      libe-book-0.1.2
 CATEGORIES=    converters
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=libebook/}
 EXTRACT_SUFX=  .tar.bz2
diff -r 88546dabca67 -r 1580eb96a77b converters/libe-book/distinfo
--- a/converters/libe-book/distinfo     Fri Jan 16 08:57:54 2015 +0000
+++ b/converters/libe-book/distinfo     Fri Jan 16 09:02:29 2015 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.4 2014/07/23 06:15:22 wiz Exp $
+$NetBSD: distinfo,v 1.5 2015/01/16 09:02:29 wiz Exp $
 
-SHA1 (libe-book-0.1.1.tar.bz2) = 99e6e37f641b87d503b93a237526e2024ebdcb32
-RMD160 (libe-book-0.1.1.tar.bz2) = a44c5bfc245530cc77d91ab683db1f3cd1957c27
-Size (libe-book-0.1.1.tar.bz2) = 466712 bytes
+SHA1 (libe-book-0.1.2.tar.bz2) = ec278a787e40610bf8f7b21e63eb0f3f06fccb9e
+RMD160 (libe-book-0.1.2.tar.bz2) = 5c04141bd3e8f6860d235b64895a5e95a9c1b9cb
+Size (libe-book-0.1.2.tar.bz2) = 465922 bytes
+SHA1 (patch-configure) = 69af36cfbea4fd761952caf45df972a95ce68ff1
 SHA1 (patch-src_lib_FB2Token.cpp) = 4532e652cf434fcfb52d268856f3c74be1bad894
diff -r 88546dabca67 -r 1580eb96a77b converters/libe-book/patches/patch-configure
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/converters/libe-book/patches/patch-configure      Fri Jan 16 09:02:29 2015 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-configure,v 1.1 2015/01/16 09:02:29 wiz Exp $
+
+Fix unportable test(1) operator.
+
+--- configure.orig     2015-01-05 08:41:53.000000000 +0000
++++ configure
+@@ -17247,7 +17247,7 @@ else
+ fi
+ 
+ 
+-if test "x$platform_win32" == "xyes"; then :
++if test "x$platform_win32" = "xyes"; then :
+ 
+ else
+ 



Home | Main Index | Thread Index | Old Index