Commit graph

342719 commits

Author SHA1 Message Date
scole
3032458628 Update to 2.6
All changes for pthai.el
- highlight thai text when looking up or playing audio
- highlight text and move cursor as audio played for words
- add customize toggles for message display when playing audio
- add customize toggle to prevent downloading audio
- add customize toggle to prevent playing audio
- fix pthai-say* args to actually force downloads
- (thing-at-point 'thaiword) works for thai words not separated by spaces
- other clean ups
2021-07-28 17:45:59 +00:00
fcambus
38e268f8b9 mimalloc: install directly into CMAKE_INSTALL_PREFIX. 2021-07-28 14:23:13 +00:00
wen
796578469b Updated textproc/p5-PDF-API2 to 2.041 2021-07-28 14:15:53 +00:00
wen
aa113526be Update to 2.041
Upstream changes:
2.041     2021-07-27

    - Bug reports should now be made at GitHub Issues rather than RT.

    - Rename openpage to open_page in PDF::API2.  The old name is deprecated.

    - [RT #136648] Fix when writing PDFs containing cross-reference streams
      (reported by Chris Papademetrious, fix by Vadim Repin from RT #117184).

    - [RT #44877] GIFs containing comments or plain-text representations will no
      longer result in an error (reported by Chris Czub).

    - [RT #132844] Fix corruption when a PGM image is included (reported by Jeff
      Ratcliffe, fix by Vadim Repin).

    - Expand PNM support to include all image types.

    - [RT #131657] Disable recursion warnings while releasing (destroying) PDF
      indirect objects, which can be highly-interconnected (reported by Leon
      Winter).

    - [RT #41971] Fix when attempting to read an existing PDF's outlines
      (reported by Damyan Ivanov, fix based on a patch by Vadim Repin).


2.040     2021-04-13

    - Fix open() followed by stringify() resulting in a corrupt (mostly-empty)
      PDF, which was broken by changes in 2.039 (reported by Gareth Tunley).

    - [RT #134993] Calling open($filename) followed by saveas($same_filename)
      instead of update() resulted in a corrupt PDF in 2.039, which no longer
      reads the entire file into memory on open (reported by Marco Pessotto).

    - [RT #134957] Fix encoding of \n in a PDF string containing non-printable
      characters (reported by Stuart Henderson).

    - [RT #133131] Fix endianness of 64-bit numbers in cross-reference stream
      widths array (reported by Christopher Papademetrious, fix by Vadim Repin).
2021-07-28 14:09:14 +00:00
schmonz
964d2da19f doc: Updated devel/mob to 1.8.0 2021-07-28 14:04:36 +00:00
schmonz
fba605eab6 Update to 1.8.0. From the changelog:
- `mob next` does not show the same committer multiple times in the list
  of previous committers.
- `mob next` does not suggest the current Git user to be the next typist
  as long as there were other persons involved in the mob.
- `mob next` performs a simple lookahead to also suggest persons who
  might have been absent only during the last mob round.
- When user.name is not set in the git config, mob no longer shows an
  error but a warning with a help how to fix it.
2021-07-28 14:04:30 +00:00
wen
21eb68f1f3 Updated geography/p5-Geo-Distance to 0.25 2021-07-28 14:03:28 +00:00
wen
ecbb2be003 Update to 0.25
Upstream changes:
0.25 2021-01-30T06:24:44Z

 - Lots of documentation edits.
2021-07-28 14:01:23 +00:00
wen
b8751875cc Updated devel/p5-Perl-PrereqScanner to 1.024 2021-07-28 12:44:36 +00:00
wen
13f614dd33 Update to 1.024
Update DEPENDS

Upstream changes:
1.024     2021-07-03 13:28:30-04:00 America/New_York
        - switched from List::MoreUtils to List::Util (thanks, Karen
          Etheridge!)
        - update author contact info
        - add docs on perl version policy
2021-07-28 12:43:49 +00:00
wen
55ea755dcc Updated devel/p5-Perl-MinimumVersion to 1.40 2021-07-28 12:32:13 +00:00
wen
b83211c44d Update to 1.40
Update DEPENDS

Upstream changes:
1.40 2021-04-21
    - No changes from 1.39

1.39 2021-04-11 (TRIAL RELEASE)
    - Features enabled via the 'experimental' pragma are now recognized (GH#5)
    - Depend on PPIx::Utils instead of Perl::Critic::Utils (GH#6)
    - Recognize several new features and their minimum required Perl versions (GH#10, GH#20)
      - 'say', 'smartmatch', 'postderef', 'postderef_qq', 'signatures',
        'refaliasing', 'bitwise', 'declared_refs', 'isa', 'indirect'
2021-07-28 12:31:06 +00:00
adam
c780c4ea5e Added www/py-sanic-routing; Updated www/py-sanic 2021-07-28 12:14:39 +00:00
adam
47dab418bf py-sanic: updated to 21.6.1
Version 21.6.1

Bugfixes

Update sanic-routing to allow for better splitting of complex URI templates
Proper handling of chunked request bodies to resolve phantom 503 in logs
Resolve regression in exception logging
Cleanup request info in pipelined requests
Version 21.6.0

Features

Add response.eof() method for closing a stream in a handler

Allow case-insensitive HTTP Upgrade header

Explicit usage of CIMultiDict getters

Consistent use of error loggers

New client_ip access of connection info instance

Alternatate classes on instantiation for Config and Sanic.ctx

Implement new version of AST router

Proper differentiation between alpha and string param types
Adds a slug param type, example: <foo:slug>
Deprecates <foo:string> in favor of <foo:str>
Deprecates <foo:number> in favor of <foo:float>
Adds a route.uri accessor
CLI improvements with new optional params

Add version_prefix to URL builders

Event autoregistration with EVENT_AUTOREGISTER

Require stricter names on Sanic() and Blueprint()

Infinitely reusable and nestable Blueprint and BlueprintGroup

Upgrade websockets dependency to min version

Allow for maximum header sizes to be increased: REQUEST_MAX_HEADER_SIZE

Allow app factory pattern in CLI

Change HTTP methods to enums

Allow auto-reloading on additional directories

Add simple HTTP server to CLI

Additional methods for attaching HTTPMethodView

Bugfixes

Fix UserWarning in ASGI mode for missing __slots__
Fix static request handler logging exception on 404
Fix request.args.pop removes parameters inconsistently
Fix type hinting for load_env
Make sure ASGI ws subprotocols is a list
Fix issue where Blueprint exception handlers do not consistently route to proper handler
Deprecations and Removals

Remove config value REQUEST_BUFFER_QUEUE_SIZE
CompositionView deprecated and marked for removal in 21.12
Deprecate StreamingHTTPResponse
Developer infrastructure

Remove Travis CI in favor of GitHub Actions
Improved Documentation

Fix typo in documentation
Remove documentation for non-existent arguments
Version 21.3.2

Bugfixes

Disable response timeout on websocket connections
Make sure that blueprints with no slash is maintained when applied
Version 21.3.1

Bugfixes

Static files inside subfolders are not accessible (404)
Version 21.3.0

Release Notes

Features

Unified streaming server
New Request.id property
Allow Pathlib Path objects to be passed to app.static() helper
New startup-optimized router
Listeners for main server process
Add raw header info to request object
Introduce Signals API
Add __str__ and __repr__ to Sanic and Blueprint
Enable versioning and strict slash on BlueprintGroup
Make get_app name argument optional
JSON encoder change via app
App and connection level context objects
Bugfixes and issues resolved

Resolve 1420 url_for where strict_slashes are on for a path ending in /
Resolve 1525 Routing is incorrect with some special characters
Resolve 1653 ASGI headers in body
Resolve 1722 Using curl in chunk mode
Resolve 1730 Extra content in ASGI streaming response
Resolve 1749 Restore broken middleware edge cases
Resolve 1785 1804 Synchronous error handlers
Resolve 1790 Protocol errors did not support async error handlers
Resolve 1824 Timeout on specific methods
Resolve 1875 Response timeout error from all routes after returning several timeouts from a specific route
Resolve 1988 Handling of safe methods with body
Raise ValueError when cookie max-age is not an integer
Deprecations and Removals

Config using from_envvar
Config using from_pyfile
Config using from_object
Remove Sanic test client to its own package
Drop Python 3.6 support
Request.endpoint deprecated in favor of Request.name
handler type name prefixes removed (static, websocket, etc)
Developer infrastructure

Create FUNDING.yml
Add codeql to CI pipeline
Codecov configuration updates
Updated setup.py to use find_packages
Improved Documentation

Documentation for sanic.log.* is missing
Add documentation on calver and LTS
Support mounting application elsewhere than at root path
Upgraded type annotations and improved docstrings and API documentation
Fix some examples and docs
Miscellaneous

Request.route property
Better websocket subprotocols support
Resolve bug with middleware in Blueprint Group when passed callable
Moves common logic between Blueprint and Sanic into mixins
Route naming changed to be more consistent
request endpoint is the route name
route names are fully namespaced
Some new convenience decorators:
@app.main_process_start
@app.main_process_stop
@app.before_server_start
@app.after_server_start
@app.before_server_stop
@app.after_server_stop
@app.on_request
@app.on_response
Fixes Allow header that did not include HEAD
Using "name" keyword in url_for for a "static" route where name does not exist
Cannot have multiple app.static() without using the named param
Using "filename" keyword in url_for on a file route
unquote in route def (not automatic)
routes_all is tuples
Handler arguments are kwarg only
request.match_info is now a cached (and not computed) property
Unknown static file mimetype is sent as application/octet-stream
_host keyword in url_for
Add charset default to utf-8 for text and js content types if not specified
Version for a route can be str, float, or int
Route has ctx property
App has routes_static, routes_dynamic, routes_regex
Code cleanup and refactoring
Remove BaseSanic metaclass
Performance adjustments in handle_request_
2021-07-28 12:14:16 +00:00
adam
8be49dc89a py-sanic-routing: added version 0.7.1
Beginning in v21.3, Sanic makes use of this new AST-style router in two use
cases: routing paths and routing signals. Therefore, this package comes with a
BaseRouter that needs to be subclassed in order to be used for its specific
needs.
2021-07-28 12:11:13 +00:00
wen
9d24b5ab66 Added textproc/p5-PPIx-Utils version 0.003 2021-07-28 07:53:53 +00:00
wen
26b6a306cb Add p5-PPIx-Utils 2021-07-28 07:50:57 +00:00
wen
7bc843e13f Import PPIx-Utils-0.003 as p5-PPIx-Utils.
PPIx::Utils is a collection of utility functions for working with PPI documents.
The functions are organized into submodules, and may be imported from the
appropriate submodule or via this module.
2021-07-28 07:49:04 +00:00
wen
4504a58474 Updated devel/p5-Perl-Critic to 1.140 2021-07-28 07:15:15 +00:00
wen
7d79861cb4 Update to 1.140
Upstream changes:
1.140 Tue Mar 23 21:42:19 CDT 2021

    [New Features]
    Subroutines::RequireFinalReturn now lets you specify a
    terminal_methods parameter to specify methods that should been as
    terminal.  This is like the terminal_funcs parameter, but for methods.
    Thanks, Robin Smidsrød and Mike Bruins. (GH #920)


1.139_01 Tue Sep  1 23:52:18 CDT 2020

    [Fixes]
    Removed an extra /x in RequireInterpolationOfMetachars.pm that caused
    deprecation warnings in Perl 5.22 and higher.  (GH #822)

    Documentation::RequirePackageMatchesPodName now recognizes the package
    name if it's in C<< I<> >> or C<< B<> >> markup.  Thanks, Renée Bäcker.
    (GH #913)
2021-07-28 07:13:32 +00:00
wen
a289671f6b Updated devel/p5-Log-Report to 1.33 2021-07-28 03:48:19 +00:00
wen
20e323884d Update to 1.33
Upstream changes:
version 1.33: Sat Jul 17 10:56:52 CEST 2021

        Changes:
        - the $@->died with always return the original die causing object or
          string.  In most cases, you want to use $@->wasFatal, which is the
          translated (hence compatible) ::Exception object.  [Andy Beverley]
2021-07-28 03:47:21 +00:00
wen
ceb17884e2 Updated devel/p5-LEOCHARRE-Dir to 1.09 2021-07-28 03:45:06 +00:00
wen
e966559465 Update to 1.09
Upstream changes:
2020-10-10

   Made sure this won't test under a cygwin/windows environment
2021-07-28 03:44:21 +00:00
wen
a23db85cff Updated devel/p5-IPC-Shareable to 1.05 2021-07-28 03:41:56 +00:00
wen
1707060378 Update to 1.05
Update DEPENDS

Upstream changes:
1.05    2021-07-16
    - Bump prereq version of Test::SharedFork to 0.35
    - Added ability to use JSON as the serializer
    - Added ipcs()
    - Added test to ensure we croak if data size is greater than segment size
    - Added 'tidy' attribute, removes unneeded nested structure segments
    - In SharedMem, added _key attribute, and added set/get methods
    - Changed key generation from using padding, pack and unpack to using
      String::CRC32's crc32(), which allows arbitrary, unpadded strings
    - Added attributes() allows fetching one, or all of the object's atttributes
    - Added 'limit' attribute, by setting false, allows a user to set a segment
      size larger than our internal 1GB default
    - Cleaned up exception throwing (particularly if seg size eats up all
      memory, we throw an appropriate message)
    - Display proper exception if we try to exhaust all available shared memory
      segments (fixes #3)

1.04    2021-06-28
    - Skip unspawn tests for perls with -Duselongdouble, as Storable is not
      compatible storing/retrieving such numbers (closes #5)

1.03    2021-06-25
    - Add newline to singleton() warn so that it doesn't print out trace info

1.02    2021-06-25
    - Remove erroneous listing from MANIFEST
    - Work around issue in t/65-seg_size.t where MacOS and FreeBSD don't have
      the -i flag to ipcs (thanks for the PR, Roland Walker!)
    - Added singleton(), ensures that only a single instance of a script can
      run at any given time
    - Added tests to ensure we croak() if create is not set and the segment
      doesn't yet exist
    - Fix POD issue where we stated exclusive returns undef instead of croaking
      (fixes #10)
    - Change 'perl' shell call to $^X in t/71-unspawn.t (fixes #6)

1.01    2021-06-24
    - Added 'graceful' flag option. With exclusive, if a second process
      attempts to tie an exclusive segment, we exit gracefully instead of
      croaking

1.00    2021-06-09
    - Project adopted by Steve Bertrand
    - Added global_register() and process_register() to return the
      registries of active segments and semaphores
    - Added seg() and sem() methods, returns the structure of a shared
      memory segment and a sempahore respectively
    - Added initial "persist" hash variables. Separate processes (even
      multiple files in multiple windows) can share a variable, and it'll
      remain available even after all processes exit. The variable will be
      re-attached if the same shared segment key is used in subsequent runs
    - Reversed order of Changes file
    - Removed trace() and debug() code for ease of reading
    - Improved exception/error messages, added exception testing, reduced
      and minimized the number of exceptions actually uncaught
    - Significant POD cleanup
    - 100% rewrite of all test files, and added a slew of new ones, all
      using Test::More
    - Add build requirement of Test::SharedFork to handle the out of
      sequence fork() tests in t/35-clean.t and t/30-lock_operations
    - Major POD updates
    - Added tests to prove that RT 123057 isn't really an issue (ie. segment
      size parameter works correctly)
2021-07-28 03:41:00 +00:00
wen
4c1152b0cd Updated devel/p5-IO-Tty to 1.16 2021-07-28 03:29:40 +00:00
wen
0e3b48e310 Update to 1.16
Upstream changes:
1.16 2021-01-2 Todd Rinaldo <toddr@cpan.org>
    * Switch to github for issue tracker.
    * Switch to testsuite CI workflow.
    * Tidy

2020-10-03 Todd Rinaldo <toddr@cpan.org> 1.15
    * Skip winsize test on Solaris and QNX NTO
    * Make function tests more robust
    * Work around a header name collission on util.h. This is breaking on recent OSX
2021-07-28 03:28:46 +00:00
wen
b76bab8839 Updated devel/p5-IO-Pager to 2.10 2021-07-28 03:24:34 +00:00
wen
af06f3b6b5 Update to 2.10
Upstream changes:
2.10    Nov
        ::Perl Alter tp local script installation for parallel make. RT#133651

        ::Perl Add basic Windows support. RT#133663

        ::Perl Add TOPT environment variable to tp.

        ::Perl Enable scrollbar in interactive test 16.

2.01    Nov 02 2020
        ::Perl Fixed bug that left terminal in unclean state if exit at EOF
        was enabled.

        ::Perl Fixed jump to end of file shortcut to show last line on bottom
        of screen instead of top to provide more context.

        ::Perl Made scrollbar interactive using xterm control sequences.

        ::Perl Added scroll wheel support using xterm control sequences.

2.00    Nov 01 2020
        Fix interactive tests 7 and 16 in bogus environments w/o PAGER. RT#13330

        Add tp to local script installation. RT#133651

        ::Perl Add suport for visible scrollbar. RT#133652

        ::Perl Rename prompt() to status(), I18N{prompt} to I18N{minihelp},
               and I18N{status} to I18N{prompt}

        ::Perl Fix long lines in absence of Text::Wrap

        ::Perl Consolidate dialog()

        ::Perl Add ability to open file interactively

        ::Perl Prevent jumping to invalid bookmark

        ::Perl Fix tp -j
2021-07-28 03:23:33 +00:00
tron
012a38074e Note update of the "py-mysqldb" package to version 1.2.5nb2 2021-07-27 23:22:38 +00:00
tron
fc9f84241a databases/py-mysqldb: Fix build with latest version of MariaDB 2021-07-27 23:21:23 +00:00
tnn
d4a46a7912 u-boot-rockpro64-ayufan: backport PCIe fixes from sysutils/u-boot-rockpro64 2021-07-27 20:47:34 +00:00
tnn
49bcbfe2f0 fix patch comment 2021-07-27 19:39:38 +00:00
tnn
f2509d125c u-boot-rockpro64: fix broken PCI config space handling:
- Program bus number into the ECAM decoder for each access
- Use type 1 PCI config cycles for config spaces behind bridge
- Add a platform specific hack to the synchronous exception handler
  to deal with PCI-e subsystem triggering data aborts when probing
  nonexistent PCI devices.
- properly delay after deasserting reset for downstream devices to
  have time to initialize.

Allows booting from PCI devices behind bridges and probing
devices other than 0:0:0 and 1:0:0.
2021-07-27 19:23:43 +00:00
adam
bef7664e13 Updated devel/py-google-api-core, www/py-google-api-python-client 2021-07-27 15:56:01 +00:00
adam
af652cfc77 py-google-api-python-client: updated to 2.15.0
Changelog

2.15.0 (2021-07-27)

Features

alertcenter: update the api 70810a52c8 (a36e3b1)
chat: update the api a577cd0b71 (a36e3b1)
cloudbuild: update the api 9066056a8b (a36e3b1)
content: update the api b123349da3 (a36e3b1)
displayvideo: update the api c525d726ee (a36e3b1)
dns: update the api 13436ccd2b (a36e3b1)
eventarc: update the api 6be3394a64 (a36e3b1)
file: update the api 817a0e6367 (a36e3b1)
monitoring: update the api bd32149f30 (a36e3b1)
people: update the api aa6b47df40 (a36e3b1)
retail: update the api d39f06e2d7 (a36e3b1)
securitycenter: update the api 999fab5178 (a36e3b1)
speech: update the api 3b2c0fa62b (a36e3b1)
sqladmin: update the api cef24d829a (a36e3b1)

Documentation

update license to be Apache-2.0 compliant
2021-07-27 15:55:44 +00:00
adam
e960b8f71e py-google-api-core: updated to 1.31.0
1.31.0 (2021-07-07)

Features
add ServiceUnavailable exception to polling retries

Bug Fixes
undprecate entity factory helpers

1.30.0 (2021-06-08)

Features
add iterator capability to paged iterators

1.29.0 (2021-06-02)

Features
HTTPIterator now accepts a page_size parameter to control page …

Documentation
fix broken links in multiprocessing.rst

1.28.0 (2021-05-20)

Bug Fixes
require google-auth>=1.25.0

Miscellaneous Chores

1.27.0 (2021-05-18)

Features
Add support for rest/ token in x-goog-api-client header
retry google.auth TransportError and requests ConnectionError
2021-07-27 15:51:44 +00:00
adam
75f8051e6c Updated devel/abseil, net/grpc, net/py-grpcio, net/py-grpcio-testing, net/py-grpcio-tools 2021-07-27 15:48:02 +00:00
adam
d9c5d91245 grpc: updated to 1.39.0
Release v1.39.0

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

Initialize tcp_posix for CFStream when needed.
Update boringssl submodule.
Fix backup poller races.
I am back.
Use default port 443 in HTTP CONNECT request.

C++

New iomgr implementation backed by the EventEngine API.
async_unary_call: add a Destroy method, called by std::default_delete.
De-experimentalize C++ callback API.

C#

[C#] Add ChannelCredentials.SecureSsl property for better codecompletion with ChannelCredentials.
Better way of building protoc aarch64 artifacts.
Add C# plugin "file_suffix" option defaulting to "Grpc.cs".
Add "GeneratedCode" attribute to generated service stubs.

PHP

PHP: stop reading composer.json file just to read the version string.

Python

Python AIO: Match continuation typing on Interceptors.
Workaround 26279 by publishing manylinux_2_24 wheels instead of manylinux2014 on aarch64.
Fix zlib unistd.h import problem.
Handle gevent exception in gevent poller.

Ruby

Set XDS user agent in ruby via macros.
2021-07-27 15:47:18 +00:00
adam
b4ded0b11e abseil: updated to 20210324.2
Abseil LTS 20210324.2

What's New:

The cleanup library has been released. This library contains the control-flow-construct-like type absl::Cleanup which is used for executing a callback on scope exit.
The numeric library now includes bits.h, a polyfill header containing implementations of C++20's bitwise math functions.
Abseil now installs pkg-config files to make it easier to use Abseil with some other build systems.
Abseil now respects the default CMake installation paths. Standard CMake variables like CMAKE_INSTALL_PREFIX can be used to change the installation path.

Breaking Changes:

The empty absl::container target has been removed from the CMake build. This target had no effect and references to this target in user code can safely be removed.
2021-07-27 15:43:15 +00:00
tnn
24d92589f5 u-boot-rockpro64-ayufan: add note about updating this package 2021-07-27 15:29:08 +00:00
adam
02524cc880 py-minidump: fix PLIST 2021-07-27 15:05:49 +00:00
fcambus
39b58cb437 doc: Updated converters/bdf2psf to 1.205 2021-07-27 10:07:04 +00:00
fcambus
0006d874da bdf2psf: update to 1.205.
Nothing applying to bdf2psf in particular noted in the Changelog.
2021-07-27 10:06:50 +00:00
fcambus
e699c85b37 doc: Added devel/mimalloc version 2.0.2 2021-07-27 09:31:34 +00:00
fcambus
73aebf9275 Add mimalloc. 2021-07-27 09:30:54 +00:00
fcambus
293697169e devel/mimalloc: import mimalloc-2.0.2.
mimalloc (pronounced "me-malloc") is a general purpose allocator with
excellent performance characteristics. Initially developed by Daan Leijen
for the run-time systems of the Koka and Lean languages.

mimalloc is a drop-in replacement for malloc and can be used in other
programs without code changes.
2021-07-27 09:29:41 +00:00
adam
1a214c4702 Updated net/openvpn, devel/py-setuptools 2021-07-27 08:10:04 +00:00
adam
a7e0eea7f9 py-setuptools: updated to 57.4.0
v57.4.0
Added support for SETUPTOOLS_EXT_SUFFIX environment variable to override the suffix normally detected from the sysconfig module.

v57.3.0
Documentation is now published using the Furo theme.
2021-07-27 08:09:45 +00:00