Commit graph

6718 commits

Author SHA1 Message Date
darcy
3e3140446a Modify DEPENDS so that any version can be built/checked. As discussed on
the mailing list with joerg@.
2017-03-17 03:53:32 +00:00
gdt
e3187696c3 Just call it gimp, not gimp2 2017-03-16 13:20:52 +00:00
gdt
40e1db7f42 Update to 5.1.12
Upstream change summary (see NEWS for details):

  *) The Ghostscript IJS driver and Foomatic data generator have been
     removed.  CUPS is ubiquitous on Linux/UNIX systems, and the
     Ghostscript IJS driver and Foomatic data are not needed with
     CUPS.

  *) New/improved support for many dyesub printers, including media
     status reporting.

  *) Added/improved support for many printers.

  *) Removed support for Brother HL-1430.
2017-03-16 13:17:54 +00:00
wen
7bbcedc9b7 Update to 1.15.1
Upstream changes:

CHANGES IN knitr VERSION 1.15.1

@yihui yihui released this on 23 Nov 2016 · 49 commits to master since this release
NEW FEATURES

    added a new hook function hook_pngquant() that can call pngquant to optimize PNG images (thanks, @slowkow, #1320)

BUG FIXES

    not really a knitr bug, but knit_params() should be better at dealing with multibyte characters now due to the bug fix in the yaml package viking/r-yaml#6

Downloads

    Source code (zip)
    Source code (tar.gz)

    v1.15
    b08a7bc

CHANGES IN knitr VERSION 1.15

@yihui yihui released this on 10 Nov 2016 · 63 commits to master since this release
NEW FEATURES

    NA values can be displayed using different characters (including empty strings) in kable(); you can set the option knitr.kable.NA, e.g. options(knitr.kable.NA = '') to hide NA values (#1283)
    added a fortran95 engine (thanks, @stefanedwards, #1282)
    added a block2 engine for R Markdown documents as an alternative to the block engine; it should be faster and supports arbitrary Pandoc's Markdown syntax, but it is essentially a hack; note when the output format is LaTeX/PDF, you have to define \let\BeginKnitrBlock\begin \let\EndKnitrBlock\end in the LaTeX preamble
    figure captions specified in the chunk option fig.cap are also applied to HTML widgets (thanks, @byzheng, rstudio/bookdown#118)
    when the chunk option fig.show = 'animate' and ffmpeg.format = 'gif', a GIF animation of the plots in the chunk will be generated for HTML output (https://twitter.com/thomasp85/status/785800003436421120)
    added a width argument to write_bib() so long lines in bib entries can be wrapped
    the inline syntax r#code is also supported besides r code; this can make sure the inline expression is not split when the line is wrapped (thanks, Dave Jarvis)
    provided a global R option knitr.use.cwd so users can choose to evaluate the R code chunks in the current working directory after setting options(knitr.use.cwd = TRUE); the default is to evaluate code in the directory of the input document, unless the knitr option opts_knit$set(root.dir = ...) has been set
    if options(knitr.digits.signif = TRUE), numbers from inline expressions will be formatted using getOption('digits') as the number of significant digits, otherwise (the default behavior) getOption('digits') is treated as the number of decimal places (thanks, @numatt, #1053)
    the chunk option engine.path can also be a list of paths to the engine executables now, e.g., you can set knitr::opts_chunk$set(engine.path = list(python = '/anaconda/bin/python', perl = '/usr/local/bin/perl')), then when a python code chunk is executed, /anaconda/bin/python will be called instead of the system default (rstudio/rmarkdown#812)
    introduced a mechanism to protect text output in the sense that it will not be touched by Pandoc during the conversion from R Markdown to another format; this is primarily for package developers to extend R Markdown; see ?raw_output for details (which also shows new functions extract_raw_output() and restore_raw_output())

MAJOR CHANGES

    the minimal version of R required for knitr is 3.1.0 now (#1269)
    the formatR package is an optional package since the default chunk option tidy = FALSE has been there for a long time; if you use tidy = TRUE, you need to install formatR separately if it is not installed
    :set +m is no longer automatically added to haskell code chunks (#1274)

MINOR CHANGES

    the package option opts_knit$get('stop_on_error') has been removed
    the confusing warning message about knitr::knit2html() when buiding package vignettes using the knitr::rmarkdown engine without pandoc/pandoc-citeproc has been removed (#1286)
    the default value of the quiet argument of plot_crop() was changed from !opts_knit$get('progress') to TRUE, i.e., by default the messages from cropping images are suppressed

BUG FIXES

    the chunk option cache.vars did not really behave like what was documented (thanks, @simonkth, #1280)
    asis_output() should not be merged with normal character output when results='hold' (thanks, @kevinushey, #1310)

Downloads

    Source code (zip)
    Source code (tar.gz)

    v1.14
    b34be0d

CHANGES IN knitr VERSION 1.14

@yihui yihui released this on 12 Aug 2016 · 845 commits to master since this release
NEW FEATURES

    improved caching for Rcpp code chunks: the shared library built from the C++ code will be preserved on disk and reloaded the next time if caching is enabled (chunk option cache = TRUE), so that the exported R functions are still usable in later R code chunks; note this feature requires Rcpp >= 0.12.5.6 (thanks, @jjallaire, #1239)
    added a helper function all_rcpp_labels(), which is simply all_labels(engine == 'Rcpp') and can be used to extract all chunk lables of Rcpp chunks
    added a new engine named sql that uses the DBI package to execute SQL queries, and optionally assign the result to a variable in the knitr session; see http://rmarkdown.rstudio.com/authoring_knitr_engines.html for details (#1241)
    fig.keep now accepts numeric values to index low-level plots to keep (#1265)

BUG FIXES

    fixed #1211: pandoc('foo.md') generates foo_utf8.html instead of foo.html by default
    fixed #1236: include = FALSE for code chunks inside blockquotes did not work (should return > instead of a blank line) (thanks, @fmichonneau)
    fixed #1217: define the command \hlipl for syntax highlighting for Rnw documents (thanks, @conjugateprior)
    fixed #1215: restoring par() settings might fail when the plot window is partitioned, e.g. par(mfrow = c(1, 2)) (thanks, @jrwishart @jmichaelgilbert)
    fixed #1250: in the quiet mode, knit() should not emit the message "processing file ..." when processing child documents (thanks, @KZARCA)

MAJOR CHANGES

    knitr will no longer generate screenshots automatically for HTML widgets if the webshot package or PhantomJS is not installed

MINOR CHANGES

    if dev = 'cairo_pdf', the cairo_pdf device will be used to record plots (previously the pdf device was used) (#1235)
    LaTeX short captions now go up to the first ., : or ; character followed by a space or newline (thanks, @knokknok, #1249)
2017-03-11 12:42:19 +00:00
markd
c4c3203897 Move urlbsd script to bin directory. Bump PKGREVISION. 2017-03-07 08:26:17 +00:00
markd
0294c1d3ac Upstream removal of mpost from shell_escape_commands 2017-03-07 08:22:29 +00:00
wiz
95ebd67a88 Updated abcm2ps to 8.13.7.
---- Version 8.13.7 - 2017-02-26 ----

Don't display beams when no visible note with a stem
	(reported by Gerhard Schacherl)
Fix non working !ped! and !ped-up! with SVG output
	(reported by Gerhard Schacherl)
Fix non working "%%pos stem hidden"
	(reported by Gerhard Schacherl)
Fix bad horizontal spacing since 8.13.6
	(reported by David Lacroix)
Fix clash of slurs with note decorations since 8.13.6
	(reported by David Lacroix)
2017-03-05 12:31:25 +00:00
kleink
524f8df49a Update py-weasyprint to 0.36.
Version 0.36
------------

Released on 2017-02-25.

New features:

* `#407 <https://github.com/Kozea/WeasyPrint/pull/407>`_:
  Handle ::first-letter.
* `#423 <https://github.com/Kozea/WeasyPrint/pull/423>`_:
  Warn user about broken cairo versions.

Bug fixes:

* `#411 <https://github.com/Kozea/WeasyPrint/pull/411>`_:
  Typos fixed in command-line help.


Version 0.35
------------

Released on 2017-02-25.

Bug fixes:

* `#410 <https://github.com/Kozea/WeasyPrint/pull/410>`_:
  Fix AssertionError in split_text_box.
2017-03-03 15:44:36 +00:00
wiz
1e92c66ce2 Updated abcm2ps to 8.13.6.
---- Version 8.13.6 - 2017-02-24 ----

Fix bad vertical offset of notes in percussion staves since 8.13.2
Fix clash of note and accidentals when note in other staff
	(reported by Hudson Lacerda)
Add the decorations !8va(!, !8va)!, !8vb(! and !8vb)! (%%ottava alternative)
	(asked by Hudson Lacerda)
Handle the string definition of %%stafflines
	(asked by Reinier Maliepaard)
Handle "%%pos stem hidden" (same as '0' starting length / !stemless!)
	(asked by Jakob Englhauser a long time ago!)
Extend the tempo value up to 32000 (was < 256)
	(asked by Hudson Lacerda)
Fix loss of transposition of the bass when alone in a chord indication
	(reported by Tim Goetze)
Fix loss of measure bar when followed by clef change and time skip
Fix bad output when "%%clef auto" without %%score
	(reported by Hudson Lacerda)
Fix clash of slurs with note decorations
	(reported by Hudson Lacerda)
Fix bad output file name when "%%abc-include xx.abc"
	(reported by Guido Gonzato)
Fix bad note head when !head-xx! decoration since 8.13.5 (?)
	(reported by David Lacroix)
2017-02-27 10:25:55 +00:00
wiz
ca763451e4 Updated libspectre to 0.2.8.
libspectre 0.2.8 (01 July 2016)
===============================

This is another bugfix only release in the libspectre's 0.2 series.

Marek fixed the document rotation with newer versions of Ghostscript (Bug #76450)

Build was also broken with Ghostscript >= 9.18 and has been fixed.

Fixed a compile warning due to a comparison of integers of different
signs reported by Daniel Macks when building on OS X (Bug #56476)

Makefiles were updated to properly use CPPFLAGS instead of CFLAGS as
suggested by Daniel Macks (Bug #56481)
2017-02-27 09:58:12 +00:00
wiz
a84b1e56b0 Recursive bump for libzip shlib major bump. 2017-02-23 07:44:09 +00:00
wiz
3f859fd644 Update poppler* to 0.52.0.
shlib major was NOT bumped this time.

Release 0.52.0
        core:
         * Fix assert on reading some OCGs. Bug #99768
         * Properly initialize some RichMedia variables in corner cases. Bug #99767

        qt4:
         * optcontent structure was leaking the headers items. Bug #99449
         * Cleanup objects in tests to fix memory leaks. Bug #99449

        qt5:
         * optcontent structure was leaking the headers items. Bug #99449
         * Cleanup objects in tests to fix memory leaks. Bug #99449

        utils:
         * pdftocairo.1: Fix typo

Release 0.51.0
        core:
         * Check for error from NSS in SignatureHandler construct. Bug #99363
         * Add Form[Field|Widget]::setPartialName
         * Fix memory leak in PDFDoc::markAnnotations

        qt5:
         * Implement digital signature support. Bug #94378
         * Add Poppler::FormField::setName
         * Fix segfault/assert if LinkDestination is constructed with invalid input string. Bug #99357

        utils:
         * pdfunite: add fields to AcroForm dict. Bug #99141
2017-02-22 15:26:09 +00:00
joerg
f921680fc7 Cut down the number of loops in the roman number parser. The existing
logic triggers a super-linear memory use path in Clang and is generally
overcomplicated. Bump revision because it is still a code change.
2017-02-21 16:01:36 +00:00
leot
ec95bdea41 Update print/cups-filters to cups-filters-1.13.4
Changes:
1.13.4
------
 - libcupsfilters: Let PPD generator for driverless printing
   not error out when there is no urf-supported or
   pwg-raster-document-resolution-supported IPP attribute,
   simply accept the default resolution also from the
   printer-resolution-default attribute or set a default value
   of 300 dpi to get a working PPD file.
 - cups-browsed: Do not use deprecated names for IPP status
   constants
 - cups-browsed: Corrected determination whether an IPP status
   is an error, to avoid "Unable to create/modify CUPS queue
   (Success)" and infinite repetition of a succeeded operation
   (Debian bug #852436).
2017-02-19 11:40:22 +00:00
leot
cc915a5b5d Avoid possible NULL pointer dereferencies in `Index mode' for PDF with index
pointing to non-existing pages.

Bump PKGREVISION
2017-02-18 13:38:33 +00:00
wiz
97d4a319a2 Handle non-kerberos automatically. Based on suggestions by pgoyette
and tested by him.

Add upstream bug report URL.
2017-02-17 23:45:48 +00:00
wiz
4ad2bd17ec Add MESSAGE that you have to remove the kerberos section from the
cupsd config file when you build cups without kerberos support.

Found by pgoyette.
2017-02-16 13:09:19 +00:00
ryoon
72c3cb198b Recursive revbump from fonts/harfbuzz 2017-02-12 06:24:36 +00:00
adam
cb95a02ff6 PoDoFo 0.9.5 was released today, after over 6 months of development and with the help of many new contributors.
As there are so many improvements, patches and fixes that made it into this release, we are not able to list them, so please stick with the svn log.
2017-02-11 22:27:00 +00:00
leot
364bf9a600 Backport security fixes for upstream bugs 697514 and 697515 (CVE-2017-5896) to
PKGREVISON++
2017-02-11 09:39:05 +00:00
wiz
68ae9377cc Updated latexmk to 452c.
From v. 4.48 to 4.52
  Optimize number of calls to kpsewhich.  This often gives a
    considerable savings of run time when a document includes many
    graphics files that are in a texmf tree.
  Fix bug that if an .aux file is deleted and latexmk is run, the
    wrong number of runs of (pdf)latex was made.
  Fix related problem that latexmk sometimes does too few runs of
    (pdf)latex because of the incorrect detection that a file is only
    read after being written.
  Implement direct support for xelatex and lualatex.  Previously these
    programs were used by configuring the $pdflatex so that the desired
    program is run instead of pdflatex.  There are now configuration
    variables $xelatex and $lualatex to specify the commands used, and
    extra command line options -pdfxe and -pdflua.
  In the case of xelatex, considerable improvement in run time is
    given for documents containing large graphics files.  This is
    because compilation is made first to an xdv file instead of direct
    to a pdf file.  Only when this file is finalized is a single
    conversion to a pdf file made.  (This last step can be especially
    time-consuming for documents that bring in large graphics files.)
  Correct detection for missing graphics files with xelatex.
  Work around LuaTeX line-wrapping bug.
  Update documentation.
  Minor improvements in code and diagnostics.

From v. 4.52 to 4.52b
  Fix bug introduced in 4.52 that use of bibtex wasn't always detected
    when recorder mode is on.

From v. 4.52b to 4.52c
  Document $kpsewhich_show variable.
  Make -jobname work with -pdfxe and -pdflua
2017-02-07 12:58:05 +00:00
wiz
2e97afeed7 Updated abcm2ps to 8.13.5.
---- Version 8.13.5 - 2017-01-31 ----

Fix clash of dot and glissendi
	(reported by Manavasu)
Fix lack of double bar at end of line with "|ccc||$|:c|"
	(reported by Timm Reasbeck)
Fix lack of stem when some invisible note heads in chord
Better glissendi
Fix random bad offset of helper lines
	(reported by David Lacroix)
2017-02-07 00:39:02 +00:00
wiz
7ac05101c6 Recursive bump for harfbuzz's new graphite2 dependency. 2017-02-06 13:54:36 +00:00
leot
77ad26d796 Update print/zathura-pdf-poppler to zathura-pdf-poppler-0.2.7
Changes:
 - Cache page height for improved performance
 - Clean-up old compatibility code
 - Mac OSX build support
 - Several fixes and improvements
2017-01-31 10:12:42 +00:00
leot
5c19cfec89 Update print/zathura-pdf-mupdf to zathura-pdf-mupdf-0.3.1
Changes:
 - Compatible with mupdf 1.10
 - Added flags for freetype, harfbuzz and zlib
 - Correctly use pdf_save_document
2017-01-31 10:12:02 +00:00
leot
4707267857 Update print/zathura-ps to zathura-ps-0.2.4
Changes:
 - Link with -fPIC
 - Update Makefile
2017-01-31 10:11:17 +00:00
leot
b469bf5efc Update print/zathura to zathura-0.3.7
Changes:
 - Improved logging
 - Improve page mode toggling
 - Several fixes and improvements
 - Updated translations
2017-01-31 10:09:53 +00:00
leot
6df30171c6 Backport fixes to mupdf-1.10a from upstream for CVE-2017-562[78]
PKGREVISION++
2017-01-30 14:06:05 +00:00
markd
f01c4f837a Specify full path for gs as well. 2017-01-30 10:37:15 +00:00
tsutsui
edc9657494 Update ruby-gnome2 packages to 3.1.1.
pkgsrc changes:
 * add graphics/ruby-gnome2-clutter-gdk

Upstream changes:
(from https://github.com/ruby-gnome2/ruby-gnome2/blob/3.1.1/NEWS)

== Ruby-GNOME2 3.1.1: 2017-01-26

=== Changes

==== All

  * Improvements
    * Windows: Supported Ruby 2.4.

==== Ruby/GLib2

  * Improvements
    * (({GLib::DateTime})): Added.
      [GitHub#961][GitHub#965]
      [Patch by cedlemo]
    * (({GLib::TimeZone})): Added. [GitHub#963][Patch by cedlemo]
    * Stopped to show "message", "info" and "debug" level logs by default.
      You can enable them by (({$DEBUG = true})).
      [GitHub#981][Reported by PeterWAWood]
    * Windows: Updated bundled PCRE to 8.40.

==== Ruby/GObjectIntrospection

  * Improvements
    * Supported outputting (({guint8})) array.
    * Supported converting (({equal})) method to (({==})) method.
    * Supported auto (({Enumerable})) inclusion for classes and
      modules that have (({each})) method.

==== Ruby/GIO2

  * Improvements
    * (({Gio::Settings#initialize})): Added backward compatible API
      again.
  * Fixes
    * Supported GIO 2.38 or earlier again.

==== Ruby/Pango

  * Fixes
    * (({Pango::LayoutLine#x_to_index})): Fixed a crash bug.
    * Windows: Updated bundled HarfBuzz to 1.4.1.
    * Windows: Updated bundled ICU to 58.2.

==== Ruby/GdkPixbuf2

  * Improvements
    * (({GdkPixbuf::Pixbuf#save_to_buffer})): Supported again but it's
      deprecated. Use (({GdkPixbuf::Pixbuf#save})) instead.
    * Windows: Updated bundled gdk-pixbuf to 2.36.4.

==== Ruby/GDK3

  * Improvements
    * Windows: Updated bundled GTK+ to 3.22.7.

==== Ruby/GTK3

  * Improvements
    * (({Gtk::TreeViewColumn#initialize})): Supported option Hash.
      [GitHub#958][Patch by Detlef Wagner]
    * Updated samples. [Patch by cedlemo]
    * (({Gtk::Dialog#get_widget_for_response_id})): Supported
      (({Symbol})) as response ID.
      [GitHub#978][Patch by Detlef Wagner]
    * (({Gtk::Container#add})): Changed to return (({self})) again.
    * Windows: u

==== Ruby/Poppler

  * Fixes
    * (({Poppler::IndexIter})): Fixed a crash bug.
    * (({Poppler::IndexIter#child})): Added a missing (({NULL}))
      check.
    * Fixed types of action classes. They must be (({GLib::Boxed})).

==== Ruby/GStreamer

  * Improvements
    * Windows: Updated bundled GStreamer to 1.10.2.

==== Ruby/ClutterGStreamer

  * Improvements
    * Windows: Updated bundled Clutter-GStreamer to 3.0.22.

==== Ruby/GtkSourceView3

  * Improvements
    * Windows: Updated bundled GtkSourceView to 3.22.2.

==== Ruby/GSF

  * Improvements
    * Windows: Updated bundled GSF to 1.14.41.

=== Thanks

  * Detlef Wagner
  * cedlemo
  * PeterWAWood
2017-01-29 07:54:19 +00:00
markd
8ea904cc6b put tex-urlbst-doc back 2017-01-26 06:37:41 +00:00
markd
7693fa9fd2 Add tex-urlbst-doc 0.7 that got missed previously 2017-01-26 06:36:22 +00:00
jnemeth
d1814700d0 remove entry for non-existant package, tex-urlbst-doc 2017-01-26 05:28:31 +00:00
wiz
c0f6ef5abd Recursive bump for poppler update 2017-01-25 14:36:37 +00:00
wiz
130f332c8b Update poppler-* to 0.50.0:
Release 0.50.0
        core:
         * PSOutputDev: Fix PS conversion for some files. Bug #63963
         * Fix Outline parsing on broken documents. Bug #98732
         * Fix PDFDoc::saveIncrementalUpdate()'s detection of document being modified. Bug #96561
         * SplashOutputDev: Read softmask into memstrean in case of matte. Bug #97803
         * Bail out if Hints nBitsNumObjects or nBitsDiffGroupLength are greater than 32. Bug #94941
         * CairoOutputDev: initialize CairoOutputDev::antialias. Bug #98983
         * Fix crash when loading some thumbnails. Bug #97870

        utils:
         * pdftoppm: Fix -tiff -gray/-mono incorrect output.
         * pdftops: add -passlevel1customcolor. Bug #97193


        build system:
         * Default to libopenjpeg2 instead of libopenjpeg1

        qt:
         * Support OCG state change links

        glib:
         * Use g_slice_new0 for PopplerActionLayer. Bug #98786


Release 0.49.0
        core:
         * Merge type3 glyph handling from xpdf 3.04. Bug #96667
         * Continue rendering in case of 'Singular matrix in shading pattern fill. Bug #98623
         * Fix memory leak in parametrized gouraudTriangleShadedFill
         * Fix crash on broken files
         * PDFDoc::setDocInfoStringEntry(): treat value consisting of just the unicode marker as an empty string
         * Fix UBSAN warning
         * Misc compile fixes

        utils:
         * pdfseparate: remove extra '%' in error message

        build system:
         * configure: Fix typo in disable nss help string
2017-01-25 14:34:55 +00:00
wiz
71dbb9791b Updated abcm2ps to 8.13.4.
---- Version 8.13.4 - 2017-01-16 ----

Fix bad note transposition after generation restart
	(reported by Frédéric Boulanger)
Fix bad generation when decoration defined by <defs> with 'h' in <path>
Fix bad PS output when utf-8 characters in title and pango support
	(reported by Timm Reasbeck)
Fix abnormal errors when many ABC source files in the command line
Fix again bad glyph for cut time meter
	(reported by Timm Reasbeck)
Fix double include when xx.default.abc in command line
Fix compilation warning and bad PS %%musicfont definition
	(reported by David Lacroix)
2017-01-22 10:36:54 +00:00
leot
6ceccd2861 Update print/cups-filters to cups-filters-1.13.3
pkgsrc changes:
 - Add --with-apple-raster-filter=rastertopdf to CONFIGURE_ARGS to avoid
   possible PLIST issues with cups<2.2.2 (with cups>=2.2.2 urftopdf is no
   longer built)

Changes:
1.13.3
------
 - libcupsfilters: When auto-generating PPD files added support
   for passing through JPEG input to printers which understand
   JPEG. This is also done in CUPS-generated PPDs (Debian bug
   #851499).
 - libcupsfilters: Added the "output-bin" option support from
   CUPS' PPD generator to our PPD generator (CUPS Issue #4938).
 - cups-browsed: Make support for printers with IPv6 IP address
   work. Both link-local and regular addresses work.
2017-01-21 11:58:29 +00:00
leot
395bcb3aa9 Update print/cups to cups-2.2.2
Changes:
2.2.2
-----
 - Fixed some issues with the Zebra ZPL printer driver (Issue #4898)
 - Fixed some issues with IPP Everywhere printer support (Issue #4893,
   Issue #4909, Issue #4916, Issue #4921, Issue #4923, Issue #4932,
   Issue #4933, Issue #4938)
 - The rastertopwg filter could crash with certain input (Issue #4942)
 - Optimized connection usage in the IPP backend
   (<rdar://problem/29547323>)
 - The scheduler did not detect when an encrypted connection was closed
   by the client on Linux (Issue #4901)
 - The cups-lpd program did not catch all legacy usage of ISO-8859-1
   (Issue #4899)
 - Fixed builds on systems without a working poll() implementation
   (Issue #4905)
 - Added a USB quirk rule for the Kyocera Ecosys P6026cdn (Issue #4900)
 - The scheduler no longer creates log files on startup
   (<rdar://problem/28332470>)
 - The ippContainsString function now uses case-insensitive comparisons
   for mimeMediaType, name, and text values in conformance with RFC 2911.
 - The network backends now log the addresses that were found for a
   printer (<rdar://problem/29268474>)
 - Let's Encrypt certificates did not work when the hostname contained
   uppercase letters (Issue #4919)
 - Fixed reporting of printed pages in the web interface (Issue #4924)
 - Updated systemd config files (Issue #4935)
 - Updated documentation (PR #4896)
 - Updated localizations (PR #4894, PR #4895, PR #4904, PR #4908,
   Issue #4946)
 - Updated packaging files (Issue #4940)
2017-01-21 11:57:10 +00:00
markd
22dedf7533 Add tex-{eqparbox,milog,przechlewski-book,uhrzeit,urlbst}{,-doc} 2017-01-20 23:26:37 +00:00
markd
7b5187dd7d Add tex-eqparbox{,-doc} 4.0
Create equal-widthed parboxes
Add tex-milog{,-doc} 1.0
 Fulfilling the documentation duties according to the German minimum wage law
Add tex-przechlewski-book{,-doc} 2016
 Examples from Przechlewski's LaTeX book
Add tex-uhrzeit{,-doc} 0.2c
 Time printing, in German
Add tex-urlbst{,-doc} 0.7
 Web support for BibTeX
2017-01-20 23:22:49 +00:00
markd
f14d9d9891 Add a bunch of tex packages 2017-01-20 21:51:32 +00:00
markd
ed65ef86e8 Add tex-abntex2{,-doc} 1.9.6
Typeset technical and scientific Brazilian documents based on ABNT rules
Add tex-blindtext{,-doc} 2.0
 Producing 'blind' text for testing
Add tex-cleveref{,-doc} 0.19
 Intelligent cross-referencing
Add tex-diagbox{,-doc} 2.1
 Table heads with diagonal lines
Add tex-fncychap{,-doc} 1.34
 Seven predefined chapter heading styles
Add tex-fontaxes{,-doc} 1.0d
 dditional font axes for LaTeX
Add tex-longfbox{,-doc} 1.0
 Draw framed boxes with standard CSS attributes that can break over multiple pages
Add tex-mweights{,-doc} 20130721
 Support for multiple-weight font packages
Add tex-options{,-doc} 1.0
 Provides convenient key-value options for LaTeX package writers
Add tex-realboxes{,-doc} 0.2
 Variants of common box-commands
Add tex-sfmath 0.8
 Sans-serif mathematics
Add tex-tcolorbox{,-doc} 3.94
 Coloured boxes, for LaTeX examples and theorems, etc
Add tex-titling{,-doc} 2.1d
 Control over the typesetting of the \maketitle command
Add tex-trimspaces{,-doc} 1.1
 Trim spaces around an argument or within a macro
2017-01-20 21:43:58 +00:00
agc
30b55df38e Convert all occurrences (353 by my count) of
MASTER_SITES= 	site1 \
			site2

style continuation lines to be simple repeated

	MASTER_SITES+= site1
	MASTER_SITES+= site2

lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint
accordingly.
2017-01-19 18:52:01 +00:00
markd
0d46737e59 Fix path to pdftpps.
mv cups-browsed.conf from correct post install location.
2017-01-19 10:19:26 +00:00
markd
5e5844c7cc Update to okular 16.08.0
minor changes - last kde4 version
2017-01-19 09:25:49 +00:00
kleink
4b49ffdb0e Update py-weasyprint to 0.34.
Version 0.34
------------

Released on 2016-12-21.

Bug fixes:

* `#398 <https://github.com/Kozea/WeasyPrint/issues/398>`_:
  Honor the presentational_hints option for PDFs.
* `#399 <https://github.com/Kozea/WeasyPrint/pull/399>`_:
  Avoid CairoSVG-2.0.0rc* on Python 2.
* `#396 <https://github.com/Kozea/WeasyPrint/issues/396>`_:
  Correctly close files open by mkstemp.
* `#403 <https://github.com/Kozea/WeasyPrint/issues/403>`_:
  Cast the number of columns into int.
* Fix multi-page multi-columns and add related tests.


Version 0.33
------------

Released on 2016-11-28.

New features:

* `#393 <https://github.com/Kozea/WeasyPrint/issues/393>`_:
  Add tests on MacOS.
* `#370 <https://github.com/Kozea/WeasyPrint/issues/370>`_:
  Enable @font-face on MacOS.

Bug fixes:

* `#389 <https://github.com/Kozea/WeasyPrint/issues/389>`_:
  Always update resume_at when splitting lines.
* `#394 <https://github.com/Kozea/WeasyPrint/issues/394>`_:
  Don't build universal wheels.
* `#388 <https://github.com/Kozea/WeasyPrint/issues/388>`_:
  Fix logic when finishing block formatting context.


Version 0.32
------------

Released on 2016-11-17.

New features:

* `#28 <https://github.com/Kozea/WeasyPrint/issues/28>`_:
  Support @font-face on Linux.
* Support CSS fonts level 3 almost entirely, including OpenType features.
* `#253 <https://github.com/Kozea/WeasyPrint/issues/253>`_:
  Support presentational hints (optional).
* Support break-after, break-before and break-inside for pages and columns.
* `#384 <https://github.com/Kozea/WeasyPrint/issues/384>`_:
  Major performance boost.

Bux fixes:

* `#368 <https://github.com/Kozea/WeasyPrint/issues/368>`_:
  Respect white-space for shrink-to-fit.
* `#382 <https://github.com/Kozea/WeasyPrint/issues/382>`_:
  Fix the preferred width for column groups.
* Handle relative boxes in column-layout boxes.

Documentation:

* Add more and more documentation about Windows installation.
* `#355 <https://github.com/Kozea/WeasyPrint/issues/355>`_:
  Add fonts requirements for tests.


Version 0.31
------------

Released on 2016-08-28.

New features:

* `#124 <https://github.com/Kozea/WeasyPrint/issues/124>`_:
  Add MIME sniffing for images.
* `#60 <https://github.com/Kozea/WeasyPrint/issues/60>`_:
  CSS Multi-column Layout.
* `#197 <https://github.com/Kozea/WeasyPrint/pull/197>`_:
  Add hyphens at line breaks activated by a soft hyphen.

Bux fixes:

* `#132 <https://github.com/Kozea/WeasyPrint/pull/132>`_:
  Fix Python 3 compatibility on Windows.

Documentation:

* `#329 <https://github.com/Kozea/WeasyPrint/issues/329>`_:
  Add documentation about installation on Windows.


Version 0.30
------------

Released on 2016-07-18.

WeasyPrint now depends on html5lib-0.999999999.

Bux fixes:

* Fix Acid2
* `#325 <https://github.com/Kozea/WeasyPrint/issues/325>`_:
  Cutting lines is broken in page margin boxes.
* `#334 <https://github.com/Kozea/WeasyPrint/issues/334>`_:
  Newest html5lib 0.999999999 breaks rendering.


Version 0.29
------------

Released on 2016-06-17.

Bug fixes:

* `#263 <https://github.com/Kozea/WeasyPrint/pull/263>`_:
  Don't crash with floats with percents in positions.
* `#323 <https://github.com/Kozea/WeasyPrint/pull/323>`_:
  Fix CairoSVG 2.0 pre-release dependency in Python 2.x.


Version 0.28
------------

Released on 2016-05-16.

Bug fixes:

* `#189 <https://github.com/Kozea/WeasyPrint/issues/189>`_:
  ``white-space: nowrap`` still wraps on hyphens
* `#305 <https://github.com/Kozea/WeasyPrint/issues/305>`_:
  Fix crashes on some tables
* Don't crash when transform matrix isn't invertible
* Don't crash when rendering ratio-only SVG images
* Fix margins and borders on some tables


Version 0.27
------------

Released on 2016-04-08.

New features:

* `#295 <https://github.com/Kozea/WeasyPrint/pull/295>`_:
  Support the 'rem' unit.
* `#299 <https://github.com/Kozea/WeasyPrint/pull/299>`_:
  Enhance the support of SVG images.

Bug fixes:

* `#307 <https://github.com/Kozea/WeasyPrint/issues/307>`_:
  Fix the layout of cells larger than their tables.

Documentation:

* The website is now on GitHub Pages, the documentation is on Read the Docs.
* `#297 <https://github.com/Kozea/WeasyPrint/issues/297>`_:
  Rewrite the CSS chapter of the documentation.
2017-01-14 23:13:49 +00:00
ryoon
ea69d58649 Fix build with textproc/libunistring budildlink 2017-01-11 13:26:16 +00:00
joerg
39d66efe2d Ensure that renaming on page merge actually creates unique names. Bump
revision.
2017-01-09 12:02:23 +00:00
rodent
dfdbc834e6 Revert last commit. Problem was fixed elsewhere previously. Identified by
wiz@ in private mail.
2017-01-04 22:31:48 +00:00
abs
e4457695d1 Switch to github, add LICENSE 2017-01-04 21:36:55 +00:00