summaryrefslogtreecommitdiff
path: root/print
AgeCommit message (Collapse)AuthorFilesLines
2017-06-17Fix the problem with hexdump and LLVM properly. Use .incbin on NetBSDjoerg2-6/+17
instead of forcing 8M+ element character array literals through the compiler.
2017-06-14Updated p5-Net-CUPS to 0.64.wiz2-9/+11
Based on patches from Edgar Fuß. 0.64 Thu Jun 08 20:10:00 2017 - Report the printer-state attribute and support non-string device attributes in general by Edgar Fuß 0.63 Thu Oct 31 09:15:00 2016 - Fix segfaults in Net::CUPS::PPD::getNextOption when enumerating options by Alexis Bienvenüe - Fix bad free() when finalizing the result of getDestinations() by Alexis Bienvenüe - Fix a spelling mistake by Gregor Herrmann - Update support information 0.62 Thu Jul 21 08:20:30 2016 - Fix version check on CUPS 2 by Mathieu Simon - Fix compatibility with CUPS >= 1.6 by contyk
2017-06-14Add bl3.mk file, from Edgar Fuß.wiz1-0/+14
2017-06-13Look for cups socket in correct place.wiz1-1/+5
From Edgar Fuß in PR 52296. Bump PKGREVISION.
2017-06-11Move MAINTAINER line to each gem package.tsutsui1-1/+3
Also retire from maintainership of packages that I don't need and have less motivation.
2017-06-10Update ruby-gnome2 packages to 3.1.6.tsutsui2-7/+6
pkgsrc changes: - remove a pkgsrc patch for ruby-gnome2-gtk that seems fixed in upstream - ignore native-package-installer dependency checks in ruby-gnome2-clutter-gstreamer and ruby-gnome2-webkit-gtk Upstream changes: (from https://github.com/ruby-gnome2/ruby-gnome2/blob/3.1.6/NEWS) == Ruby-GNOME2 3.1.6: 2017-06-03 === Changes This is a bug fix release for Windows packages. ==== All * Fixes * Added a missing path existence check on Windows. == Ruby-GNOME2 3.1.5: 2017-06-03 === Changes This is a bug fix release for Windows packages. ==== All * Improvements * Supported RubyInstaller2. ==== Ruby/Pango * Improvements * Add backward compatibility APIs: * (({Pango::FontDescription::WEIGHT_*})) * (({Pango::FontDescription::STYLE_*})) == Ruby-GNOME2 3.1.4: 2017-05-30 === Changes This is a release that supports Ruby 2.4 on Windows. ==== All * Improvements * Supported MSYS2. ==== Ruby/GLib2 * Improvements * Added (({GLib::Object#floating?})) for debugging. ==== Ruby/GIO2 * Improvements * Added (({Gio::File.open})). The followings are deprecated. * (({Gio::File.commandline_arg})) * (({Gio::File.path})) * (({Gio::File.uri})) ==== Ruby/GObjectIntrospection * Improvements * Relaxed expected test result for 32bit environment. [GitHub#1026][Reported by Mamoru TASAKA] * Added tests for (({GObjectIntrospection::ConstantInfo})). [GitHub#1027][Patch by cedlemo] * Supported floating "transfer full" GObject. ==== Ruby/GDK3 * Improvements * Supported (({Cairo::Surface#to_pixbuf(options={})})). (({Cairo::Surface#to_pixbuf(src_x, src_y, width, height)})) is deprecated. ==== Ruby/Rsvg2 * Improvements * Migrated to GObject Introspection bindings. * Renamed to (({Rsvg})) from (({RSVG})). (({RSVG})) is still usable but it's deprecated. [GitHub#1030][Patch by cedlemo] * Supported (({Cairo::Context#render_rsvg_handle(handle, :id => ...)})). ==== Ruby/WebKit2GTK * Improvements * (({WebKit3Gtk::WebView#initialize})): Supported (({Hash})) options. [GitHub#1028][Patch by Matijs van Zuijlen] === Thanks * Mamoru TASAKA * cedlemo * Matijs van Zuijlen == Ruby-GNOME2 3.1.3: 2017-04-27 === Changes This is a release that improve backward compatibility for Ruby/Pango. ==== Ruby/Pango * Improvements * Defined constants under (({Pango})) again for backward compatibility. [GitHub#1022][Reported by Andy Meneely] * Defined constants under (({Pango::Layout})) again for backward compatibility. [GitHub#1022][Reported by Andy Meneely] * (({Pango.pixels})): Added again. * (({Pango::AttrShape#data})): Supported again. * Fixes * (({Pango::Layout#text=})): Fixed a bug that wrong bytesize is used for multibyte string. * (({Pango::Layout#markup=})): Fixed a bug that wrong bytesize is used for multibyte string. === Thanks * Andy Meneely == Ruby-GNOME2 3.1.2: 2017-04-26 There is an incompatible change. (({GBytes})) to (({String})) conversion is changed to (({GBytes})) to (({GLib::Bytes})) conversion. You can get (({String})) by (({GLib::Bytes#to_s})). Other incompatible changes are bugs. Please report them to us. === Changes ==== All * Improvements * Supported auto depended package install for GObject Introspection based bindings. ==== Ruby/GLib2 * Improvements * Supported overriding (({alloc_func})) in super class. * Extracted native package installer code as native-package-installer gem. * (({GLib::Bytes})): Added. * Supported pkg-config 1.1.9 or later. * Fixes * Fixed a build error on CentOS 6 and Ubuntu 12.04. They use GLib < 2.34. [GitHub#1012][Reported by Scot] * Fixed a bug that (({GLib::TypePlugin})) can't be included. [GitHub#1019][Patch by Matijs van Zuijlen] ==== Ruby/GIO2 * Fixes * Fixed a path in test. [GitHub#990][Reported by Mamoru TASAKA] ==== Ruby/GObjectIntrospection * Improvements * Supported getting interface, union and boxed type as a field value. * Supported setting an interface as a field. * Supported more struct types. * Supported cairo-gobject types. * Supported outputting an array of interfaces. [GitHub#1006][Reported by cedlemo] * Supported Rubyish method name conversion for (({list_XXX})) methods that return an array. * Supported customizing field reader method name. * Supported auto (({int})) to boolean conversion for field value. * (({GObjectIntrospection::Repository.default})): Added a GC guard. * Supported inputting (({unichar})). * Supported inputting (({gint64})) C array. * Supported inputting (({gint8})) C array. * Added tests for (({GObjectIntrospection::UnionInfo})). [GitHub#1016][Patch by cedlemo] * Stopped auto (({GBytes})) to (({String})) conversion. (({GBytes})) is converted to (({GLib::Bytes})). It's for efficient byte sequence handling in Ruby. It's an incompatible change. You can use (({GLib::Bytes#to_s})) to get (({String})). * Fixes * (({GObjectIntrospection::RepositoryError})): Fixed parent class. * Fixed a typo. [GitHub#1002][Reported by cedlemo] ==== Ruby/ATK * Improvements * Migrated to GObject Introspection bindings. [GitHub#998][Patch by cedlemo] ==== Ruby/CairoGObject * Fixes * Fixed a double free bug. ==== Ruby/Pango * Improvements * Migrated to GObject Introspection bindings. [GitHub#1007][GitHub#1008][GitHub#1009][GitHub#1010] [GitHub#1011][Patch by cedlemo] [GitHub#1013][GitHub#1014][Patch by Detlef Wagner] ==== Ruby/GdkPixbuf2 * Improvements * Supported GdkPixbuf 2.31.6 on CentOS 7 again. ==== Ruby/GDK3 * Improvements * (({Gdk::Event})) and subclasses: Supported again. * Supported old GDK 3 again. * Supported X11 related features. [GitHub#999][Reported by johnlane] ==== Ruby/GTK3 * Improvements * (({Gtk::Widget#click})): Added. * (({Gtk::Widget#send_key})): Added. * (({Gtk::Widget#wait_for_draw})): Added. * (({Gtk::WiAccelGroup.activate})): Added. * Updated samples. [GitHub#1002][GitHub#1003] [Patch by cedlemo] * (({Gtk::IconTheme#choose_icon})): Changed the default flags to (({0})) from (({:generic_fallback})). * (({Gtk::IconTheme#lookup_icon})): Changed the default flags to (({0})) from (({:generic_fallback})). * Supported GTK+ < 3.20 again. * Fixes * Updated signal name in document. [GitHub#995][Patch by Arnaud Meuret] ==== Ruby/ClutterGdk * Fixes * Ensured initializing GDK. [GitHub#1000][Reported by cedlemo] ==== Ruby/GOffice * Improvements * (({GOffice::Version})): Added. === Thanks * Mamoru TASAKA * Arnaud Meuret * cedlemo * johnlane * Scot * Detlef Wagner * Matijs van Zuijlen
2017-06-08Fix build with cups 2.2.0khorben2-1/+16
2017-06-05Recursive revbump from lang/perl5 5.26.0ryoon8-16/+16
2017-05-29Updated abcm2ps to 8.13.10.wiz2-7/+7
---- Version 8.13.10 - 2017-05-22 ---- Fix abnormal meter in 2nd music line when no starting meter and meter defined inside the 1st music line (reported by Paul Morrissett) Fix bad x coordinate when PS rotate and SVG output Fix bad horizontal offset of end of repeat bracket on !rbend! Fix crash on %%deco in recent versions of MacOS X (reported by Frédéric Boulanger) Fix crash when measure numbering and bad measure durations Fix bad vertical offset of automatic tablatures when %%staffscale != 1 (reported by Lionel Coates) Raise the breath marks when after high notes (asked by Chris Myers) Fix crash when no note in voice overlay (reported by Richard Robinson)
2017-05-29Recursive revision bump for archivers/libarchive.jperkin4-8/+8
2017-05-28print/mupdf: fix build on fbsdrumko2-1/+18
scripts/hexdump.c: do not output HAVE_INCBIN for fbsd See https://bugs.ghostscript.com/show_bug.cgi?id=696828 Ok@ leot
2017-05-25Test for PIE by linking rather than just compiling, as on at least SunOSjperkin2-5/+25
it is dependent on linker features.
2017-05-24Fix SunOS build with GCC 7 and newer.jperkin1-1/+5
2017-05-22Changes 0.55.0:adam3-8/+9
core: * Fix abort in files with broken Decode arrays. * Fix memory leak (and probably logic bug) parsing broken XRef entries. * Fix memory leak when reconstructing broken files. * Minor optimization * Fix regression in GfxIndexedColorSpace::mapColorToBase. * Fix memory leak in error condition cpp: * Return nullptr if the page at index can't be fetched. build system: * Fail by default if libjpeg is not available * Fail by default if libopenjpeg2/1 is not available
2017-05-21Update print/cups-filters to 1.14.0leot2-8/+7
Changes: 1.14.0 ------ - cups-browsed: When a printer is discovered via DNS-SD on the "lo" (loopback) interface the printer is not reliably accessible through the reported host name (which is the network host name of the local machine). Until this problem is fixed in Avahi, we create queues for such printers with a URI based on the IP address. This is a workaround until Avahi fully supports the "lo" interface. - cups-browsed: Added new setting "LocalOnly" for the CreateIPPPrinterQueues in cups-browsed.conf. With this new setting (which is the default from now on) only for local printers made available as IPP printers (like IPP-over-USB printers with ippusbxd) queues are auto-created. With this we can follow the common standard of distributions where USB printers are automatically set up and network printers not. - cups-browsed: Fixes and improvements in comments and debug messages: 1. Bonjour -> DNS-SD; 2. When a remote CUPS class is discovered, tell that it is a class; 3. Show network interface and IPv4/IPv6 when a DNS-Sd service appears or disappears. - cups-browsed: Added ./configure script option "--enable-auto-setup-driverless" to let cups-browsed automatically set up IPP network printers by default.
2017-05-20Update to 3.17.4:schnoebe3-9/+12
Release Notes HPLIP 3.17.4 - This release has the following changes: Added Support for the Following New Printers: - HP LaserJet Managed Flow MFP E77822z Printer - HP LaserJet Managed MFP E77822dn Printer - HP LaserJet Managed Flow MFP E77825z Printer - HP LaserJet Managed MFP E77825dn Printer - HP LaserJet Managed Flow MFP E77830z Printer - HP LaserJet Managed MFP E77830dn Printer - HP LaserJet Managed Flow MFP E87640z Printer - HP LaserJet Managed MFP E87640dn Printer - HP LaserJet Managed Flow MFP E87650z Printer - HP LaserJet Managed MFP E87650dn Printer - HP LaserJet Managed Flow MFP E87660z Printer - HP LaserJet Managed MFP E87660dn Printer - HP LaserJet Managed Flow MFP E82540z Printer - HP LaserJet Managed MFP E82540dn Printer - HP LaserJet Managed Flow MFP E82550z Printer - HP LaserJet Managed MFP E82550dn Printer - HP LaserJet Managed Flow MFP E82560z Printer - HP LaserJet Managed MFP E82560dn Printer - HP LaserJet Managed Flow MFP E72525z Printer - HP LaserJet Managed MFP E72525dn Printer - HP LaserJet Managed Flow MFP E72530z Printer - HP LaserJet Managed MFP E72530dn Printer - HP LaserJet Managed Flow MFP E72535z Printer - HP LaserJet Managed MFP E72535dn Printer - HP LaserJet Pro M203d Printer - HP LaserJet Pro MFP M130a Printer - HP LaserJet Pro MFP M130nw Printer - HP LaserJet Pro MFP M130fn Printer - HP LaserJet Pro MFP M130fw Printer - HP LaserJet Pro MFP M227d Printer - HP LaserJet Pro MFP M227fdn Printer - HP LaserJet Ultra MFP M230 sdn Printer Added support for the following new Distro's: - Debian 8.7 - Linux Mint 18.1 Launchpad fixes: 1656348 - cups Filter Failed with HP Laserjet 1649550 - HP OfficeJet Pro 7740:no tray choice 1648954 - Encapsulator.cpp send 10000 bytes of 0X00 to the Printer before real PCL commands 1521134 - hpps has no error handling Known Issues: 1. Page orientation not changing for post script documents from evince. 2. Edge to Edge Not supported 3. Fax check box is enable for M227d device even it does not support
2017-05-19Remove left-behind Linux libs, fixes at least Darwin.fhajny2-5/+13
2017-05-19Bump PKGREVISION for cups15 -> cups change.prlw119-35/+38
2017-05-19Switch all cups15 packages to use cups.prlw122-44/+44
2017-05-19+ tex-qtreejoerg1-1/+2
2017-05-19Add tex-qtree-3.1b:joerg4-0/+25
The package offers support for drawing tree diagrams, and is especially suitable for linguistics use. It allows trees to be specified in a simple bracket notation, automatically calculates branch sizes, and supports both DVI/PostScript and PDF output by use of pict2e facilities.
2017-05-16Update to 0.9.5ryoon2-9/+8
Changelog: pdf2djvu (0.9.5) unstable; urgency=low [ Jakub Wilk ] * Improve error handling: + Fix temporary files removal order. https://github.com/jwilk/pdf2djvu/issues/114 + Ignore duplicate page titles (with warning). Thanks to Juan Francisco Cantero Hurtado for the bug report. https://github.com/jwilk/pdf2djvu/issues/113 * Fix creating bookmarks with more than 255 children. Regression introduced in 0.7.20. * Fix incorrect progress output in parallel mode. * Windows: fix console output encoding. https://github.com/jwilk/pdf2djvu/issues/64 * Upgrade libraries bundled with the Windows package: - Poppler 0.49; - DjvuLibre 3.5.27; - GraphicsMagick 1.3.25; - Expat 2.2.0; - FreeType 2.6.5; - fontconfig 2.12.1; - gettext 0.19.8.1. * Improve documentation: + Don't mention “--page-title-template=” as a way of disabling page titles. This works only if “--no-page-titles” works; there's no reason to prefer the former. Thanks to Roland Winkler for the bug report. + Update nose homepage URL. + Update OpenMP URLs. + Fix typos. * Improve the test suite: + Fix test failure on GNU/Hurd, which doesn't correctly propagate virtual memory limits to subprocesses. http://savannah.gnu.org/bugs/?43320 * Drop support for Poppler < 0.17. * Build with “-std=gnu++98”. * Build with “-Wempty-body”. * Build with “-Werror=misleading-indentation”. * Don't enable unknown warning options for clang. * Update the Polish translation. [ Américo Monteiro ] * Update the Portuguese translation. [ Chris Leick ] * Update the German translation. [ Kyrill Detinov ] * Update the Russian translation. -- Jakub Wilk <jwilk@jwilk.net> Wed, 14 Dec 2016 23:39:19 +0100
2017-05-12Requires libiconv. Sort includes.jperkin1-3/+4
2017-05-11Requires libiconv.jperkin1-1/+2
2017-05-09Requires termcap.jperkin1-1/+2
2017-05-03Convert CXXFLAGS setting C++ standard to USE_LANGUAGES.jperkin1-3/+2
2017-05-02Recursive bump for poppler-0.54.0wiz25-48/+50
2017-05-02poppler*: update to 0.54.0:wiz3-9/+8
Release 0.54.0 core: * Make XRef reconstruction a bit better. Bug #100509 glib: * Expose movie play mode. Bug #99625 * demo: Show play mode in movie properties view qt5: * Compile with -DQT_NO_CAST_FROM_BYTEARRAY. Bug #100311 utils: * pdfimages: don't fail listing if inline image data contains 'EI'. Bug #100737 Release 0.53.0 core: * Form support improvements * SplashOutputDev: Fix memory leak when rendering images with colormap and matte color * Minor fix in GlobalParams documentation qt5: * Expose form calculate order * Expose Form additional actions utils: * pdfimages: support 16bpc png and tiff images. Bug #99988 * pdftohtml: fix small memory leak when constructing some filenames * pdfinfo: fix leak when printing JS build sytem: * Compile in C++11 mode
2017-05-01Update print/cups-filters to 1.13.5leot3-35/+10
pkgsrc changes: - Explicitly pass --disable-braille: needs liblouis that at the moment is not in pkgsrc. Despite that leave existents REPLACE_BASH to avoid any further work if we will enable it in the future. Please notice that bash:run is still needed despite that. Changes: 1.13.5 ------ - foomatic-rip: When called via the utility cupsfilter from CUPS, foomatic-rip was not able to read the PPD file with the file name supplied as environment variable PPD (Bug #1388). - driverless: Improved error message output. - libcupsfilters: Fixed error handling of the PPD file generator for driverless printing, so that callers get decent error messages. - libcupsfilters: Do not generate a PPD file where the only output data format is JPEG, as JPEG does not support multi-page documents. - libcupsfilters: Let PPD generator skip broken page size records and add warnings for debugging to the PPD. - libcupsfilters: Updated PPD generator to match with the current GIT state of the one of CUPS. - braille: Automatically select a table according to the current locale. - braille: Update for liblouis table list. - braille: Added support for text margins. - cups-browsed: When creating a local queue for a remote CUPS printer, add the line '*APRemoteQueueID: ""' to the PPD file so that CUPS sets the CUPS_PRINTER_REMOTE bit for the printer type of the local queue (Bug #1386).
2017-04-30Recursive revbump from boost updateryoon6-10/+12
2017-04-27Updated abcm2ps to 8.13.9.wiz2-7/+7
---- Version 8.13.9 - 2017-04-21 ---- Fix bad handling of the 4th parameter of %%tuplets (reported by Reinier Maliepaard) Execute the format file in '-F' when '-H' (reported by Richard Robinson) Add %%ss-pref (stylesheet prefix) as a replacement of %%abcm2ps Fix bad colors of lyrics and chord indications when last voice has a color (reported by Jean-Luc Fargere)
2017-04-26PROVIDE cups rather than cupsd, as that is what cups-browsed looks for.prlw12-3/+4
http://mail-index.netbsd.org/pkgsrc-users/2017/03/23/msg024617.html
2017-04-25Patch for CVE-2015-8107 from http://seclists.org/oss-sec/2015/q4/284tez3-3/+20
2017-04-23Since icu-59, this now needs c++11 to build.wiz1-1/+2
2017-04-22Revbump after icu updateadam6-11/+12
2017-04-20Ensure pkgsrc libraries can be found.jperkin2-6/+6
2017-04-18Patches for CVE-2016-10217, CVE-2016-10219, CVE-2016-10220 & CVE-2017-5951tez6-3/+92
2017-04-12Bump PKGREVISION for mupdf-1.11 updateleot1-2/+2
2017-04-12Update print/mupdf to 1.11leot15-327/+279
Changes: List of changes in MuPDF 1.11 ----------------------------- * This is primarily a bug fix release. * Split Android and iOS viewers into separate projects: - mupdf-viewer-ios.git has the iOS viewer. - mupdf-viewer-android-old.git has the Android viewer. - mupdf-viewer-android-nui.git has a new advanced Android viewer. - mupdf-viewer-android-mini.git has a new minimalist Android viewer. * PDF portfolio support with command line tool "mutool portfolio". * Add callbacks to load fallback fonts from the system. * Use system fonts in Android to reduce install size. * Flag to disable publisher styles in EPUB layout. * Improved SVG output.
2017-04-11Ensure pkgsrc libraries can be found.jperkin2-9/+9
2017-04-08CHANGES IN CUPS V2.2.3adam2-8/+7
- The IPP backend could get into an infinite loop for certain errors, causing a hung queue (<rdar://problem/28008717>) - The scheduler could pause responding to client requests in order to save state changes to disk (<rdar://problem/28690656>) - Added support for PPD finishing keywords (Issue 4960, Issue 4961, Issue 4962) - The IPP backend did not send a media-col attribute for just the source or type (Issue 4963) - IPP Everywhere print queues did not always support all print qualities supported by the printer (Issue 4953) - IPP Everywhere print queues did not always support all media types supported by the printer (Issue 4953) - The IPP Everywhere PPD generator did not return useful error messages (Issue 4954) - The IPP Everywhere finishings support did not work correctly with common UI or command-line options (Issue 4976) - Fixed an error handling issue for the network backends (Issue 4979) - The default cupsd.conf file did not work on systems compiled without Kerberos support (Issue 4947) - The "reprint job" option was not available for some canceled jobs (Issue 4915) - Updated the job listing in the web interface (Issue 4978) - Fixed some localization issues on macOS
2017-04-05Fix for CVE-2017-7207tez3-3/+21
2017-04-04Updated abcm2ps to 8.13.8.wiz2-7/+7
---- Version 8.13.8 - 2017-03-22 ---- Fix error on "!some deco!.|" (dotted bar) (reported by Timm Reasbeck) Fix bad slur direction when starting from grace note Fix bad display when staff without notes in a brace system Fix errors on w: when found after a restarting command and %abc-version >= 2.1 (reported by Lionel Coates) Fix bad measure numbering when %%setbarnb before right repeat (reported by Jean-Luc Fargere) Fix bad measure bars when at end of line and at start of next line since 8.13.5 (reported by Robert Edwards)
2017-03-31Version 9.21 (2017-03-16)adam9-72/+81
This is the fifteenth full release in the stable 9.x series. Highlights in this release include: * pdfwrite now preserves annotations from input PDFs (where possible). * The GhostXPS interpreter now provides the pdfwrite device with the data it requires to emit a ToUnicode CMap: thus allowing fully searchable PDFs to be created from XPS input (in the vast majority of cases). * Ghostscript now allows the default color space for PDF transparency blends. * The Ghostscript/GhostPDL configure script now has much better/fuller support for cross compiling. * The tiffscaled and tiffscaled4 devices can now use ETS (Even Tone Screening) * The toolbin/pdf_info.ps utility can now emit the PDF XML metadata. * Ghostscript has a new scan converter available (currently optional, but will become the default in a near future release). It can be enabled by using the command line option: '-dSCANCONVERTERTYPE=2'. This new implementation provides vastly improved performance with large and complex paths. * The usual round of bug fixes, compatibility changes, and incremental improvements.
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.