summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-01-212 Fixes for NetBSD, OpenBSD, FreeBSD:youri4-2/+61
- Add cpu times calculations - Disable backlight handling, it is linux-only.
2019-01-21Updated security/py-argon2_cffi, devel/py-daemonizeadam1-1/+3
2019-01-21py-daemonize: updated to 2.5.0adam2-7/+7
daemonize 2.5.0 Update Makefile Change webhook url Fix deprecation warnings for logger.warn() Only hard edit when there's processes to maintain fix(travis): update notification webhook
2019-01-21py-argon2_cffi: updated to 19.1.0adam2-7/+7
19.1.0: - Added support for Argon2 v1.2 hashes in argon2.extract_parameters().
2019-01-21doc/TODO: remove some updates that were donewiz1-49/+1
- R-DAAG-1.22, ap2-jk-1.2.41, attica-qt5-5.45.0, bwa-0.7.12 [needs shm_open(3), please contact MAINTAINER], coreutils-8.28, cy2-saml-1.5, cyrus-imapd24-2.4.18, hugo-0.32, inkscape-0.92.3, karchive-5.45.0, kauth-5.45.0, kbookmarks-5.45.0, kcodecs-5.45.0, kcompletion-5.45.0, kconfig-5.45.0, kconfigwidgets-5.45.0, kcoreaddons-5.45.0, kcrash-5.45.0, kdbusaddons-5.45.0, kdoctools-5.45.0, kglobalaccel-5.45.0, kguiaddons-5.45.0, ki18n-5.45.0, kiconthemes-5.45.0, kio-5.45.0, kitemmodels-5.45.0, kitemviews-5.45.0, kjobwidgets-5.45.0, knotifications-5.45.0, kservice-5.45.0, ktextwidgets-5.45.0, kwallet-5.45.0, kwidgetsaddons-5.45.0, kwindowsystem-5.45.0, kxmlgui-5.45.0, lf-2, mp3blaster-3.2.6, nagios-base-4.3.1, p5-Apache-Gallery-1.0.2, pam-saml-1.5, phonon-qt5-4.10.0, php-excel-1.8.1, py-flaky-3.5.3, solid-5.45.0, sonnet-5.45.0, sympa-6.2.14, thaixfonts-1.2.7, udfclient-0.8.1.
2019-01-21Updated devel/py-cython, www/py-bleachadam1-1/+3
2019-01-21py-bleach: updated to 3.1.0adam2-9/+8
Version 3.1.0: **Features** * Add recognized_tags argument to the linkify Linker class. This fixes issues when linkifying on its own and having some tags get escaped. It defaults to a list of HTML5 tags. **Bug fixes** * Add six>=1.9 to requirements. * Fix cases where attribute names could have invalid characters in them. * Fix problems with LinkifyFilter not being able to match links across &. * Fix InputStreamWithMemory when the BleachHTMLParser is parsing meta tags. * Fix doctests.
2019-01-21py-cython: updated to 0.29.3adam2-7/+7
0.29.3: Bugs fixed * Some C code for memoryviews was generated in a non-deterministic order. * C89 compatibility was accidentally lost since 0.28. * A C compiler cast warning was resolved. * An compilation failure with complex numbers under MSVC++ was resolved. * Coverage reporting could fail when modules were moved around after the build.
2019-01-21doc: Updated news/flnews to 0.16wiz1-1/+2
2019-01-21flnews: update to 0.16.wiz9-73/+123
Provided by Michael Bäuerle in pkgsrc-wip. Backported patches from 0.17 branch: -------------------------------------------------------------------------------- Bugfix: Configuration test result for inttypes.h presence is used, reintroduce the test Bugfix: BSD version of ntohl() for old systems now working again Modified LaTeX documentation to work with recent doxygen -------------------------------------------------------------------------------- Changelog: -------------------------------------------------------------------------------- V0.16 Bugfix: Supersede now preserves Followup-To header field Bugfix: The code that generates the attribute "reply to own article" now checks the Message-IDs too (to avoid errors if the parent article is missing in the hierarchy) Bugfix: Header parser and MIME parser fixed to correctly handle MIME entity delimiters (for boundary strings that contain spaces) Bugfix: Removed Unicode range U+E0020 ... U+E007E from rejected control characters (deprecated since Unicode 5.1, reintroduced for different purpose since Unicode 9.0) (Reported by Marcel Logen) TLS: Protocol version TLSv1.3 according to RFC8446 is now supported (requires at least OpenSSL 1.1.1) CORE module now supports multiple article hierarchies Unicode database updated to version 11.0.0 IBM852 to UTF-8 converter added If the OS doesn't report IPv6 as available, usage can now be forced with the option 'CFG_FORCE_IP6' Support for reproducible builds added (option 'CFG_REPRODUCIBLE') Some checks for system header files removed to speed up configuration (Build fails in any case if they are missing) Documentation updated --------------------------------------------------------------------------------
2019-01-21Fix build under NetBSD/i386 8.0, based on PR pkg/53758ryoon4-8/+38
2019-01-21Updated devel/py-wrapt, lang/py-mypyadam1-4/+6
2019-01-21py-mypy: updated to 0.660adam3-19/+31
0.660: - Literal Types - Quick Mode Removed - Plugin Improvements * Add documentation for plugin system * Make name lookup available to all plugin hooks * Add more information to FunctionContext and MethodContext - Other Improvements and Notable Bugs Fixed * Introduce an optional sqlite backed incremental cache, enabled with --sqlite-cache * Fix a daemon crash when there is a decode error * Allow setting python_executable from config file * Short-circuit if expression for always true/always false variables and MYPY/TYPE_CHECKING * Don't map actual kwargs to formal *args * Disable cache when producing reports * Fix issues with pointer arrays in the ctypes plugin * Support kw_only=True in the attrs plugin * Fix some daemon crash bugs * Better error messages when __eq__ has unexpected signature * Collect additional timing stats and allow reporting them from the daemon * Fix dmypy run when bad options passed to mypy * Improve error messages from multiple inheritance compatibility checks * Fix an incremental mode crash that can occur in situations with import cycles and star imports
2019-01-21py-wrapt: updated to 1.11.1adam3-11/+8
Version 1.11.1 Bugs Fixed Fixed memory leak in C extension variant of PartialCallableObjectProxy class introduced in 1.11.0, when it was being used to perform binding, when a call of an instance method was made through the class type, and the self object passed explicitly as first argument. The C extension variant of the PartialCallableObjectProxy class introduced in 1.11.0, which is a version of functools.partial which correctly handles binding when applied to methods of classes, couldn't be used when no positional arguments were supplied. When the C extension variant of PartialCallableObjectProxy was used and multiple positional arguments were supplied, the first argument would be replicated and used to all arguments, instead of correct values, when the partial was called. When the C extension variant of PartialCallableObjectProxy was used and keyword arguments were supplied, it would fail as was incorrectly using the positional arguments where the keyword arguments should have been used. Version 1.11.0 Bugs Fixed When using arithmetic operations through a proxy object, checks about the types of arguments were not being performed correctly, which could result in an exception being raised to indicate that a proxy object had not been initialised when in fact the argument wasn't even an instance of a proxy object. Because an incorrect cast in C level code was being performed and an attribute in memory checked on the basis of it being a type different to what it actually was, technically it may have resulted in a process crash if the size of the object was smaller than the type being casted to. The __complex__() special method wasn't implemented and using complex() on a proxy object would give wrong results or fail. When using the C extension, if an exception was raised when using inplace or, ie., |=, the error condition wasn't being correctly propagated back which would result in an exception showing up as wrong location in subsequent code. Type of long was used instead of Py_hash_t for Python 3.3+. This caused compiler warnings on Windows, which depending on what locale was set to, would cause pip to fail when installing the package. If calling Class.instancemethod and passing self explicitly, the ability to access __name__ and __module__ on the final bound method were not preserved. This was due to a partial being used for this special case, and it doesn't preserve introspection. Fixed typo in the getter property of ObjectProxy for accessing __annotations__. Appeared that it was still working as would fall back to using generic __getattr__() to access attribute on wrapped object.
2019-01-21update texstudiomarkd1-1/+2
2019-01-21texstudio: update to 2.12.14markd4-16/+17
TeXstudio 2.12.14 ---------------- - fix bug that not all available GUI languages are shown - tweak fuzzy completer - fix template presentation TeXstudio 2.12.12 ---------------- - improve macro handling, provide gui that directly downloads macros from github.com/texstudio-org/texstudio-macro - add fuzzy completion mode - add cwls - fix rare bug that the character appear reverse order - bug fixes TeXstudio 2.12.10 ---------------- - improvement recognized latex commands and packages for completion/syntax checking - complete package names when they contain minus - do not clean .git subfolder with auxiliary files - pdf viewer: improved previous page jumping, fix embedded movie boxes (when compiled with phonon) - option to use qt file dialog rather than system file dialog - fix structure view with Qt >5.10 - bug fixes TeXstudio 2.12.8 ---------------- - improved tokenizer for syntax checking and completion - pressing Ctrl+F while the editor search has focus opens the extended search, i.e., you'll get extended search by pressing Ctrl+F twice - automatically insert math delimiters ($) when inserting a math command outside of a math env (can be turned off, default on) - change copy behavior of multiple cursors from selection order to line order - file list is now a transparent popup window: closes when clicked outside - combine file conflict and show diff dialog - fix file watcher not recognizing multiple changes to a file in quick succession - improved detection of package names when opening texdoc - new symbol panel layout - some touch scrolling on certain panels - updated synctex and poppler libraries for pdf viewer - fix undo when a snippet is inserted and a selection is inserted as well - fix some parts of the editor background may not be drawn in the correct color - build for OSX High Sierra - various other fixes
2019-01-21bochs: fix build on linuxmarkd5-2/+44
2019-01-21Updated www/py-soupsieve, graphics/py-qrcodeadam1-1/+3
2019-01-21py-qrcode: updated to 6.1adam2-7/+7
6.1: - Fix short chunks of data not being optimized to the correct mode. - Tests fixed for Python 3
2019-01-21py-soupsieve: updated to 1.7.2adam2-7/+7
1.7.2 - **FIX**: Fix HTML detection type selector. - **FIX**: Fixes for :enabled and :disabled. - **FIX**: Provide a way for Beautiful Soup to parse selectors in a quirks mode to mimic some of the quirks of the old select method prior to Soup Sieve, but with warnings. This is to help old scripts to not break during the transitional period with newest Beautiful Soup. In the future, these quirks will raise an exception as Soup Sieve requires selectors to follow the CSS specification. 1.7.1 - **FIX**: Fix issue with :has() selector where a leading combinator can only be provided in the first selector in a relative selector list. 1.7.0 - **NEW**: Add support for :in-range and :out-of-range selectors. - **NEW**: Add support for :defined selector. - **FIX**: Fix pickling issue when compiled selector contains a NullSelector object. - **FIX**: Better exception messages in the CSS selector parser and fix a position reporting issue that can occur in some exceptions. - **FIX**: Don't compare prefixes when evaluating attribute namespaces, compare the actual namespace. - **FIX**: Split whitespace attribute lists by all whitespace characters, not just space. - **FIX**: :nth-* patterns were converting numbers to base 16 when they should have been converting to base 10.
2019-01-21Updated devel/py-daemon, devel/py-flakyadam1-1/+3
2019-01-21py-flaky: updated to 3.5.3adam3-10/+10
Version 3.5.3 bump version to 3.5.3 Version 3.5.2 Fix fall back to old pytest marker API for older pytest version Version 3.5.1 Misc improvements and cleanup. * Support Python 3.6 and 3.7 * Fixes 102 by printing formatted tracebacks in the flaky report * Fixes 119 by ensuring a test is only reported as successful once * Various fixes to docs * Various modifications for pycodestyle/pylint compliance * Updates pytest plugin to prefer the updated workeroutput terminology. * Fixes 129 by adding a pytest marker. Version 3.5.0 Merge pull request 141 from box/v3.5
2019-01-21py-daemon: updated to 2.2.3adam2-7/+7
Version 2.2.3 Bug Fixes: * Use custom fake file type for testing fileno behaviour. This works around an incompatibility in Python 2.7 file type that caused test cases to fail. Changes: * Promote the warning for runner module to a DeprecationWarning. This has been an unofficial example module from the beginning, and it will be removed in a future version. Version 2.2.2 Bug Fixes: * Remove from the build system specification a white space character not permitted in TOML format. Additions: * Implement test suite automation in virtualenvs, using Tox. Version 2.2.1 Additions: * Add a :PEP:518 conformant build system specification (the pyproject.toml file).
2019-01-21bash: Adjust dollar_dollar_pid type (pid_t, not int)leot2-1/+17
Pointed out by pkgsrc-upstream-trunk32 SmartOS Joyent bulk builds.
2019-01-21doc: Updated chat/toxcore to 0.2.7maya1-1/+2
2019-01-21toxcore: update to 0.2.7maya3-10/+11
Fix problems with initial connections and name-setting in conferences Add callback for successful connection to a conference Fix memory leak in error path in group A/V Note that 'make test' hangs on NetBSD, but another test succeeds. from iphydf in https://github.com/NetBSD/pkgsrc/pull/28
2019-01-21cmocka: avoid -Werror=uninitialized which incorrectly fires on wrong codemaya1-1/+5
by GCC 4.3/4.4 Reported in https://github.com/NetBSD/pkgsrc/pull/41
2019-01-21Note update of bearssl to 0.6agc1-1/+2
2019-01-21Update security/bearssl from 0.5 to 0.6agc4-14/+16
Changes since previous version: + Added general-purpose implementations of EAX and CCM modes (including shared precomputation support for EAX). + Added general-purpose RSA/OAEP implementation. + Added general-purpose HKDF implementation. + Added support for CCM and CCM_8 TLS cipher suites (RFC 6655 and RFC 7251). + Added RSA and EC key generation. + Added private key encoding support ("raw" and PKCS#8 formats, both in DER and PEM, for RSA and EC key pairs). + Made Base64 encoding/decoding constant-time (with regards to the encoded data bytes). + Added a generic API for random seed providers. + Added an extra DRBG based on AES/CTR + Hirose construction for reseeding. + Some cosmetic fixes to avoid warnings with picky compilers. + Makefile fix to achieve compatibility with OpenBSD. + Fixed a bug in bit length computation for big integers (this was breaking RSA signatures with some specific implementations and key lengths). + Made SSL/TLS client stricter in cipher suite selection (to align with server behaviour).
2019-01-21Note update to sysutils/decode-dimmspgoyette1-1/+2
2019-01-21Implement multi-processor load calculations for NetBSD,youri3-3/+89
this fills the graphs in mate and gnome system monitors.
2019-01-20doc: Updated sysutils/xfce4-taskmanager to 1.2.2youri1-1/+2
2019-01-20xfce4-taskmanager: Update to 1.2.2:youri5-462/+218
Notable changes: - Switch to gtk3, disable gtk2 version - Maintain NetBSD as a separate file until changes are upstreamed - Various bug fixes and translations updates
2019-01-20doc: Updated www/links-gui to 2.18leot1-1/+2
2019-01-20doc: Updated www/links to 2.18leot2-3/+3
2019-01-20links{,-gui}: Update to 2.18leot3-9/+8
Changes: === RELEASE 2.18 === - Compile links with graphics support on OpenVMS - Automatically enable tor mode when the socks port is 9050 - When we are in tor mode, invert the colors on the top line and bottom line, so that the user can immediatelly see it - Fix an incorrect shift in write_ev_queue that could cause spurious error if the socket for interprocess communication fills up. This bug was introduced in Links 2.15. - Fix 'runtime error: member access within null pointer' sanitizer warning - Add a menu entry to save and load a clipboard - Don't synchronize with the Xserver on every pixmap load It improves performance on remote connections - Fix a bug that in the "Network options" dialog box, the value in the field "Timeout when trying multiple addresses" incorrectly set the value "Timeout when unrestartable". - Fix a possible integer overflow in decoder_memory_expand - Work around a bug on OpenVMS where allocations larger than 0x77fffff0 are treated as if they had 16 bytes - Fix possible pointer arithmetics bugs if the operating system allocated memory few bytes below the limit 0xffffffff or 0xffffffffffffffff - Add a button to never accept invalid certificate for a given server - Fix incorrect strings -html-t-text-color, -html-t-link-color, -html-t-background-color, -html-t-ignore-document-color in the manual page and help (reported by Oliver Schode <oliver.schode@online.de>) - Windows 7 has a bug (or feature) that corrupts the screen when using the unaccelerated video driver - when a thread draws into window's device context and the user simultaneously drags the window, the device context coordinates may not be updated. Subsequent draws are done with incorrect coordinates. In order to work around this bug, we detect that a drawing operation possibly raced with window moving. If it did, we allocate a new DC (the old one is corrupted) and start a timer that asks the main thread to redraw the whole window using the new DC. - Add ascii replacement of Romanian S and T with comma Fix replacement of c with cedilla and a/i with grave accent a/o/u with diaeresis - Use static linking in the released binaries on OS/2 because the DLL names may clash with other programs - On OS/2, use AF_OS2 for interprocess communication because the loopback network device may not be properly configured. Fall back to 127.0.0.1 only if AF_OS2 in not installed. - Fixed a bug when IPv6 control connection to a ftp server fails and IPv4 control connection succeeds, links would incorrectly try to make the data connection using IPv6 (this bug was introduced in Links 2.15).
2019-01-20Mysql clientmaya1-1/+4
2019-01-20mysql57-client: change the default configuration to avoid informationmaya5-8/+57
disclosure to a malicious server. Backport of upstream commit: https://github.com/mysql/mysql-server/commit/98ed3d8bc8ad724686d26c7bf98dced3bd1777be Exploit method described here: https://gwillem.gitlab.io/2019/01/17/adminer-4.6.2-file-disclosure-vulnerability/
2019-01-20doc/TODO: add somewiz1-4/+9
+ calibre-3.38.1, librsvg-2.44.11, libwebp-1.0.2, links-2.18, py-flaky-3.5.3, py-mechanize-0.4.0, py-pygit2-0.27.4, spice-protocol-0.12.15.
2019-01-20mysql56-client: change the default configuration to avoid informationmaya5-7/+57
disclosure to a malicious server. Backport of upstream commit: https://github.com/mysql/mysql-server/commit/98ed3d8bc8ad724686d26c7bf98dced3bd1777be Exploit method described here: https://gwillem.gitlab.io/2019/01/17/adminer-4.6.2-file-disclosure-vulnerability/
2019-01-20mysql55-client: change the default configuration to avoid informationmaya5-8/+58
disclosure to a malicious server. Backport of upstream commit: https://github.com/mysql/mysql-server/commit/98ed3d8bc8ad724686d26c7bf98dced3bd1777be Exploit method described here: https://gwillem.gitlab.io/2019/01/17/adminer-4.6.2-file-disclosure-vulnerability/
2019-01-20doc: Updated sysutils/arm-trusted-firmware-fiptool to 2.0nb1wiz1-1/+2
2019-01-20arm-trusted-firmware-fiptool: fix make fetch.wiz3-14/+30
Simplify package, distname, honor LDFLAGS (fixes RELRO), pkglint cleanup. Bump PKGREVISION
2019-01-20rust: Remove --disable-jemalloc, no longer valid.jperkin1-2/+1
2019-01-20doc: Updated www/ruby-selenium-webdriver to 3.141.0taca1-1/+2
2019-01-20www/ruby-selenium-webdriver: update to 3.141.0taca3-10/+13
3.141.0 (2018-10-31) ==================== Edge: * Added new Edge::Options class that should be used to customize browser behavior. The instance of options class can be passed to driver initialization using :options key. Please, note that using options require insiders builds of Edge. Chrome: * Included HasLocation to Chrome driver (thanks @sidonath). * Updated endpoint to send Chrome Debugging Protocol commands. The old one has been deprecated in ChromeDriver 40. Safari: * Added new Safari::Options class that should be used to customize browser behavior. The instance of options class can be passed to driver initialization using :options key. Please, note that using options require Safari 12+. Remote: * Allow passing Options instances to remote driver initialization using :options key. This feature allows to use browser-specific options classes (Chrome::Options, Firefox::Options, etc.) and pass them to Server/Grid instead of capabilities.
2019-01-20doc: Updated time/ruby-hitimes to 1.3.1taca1-1/+2
2019-01-20time/ruby-hitimes: update to 1.3.1taca2-7/+7
## Version 1.3.1 2019-01-18 * Update jruby extension to not use global runtime state (thanks @kares) (#70) * Update travis CI config * Update documentataion for Ruby 2.6
2019-01-20doc: Updated textproc/ruby-erubi to 1.8.0taca1-1/+2
2019-01-20textproc/ruby-erubi: update to 1.8.0taca2-7/+7
=== 1.8.0 (2018-12-18) * Support :yield_returns_buffer option in capture_end for always returning the (potentially modified) buffer in <%|= tags (evanleck) (#15)