summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2021-03-15sqlite3: updated to 3.35.0adam1-5/+5
SQLite Release 3.35.0 On 2021-03-12 Added built-in SQL math functions(). (Requires the -DSQLITE_ENABLE_MATH_FUNCTIONS compile-time option.) Added support for ALTER TABLE DROP COLUMN. Generalize UPSERT: Allow multiple ON CONFLICT clauses that are evaluated in order, The final ON CONFLICT clause may omit the conflict target and yet still use DO UPDATE. Add support for the RETURNING clause on DELETE, INSERT, and UPDATE statements. Use less memory when running VACUUM on databases containing very large TEXT or BLOB values. It is no longer necessary to hold the entire TEXT or BLOB in memory all at once. Add support for the MATERIALIZED and NOT MATERIALIZED hints when specifying common table expressions. The default behavior was formerly NOT MATERIALIZED, but is now changed to MATERIALIZED for CTEs that are used more than once. The SQLITE_DBCONFIG_ENABLE_TRIGGER and SQLITE_DBCONFIG_ENABLE_VIEW settings are modified so that they only control triggers and views in the main database schema or in attached database schemas and not in the TEMP schema. TEMP triggers and views are always allowed. Query planner/optimizer improvements: Enhancements to the min/max optimization so that it works better with the IN operator and the OP_SeekScan optimization of the previous release. Attempt to process EXISTS operators in the WHERE clause as if they were IN operators, in cases where this is a valid transformation and seems likely to improve performance. Allow UNION ALL sub-queries to be flattened even if the parent query is a join. Use an index, if appropriate, on IS NOT NULL expressions in the WHERE clause, even if STAT4 is disabled. Expressions of the form "x IS NULL" or "x IS NOT NULL" might be converted to simply FALSE or TRUE, if "x" is a column that has a "NOT NULL" constraint and is not involved in an outer join. Avoid checking foreign key constraints on an UPDATE statement if the UPDATE does not modify any columns associated with the foreign key. Allow WHERE terms to be pushed down into sub-queries that contain window functions, as long as the WHERE term is made up of entirely of constants and copies of expressions found in the PARTITION BY clauses of all window functions in the sub-query. CLI enhancements: Enhance the ".stats" command to accept new arguments "stmt" and "vmstep", causing prepare statement statistics and only the virtual-machine step count to be shown, respectively. Add the ".filectrl data_version" command. Enhance the ".once" and ".output" commands so that if the destination argument begins with "|" (indicating that output is redirected into a pipe) then the argument does not need to be quoted. Bug fixes: Fix a potential NULL pointer dereference when processing a syntactically incorrect SELECT statement with a correlated WHERE clause and a "HAVING 0" clause. (Also fixed in the 3.34.1 patch release.) Fix a bug in the IN-operator optimization of version 3.33.0 that can cause an incorrect answer. Fix incorrect answers from the LIKE operator if the pattern ends with "%" and there is an "ESCAPE '_'" clause.
2021-03-15py-pep517: updated to 0.10.0adam3-12/+15
0.10 Avoid shadowing imports such as colorlog in the backend, by moving the _in_process.py script into a separate subpackage. Issue warnings when using the deprecated pep517.build and pep517.check modules at the command line. See the PyPA build project for a replacement. Allow building with flit_core 3.x. Prefer the standard library unittest.mock to mock for tests on Python 3.6 and above.
2021-03-15py-radon: updated to 4.5.0adam2-7/+7
4.5.0 - Add ``--md`` option to ``cc`` command to export results as Markdown - Add async function support to Halstead visitor 4.4.0 - Use utf-8 as the default encoding on Python 3.0+ - Allow custom config file path through the RADONCFG env var
2021-03-15py-flake8: updated to 3.9.0adam2-9/+9
3.9.0 -- 2021-03-14 ------------------- You can view the `3.9.0 milestone`_ on GitLab for more details. New Dependency Information - Pyflakes has been updated to >= 2.3.0, < 2.4.0 (See also `GitLab!466`_) - pycodestyle has been updated to >= 2.7.0, < 2.8.0 (See also `GitLab!467`_) Deprecations - Drop support for python 3.4 (See also `GitLab!457`_) Features - Add ``--no-show-source`` option to disable ``--show-source`` (See also `GitLab!441`_) Bugs Fixed - Fix handling of ``crlf`` line endings when linting stdin (See also `GitLab!461`_)
2021-03-15py-codestyle: updated to 2.7.0adam2-7/+7
2.7.0: Changes: * Fix physical checks (such as W191) at end of file. * Add ``--indent-size`` option (defaulting to ``4``). * W605: fix escaped crlf false positive on windows.
2021-03-15py-flakes: updated to 2.3.0adam2-7/+7
2.3.0 (2021-03-14) - Recognize tuple concatenation in ``__all__`` export definitions - Better support use of annotation-only assignments when using ``from __future__ import annotations`` - Recognize special-case typing for ``Annotated`` - Fix undefined name ``__qualname__`` in class scope - Recognize special-cased typing for ``TypeVar`` - Errors for undefined exports in ``__all__`` are shown in a deterministic order - Fix false positives in certain typing constructs (``TypeVar``, ``NamedTuple``, ``TypedDict``, ``cast``)
2021-03-15py-configargparse: updated to 1.4adam2-7/+8
1.4: increment minor version
2021-03-14Update to 0.3.2. From the changelog:schmonz3-8/+11
- Add type hints everywhere so you can remove the ignore on your mypy settings
2021-03-14devel/pointfree: Import pointfree-1.1.1.7pho5-1/+41
This is a command-line tool for converting Haskell expressions to point-free form.
2021-03-14py-xdis: updated to 5.0.8adam3-8/+11
5.0.8: Allow an alternate opmap - adds the capability to disassemble python bytecode that has been frozen with a custom opcode mapping. This is particularly useful for disassembling malware that uses custom opcode mappings in an attempt to hinder disassembly with standard tools. The updates in this pull request are used by pydecipher, a tool to unfreeze and deob fuscate frozen python code. Add Python versions 3.8.8 and 3.9.2
2021-03-14py-yapf: updated to 0.31.0adam4-9/+14
0.31.0: Added - Renamed 'master' brannch to 'main'. - Add 'BLANK_LINES_BETWEEN_TOP_LEVEL_IMPORTS_AND_VARIABLES' to support setting a custom number of blank lines between top-level imports and variable definitions. - Ignore end of line `# copybara:` directives when checking line length. - Look at the 'pyproject.toml' file to see if it contains style information for YAPF. Changed - Do not scan exlcuded directories. Prior versions would scan an exluded folder then exclude its contents on a file by file basis. Preventing the folder being scanned is faster. Fixed - Exclude directories on Windows.
2021-03-14bison: update to 3.7.6.wiz2-7/+7
* Noteworthy changes in release 3.7.6 (2021-03-08) [stable] ** Bug fixes *** Reused Push Parsers When a push-parser state structure is used for multiple parses, it was possible for some state to leak from one run into the following one. *** Fix Table Generation In some very rare conditions, when there are many useless tokens, it was possible to generate incorrect parsers.
2021-03-13devel/php-memcache: commit forgot filestaca2-5/+7
* Add DESCR about php80 support. * Update distinfo.
2021-03-12gradle: Update to 6.8.3ryoon3-122/+149
Changelog: Too long. It includes: * Outdated TLS/SSL is disabled by default. * Fix bugs. * Improve performance. * Improve Kotlin DSL script support.
2021-03-12ant-contrib: Update to 1.0b3ryoon3-57/+134
Changelog: Not available.
2021-03-12php-msgpack: Import php-msgpack-2.1.2 as devel/php-msgpacktpaul4-1/+31
This extension provide API for communicating with MessagePack serialization. MessagePack is a binary-based efficient object serialization library. It enables to exchange structured objects between many languages like JSON. But unlike JSON, it is very fast and small.
2021-03-12gopls: update to 0.6.6.wiz3-78/+53
This release mostly included bug fixes and changes that are not user facing.
2021-03-12Honour MAKE_JOBS in install and test stages.nia1-3/+5
from Paul Ripke via tech-pkg.
2021-03-11uthash: update to 2.3.0.fcambus2-7/+7
Version 2.3.0 (2021-02-25) -------------------------- * remove HASH_FCN; the HASH_FUNCTION and HASH_KEYCMP macros now behave similarly * remove uthash_memcmp (deprecated in v2.1.0) in favor of HASH_KEYCMP * silence -Wswitch-default warnings (thanks, Olaf Bergmann!)
2021-03-11Add php-base58tpaul1-1/+2
2021-03-11php-base58: Import php-base58-1.0.2 as devel/php-base58tpaul3-0/+27
PHP extension for base58 encoding and decoding using the Bitcoin alphabet
2021-03-11py-faker: updated to 6.6.0adam3-8/+80
v6.6.0 - 2021-03-09 Add address provider for ro_RO. Thanks @feketemihai. v6.5.2 - 2021-03-08 Fix a problem with pyfloat where it can return sys.epsilon when right_digits=N and positive=True. Thanks @tomage. v6.5.1 - 2021-03-08 Replace es_MX RFC name initials when they are forbidden words. Thanks @briferz. v6.5.0 - 2021-02-24 Add address provider for de_CH. Thanks @andre-dasilva. v6.4.1 - 2021-02-19 user_agent: bump platform versions. Thanks @gsilvan. v6.4.0 - 2021-02-19 Add cs_CZ lorem - word list. Thanks @jakubno. v6.3.0 - 2021-02-17 Add sk_SK automotive provider. Thanks @matusvalo. v6.2.0 - 2021-02-17 Add current_country, current_country_code and administrative_unit. Thanks @prescod. v6.1.1 - 2021-02-09 Add Taiwanese and Palestinian time zones. Thanks @prescod. v6.1.0 - 2021-02-09 Rename fr_QC to fr_CA. Thanks @prescod. v6.0.0 - 2021-02-03 Fix pyfloat returning zeros when positive=True. Thanks @sciencectn. v5.8.0 - 2021-01-26 Add currency names for th_TH. Thanks @bact. v5.7.0 - 2021-01-25 Add new currency provider pricetag().
2021-03-10git-base: Install bash completion correctly.jperkin2-8/+11
Bump PKGREVISION.
2021-03-09nss: Remove include/nss/nss reference from buildlink3.mkryoon1-3/+1
2021-03-09git: Update to 2.30.2leot2-7/+7
Changes: 2.30.2 ====== This release addresses the security issues CVE-2021-21300. * CVE-2021-21300: On case-insensitive file systems with support for symbolic links, if Git is configured globally to apply delay-capable clean/smudge filters (such as Git LFS), Git could be fooled into running remote code during a clone. Credit for finding and fixing this vulnerability goes to Matheus Tavares, helped by Johannes Schindelin.
2021-03-09check return value of ioctl() and return an error if it fails.mrg3-3/+29
stops mpv continuing thinking it has a valid setup audio device that makes it seem to have hung. bump pkg version.
2021-03-09devel/ruby-rspec-rails: update to 5.0.0taca2-7/+7
5.0.0 / 2021-03-09 Enhancements: * Support new #file_fixture_path and new fixture test support code. (Jon Rowe, #2398) * Support for Rails 6.1. (Benoit Tigeot, Jon Rowe, Phil Pirozhkov, and more #2398) Breaking Changes: * Drop support for Rails below 5.2.
2021-03-09protobuf py-protobuf: updated to 3.15.5adam4-14/+14
Protocol Buffers v3.15.5 C++ Do not disable RTTI by default in the CMake build
2021-03-09py-bintrees: updated to 2.2.0adam2-11/+9
v2.2.0: build c-extensions inplace for testing by github action
2021-03-09nss: Update to 3.62ryoon3-113/+110
* Change header files installation suggested by markd@. Do not install dbm header files and install nss header files under nss, not nss/nss. Changelog: Bugs fixed in NSS 3.62 Bug 1688374 - Fix parallel build NSS-3.61 with make. Bug 1682044 - pkix_Build_GatherCerts() + pkix_CacheCert_Add() can corrupt "cachedCertTable". Bug 1690583 - Fix CH padding extension size calculation. Bug 1690421 - Adjust 3.62 ABI report formatting for new libabigail. Bug 1690421 - Install packaged libabigail in docker-builds image. Bug 1689228 - Minor ECH -09 fixes for interop testing, fuzzing. Bug 1674819 - Fixup a51fae403328, enum type may be signed. Bug 1681585 - Add ECH support to selfserv. Bug 1681585 - Update ECH to Draft-09. Bug 1678398 - Add Export/Import functions for HPKE context. Bug 1678398 - Update HPKE to draft-07.
2021-03-08Updated devel/ocaml-extlib to version 1.7.8.jaapb4-12/+12
Changes include: * sync with OCaml 4.12 * breaking change: ExtList.find_map type updated to match stdlib (following deprecation in previous release) * breaking change: minimal (recommended) build of extlib now excludes Base64 module * String: fold_left and fold_right without allocations
2021-03-08xsd: Update to 4.0.0. Builds again.nia34-901/+519
Borrowed patches from FreeBSD to rename the executable to avoid a conflict wiht lang/mono.
2021-03-08tig: update to 2.5.3.fcambus3-11/+11
tig-2.5.3 --------- Bug fixes: - Fix autoconf checking for readline. (#1072) - Fix segfault when saving a view with no column. - Reset view->parent when main view is promoted. - Fix segfault when pressing Enter in a child main view. - Restore lazy navigation. - Format time_t values portably and fix other values too. (#1084, #1085) - Fix loop when wrapping line with ISO-8859-1 character. (#1087, #1088)
2021-03-08Recursive revbump associated with update of lang/ocamljaapb128-159/+256
2021-03-08Update to 2.214wen3-22/+8
Update DEPENDS Upstream changes: 2.214 2021-01-23 22:43:10Z - distribution tooling updates - removed Pod::Tests dependency that is no longer used - remove use of File::Slurp in favour of Path::Tiny
2021-03-08py-gitpython: updated to 3.1.14adam2-7/+7
3.1.14 * git.Commit objects now have a ``replace`` method that will return a copy of the commit with modified attributes. * Add python 3.9 support
2021-03-08Update to 1.448wen2-9/+8
Upstream changes: 1.448 2021-03-05T15:01:18Z * Promote to a user release 1.447_01 2021-03-02T16:11:23Z * Try handling all-numeric user and group names (but, also, wtf?) Github #26. 1.447 2021-02-24T21:32:41Z * Trying harder to get the tests to pass on Cygwin 1.446 2021-02-20T21:18:48Z * Better cygwin detection, from Achim Gratz 1.445 2021-02-16T08:57:34Z * Get the tests to pass under Cygwin (Github #17, from Slaven Rezić) 1.444 2021-01-06T03:40:19Z * Remove Travis, add GitHub actions * Add file_is_symlink_not_ok 1.443_03 2020-06-15T13:13:42Z * Merge some test additions from Desmond Daignault (GitHub #20) 1.443_02 2020-06-15T12:10:34Z * Deprecated directories in tests appropriate for only plain files. It's a diag() message now but will be a test failure later. 1.443_01 2020-06-12T11:54:41Z * change the file_writeable_ok tests to file_writable_ok, which is the correct spelling. The old names work but now warn to use the new name. * Some updates to refresh the tests. * Start mirroring Test2::Tools::File so we support the same names. Thanks to Torbjørn Lindahl for spotting rough edges.
2021-03-08devel/Makefile: add and enable php-ffitaca1-1/+2
2021-03-08devel/php-ffi: add package version 7.4.16taca2-0/+20
Add php-ffi, part of php74 and php80. PHP is a programming language designed to be embedded into web pages. The FFI extension implements the Foreign Function Interface, but currently it is experimental.
2021-03-07devel/php-memcache: update to 8.0taca1-3/+5
Update php-memcache to 8.0. This is now for php80. 8.0.0 (2020-12-06) - Version 8.x support PHP 8.x - Version 4.x supports PHP 7.0-7.4. - Version 4.x is considered to be stable for production usage. - Support for PHP 5.x has been removed, please use memcache extension ver. 3.x - Special thanks to Frantisek Drojak - thesource93 (github) and Zaffy (github) for making this happen
2021-03-07devel/Makefile: add and enable php-memcache2 and php-memcache4taca1-1/+3
2021-03-07devel/php-memcache4: add php-memcache4 version 4.0.5.2taca3-0/+30
Add php-memcache4 version 4.0.5.2. This module provides the PHP API for memcached, the memory cache daemon. This version supports PHP 7.0-7.4.
2021-03-07devel/php-memcache2: add php-memcache 2.2.7 as php-memcache2taca3-0/+29
Add current php-memcache 2.2.7 package as php-memcache2. pkgsrc change: add LICENSE.
2021-03-07devel/ruby-getopt: update to 1.6.0taca3-13/+14
1.6.0 (2021-03-02) * Switch from test-unit to rspec, and update the Rakefile and gemspec accordingly. * Added a Gemfile.
2021-03-07devel/ruby-simpleidn: update to 0.2.1taca2-7/+9
0.2.1 (2021-01-14) No release information nor change log.
2021-03-07devel/ruby-native-package-installer: update to 1.1.1taca2-7/+7
1.1.1 - 2021-01-17 Improvements * [CentOS 8] Followed the powertools repository name change. 1.1.0 - 2020-04-12 Improvements * Updated README. [GitHub#11][Patch by kojix2] * Added support for Raspbian. [GitHub#12][Patch by xetum] Thanks * kojix2 * xetum
2021-03-07blosc: updated to 1.21.0adam2-7/+7
1.21.0 Updated zstd codec to 1.4.8. Updated lz4 codec to 1.9.3. New instructions on how to use the libraries in python-blosc wheels so as to compile C-Blosc applications.
2021-03-07py-sentry-sdk: updated to 1.0.0adam3-24/+21
1.0.0 This release contains breaking changes Feat: Moved auto_session_tracking experimental flag to a proper option and removed session_mode, hence enabling release health by default Fixed Django transaction name by setting the name to request.path_info rather than request.path Fix for tracing by getting HTTP headers from span rather than transaction when possible Fix for Flask transactions missing request body in non errored transactions Fix for honoring the X-Forwarded-For header Fix for worker that logs data dropping of events with level error
2021-03-07Switch to use lang/php/json.mk.taca3-11/+6
2021-03-07libftdi1: Update to 1.5.kleink6-11/+104
New in 1.5 - 2020-07-07 ----------------------- * Implement tc[io]flush methods & deprecate broken purge_buffers methods Please check your code for ftdi_usb_purge_rx_buffer(), ftdi_usb_purge_tx_buffer() and ftdi_usb_purge_buffers() and migrate to the new ftdi_tc[io]flush() methods. Old code will continue to function, but you'll get a deprecation warning during compilation. * Add program to test buffer flush (purge) functionality * Add kernel driver auto attach/detach. See new AUTO_DETACH_REATACH_SIO_MODULE option * Add ftdi_setflowctrl_xonxoff() * ftdi_eeprom / eeprom handling: * Unify handling of all boolean eeprom flags * Add device release number support * Add channel_a_driver support for type xxR chips * Add support for group0 drive levels on x232H chips * Fix handling of high_current_drive parameter * Fix inverted handling of VCP driver field for TYPE_R chips * New --verbose option for eeprom decode operation * Add example code for async mode * Add SPDX license identifiers to the core library & ftdi_eeprom * Various python SWIG wrapper improvements * Various cmake file improvements * Fix small bugs in error code paths