summaryrefslogtreecommitdiff
path: root/print
AgeCommit message (Collapse)AuthorFilesLines
2017-03-26platex format is now done in tex-platex, and tidy up the Makefile.markd1-9/+3
2017-03-26Add tex-platex{,-doc}markd1-1/+3
2017-03-26Add tex-platex{,-doc} 0.0.2016markd8-0/+110
The bundle provides pLaTeX2e and miscellaneous macros for pTeX and e-pTeX. This is a community edition forked from the original ASCII edition (ptex-texmf-2.5). Added during freeze to fix up pTex handling.
2017-03-26Revert tex-ptex to tex-ptex-3.2pl41220, and remove platex, thanks markd@mef46-13180/+3
2017-03-25CVS directories should not be left out, sorrymef1-2/+3
2017-03-25Fix problem when processing simple file asmef46-2/+13177
I can't find the format file `platex.fmt'! This change is proposed as http://mail-index.netbsd.org/pkgsrc-users/2017/03/25/msg024627.html The interim fix is picking the files up from previous texlive release and put them in files directory. And copy them after extract. PKGREVISION++. Tks gdt@ for OK, and tks bsh@ for finding out the problem.
2017-03-23Add patch for CVE-2017-6196tez3-3/+45
2017-03-23Extend SHA512 checksums to various files I have on my local distfilejoerg6-6/+12
mirror.
2017-03-20Update ruby-pdf-reader to 2.0.0.taca3-14/+12
v2.0.0 (25th February 2017) - various bug fixes v2.0.0.beta1 (15th February 2017) - BREAKING CHANGE: remove all methods that were deprecated in 1.0.0 - Bug: Support extra encrypted PDF variants (thanks to Gyuchang Jun) - various bug fixes v1.4.1 (2nd January 2017) - improve compatability with ruby 2.4 (thanks Akira Matsuda) - various bug fixes
2017-03-20Update ruby-prawn to 2.2.2.taca3-93/+49
2.2.0 Notable changes: * Added support for TTC fonts * Added Join style validation * Fixed handling of NBSP in Windows-1252 text * Fixed wrong leading of one-line paragraphs * Fixed dashing * Added Code of Conduct * Improved generated document consistency * Improved gradients * Supported Rubies have * Added unexpected manual changes signaling * Added colors validation * Fixed CannotFit for zero-width spaces
2017-03-20Update ruby-pdf-core to 0.7.0.taca3-18/+9
0.7.0 2017/3/11 * Breaking change: PDF::Core::PdfObject method has been renamed to PDF::Core::pdf_object * Added support for horizontal scaling * Added support for character spacing * Added support for crops, bleeds, trims, and art box
2017-03-17Modify DEPENDS so that any version can be built/checked. As discussed ondarcy1-2/+2
the mailing list with joerg@.
2017-03-16Just call it gimp, not gimp2gdt1-1/+1
2017-03-16Update to 5.1.12gdt4-57/+33
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-11Update to 1.15.1wen2-8/+8
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-07Move urlbsd script to bin directory. Bump PKGREVISION.markd2-4/+11
2017-03-07Upstream removal of mpost from shell_escape_commandsmarkd3-4/+15
2017-03-05Updated abcm2ps to 8.13.7.wiz2-7/+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-03Update py-weasyprint to 0.36.kleink2-7/+7
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-02-27Updated abcm2ps to 8.13.6.wiz2-8/+7
---- 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-27Updated libspectre to 0.2.8.wiz3-30/+7
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-23Recursive bump for libzip shlib major bump.wiz1-2/+2
2017-02-22Update poppler* to 0.52.0.wiz3-9/+8
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-21Cut down the number of loops in the roman number parser. The existingjoerg3-3/+124
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-19Update print/cups-filters to cups-filters-1.13.4leot2-8/+7
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-18Avoid possible NULL pointer dereferencies in `Index mode' for PDF with indexleot4-3/+105
pointing to non-existing pages. Bump PKGREVISION
2017-02-17Handle non-kerberos automatically. Based on suggestions by pgoyettewiz2-9/+7
and tested by him. Add upstream bug report URL.
2017-02-16Add MESSAGE that you have to remove the kerberos section from thewiz2-2/+10
cupsd config file when you build cups without kerberos support. Found by pgoyette.
2017-02-12Recursive revbump from fonts/harfbuzzryoon36-71/+72
2017-02-11PoDoFo 0.9.5 was released today, after over 6 months of development and with ↵adam4-16/+14
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-11Backport security fixes for upstream bugs 697514 and 697515 (CVE-2017-5896) toleot4-3/+66
PKGREVISON++
2017-02-07Updated latexmk to 452c.wiz2-7/+7
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-07Updated abcm2ps to 8.13.5.wiz2-8/+7
---- 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-06Recursive bump for harfbuzz's new graphite2 dependency.wiz36-64/+72
2017-01-31Update print/zathura-pdf-poppler to zathura-pdf-poppler-0.2.7leot2-8/+7
Changes: - Cache page height for improved performance - Clean-up old compatibility code - Mac OSX build support - Several fixes and improvements
2017-01-31Update print/zathura-pdf-mupdf to zathura-pdf-mupdf-0.3.1leot11-353/+12
Changes: - Compatible with mupdf 1.10 - Added flags for freetype, harfbuzz and zlib - Correctly use pdf_save_document
2017-01-31Update print/zathura-ps to zathura-ps-0.2.4leot2-8/+7
Changes: - Link with -fPIC - Update Makefile
2017-01-31Update print/zathura to zathura-0.3.7leot2-8/+7
Changes: - Improved logging - Improve page mode toggling - Several fixes and improvements - Updated translations
2017-01-30Backport fixes to mupdf-1.10a from upstream for CVE-2017-562[78]leot4-3/+53
PKGREVISION++
2017-01-30Specify full path for gs as well.markd1-2/+3
2017-01-29Update ruby-gnome2 packages to 3.1.1.tsutsui3-8/+10
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-26put tex-urlbst-doc backmarkd1-1/+2
2017-01-26Add tex-urlbst-doc 0.7 that got missed previouslymarkd4-0/+31
2017-01-26remove entry for non-existant package, tex-urlbst-docjnemeth1-2/+1
2017-01-25Recursive bump for poppler updatewiz19-34/+38
2017-01-25Update poppler-* to 0.50.0:wiz11-23/+24
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-22Updated abcm2ps to 8.13.4.wiz2-7/+7
---- 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-21Update print/cups-filters to cups-filters-1.13.3leot3-10/+9
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-21Update print/cups to cups-2.2.2leot3-11/+11
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-20Add tex-{eqparbox,milog,przechlewski-book,uhrzeit,urlbst}{,-doc}markd1-1/+11