summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2017-11-27Updated www/grafana to 4.6.2tnn2-3/+3
2017-11-27grafana: update to 4.6.2tnn4-2770/+102
Highlights: - The new Postgres Data Source - Create your own Annotations for the Graph panel - Cloudwatch Alerting Support - Prometheus query editor enhancements
2017-11-27doc/TODO: mupdf-1.12.0 is not really out yet.wiz1-2/+1
2017-11-27doc/TODO: add somewiz1-3/+5
+ dvdstyler-3.0.4, gnumeric112-1.12.36, mupdf-1.12.0, wine-devel-2.22.
2017-11-27mongodb: Mark bin/mongodb as not MPROTECT safegdt1-3/+3
As reported by Paul Ripke on pkgsrc-users, and no objection from $MAINTAINER for days.
2017-11-27Updated www/tidy, security/py-keyringadam1-1/+3
2017-11-27py-keyring: updated to 10.5.0adam2-7/+9
10.5.0 * Added ``--list-backends`` option to command-line interface. * Removed ``logger`` from ``keyring``. * Set the appid for SecretService & KWallet to something meaningful.
2017-11-27tidy: updated to 5.6.0adam3-11/+15
5.6.0: Bug fixes.
2017-11-27doc/pkgsrc.*: regenleot2-34/+23
2017-11-27doc/guide: Use &*pkgsrc* XML entities instead of hardcoding themleot2-18/+11
Since the latest pkgsrc stable releases htdocs/share/xml/misc.ent had several XML pkgsrc related entities added and picked up via htdocs-share-*.tar.gz distfile. Use them instead of hardcoding a particular stable branch/release (e.g. 2009Q1 or 2016Q4) or using `pkgsrc-20xxQy' (Yay! Now `The pkgsrc guide' should be ready for the next century!).
2017-11-27Updated devel/py-uvloop, databases/py-ldapadam1-1/+3
2017-11-27py-ldap: updated to 2.5.2adam3-11/+20
Release 2.5.2: * code-cleaning in setup.py Modules/ * PyBytes_ instead of PyString_ and added PyInt_FromLong compat macro * moved code from version.c to ldapmodule.c * removed obsolete back-ward compability constants from common.h * build checks whether LDAP_API_VERSION is OpenLDAP 2.4.x * _ldap.__author__ and _ldap.__license__ also set from ldap.pkginfo * assume C extension API for Python 2.7+ Lib/ * removed all dependencies on modules string and types * removed use of .has_key() * removed class ldap.ldapobject.NonblockingLDAPObject * new global constant ldap.LIBLDAP_API_INFO * right after importing _ldap there is a call into libldap to initialize it * method .decodeControlValue() of SSSResponseControl and VLVResponseControl does not set class attribute result_code anymore * always use bytes() for UUID() constructor in ldap.syncrepl * module ldif now uses functions b64encode() and b64decode() * fixed pickling and restoring of ReconnectLDAPObject * more modules with PEP-8 compliance * ldap.ldapobject split into module-package Tests/ * scripts do not directly call SlapdTestCase.setUpClass() anymore * added LDIF test with folded, base64-encoded attribute * added more tests for sub-module ldap.dn * added tests for ldap.syncrepl
2017-11-27py-uvloop: updated to 0.9.0adam3-10/+9
v0.9.0 TCP & UDP --------- transport.get_extra_info('socket') now returns a socket-like object. It supports socket methods like setsockopts(), but prohibits send(), recv(), close() and any other calls that can interfere with the transport that ultimately owns this file descriptor. TCP_NODELAY is used by default for all TCP connections. Make Transport.resume_reading() and pause_reading() idempotent. This will match asyncio in Python 3.7. loop.create_server() keeps a strong reference to the Server object it returns until its closed. Fix loop.connect_accepted_socket() to return correct SSL transport. The UDP transport layer was rewritten from scratch. Now it uses uv_poll_* libuv APIs, instead of high-level uv_udp_* ones. This could mean a slight performance regression, and will be reverted when we port uvloop to Windows. For now this is the only viable option to make uvloop fully compatible with asyncio. When libuv gets an API to connect UDP sockets, uv_udp_connect(), we'll be able to switch to a better UDP implementation. UDPTransport.sendto(data, addr) will raise an exception if addr requires a name resolution. Low-level sockets ----------------- loop.add_reader() and loop.add_writer() accept file-like objects. loop.sock_connect() supports 4 element address tuples for IPv6 sockets. Protect sockets from closing while they are in use by loop.sock_*() methods. Close all reader/writer sockets the loop owns when it closes. Other event loop APIs --------------------- loop.run_until_complete() cleans up done callbacks in all situations. New uv_loop_fork() libuv API is used in loop.subprocess_shell() and loop.subprocess_exec() making them more stable. loop.call_later() accepts infinite time float('inf'). loop.subprocess_exec() accepts pathlib.Path objects for its cwd parameter. Support pathlib.Path objects in loop.create_unix_connection() and loop.create_unix_server(). Try removing existing stale Unix socket paths in loop.create_unix_server(). ascii encoding is tried before encoding with idna. Fix slow_callback_duration repr in warnings for callback handles and Tasks. Python 3.7 ---------- Some APIs that will be available in Python 3.7 in vanilla asyncio, but can be used with uvloop today. Implement .cancelled() method for callback and timer handles. Add Transport.is_reading(). Implement loop.sock_recv_into(). Python 3.7.0a1 is now supported. Miscellaneous ------------- Drop custom uvloop Future and Task implementations. This means that there will be a tiny performance regression for Python 3.5 deploys. Limit stack traces in debug mode to make it faster. signal.siginterrupt is now used by signals machinery to let system calls to be repeated by default, instead of raising an EINTR. Build ----- libuv in uvloop has been upgraded from v1.11.0 to v1.17.0. Aside from bug fixes and performance improvements, libuv survives fork. LIBUV_CONFIGURE_HOST environment variable can be used to cross-compile uvloop/libuv. Cyhton was upgraded from 0.25.2 to 0.27.3. uvloop binary is linked with pthread
2017-11-27mrxvtmaya1-1/+2
2017-11-27Makefile: +mrxvtmaya1-1/+2
2017-11-27mrxvt: re-add after adding a patch for CVE-2017-7483 from x11/rxvtmaya8-0/+168
bump PKGREVISION relative to removed version
2017-11-27py-requests: comment out py-test-httpbin dependencywiz1-2/+7
This causes a cyclic dependency
2017-11-26doc: Added textproc/rapidjson version 1.1.0minskim1-1/+2
2017-11-26textproc/Makefile: Add rapidjsonminskim1-1/+2
2017-11-26textproc/rapidjson: Import version 1.1.0minskim5-0/+96
RapidJSON is a JSON parser and generator for C++. It was inspired by RapidXml.
2017-11-26doc: Updated net/youtube-dl to 20171126leot1-1/+2
2017-11-26youtube-dl: Update net/youtube-dl to 20171126leot3-17/+14
Changes: version 2017.11.26 Core * [extractor/common] Use final URL when dumping request (#14769) Extractors * [fczenit] Fix extraction - [firstpost] Remove extractor * [freespeech] Fix extraction * [nexx] Extract more formats + [openload] Add support for openload.link (#14763) * [empflix] Relax URL regular expression * [empflix] Fix extractrion * [tnaflix] Don't modify download URLs (#14811) - [gamersyde] Remove extractor * [francetv:generationwhat] Fix extraction + [massengeschmacktv] Add support for Massengeschmack TV * [fox9] Fix extraction * [faz] Fix extraction and add support for Perform Group embeds (#14714) + [performgroup] Add support for performgroup.com + [jwplatform] Add support for iframes (#14828) * [culturebox] Fix extraction (#14827) * [youku] Fix extraction; update ccode (#14815) * [livestream] Make SMIL extraction non fatal (#14792) + [drtuber] Add support for mobile URLs (#14772) + [spankbang] Add support for mobile URLs (#14771) * [instagram] Fix description, timestamp and counters extraction (#14755) version 2017.11.15 Core * [common] Skip Apple FairPlay m3u8 manifests (#14741) * [YoutubeDL] Fix playlist range optimization for --playlist-items (#14740) Extractors * [vshare] Capture and output error message * [vshare] Fix extraction (#14473) * [crunchyroll] Extract old RTMP formats * [tva] Fix extraction (#14736) * [gamespot] Lower preference of HTTP formats (#14652) * [instagram:user] Fix extraction (#14699) * [ccma] Fix typo (#14730) - Remove sensitive data from logging in messages * [instagram:user] Fix extraction (#14699) + [gamespot] Add support for article URLs (#14652) * [gamespot] Skip Brightcove Once HTTP formats (#14652) * [cartoonnetwork] Update tokenizer_src (#14666) + [wsj] Recognize another URL pattern (#14704) * [pandatv] Update API URL and sign format URLs (#14693) * [crunchyroll] Use old login method (#11572)
2017-11-26Updated mail/procmail to 3.22nb5snj1-1/+2
2017-11-26procmail: Fix CVE-2017-16844snj3-7/+20
Patch from https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=876511 Bump PKGREVISION
2017-11-26php71: improve patternwiz1-3/+3
Since we have php72 release candidates in pkgsrc, "<7.2" is not sufficient since this will pull in "7.2rc6". Change pattern to <7.1.99 to stop this.
2017-11-26Updated www/py-django-tastypie; Added www/py-ravenadam1-1/+3
2017-11-26Really depend on www/py-ravenadam1-2/+2
2017-11-26Added ALTERNATIVESadam1-0/+1
2017-11-26py-raven: added version 6.3.0adam6-1/+387
Raven is a Python client for Sentry (https://sentry.io/). It provides full out-of-the-box support for many of the popular frameworks, including Django, Flask, and Pylons. Raven also includes drop-in support for any WSGI-compatible web application.
2017-11-26py-django-tastypie: updated to 0.14.0adam4-26/+14
v0.14.0 Django 1.11 support.
2017-11-26Updated devel/py-test-flake8, devel/py-test-relaxedadam1-1/+3
2017-11-26py-test-relaxed: updated to 1.1.0adam2-7/+7
1.1.0: Add support for collecting/displaying hybrid/legacy test suites -- specifically, by getting out of pytest's way on collection of test_named_files and stripping test prefixes/suffixes when displaying tests in verbose mode. This makes it easier to take an existing test suite and slowly port it to 'relaxed' style.
2017-11-26py-test-flake8: updated to 0.9.1adam2-9/+9
0.9.1 Do continuous integration with Travis Declare compatibility with Python 3.6
2017-11-26Added devel/py-exam, devel/py-test-assume, devel/py-test-sugar, ↵adam2-2/+10
devel/py-test-pythonpath
2017-11-26This is a py.test plugin for adding to the PYTHONPATH from the pytests.ini fileadam4-0/+36
before tests run.
2017-11-26pytest-sugar is a plugin for py.test that shows failures and errors instantlyadam8-0/+78
and shows a progress bar.
2017-11-26Exam is a Python toolkit for writing better tests. It aims to remove a lot ofadam4-0/+59
the boiler plate testing code one often writes, while still following Python conventions and adhering to the unit testing interface.
2017-11-26Removed unused linesadam1-7/+1
2017-11-26Updated www/nghttp2, www/nginx-develadam1-1/+3
2017-11-26nginx-devel: updated to 1.13.7adam2-7/+7
Changes with nginx 1.13.7: *) Bugfix: in the $upstream_status variable. *) Bugfix: a segmentation fault might occur in a worker process if a backend returned a "101 Switching Protocols" response to a subrequest. *) Bugfix: a segmentation fault occurred in a master process if a shared memory zone size was changed during a reconfiguration and the reconfiguration failed. *) Bugfix: in the ngx_http_fastcgi_module. *) Bugfix: nginx returned the 500 error if parameters without variables were specified in the "xslt_stylesheet" directive. *) Workaround: "gzip filter failed to use preallocated memory" alerts appeared in logs when using a zlib library variant from Intel. *) Bugfix: the "worker_shutdown_timeout" directive did not work when using mail proxy and when proxying WebSocket connections.
2017-11-26nghttp2: updated to 1.28.0adam3-7/+23
nghttp2 v1.28.0 lib: Add nghttp2_error_callback2 build: Add deprecation warning when spdylay support is enabled Switch to clang-format-5.0 examples: Make client and server work with libevent-2.1.8 third-party: Update neverbleed integration: Fix issues reported by the go vet tool. nghttpx: Fix affinity retry nghttpx: Fix stalled backend connection on retry nghttpx: Cookie based session affinity nghttpx: Expose additional TLS related variables to mruby and accesslog
2017-11-26doc: Updated geography/gama to 1.20gdt1-1/+2
2017-11-26gama: Update to 1.20gdt2-7/+9
packaging change: Depend on GNU make (not documented upstream). Upstream changes: * New test suite for matvec classes and support for valgrind memory leak tests for tests/matvec and tests/gama-local. This release is a preperation phase for the next release in which the base matvec memory handling class (MemRep) will reimplemented with C++11 move constructor and move assignemnt operator.
2017-11-26mpv: Pass `--bindir' to waf configure phase to fix installation with waf-2.0.2leot1-1/+3
With waf-2.0.2 update the mpv binary was tried to install apparently in: ${DESTDIR}${WRKSRC}/${PREFIX}/bin while with previous waf versions it was correctly installed in ${DESTDIR}${PREFIX}/bin Pass `--bindir' via WAF_CONFIGURE_ARGS to fix that problem.
2017-11-26xfsprogs: comment out dead siteswiz1-3/+3
2017-11-26uucp: follow redirectswiz1-2/+2
2017-11-26udunits: follow redirectswiz1-2/+2
2017-11-26sqsh*: switch to sourceforge homepage, homepage is deadwiz1-2/+2
2017-11-26p5-HTTP-DAV: switch to metacpanwiz1-4/+2
Homepage is dead
2017-11-26p5-CDDB_get: switch to metacpanwiz1-2/+2
Homepage is dead