summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-09-07R-promises: add missing dependencymaya1-1/+2
From Benjamin Lorenz in PR pkg/54518
2019-09-07doc: Updated net/bftpd to 5.2nia1-1/+2
2019-09-07bftpd: Update to 5.2nia3-36/+14
Jesse Smith <jessefrgsmith@yahoo.ca> -> 5.2 - Make sure we do not send extra newline when DENY message is sent to the client. - Fixed some build dependencies in the Makefile so fresh build is triggered by updating config.h. Change provided by Vemake.
2019-09-07doc: Updated graphics/materia-gtk-theme to 20190831nia1-1/+2
2019-09-07materia-gtk-theme: Update to 20190831nia3-158/+86
Notable changes: Colors Darken primary color in light variants Lighten primary color in dark variant Lighten separator color in dark variant Darken dark color scheme slightly Change inactive window's title bar background-color Update error/warning/success/visited colors to meet accessibility standards Styles Change focus style from outline to overlay Change all drop style to much hover style Change disabled scale style Change hover style of combo buttons Change combo entry style Change osd toolbar style like YouTube's floating toolbar Update typography in gnome-shell Update style and logic of shadows to much the latest Material Design guidelines Update stack sidebar style Update info bar style Adjust text button sizing Use primary color for dialog buttons Remove a separator from LightDM's dialog Normalize tab bar height in gnome-terminal & tilix Others Make transition a little faster Sync GTK2 entry/combobox/spinbutton styles with GTK3
2019-09-07doc: Updated audio/festival to 2.5.0nia2-3/+3
2019-09-07festival: Update to 2.5.0nia19-500/+44
New in Festival 2.5: Support for gcc6 (which is a somewhat different dialect of C++) New in Festival 2.2: Updates to hts (hts_engine 1.07) and clustergen
2019-09-07doc: Updated audio/flite to 2.1nia2-3/+3
2019-09-07flite: Update to 2.1nia9-133/+110
* Indic language support * Patch CVE-2014-0027 locally
2019-09-07doc: Updated sysutils/file to 5.37nia1-1/+2
2019-09-07file: Update to 5.37nia3-23/+7
2019-05-09 22:27 Christos Zoulas <christos@zoulas.com> * Make sure that continuation separators are printed with -k within softmagic 2019-05-06 22:27 Christos Zoulas <christos@zoulas.com> * Change SIGPIPE saving and restoring during compression to use sigaction(2) instead of signal(3) and cache it. (Denys Vlasenko) * Cache stat(2) calls more to reduce number of calls (Denys Vlasenko) 2019-05-06 17:25 Christos Zoulas <christos@zoulas.com> * PR/77: Handle --mime-type and -k correctly. 2019-05-03 15:26 Christos Zoulas <christos@zoulas.com> * Switch decompression code to use vfork() because tools like rpmdiff and rpmbuild call libmagic with large process footprints (Denys Vlasenko) 2019-04-07 14:05 Christos Zoulas <christos@zoulas.com> * PR/75: --enable-zlib, did not work. 2019-02-27 11:54 Christos Zoulas <christos@zoulas.com> * Improve regex efficiency (Michael Schroeder) by: 1. Prefixing regex searches with regular search for keywords where possible 2. Using memmem(3) where available
2019-09-07R-later: add missing dependency R-BH. Fixes build.maya1-1/+2
From Benjamin Lorenz in PR pkg/54517
2019-09-07Updated textproc/py-snowballstemmer, www/py-werkzeugadam1-1/+3
2019-09-07py-werkzeug: updated to 0.15.6adam2-7/+7
Version 0.15.6 - Work around a bug in pip that caused the reloader to fail on Windows when the script was an entry point. This fixes the issue with Flask's flask run command failing with "No module named Scripts\flask". - ProxyFix trusts the X-Forwarded-Proto header by default. - The deprecated num_proxies argument to ProxyFix sets x_for, x_proto, and x_host to match 0.14 behavior. This is intended to make intermediate upgrades less disruptive, but the argument will still be removed in 1.0.
2019-09-07py-snowballstemmer: updated to 1.9.1adam3-8/+17
snowballstemmer 1.9.1: * Added Hindi stemmer. * Added Basque and Catalan stemmers. * Improved Greek stemmer. * Various Python code improvements. * Fixed AttributeError when clearing cache. * The tarball now includes a COPYING file.
2019-09-07Updated multimedia/ffmpeg4, www/py-aiohttp, devel/py-whichcraft, ↵adam2-3/+6
www/py-mechanize
2019-09-07py-mechanize: updated to 0.4.3adam2-9/+7
0.4.3: * When filling forms with unicode strings automatically encode them into the correct encoding fr the HTML page being viewed * Guess content type when uploading files if not specified * py3 compat - Have the version of simple cookies be 0 rather than None
2019-09-07misc/ini_file_manager: remove misspelled C from USE_LANGUAGESrillig1-2/+2
It was ignored anyway, and the package builds fine without it, as expected.
2019-09-07py-whichcraft: updated to 0.6.1adam2-7/+7
0.6.1: * Fix versioning issue
2019-09-07mk/compiler/gcc.mk: update _VARGROUPSrillig1-6/+46
2019-09-07py-aiohttp: updated to 3.6.0adam2-7/+7
3.6.0: Features - Add support for Named Pipes (Site and Connector) under Windows. This feature requires Proactor event loop to work. - Removed `Transfer-Encoding: chunked` header from websocket responses to be compatible with more http proxy servers. - Accept non-GET request for starting websocket handshake on server side. Bugfixes - Raise a ClientResponseError instead of an AssertionError for a blank HTTP Reason Phrase. - Fix an issue where cookies would sometimes not be set during a redirect. - Change normalize_path_middleware to use 308 redirect instead of 301. This behavior should prevent clients from being unable to use PUT/POST methods on endpoints that are redirected because of a trailing slash. - Drop the processed task from ``all_tasks()`` list early. It prevents logging about a task with unhandled exception when the server is used in conjunction with ``asyncio.run()``. - ``Signal`` type annotation changed from `Signal[Callable[['TraceConfig'], Awaitable[None]]]` to `Signal[Callable[ClientSession, SimpleNamespace, ...]`. - Use sanitized URL as Location header in redirects - Improve typing annotations for multipart.py along with changes required by mypy in files that references multipart.py. - Close session created inside ``aiohttp.request`` when unhandled exception occurs - Cleanup per-chunk data in generic data read. Memory leak fixed. - Use correct type for add_view and family - Fix _keepalive field in __slots__ of web_protocol.RequestHandler. - Properly handle ConnectionResetError, to silence the "Cannot write to closing transport" exception when clients disconnect uncleanly. - Suppress pytest warnings due to test util classes - Fix overshadowing of overlapped subbaps prefixes. - Fixed return type annotation for WSMessage.json() - Properly expose TooManyRedirects publicly as documented. - Fix missing brackets for IPv6 in proxy CONNECT request - Make the signature of `aiohttp.test_utils.TestClient.request` match `asyncio.ClientSession.request` according to the docs - Use correct style for re-exported imports, makes mypy ``--strict`` mode happy. - Fixed type annotation for add_view method of UrlDispatcher to accept any subclass of View - Made cython HTTP parser set Reason-Phrase of the response to an empty string if it is missing. - Add URL to the string representation of ClientResponseError. - Accept istr keys in LooseHeaders type hints. - Fixed race conditions in _resolve_host caching and throttling when tracing is enabled. - For URLs like "unix://localhost/..." set Host HTTP header to "localhost" instead of "localhost:None".
2019-09-07ffmpeg4: updated to 4.2.1adam3-9/+8
version 4.2.1: - avformat/vividas: check for tiny blocks using alignment - avcodec/vc1_pred: Fix refdist in scaleforopp() - avcodec/vorbisdec: fix FASTDIV usage for vr_type == 2 - avcodec/iff: Check for overlap in cmap_read_palette() - avcodec/apedec: Fix 32bit int overflow in do_apply_filter() - lavf/rawenc: Only accept the appropriate stream type for raw muxers. - avformat/matroskadec: use av_fast_realloc to reallocate ebml list arrays - avformat/matroskadec: use proper types for some EbmlSyntax fields - avcodec/ralf: fix undefined shift in extend_code() - avcodec/ralf: fix undefined shift - avcodec/bgmc: Check input space in ff_bgmc_decode_init() - avcodec/vp3: Check for end of input in 2 places of vp4_unpack_macroblocks() - avcodec/truemotion2: Fix multiple integer overflows in tm2_null_res_block() - avcodec/vc1_block: Check the return code from vc1_decode_p_block() - avcodec/vc1dec: Require res_sprite for wmv3images - avcodec/vc1_block: Check for double escapes - avcodec/vorbisdec: Check get_vlc2() failure - avcodec/tta: Fix integer overflow in prediction - avcodec/vb: Check input packet size to be large enough to contain flags - avcodec/cavsdec: Limit the number of access units per packet to 2 - avcodec/atrac9dec: Check block_align - avcodec/alac: Check for bps of 0 - avcodec/alac: Fix multiple integer overflows in lpc_prediction() - avcodec/rl2: set dimensions - avcodec/aacdec: Add FF_CODEC_CAP_INIT_CLEANUP - avcodec/idcinvideo: Add 320x240 default maximum resolution - avformat/realtextdec: free queue on error - avcodec/vp5/6/8: use vpX_rac_is_end() - avformat/vividas: Check av_xiphlacing() return value before use - avcodec/alsdec: Fix integer overflow in decode_var_block_data() - avcodec/alsdec: Limit maximum channels to 512 - avcodec/anm: Check input size for a frame with just a stop code - avcodec/flicvideo: Optimize and Simplify FLI_COPY in flic_decode_frame_24BPP() by using bytestream2_get_buffer() - avcodec/loco: Check left column value - avcodec/ffwavesynth: Fixes invalid shift with pink noise seeking - avcodec/ffwavesynth: Fix integer overflow for some corner case values - avcodec/indeo2: Check remaining input more often - avcodec/diracdec: Check that slices are fewer than pixels - avcodec/vp56: Consider the alpha start as end of the prior header - avcodec/4xm: Check for end of input in decode_p_block() - avcodec/hevcdec: Check delta_luma_weight_l0/1 - avcodec/hnm4video: Optimize postprocess_current_frame() - avcodec/hevc_refs: Optimize 16bit generate_missing_ref() - avcodec/scpr: Use av_memcpy_backptr() in type 17 and 33 - avcodec/tiff: Enforce increasing offsets - avcodec/dds: Use ff_set_dimensions() - avformat/vividas: Fix another infinite loop - avformat/vividas: Fix infinite loop in header parser - avcodec/mpc8: Fix 32bit mask/enum - avcodec/alsdec: Fix integer overflows of raw_samples in decode_var_block_data() - avcodec/alsdec: Fix integer overflow of raw_samples in decode_blocks() - avcodec/alsdec: fix mantisse shift - avcodec/pngdec: consider chunk size in minimal size check - avcodec/vc1_block: Fix invalid shifts in vc1_decode_i_blocks() - avcodec/vc1_block: fix invalid shift in vc1_decode_p_mb() - avcodec/aacdec_template: fix integer overflow in imdct_and_windowing() - avformat/mpegts: Check if ready on SCTE reception - avcodec/omx: fix xFramerate calculation - avformat/avidec: add support for recognizing HEVC fourcc when demuxing - avformat/mpegts: fix teletext PTS when selecting teletext streams only - avcodec/h2645_parse: zero initialize the rbsp buffer - avcodec/omx: Fix handling of fragmented buffers - avcodec/omx: ensure zerocopy mode can be disabled on rpi builds - avformat/mxfdec: do not ignore bad size errors - avformat/matroskadec: Fix seeking - ffplay: properly detect all window size changes
2019-09-07doc: Updated x11/py-gtk2 to 2.24.0nb29gutteridge1-1/+2
2019-09-07py-gtk2: add upstream patches to fix leaksgutteridge4-3/+54
These were committed upstream years ago, but there was no further release that incorporated them.
2019-09-07options.description: add the libappindicator3 optiongutteridge1-0/+1
2019-09-07mate-control-center: make libappindicator3 support optionalgutteridge2-2/+16
To thin out Python 2 dependencies, libappindicator3 can be an optional choice. It's left enabled by default, no change for most users or binary packages. Addresses PR pkg/54516 from Benjamin Lorenz.
2019-09-07doc: Updated www/firefox to 69.0nb1gutteridge1-1/+2
2019-09-07firefox: fix build when webrtc option is not enabledgutteridge2-3/+4
PeerConnectionIdp.jsm is installed universally, not just when webrtc is an enabled option.
2019-09-07doc: Added emulators/xm8 version 1.70tsutsui1-1/+2
2019-09-07emulators/Makefile: + xm8tsutsui1-1/+2
2019-09-07emulators/xm8: import xm8-1.70.tsutsui13-0/+443
XM8 is "eXcellent Multi-platform emulator type 8", an emulator of NEC PC-8801 series, based on "ePC-8801MA".
2019-09-06bat: Adds missing libclang dependency.fox1-1/+3
Looks like onig_sys crate requires libclang.so to build. Reported by: wiz
2019-09-06Updated misc/libreoffice to 6.3.1.2ryoon1-1/+2
2019-09-06Update to 6.3.1.2ryoon4-23/+88
Changelog: 6.3.1.2 Bugs fixed compared to 6.3.1 rc1: tdf#118856 Text flickering when highlighting text in about us windows [Miklos Vajna] tdf#125869 LibreOffice UI freezes (shows not responding) while exporting a pdf [Noel Grandin] tdf#126254 Help - About is black with Linux gen and gtk2 backend [Caolán McNamara] tdf#126271 Selecting of control points of curves not working correctly for combined polygons [Regina Henschel] tdf#126418 Crash in: ScColumn::MergeBlockFrame(SvxBoxItem *,SvxBoxInfoItem *,ScLineFlags &,long,long,bool,short) [Mike Kaganski] tdf#126693 I cannot create custom categories for captions [Caolán McNamara] tdf#126781 size of conditional formatting window prevents text to be changed (right end unreachable) [Caolán McNamara] tdf#126805 Config Tip-Of-The-Day option is shown displaced [Heiko Tietze] tdf#126819 Can't retrieve the mouse position written in the statusbar [Noel Grandin] tdf#126830 Icons not showing in menus [Noel Grandin] tdf#126908 no keyID for some tooltips in table toolbar [Laurent BP] tdf#126928 FILEOPEN: Multiple external link chain with several calc documents doesn't work properly any more [Eike Rathke] tdf#126989 Libreoffice v6.3.0.4 hangs - Scan in Writer/ Impress/ Draw/(Calc?) [Mike Kaganski] tdf#127002 Calc: Page Formatting: Header & Footer: can't move text cursor to proper position. [Caolán McNamara] tdf#127021 When attempting to insert a 'set variable' field into a document, not all formatting options are available [Caolán McNamara] 6.3.1.1 Bugs fixed compared to 6.3.0 (rc4): cid#1448222 out-of-bounds read [Caolán McNamara] cid#1448262 dereference before null check [Caolán McNamara] tdf#39742 DRAW, IMPRESS: Menu 'Tools-Options-DRAW-Print' settings not respected [Gabor Kelemen] tdf#42316 Creating a new document from a template removes the signature from all Macros [Jan-Marek Glogowski] tdf#44786 PRINTING: Draw ignores global print options, forgets print dialog settings [Gabor Kelemen] tdf#54908 printing when a selection is active should take in account it and activate the "print selection" radio button [Daniel Silva] tdf#94300 Fill gradients dont work in area content panel of chart sidebar [Katarina Behrens] tdf#106000 delete/edit comment in context box not an option if comment is escaped without writing anything in it. [Miklos Vajna] tdf#107975 CRASH: Crash after undo operation (BigPtrArray::Index2Block(unsigned long) [Zdeněk Crhonek] tdf#110442 EDITING: The image within the selection doesn't disappear after cutting [Michael Stahl] tdf#112535 FILESAVE: DOC: Image got distorted after RT [Miklos Vajna] tdf#116085 Cannot start Certificate Manager with GPG4win v3 [Thorsten Behrens] tdf#117185 Crash when closing the document after a specific undo redo operation (Paste) due to inserted fly anchored at end of last paragraph in body [Michael Stahl] tdf#118384 Sidebar: Style is not added back to hierarchy after deleting and redoing it [Jim Raykowski] tdf#121599 (Supress-migration-dialog) [META] Firebird Migration: Suppress migration dialog when embedded HSQLDB not opened interactively [Xisco Fauli] tdf#122358 Forms: Right and bottom borders of form-controls set to 'FLAT' style not displayed (gtk3) [Caolán McNamara] tdf#122774 All items in AutoFilter popup menu are not keyboard accessible [Jim Raykowski] tdf#123099 Creating new "HSQLDB Embedded" database immediately brings up migration-to-Firebird dialog [Xisco Fauli] tdf#123591 Firebird - Incorrect Pasting of Numeric Data [Xisco Fauli] tdf#123702 FILEOPEN RTF Size of page margins is different in Word and Writer [László Németh] tdf#124108 auto-correction of typographic quotation marks and apostrophes broken for fr_CI [Eike Rathke] tdf#124700 LibO6.2 regression: bad misrendering of metafile [Caolán McNamara] tdf#125100 EDITING: Insert OLE Object behaves different if new document is generated from template [Ilhan Yesil] tdf#125483 Changing Locale does not update the label of the separator key [Caolán McNamara] tdf#125609 radiobutton receives item status changed event after listbox value selection [Justin Luth] tdf#125628 FORMATTING: Part of text loose yellow highlight reopening document [Tamás Zolnai] tdf#125923 Numbering and Bullets dialog Revert button closes window instead of reverting changes on Impress [Gülşah Köse] tdf#126070 New Bullets Dialog - Preview zone not resizable + levels above 6-7 not visible with default zone size [Gülşah Köse] tdf#126168 Crash in: rtl_uString_acquire: frame style undo redo [Vasily Melenchuk] tdf#126222 EDITING Writer: After scrolling extra header/footer are shown [Ilhan Yesil] tdf#126227 Top border not displayed on track changes (gtk3) [Caolán McNamara] tdf#126309 Opening RTF document with Hebrew RLT (right to left) text is shown with the text written from left to right [Miklos Vajna] tdf#126460 Wrong rendering with Greyscale TIF with no / transparent background [Caolán McNamara] tdf#126471 Mail merge ignores preselected printer when printing second time [Michael Weghorn] tdf#126485 Tabs and indents in numbering and item list were limited to less than 20 pt [Caolán McNamara] tdf#126511 Delete path to Gallery from graphics list in B&N dialog [Gülşah Köse] tdf#126544 in DOCX files, some styles's "text direction" appears Right-to-Left or Left-to-Right depending on User Interface Language [Justin Luth] tdf#126588 EDITING: Firebird: View could be executed, but crashes when trying to save [Noel Grandin] tdf#126590 FILEOPEN DOCX Absolute links broken in Writer [Tünde Tóth] tdf#126597 Don't crash Outlook 2016 when sending multiple attachments mail via SimpleMail [Jan-Marek Glogowski] tdf#126611 XML Form Document: instance Data Navigator isn't shown in toolbar [andreas kainz] tdf#126626 CRASH: pasting fly at-char selection [Michael Stahl] tdf#126627 CRASH: undoing redlinehide deletion [Michael Stahl] tdf#126641 Hyperlink to bookmark in doc[x] file does not work [Mike Kaganski] tdf#126642 Allow PDF form export with different defaults based on Archive setting [Jan-Marek Glogowski] tdf#126643 If I select LibreOffice Calc macros Python, an error message box mentions JRE is required. [Mike Kaganski] tdf#126663 XLSX: LibreOffice is freezed when I try open Style list in Sidebar [Julien Nabet, Noel Grandin] tdf#126680 Two Finger Horizontal Scroll is Reversed on Linux and macOS [Jan-Marek Glogowski] tdf#126684 Character Style border attributes UI doesn't show borders or allow change to borders [Mike Kaganski] tdf#126685 CRASH: selecting all in sheet [Noel Grandin] tdf#126691 Placement of items in Writer + Undo is 100% broken [Caolán McNamara] tdf#126708 EMF image lost in command-line conversion from .odt to .doc [Luke Deller] tdf#126723 FILEOPEN DOCX Numbered list item gets indent setting from next paragraphs footnote [Justin Luth] tdf#126732 FILEOPEN: Writer crashes on opening Docx file [Caolán McNamara] tdf#126736 In line dialog, tab "Line Styles", dash length and spacing cannot be larger than 5% [Caolán McNamara] tdf#126746 Closed shape cap style, losed after export to pptx [Bartosz Kosiorek] tdf#126748 Intermittent crash exporting a ODS to XLSX [Mike Kaganski] tdf#126766 FORMATTING -10000 sometimes shows up as .0000 [Eike Rathke] tdf#126769 Sidebar can't be collapsed clicking on the hide arrow [Samuel Mehrbrodt] tdf#126790 CRASH: Closing LibreOffice while 'Help is not Installed' dialog is open in extension manager (gen/gtk) [Caolán McNamara] tdf#126808 UI: Writer crashes opening the style edit window after doing many style edits [Miklos Vajna] tdf#126844 Find & Replace Dialog no longer permits me to format "Replace" text. (GTK3) [Caolán McNamara] tdf#126848 Drop-down filter window in Pivot table is flickering when move mouse point on it [Xisco Fauli] tdf#126859 Custom document properties cannot be accessed in LO 6.3 [Caolán McNamara] tdf#126889 HELP: Very large images in a page of online help [Olivier Hallot] tdf#126931 Wrong date formats for Upper Sorbian and Lower Sorbian [Eike Rathke] tdf#126943 CRASH: Closing LibreOffice while load Styles dialog is open ( gen ) [Caolán McNamara]
2019-09-06simplify...christos2-9/+11
2019-09-06PR/54520: greywolf, our TIOCREMOTE seems to be broken, disable it.christos4-32/+18
Also make the openpty use NetBSD only (Jonathan Perkin)
2019-09-06PR/54528: greywolf: fix fortify issue with stack overwrites.christos1-0/+29
2019-09-06talloc: switch master site to https due to unconditional redirecttnn1-2/+2
XXX the master site still responds with some RFC8297 code that ftp(1) does not understand ...
2019-09-06Updated devel/py-virtualenv, devel/py-libmcadam1-1/+3
2019-09-06py-libmc: updated to 1.6.1adam2-7/+7
1.6.1: Boomerino 1.6.1
2019-09-06py-virtualenv: updated to 16.7.5adam3-11/+13
v16.7.5: Bugfixes - upgrade pip from 19.2.2 to 19.2.3 v16.7.4: Bugfixes - * fix powershell activation when sourced - * upgrade wheel from 0.33.4 to 0.33.6 and setuptools from 41.1.0 to 41.2.0 v16.7.3: Bugfixes - upgrade pip from 19.1.1 to 19.2.2 and setuptools from 41.0.1 to 41.1.0 v16.7.2: Bugfixes - fix regression - sh activation script not working under sh (only bash) v16.7.1: Features - pip bumped to 19.2.1 v16.7.0: Features - activate.ps1 syntax and style updated to follow PSStyleAnalyzer rules - Allow creating virtual environments for 3.xy. - Report error when running activate scripts directly, instead of sourcing. By reporting an error instead of running silently, the user get immediate feedback that the script was not used correctly. Only Bash and PowerShell are supported for now. - * add pip 19.2 (19.1.1 is kept to still support python 3.4 dropped by latest pip)
2019-09-06Updated textproc/py-dominate, time/py-arrowadam1-1/+3
2019-09-06py-arrow: updated to 0.14.7adam2-7/+7
0.14.7 - [CHANGE] `ArrowParseWarning` will no longer be printed on every call to `arrow.get()` with a datetime string. The purpose of the warning was to start a conversation about the upcoming 0.15.0 changes and we appreciate all the feedback that the community has given us! 0.14.6 - [NEW] Added support for `week` granularity in `Arrow.humanize()`. For example, `arrow.utcnow().shift(weeks=-1).humanize(granularity="week")` outputs "a week ago". This change introduced two new untranslated words, `week` and `weeks`, to all locale dictionaries, so locale contributions are welcome! - [NEW] Fully translated the Brazilian Portugese locale. - [CHANGE] Updated the Macedonian locale to inherit from a Slavic base. - [FIX] Fixed a bug that caused `arrow.get()` to ignore tzinfo arguments of type string (e.g. `arrow.get(tzinfo="Europe/Paris")`). - [FIX] Fixed a bug that occurred when `arrow.Arrow()` was instantiated with a `pytz` tzinfo object. - [FIX] Fixed a bug that caused Arrow to fail when passed a sub-second token, that when rounded, had a value greater than 999999 (e.g. `arrow.get("2015-01-12T01:13:15.9999995")`). Arrow should now accurately propagate the rounding for large sub-second tokens.
2019-09-06py-dominate: updated to 2.4.0adam3-8/+16
2.4.0: SVG Support.
2019-09-06Updated mail/exim-htmladam1-1/+2
2019-09-06exim-html: updated to 4.92.2adam3-9/+12
keep up with exim
2019-09-06doc: Updated mail/exim to 4.92.2wiedi1-1/+2
2019-09-06exim: update to 4.92.2wiedi2-8/+7
Exim version 4.92.2 ------------------- HS/01 Handle trailing backslash gracefully. (CVE-2019-15846)
2019-09-06databases/mysql56-client: allow build with OpenSSL 1.1.xtaca9-6/+316
* Allow mysql56-{client,server} build with OpenSSL 1.1.x. * Reduce a few useless warnings.
2019-09-06doc: Updated mail/postgrey to 1.36nb5jperkin1-1/+2