Commit graph

295778 commits

Author SHA1 Message Date
sevan
9c735d4584 pkgtools/pkg_install 20190405 2019-04-05 23:25:01 +00:00
sevan
fdc3a15828 Bump date for switch to cdn.NetBSD.org 2019-04-05 22:53:29 +00:00
sevan
f2e9355c35 Switch to using the CDN for fetching the pkg-vulnerabilities files.
No negative responses on tech-pkg.
ok gdt bsiegert
2019-04-05 21:36:35 +00:00
maya
0e719279f7 +fuse-exfat 2019-04-05 19:33:53 +00:00
maya
f8181cd62f doc: Added filesystems/fuse-exfat version 1.3.0 2019-04-05 19:33:21 +00:00
maya
a0335b0128 Add fuse-exfat version 1.3.0
This project aims to provide a full-featured exFAT file system
implementation for Unix-like systems. It consists of a FUSE module
(fuse-exfat) and a set of utilities (exfat-utils).
2019-04-05 19:32:55 +00:00
jklos
c05c7f6e8d Update security/stunnel to 5.5.1. 2019-04-05 16:54:54 +00:00
jklos
fcd8a1be45 Update security/stunnel to 5.51:
Version 5.51, 2019.04.04, urgency: MEDIUM

New features
Hexadecimal PSK keys are automatically converted to binary.
Session ticket support (requires OpenSSL 1.1.1 or later). "connect"
address persistence is currently unsupported with session tickets.
SMTP HELO before authentication (thx to Jacopo Giudici).
New "curves" option to control the list of elliptic curves in OpenSSL
1.1.0 and later.
New "ciphersuites" option to control the list of permitted TLS 1.3 ciphersuites.
Include file name and line number in OpenSSL errors.
Compatibility with the current OpenSSL 3.0.0-dev branch.
Better performance with SSL_set_read_ahead()/SSL_pending().
Bugfixes
Fixed PSKsecrets as a global option (thx to Teodor Robas).
Fixed a memory allocation bug (thx to matanfih).
2019-04-05 16:53:00 +00:00
jperkin
b47660a3a4 doc: Updated www/apache24 to 2.4.39nb1 2019-04-05 13:59:47 +00:00
jperkin
6e63b8a1c0 apache24: Make xml support optional, defaulting to on.
Allows mod_proxy_html to be supported again.  Based on a pull request from
vec4f in joyent/pkgsrc#169.
2019-04-05 13:48:38 +00:00
adam
bd325b67f8 Updated databases/repmgr 2019-04-05 13:42:54 +00:00
adam
95ae8ec2ef repmgr: updated to 4.3.0
4.3:
repmgr: add "daemon (start|stop)" command
repmgr: add --version-number command line option
repmgr: add --compact option to "cluster show"
repmgr: cluster show - differentiate between unreachable nodes
  and nodes which are running but rejecting connections
repmgr: add --dry-run option to "standby promote"
repmgr: add "node check --data-directory-config"
repmgr: prevent potential race condition in "standby switchover"
  when checking received WAL location
repmgr: ensure "standby switchover" verifies repmgr can read the
  data directory on the demotion candidate
repmgr: ensure "standby switchover" verifies replication connection
  exists
repmgr: add sanity check for correct extension version
repmgr: ensure "witness register --dry-run" does not attempt to read node
  tables if repmgr extension not installed
repmgr: ensure "standby register" fails when --upstream-node-id is the
  same as the local node ID
repmgrd: check binary and extension major versions match
repmgrd: on a cascaded standby, don't fail over if "failover=manual";
repmgrd: don't consider nodes where repmgrd is not running as promotion
  candidates
repmgrd: add option "connection_check_type"
repmgrd: improve witness monitoring when primary node not available
        repmgrd: handle situation where a primary has unexpectedly appeared
          during failover
2019-04-05 13:42:30 +00:00
adam
a087b6a56a Updated parallel/py-billiard, devel/py-test-xdist 2019-04-05 13:12:17 +00:00
adam
73e01857dd py-test-xdist: updated to 1.28.0
pytest-xdist 1.28.0:
Features
- pytest-xdist now uses the new pytest_report_to_serializable and pytest_report_from_serializable
  hooks from pytest 4.4 (still experimental). This will make report serialization more reliable and
  extensible.
2019-04-05 13:11:30 +00:00
adam
7a50c4797e py-celery: adjust DEPENDS 2019-04-05 13:05:22 +00:00
adam
964776cc40 py-billiard: updated to 3.6.0.0
3.6.0.0:
- Add support of sending parent process death signal.
- Previous fix for handling timeouts caused a problem in warm shutdowns due
  to use of deepcopy.
  We now use a shallow copy of the cache and do so only when it is needed.
- Cleanup old checks and workarounds for Python versions we no longer support.
2019-04-05 13:03:11 +00:00
nonaka
f458d78139 Add java-jna 2019-04-05 12:59:12 +00:00
nonaka
2353c499a8 Added devel/java-jna version 5.2.0 2019-04-05 12:58:05 +00:00
adam
aa055e5f5b Updated net/py-kombu, devel/py-vine, net/py-celery 2019-04-05 12:56:16 +00:00
adam
b16ae54312 py-celery: updated to 4.3.0
4.3.0:
- Added support for broadcasting using a regular expression pattern
  or a glob pattern to multiple Pidboxes.
- Added support for PEP 420 namespace packages.
- Added :setting:acks_on_failure_or_timeout as a setting instead of
  a task only option.
- Added the :signal:task_received signal.
- Fixed a crash of our CLI that occurred for everyone using Python < 3.6.
- Fixed a crash that occurred when using the Redis result backend
  while the :setting:result_expires is set to None.
- Added support the DNS seedlist connection format for the MongoDB result backend.
- Bump the minimum eventlet version to 0.24.1.
- Replace the msgpack-python package with msgpack.
- Allow scheduling error handlers which are not registered tasks in the current
  worker.
- Additional fixes and enhancements to the SSL support of
  the Redis broker and result backend.
2019-04-05 12:55:50 +00:00
nonaka
cab832eca7 PR/54097: Added Java Native Access 5.2.0 as devel/java-jna.
JNA provides Java programs easy access to native shared libraries without
writing anything but Java code - no JNI or native code is required.
This functionality is comparable to Windows' Platform/Invoke and Python's
ctypes.
2019-04-05 12:55:15 +00:00
adam
771d7b53cc py-vine: updated to 1.3.0
1.3.0:
- Added the option to ignore the result of a function and simply
  call the callback without arguments.
2019-04-05 12:54:27 +00:00
adam
e4edf56567 py-kombu: updated to 4.5.0
4.5.0:
- The Redis transport now supports a custom separator for keys.
- When the SQS server returns a timeout we ignore it and keep trying
  instead of raising an error.
- Properly declare async support for the Qpid transport.
2019-04-05 12:53:46 +00:00
jperkin
f3d1dd2959 zabbix: Add SMF manifest.
Provided by Emil Petersson in joyent/pkgsrc#188.
2019-04-05 12:43:21 +00:00
tsutsui
c9e9dc0ae1 doc: Updated x11/mlterm to 3.8.8 2019-04-05 12:15:22 +00:00
tsutsui
d981aa1f3f mlterm: update to 3.8.8.
pkgsrc changes:
- handle utmp option properly
- remove a patch applied in the upstream

Upstream changes noted in doc/en/ReleaseNote:

ver 3.8.8
* Support Haiku OS. (Experimental)
  (Execute ./configure with --with-gui=beos option.) (See doc/en/README.beos)
* Support "[font family]:style=..." format in aafont or font-fb config file.
* Support mosh. (Experimental) (See doc/en/README.mosh)
  (Don't distribute libptymosh in binary format.)
* Clear a window and scroll out all lines if the size of a window decreases
  and some characters in it disappear.
* Support "%s" (replaced by selected strings) in "exesel:..." in ~/.mlterm/key.
* Add local_echo_wait / --lew option.
* Remove libind_tamil.so because it is very buggy.
* Change the default shortcut key of INSERT_SELECTION from Shift+Insert to
  Command+v on MacOSX and iOS.
* Skip \r in configuration files.
* Start scp by Shift+Drag&Drop on not only xlib and win32 but also wayland, sdl2
  and cocoa. (Command+Drag&Drop on cocoa.)
* Change the default value of "font_size_range" option from 6-30 to 1-100.
* Add vte 0.56.0 API symbols to libvte compatible library.
* Bug fixes:
  Fix https://sourceforge.net/p/mlterm/mailman/message/36472061/
  Fix https://sourceforge.net/p/mlterm/mailman/message/36513313/
  Fix https://sourceforge.net/p/mlterm/bugs/79/
  Fix segfault in processing illegal sixel sequence.
  Fix invalidation of DECDWL on cairo. (Enbugged at 3.8.6)
  Fix handling ISCII fonts on cairo and xft. (Improve showing bengali characters.)
  Fix screen corruption (http://twitter.com/Cj_bc_sd/status/1088111309223161857)
  on MacOSX 10.14. (Thanks to @Cj_bc_sd)
  Fix segfault in showing an input method window. (Thanks to @isaki68k)
2019-04-05 12:14:58 +00:00
leot
750be7d7e6 doc: Updated security/sqlmap to 1.3.4 2019-04-05 10:55:26 +00:00
leot
e78f30fa8b sqlmap: Update to 1.3.4
Changes:
(No changelog is provided upstream, this is based on commit messages.)

1.3.4
-----
 - Add support for preprocess response data (`--preprocess' option)
 - Misc bug fixes and improvements

1.3.3
-----
 - Misc bug fixes and improvements

1.3.2
-----
 - Add and update WAF scripts
 - Misc bug fixes and improvements

1.3.1
-----
(Not released)

1.3
---
 - Add Approach and Bluedon WAF scripts
 - Misc bug fixes and improvements

1.2.12
------
 - Misc bug fixes and improvements
2019-04-05 10:55:14 +00:00
ryoon
9172fac9dd Updated mail/notmuch to 0.28.3nb2 2019-04-05 09:59:37 +00:00
ryoon
0a4e6da434 Fix mimeinfo.cache handlinkg of notmuch-emacs option
* Handle mimeinfo.cache automatically
* Bump PKGREVISION
2019-04-05 09:59:01 +00:00
adam
35a914c182 Updated databases/py-psycopg2, security/py-cryptodome 2019-04-05 09:18:54 +00:00
adam
0d1fba9fc2 py-cryptodome: updated to 3.8.1
3.8.1:
New features
* Add support for loading PEM files encrypted with AES192-CBC, AES256-CBC, and AES256-GCM.
* When importing ECC keys, ignore EC PARAMS section that was included by some openssl commands.
2019-04-05 09:18:33 +00:00
adam
472a408304 py-psycopg2: updated to 2.8
Psycopg 2.8 released

After about two years from the previous major release, psycopg 2.8 is finally
here!

Among the highlights, PostgreSQL errors are now mapped to Python exceptions for
a more idiomatic way to handle them. Several additions allow a better insight
of the connection status and query results.

Behind the scene, asynchronous communication and concurrency received several
improvements, and dropping support for older versions of Python gave the chance
to refactor and modernise the codebase (with the especial help from Jon
Dufresne who ruthlessly butchered our code into a streamlined pulp).
2019-04-05 09:14:41 +00:00
wiz
09cd8cc229 notmuch: Sort PLIST. 2019-04-05 08:23:12 +00:00
wiz
f59b3eb14b notmuch: fix typo in previous. Bump PKGREVISION to be on the safe side. 2019-04-05 08:22:25 +00:00
kamil
5a9d067c19 libyaml: Switch to the new distfile for the same version
Upstream informed that replaced the tarball for "good reasons".

PKGREVISION++

Noted by <zmcgrew>
2019-04-04 23:54:08 +00:00
schmonz
4cb44a4c22 doc: Updated net/ucspi-tcp6 to 1.10.4 2019-04-04 16:17:40 +00:00
schmonz
616c1c2795 Update to 1.10.4. From the changelog:
- Fixed integration bug in tcpserver changing 'uid' too early
  (tx. Steve Meier).
2019-04-04 16:17:35 +00:00
schmonz
7d09dca1a0 Note {lib,p5-,}highlight update. 2019-04-04 14:15:35 +00:00
schmonz
35af9bbb84 Update to 3.50. From the changelog:
- added lineno, column parameters to OnStateChange hook
- added support for Crystal (thanks to C R Jaensch)
- added support for Slim (https://gitlab.com/saalen/highlight/merge_requests/85)
- fixed several typos in documentaion and manpages
- CLI: added `--syntax-by-name` option (suggested by Chris Mayo)
- CLI: removed deprecated `--list-langs` and`--list-themes` options
- GUI: added terminal sequence output options (https://gitlab.com/saalen/highlight/issues/110)
2019-04-04 14:14:28 +00:00
adam
bca2feccd7 Updated www/py-sanic, devel/py-serpent 2019-04-04 12:27:28 +00:00
adam
1df8ed80d8 py-serpent: updated to 1.28
release 1.28:
serpent itself didn't really change
the souce dist archive now contains the unit tests as well
the setup.py script was improved to run these tests via its test command
the travis CI config was updated
2019-04-04 12:27:08 +00:00
adam
9d687ac526 py-sanic: updated to 19.3.1
19.3.1
Changes:
* Add support for zero-length and RFC 5987 encoded filename for multipart/form-data requests.
* The type of expires attribute of sanic.cookies.Cookie is now enforced to be of type datetime.
* Add support for the stream parameter of sanic.Sanic.add_route() available to sanic.Blueprint.add_route().
* Accept negative values for route parameters with type int or number.
* Deprecated the use of sanic.request.Request.raw_args - it has a fundamental flaw in which is drops repeated query string parameters. Added sanic.request.Request.query_args as a replacement for the original use-case.
* Remove an unwanted None check in Request class repr implementation. This changes the default repr of a Request from <Request> to <Request: None />
* Added 2 new parameters to sanic.app.Sanic.create_server:
return_asyncio_server - whether to return an asyncio.Server.
asyncio_server_kwargs - kwargs to pass to loop.create_server for the event loop that sanic is using.
This is a breaking change.
* Added a set of test cases that test and benchmark route resolution.
* The type of the "max-age" value in a sanic.cookies.Cookie is now enforced to be an integer. Non-integer values are replaced with 0.
* Added the endpoint attribute to an incoming request, containing the name of the handler function.
* Improved request streaming. request.stream is now a bounded-size buffer instead of an unbounded queue. Callers must now call await request.stream.read() instead of await request.stream.get() to read each portion of the body.
This is a breaking change.

Fixes:
* Sanic was prefetching time.time() and updating it once per second to avoid excessive time.time() calls. The implementation was observed to cause memory leaks in some cases. The benefit of the prefetch appeared to negligible, so this has been removed. Fixes
* Fix a bug in the auto-reloader when the process was launched as a module i.e. python -m init0.mod1 where the sanic server is started in init0/mod1.py with debug enabled and imports another module in init0.
* Allow sanic test client to bind to a random port by specifying port=None when constructing a SanicTestClient
* Added the ability to specify middleware on a blueprint group, so that all routes produced from the blueprints in the group have the middleware applied.
* Allow the the use the SANIC_ACCESS_LOG environment variable to enable/disable the access log when not explicitly passed to app.run(). This allows the access log to be disabled for example when running via gunicorn.

Developer infrastructure:
* Update project PyPI credentials
* fix linter issue causing travis build failures
* Fix python version in doc build
* Upgrade setuptools version and use native docutils in doc build
* Upgrade pytest, and fix caplog unit tests

Typos and Documentation:
* Fix typo at the exception documentation
* fix typo in Asyncio example
* Documentation typo
* Fix grammar in README.md
* Added "databases" to the extensions list
* Add sanic-zipkin to extensions list
* Removed link to deleted repo, Sanic-OAuth, from the extensions list
* 18.12 changelog
* Add example of amending request object
* Update README
* Update README
* Update README, including new logo
* fix minor type and pip install instruction mismatch
* Documentation Enhancements
2019-04-04 12:25:38 +00:00
maya
c091546dc2 twemoji-color-font-ttf: use fonts.mk 2019-04-04 11:55:22 +00:00
maya
c718c824e0 ume-font-ttf: make fetchable, use fonts.mk
I'm not sure what is up with the numbers in OSDN
2019-04-04 11:15:24 +00:00
he
98a76c9178 Insert a more explicit comment about who prepared the various
NetBSD bootstrap kits.
2019-04-04 11:11:06 +00:00
maya
eccea2b4f7 un-core-ttf: use fonts.mk 2019-04-04 10:40:34 +00:00
maya
b051bd6564 un-extra-ttf: use fonts.mk 2019-04-04 10:35:54 +00:00
maya
ca01481ac4 urbanrenewal-ttf: use fonts.mk 2019-04-04 10:30:03 +00:00
maya
6f50e2f49e uralic-ttf: use fonts.mk 2019-04-04 10:28:53 +00:00