Hello community, here is the log from the commit of package calibre for openSUSE:Factory checked in at Mon Sep 26 17:02:01 CEST 2011.
-------- --- calibre/calibre.changes 2011-08-31 12:25:51.000000000 +0200 +++ /mounts/work_src_done/STABLE/calibre/calibre.changes 2011-09-26 12:41:54.000000000 +0200 @@ -1,0 +2,70 @@ +Mon Sep 26 10:41:30 UTC 2011 - [email protected] + +- add work around for new poppler version + +------------------------------------------------------------------- +Mon Sep 26 09:21:53 UTC 2011 - [email protected] + +- update to 0.8.20 + new features: + - MOBI Output: Map a larger set of font names to + sans-serif/monospace font in the MOBI file + - Get Books: Allow searching on the DRM column in the results. + - Manage tags/series/etc dialog: Add a was column to show the + old value when changing values. + - Template language: Add new functions to manipulate language codes + bug fixes: + - MOBI Output: Don't set cdetype when option to enable sharing + instead of syncing is specified. This fixes the option. + - Conversion pipeline: Fix crash caused by empty <style> elements. + - Get Books: Fix Woblink store + - MOBI Input: Correctly handle MOBI files that have been passed + through a DRM removal tool that leaves the DRM fields in the header. + - Fix typo preventing the updating of metadata in MOBI files + serverd by the content server + - Get Books: Handle non ASCII filenames for downloaded books + - When generating the title sort string and stripping a leading + article, strip leading punctuation that remains after removing the article + - Fix downloading metadata in the Edit metadata dialog could + result in off by one day published dates, in timezones behind GMT + - Fix handing of title_sort and custom columns when creating a BiBTeX catalog. + - TXT Markdown Input: Change handling of _ to work mid word. + - Fix Check library reporting unknown files ad both missing an unknown + - Search/Replace: Permit .* to match empty tag like columns. + +------------------------------------------------------------------- +Tue Sep 20 14:33:12 UTC 2011 - [email protected] + +- updated to 0.8.19 +- New Features: + o Driver for Sony Ericsson Xperia Arc + o MOBI Output: Add option in Preferences->Output Options->MOBI + Output to enable the share via Facebook feature for calibre + produced MOBI files. Note that enabling this disables the sync + last read position across multiple devices feature. + o Content server: Update metadata when sending MOBI as well as EPUB files + o News download: Add an auto_cleanup_keep variable that allows + recipe writers to tell the auto cleanup to never remove a specified element + o Conversion: Remove paragraph spacing: If you set the indent size + negative, calibre will now leave the indents specified in the input document + +- Bug Fixes: + o Fix regression in 0.8.18 that broke PDF Output + o MOBI Output: Revert change in 0.8.18 that marked news downloads + with a single section as blogs, as the Kindle does not auto archive them + o PDF output on OSX now generates proper non image based documents + o RTF Input: Fix handling of internal links and underlined text + o Fix language sometimes not getting set when downloading metadata in the edit metadata dialog + o Fix regression that broke killing of multiple jobs + o Fix bug processing author names with initials when downloading metadata from ozon.ru. + o Fix a memory leak in the Copy to library operation which also fixes the metadata.db being held open in the destination library + o Keyboard shortcuts: Allow use of symbol keys like >,*,etc. + o EPUB Output: When splitting be a little cleverer about discarding 'empty' pages + +------------------------------------------------------------------- +Wed Aug 31 14:31:13 UTC 2011 - [email protected] + +- reported incorrect-fsf-adress to upstream with Bug lp#837986 + (https://bugs.launchpad.net/calibre/+bug/837986 + +------------------------------------------------------------------- calling whatdependson for head-i586 Old: ---- calibre-0.8.16-nofonts.tar.bz2 calibre-l18n.diff New: ---- calibre-0.8.20-nofonts.tar.bz2 calibre-poppler.diff ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ calibre.spec ++++++ --- /var/tmp/diff_new_pack.0AzPM4/_old 2011-09-26 17:01:39.000000000 +0200 +++ /var/tmp/diff_new_pack.0AzPM4/_new 2011-09-26 17:01:39.000000000 +0200 @@ -19,20 +19,31 @@ Summary: EBook Management Application Name: calibre -Version: 0.8.16 +Version: 0.8.20 Release: 1 Url: http://calibre-ebook.com Group: Productivity/Other License: GPL3 +# Getting and modifying the sources +#---------------------------------- +# Do not use unmodified upstream sources, since they contain proprietary +# fonts which we are not allowed to distribute. Furthermore, the Liberation +# fonts, which are available as a separate package, are also included. Call +# sh generate-tarball.sh <VERSION> +# which downloads the sources, deletes the fonts and repacks it to +# calibre-$VERSION-nofonts.tar.bz2 Source0: %{name}-%{version}-nofonts.tar.bz2 Source2: %{name}.desktop Source3: %{name}.png Source4: generate-tarball.sh + # [email protected] 09/5/10 --fixes man issues # see http://bugs.calibre-ebook.com/ticket/3770 Patch1: %{name}-no-update-manpage.diff # [email protected] 09/5/10 --adjust installion Patch2: %{name}-setup.install.py.diff +# PATCH-FIX-UPSTREAM [email protected] - adapt the poppler API changes +Patch3: %{name}-poppler.diff Obsoletes: calibre07 @@ -126,15 +137,13 @@ into ebooks for convenient reading. It is cross platform, running on Linux, Windows and OS X. - -Author ------- - Kovid Goyal <[email protected]> - %prep %setup -q -n %{name} %patch1 %patch2 -p1 +%if %suse_version > 1140 +%patch3 -p1 +%endif # dos2unix newline conversion %{__sed} -i 's/\r//' src/calibre/web/feeds/recipes/* ++++++ calibre-0.8.16-nofonts.tar.bz2 -> calibre-0.8.20-nofonts.tar.bz2 ++++++ calibre/calibre-0.8.16-nofonts.tar.bz2 /mounts/work_src_done/STABLE/calibre/calibre-0.8.20-nofonts.tar.bz2 differ: char 11, line 1 ++++++ calibre-poppler.diff ++++++ Index: calibre/src/calibre/ebooks/pdf/reflow.cpp =================================================================== --- calibre.orig/src/calibre/ebooks/pdf/reflow.cpp 2011-09-26 12:04:07.612954868 +0200 +++ calibre/src/calibre/ebooks/pdf/reflow.cpp 2011-09-26 12:29:25.984411632 +0200 @@ -625,7 +625,7 @@ static string get_link_dest(LinkAction * return oss.str(); } -void XMLOutputDev::process_link(Link* link){ +void XMLOutputDev::process_link(AnnotLink* link){ double _x1, _y1, _x2, _y2; int x1, y1, x2, y2; Index: calibre/src/calibre/ebooks/pdf/reflow.h =================================================================== --- calibre.orig/src/calibre/ebooks/pdf/reflow.h 2011-09-26 12:04:07.612954868 +0200 +++ calibre/src/calibre/ebooks/pdf/reflow.h 2011-09-26 12:29:25.984411632 +0200 @@ -244,6 +244,6 @@ class XMLOutputDev : public OutputDev { XMLImages *images; PDFDoc *doc; - void process_link(Link* link); + void process_link(AnnotLink* link); }; } Index: calibre/src/calibre/ebooks/pdf/images.cpp =================================================================== --- calibre.orig/src/calibre/ebooks/pdf/images.cpp 2011-09-23 19:14:20.000000000 +0200 +++ calibre/src/calibre/ebooks/pdf/images.cpp 2011-09-26 12:30:07.976811191 +0200 @@ -4,7 +4,10 @@ */ - +#include <poppler/poppler-config.h> +#undef ENABLE_LIBJPEG +#include <poppler/Object.h> +#include <poppler/Stream.h> #include <stdio.h> #include <errno.h> #include <sstream> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
