summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2017-02-02Update net/py-zmq to 16.0.2.fhajny3-12/+34
16.0.2 - Workaround bug in libzmq-4.2.0 causing EINVAL on poll. 16.0.1 - Fix erroneous EAGAIN that could happen on async sockets - Bundle libzmq 4.1.6 16.0 - Support for Python 2.6 and Python 3.2 is dropped. For old Pythons, use :command:`pip install "pyzmq<16"` to get the last version of pyzmq that supports these versions. - Include zmq.h - Deprecate zmq.Stopwatch. Native Python timing tools can be used instead. - Better support for using pyzmq as a Cython library - bundle zmq.h when pyzmq bundles libzmq as an extension - add :func:`zmq.get_library_dirs` to find bundled libzmq - Updates to setup.py for Cython 0.25 compatibility - Various asyncio/future fixes: - support raw sockets in pollers - allow cancelling async sends - Fix :meth:`IOLoop.current` in :mod:`zmq.green` 15.4 - Load bundled libzmq extension with import rather than CDLL, which should fix some manifest issues in certain cases on Windows. - Avoid installing asyncio sources on Python 2, which confuses some tools that run python -m compileall, which reports errors on the Python 3-only files. - Bundle msvcp.dll in Windows wheels on CPython 3.5, which should fix wheel compatibility systems without Visual C++ 2015 redistributable. - :meth:`zmq.Context.instance` is now threadsafe. - FIX: sync some behavior in zmq_poll and setting LINGER on close/destroy with the CFFI backend. - PERF: resolve send/recv immediately if events are available in async Sockets - Async Sockets (asyncio, tornado) now support send_json, send_pyobj, etc. - add preliminary support for zmq.DRAFT_API reflecting ZMQ_BUILD_DRAFT_API, which indicates whether new APIs in prereleases are available. 15.3 - Bump bundled libzmq to 4.1.5, using tweetnacl for bundled curve support instead of libsodium - FIX: include .pxi includes in installation for consumers of Cython API - FIX: various fixes in new async sockets - Introduce :mod:`zmq.decorators` API for decorating functions to create sockets or contexts - Add :meth:`zmq.Socket.subscribe` and :meth:`zmq.Socket.unsubscribe` methods to sockets, so that assignment is no longer needed for subscribing. Verbs should be methods! Assignment is still supported for backward-compatibility. - Accept text (unicode) input to z85 encoding, not just bytes - :meth:`zmq.Context.socket` forwards keyword arguments to the :class:`Socket` constructor 15.2 - FIX: handle multiple events in a single register call in :mod:`zmq.asyncio` - FIX: unicode/bytes bug in password prompt in :mod:`zmq.ssh` on Python 3 - FIX: workaround gevent monkeypatches in garbage collection thread - update bundled minitornado from tornado-4.3. - improved inspection by setting binding=True in cython compile options - add asyncio Authenticator implementation in :mod:`zmq.auth.asyncio` - workaround overflow bug in libzmq preventing receiving messages larger than MAX_INT 15.1 - FIX: Remove inadvertant tornado dependency when using :mod:`zmq.asyncio` - FIX: 15.0 Python 3.5 wheels didn't work on Windows - Add GSSAPI support to Authenticators - Support new constants defined in upcoming libzmq-4.2.dev 15.0 - PyZMQ 15 adds Future-returning sockets and pollers for both :mod:`asyncio` and :mod:`tornado`. - add :mod:`asyncio` support via :mod:`zmq.asyncio` - add :mod:`tornado` future support via :mod:`zmq.eventloop.future` - trigger bundled libzmq if system libzmq is found to be < 3. System libzmq 2 can be forced by explicitly requesting --zmq=/prefix/. 14.7.0 Changes: - Update bundled libzmq to 4.1.2. - Following the lead of Python 3.5, interrupted system calls will be retried. Fixes: - Fixes for CFFI backend on Python 3 + support for PyPy 3. - Verify types of all frames in :meth:`~zmq.Socket.send_multipart` before sending, to avoid partial messages. - Fix build on Windows when both debug and release versions of libzmq are found. - Windows build fixes for Python 3.5. 14.6.0 Changes: - improvements in :meth:`zmq.Socket.bind_to_random_port`: - use system to allocate ports by default - catch EACCES on Windows - include libsodium when building bundled libzmq on Windows (includes wheels on PyPI) - pyzmq no longer bundles external libzmq when making a bdist. You can use delocate to do this. Bugfixes: - add missing :attr:`ndim` on memoryviews of Frames - allow :func:`copy.copy` and :func:`copy.deepcopy` on Sockets, Contexts 14.5.0 Changes: - use pickle.DEFAULT_PROTOCOL by default in send_pickle - with the release of pip-6, OS X wheels are only marked as 10.6-intel, indicating that they should be installable on any newer or single-arch Python. - raise SSHException on failed check of host key Bugfixes: - fix method name in utils.wi32.allow_interrupt - fork-related fixes in garbage collection thread - add missing import in zmq.__init__, causing failure to import in some circumstances
2017-02-02Update net/zeromq to 4.2.1.fhajny7-84/+44
0MQ version 4.2.1 stable, released on 2016/12/31 ============================================= * New DRAFT (see NEWS for 4.2.0) Socket Monitor events: - ZMQ_EVENT_HANDSHAKE_SUCCEED - ZMQ_EVENT_HANDSHAKE_FAILED These events trigger when the ZMTP security mechanism handshake is completed. See doc/zmq_socket_monitor.txt for more information. * New DRAFT (see NEWS for 4.2.0) Context options: - ZMQ_MSG_T_SIZE See doc/zmq_ctx_get.txt for more information. * Fixed #2268 - improved compatibility with mingw32 * Fixed #2254 - ZMQ_PUB compatibility with libzmq 2.x broken * Fixed #2245 - added support for VS2017, Windows SDK 10.0.14393.0, toolset v141 * Fixed #2242 - file descriptors leaks on fork+exec * Fixed #2239 - retired poller item crash from reaper thread * Fixed #2234 - improved compatibility with AIX 7.1 * Fixed #2225 - cannot pick select for poller * Fixed #2217 - CMake build uses library version as the ABI version * Fixed #2208 - added support for ZMQ_TOS on IPv6 * Fixed #2200 - no documentation for ZMQ_SOCKS_PROXY * Fixed #2199 - no documentation for zmq_curve_public * Fixed #2196 - fixed build and runtime errors on kFreeBSD 0MQ version 4.2.0 stable, released on 2016/11/04 ============================================= * For Pieter. Thanks for making all of this possible. "Tell them I was a writer. A maker of software. A humanist. A father. And many things. But above all, a writer. Thank You. :)" - Pieter Hintjens * This release introduces new APIs, but it is ABI compatible with libzmq 4.1.2 and up. * Note for ARM and SPARC users: an alignment problem in zmq_msg_t that could in some cases and on some CPUs cause a SIGBUS error was solved, but it requires a rebuild of your application against the 4.2.0 version of include/zmq.h. To clarify, this change does not affect the internals of the library but only the public definition of zmq_msg_t, so there is no ABI incompatibility. * Security with Curve is now available by default thanks to Tweetnacl sources: https://tweetnacl.cr.yp.to/index.html Libsodium is still fully supported but has to be enabled with the build flag --with-libsodium. Distribution and package maintainers are encouraged to use libsodium so that the security implementation can be audited and maintained separately. * New Context options: - ZMQ_MAX_MSGSZ - ZMQ_BLOCKY See doc/zmq_ctx_set.txt and doc/zmq_ctx_get.txt for details. * New Socket options: - ZMQ_HANDSHAKE_IVL - ZMQ_SOCKS_PROXY - ZMQ_XPUB_NODROP - ZMQ_XPUB_MANUAL - ZMQ_XPUB_WELCOME_MSG - ZMQ_STREAM_NOTIFY - ZMQ_INVERT_MATCHING - ZMQ_HEARTBEAT_IVL - ZMQ_HEARTBEAT_TTL - ZMQ_HEARTBEAT_TIMEOUT - ZMQ_XPUB_VERBOSER - ZMQ_CONNECT_TIMEOUT - ZMQ_TCP_MAXRT - ZMQ_THREAD_SAFE - ZMQ_MULTICAST_MAXTPDU - ZMQ_VMCI_BUFFER_SIZE - ZMQ_VMCI_BUFFER_MIN_SIZE - ZMQ_VMCI_BUFFER_MAX_SIZE - ZMQ_VMCI_CONNECT_TIMEOUT - ZMQ_USE_FD See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details. * New CURVE helper function to derive z85 public key from secret key: zmq_curve_public * New cross-platform atomic counter helper functions: zmq_atomic_counter_new, zmq_atomic_counter_set, zmq_atomic_counter_inc, zmq_atomic_counter_dec, zmq_atomic_counter_value, zmq_atomic_counter_destroy See doc/zmq_atomic_*.txt for details. * New DRAFT APIs early-release mechanism. New APIs will be introduced early in public releases, and until they are stabilized and guaranteed not to change anymore they will be unavailable unless the new build flag --enable-drafts is used. This will allow developers and early adopters to test new APIs before they are finalized. NOTE: as the name implies, NO GUARANTEE is made on the stability of these APIs. They might change or disappear entirely. Distributions are recommended NOT to build with them. New socket types have been introduced in DRAFT state: ZMQ_SERVER, ZMQ_CLIENT, ZMQ_RADIO, ZMQ_DISH, ZMQ_GATHER, ZMQ_SCATTER, ZMQ_DGRAM All these sockets are THREAD SAFE, unlike the existing socket types. They do NOT support multipart messages (ZMQ_SNDMORE/ZMQ_RCVMORE). ZMQ_RADIO, ZMQ_DISH and ZMQ_DGRAM also support UDP as transport, both unicast and multicast. See doc/zmq_udp.txt for more details. New methods to support the new socket types functionality: zmq_join, zmq_leave, zmq_msg_set_routing_id, zmq_msg_routing_id, zmq_msg_set_group, zmq_msg_group See doc/zmq_socket.txt for more details. New poller mechanism and APIs have been introduced in DRAFT state: zmq_poller_new, zmq_poller_destroy, zmq_poller_add, zmq_poller_modify, zmq_poller_remove, zmq_poller_wait, zmq_poller_wait_all, zmq_poller_add_fd zmq_poller_modify_fd, zmq_poller_remove_fd and a new supporting struct typedef: zmq_poller_event_t They support existing socket type, new thread-safe socket types and file descriptors (cross-platform). Documentation will be made available in the future before these APIs are declared stable. New cross-platform timers helper functions have been introduced in DRAFT state: zmq_timers_new, zmq_timers_destroy, zmq_timers_add, zmq_timers_cancel, zmq_timers_set_interval, zmq_timers_reset, zmq_timers_timeout, zmq_timers_execute and a new supporting callback typedef: zmq_timer_fn * Many, many bug fixes. The most important fixes are backported and captured in the 4.1.x and 4.0.x changelogs. 0MQ version 4.2.0 rc1, released on 2016/11/01 ============================================= * Many changes, see ChangeLog. 0MQ version 4.1.6 stable, released on 2016/11/01 ================================================ * Fixed #2051 - getifaddrs can fail with ECONNREFUSED * Fixed #2091 - testutil.hpp fails to build on Windows XP * Fixed #2096 - add tests/CMakeLists.in and version.rc.in to dist tar * Fixed #2107 - zmq_connect with IPv6 "source:port;dest:port" broken * Fixed #2117 - ctx_term assert with inproc zmq_router connect-before-bind * Fixed #2158 - Socket monitor uses internal Pair from multiple threads * Fixed #2161 - messages dropped due to HWM race * Fixed #1325 - alignment issue with zmq_msg_t causes SIGBUS on SPARC and ARM 0MQ version 4.1.5 stable, released on 2016/06/17 ================================================ * Fixed #1673 - CMake on Windows put PDB in wrong directory. * Fixed #1723 - Family is not set when resolving NIC on Android. * Fixed #1608 - Windows 7 TCP slow start issue. * Fixed #1806 - uninitialised read in curve getsockopt. * Fixed #1807 - build broken with GCC 6. * Fixed #1831 - potential assertion failure with latest libsodium. * Fixed #1850 - detection issues with tweetnacl/libsodium. * Fixed #1877 - Avoid terminating connections prematurely * Fixed #1887 - zmq_bind IPv4 fallback still tries IPv6 * Fixed #1866 - fails to build on SunOS 5.10 / Solaris 10 * Fixed #919 - ZMQ_LINGER (related to #1877) * Fixed #114 - cannot unbind with same endpoint with IPv6 enabled. * Fixed #1952 - CMake scripts not part of release tarballs * Fixed #1542 - Fix a crash on Windows when port 5905 is in use. * Fixed #2021 - Fix building on sparc32.
2017-02-02Update net/youtube-dl to youtube-dl-20170201leot3-8/+26
Changes: version 2017.02.01 Extractors + [facebook] Add another fallback extraction scenario (#11926) * [prosiebensat1] Fix extraction of descriptions (#11810, #11929) - [crunchyroll] Remove ScaledBorderAndShadow settings (#9028) + [vimeo] Extract upload timestamp + [vimeo] Extract license (#8726, #11880) + [nrk:series] Add support for series (#11571, #11711) version 2017.01.31 Core + [compat] Add compat_etree_register_namespace Extractors * [youtube] Fix extraction for domainless player URLs (#11890, #11891, #11892, #11894, #11895, #11897, #11900, #11903, #11904, #11906, #11907, #11909, #11913, #11914, #11915, #11916, #11917, #11918, #11919) + [vimeo] Extract both mixed and separated DASH formats + [ruutu] Extract DASH formats * [itv] Fix extraction for python 2.6 version 2017.01.29 Core * [extractor/common] Fix initialization template (#11605, #11825) + [extractor/common] Document fragment_base_url and fragment's path fields * [extractor/common] Fix duration per DASH segment (#11868) + Introduce --autonumber-start option for initial value of %(autonumber)s template (#727, #2702, #9362, #10457, #10529, #11862) Extractors + [azmedien:playlist] Add support for topic and themen playlists (#11817) * [npo] Fix subtitles extraction + [itv] Extract subtitles + [itv] Add support for itv.com (#9240) + [mtv81] Add support for mtv81.com (#7619) + [vlive] Add support for channels (#11826) + [kaltura] Add fallback for fileExt + [kaltura] Improve uploader_id extraction + [konserthusetplay] Add support for rspoplay.se (#11828) version 2017.01.28 Core * [utils] Improve parse_duration Extractors * [crunchyroll] Improve series and season metadata extraction (#11832) * [soundcloud] Improve formats extraction and extract audio bitrate + [soundcloud] Extract HLS formats * [soundcloud] Fix track URL extraction (#11852) + [twitch:vod] Expand URL regular expressions (#11846) * [aenetworks] Fix season episodes extraction (#11669) + [tva] Add support for videos.tva.ca (#11842) * [jamendo] Improve and extract more metadata (#11836) + [disney] Add support for Disney sites (#7409, #11801, #4975, #11000) * [vevo] Remove request to old API and catch API v2 errors + [cmt,mtv,southpark] Add support for episode URLs (#11837) + [youtube] Add fallback for duration extraction (#11841) version 2017.01.25 Extractors + [openload] Fallback video extension to mp4 + [extractor/generic] Add support for Openload embeds (#11536, #11812) * [srgssr] Fix rts video extraction (#11831) + [afreecatv:global] Add support for afreeca.tv (#11807) + [crackle] Extract vtt subtitles + [crackle] Extract multiple resolutions for thumbnails + [crackle] Add support for mobile URLs + [konserthusetplay] Extract subtitles (#11823) + [konserthusetplay] Add support for HLS videos (#11823) * [vimeo:review] Fix config URL extraction (#11821) version 2017.01.24 Extractors * [pluralsight] Fix extraction (#11820) + [nextmedia] Add support for NextTV (壹電視) * [24video] Fix extraction (#11811) * [youtube:playlist] Fix nonexistent and private playlist detection (#11604) + [chirbit] Extract uploader (#11809) version 2017.01.22 Extractors + [pornflip] Add support for pornflip.com (#11556, #11795) * [chaturbate] Fix extraction (#11797, #11802) + [azmedien] Add support for AZ Medien sites (#11784, #11785) + [nextmedia] Support redirected URLs + [vimeo:channel] Extract videos' titles for playlist entries (#11796) + [youtube] Extract episode metadata (#9695, #11774) + [cspan] Support Ustream embedded videos (#11547) + [1tv] Add support for HLS videos (#11786) * [uol] Fix extraction (#11770) * [mtv] Relax triforce feed regular expression (#11766) version 2017.01.18 Extractors * [bilibili] Fix extraction (#11077) + [canalplus] Add fallback for video id (#11764) * [20min] Fix extraction (#11683, #11751) * [imdb] Extend URL regular expression (#11744) + [naver] Add support for tv.naver.com links (#11743) version 2017.01.16 Core * [options] Apply custom config to final composite configuration (#11741) * [YoutubeDL] Improve protocol auto determining (#11720) Extractors * [xiami] Relax URL regular expressions * [xiami] Improve track metadata extraction (#11699) + [limelight] Check hand-make direct HTTP links + [limelight] Add support for direct HTTP links at video.llnw.net (#11737) + [brightcove] Recognize another player ID pattern (#11688) + [niconico] Support login via cookies (#7968) * [yourupload] Fix extraction (#11601) + [beam:live] Add support for beam.pro live streams (#10702, #11596) * [vevo] Improve geo restriction detection + [dramafever] Add support for URLs with language code (#11714) * [cbc] Improve playlist support (#11704)
2017-02-01Added BUILD_DEPENDS+= lines for make testmef2-2/+7
2017-02-01Eeh... Recompute checksum.he1-2/+2
2017-02-01Insert a rather ugly workaround in the code handling SNMP trap messages.he2-6/+99
It appears that sometimes the reception of SNMP trap messages can somehow get out of sync, and all too often this results in a scotty process which apparently endlessly does a read() of 1 byte and gets EAGAIN, just to try again. Instead, do some rudimentary check on the length of trap messages, and try to re-sync the stream by finishing re-sync on first EAGAIN. Bump PKGREVISION.
2017-01-31Update to 1.4.2ryoon3-34/+8
* Remove an included patches for --disable-video Changelog: - Fix a crash when going back from a tweet with media to another tweet with media - Fix compilation with --disable-video - Decrease log level of UserStream output to debug when no internet connection is present
2017-01-29Update mikutter to 3.5.2.tsutsui2-8/+8
Upstream changes: # mikutter 3.5.2 * Retriever.URI was not implemented as documented * fix custom Model related bugs * field value dereference via [] where Model method should be called * accessor method was not defined when Model field type was array * multiselect widget wrote unnecessary values each time config window was open * fix reference of deprecated method in mikutter core * name attribute of about method in setting DSL was not used * adjust field values for Twitter related Models
2017-01-25Fix previous -- only set native-necessary flags in native case.wiz1-1/+7
Paths for modular are different enough this broke. Bump PKGREVISION.
2017-01-25Updated syncthing to 0.14.21.wiz2-7/+7
This is a hotfix release recommended for all users. Resolved issues: #3931: The -logfile option now works again. Also: The GUI "network error" dialog no longer shows up as easily in some scenarios when using Syncthing behind a reverse proxy.
2017-01-25Add configure args to give the location of xkb. Without this, the vncdmcmahill1-1/+4
server would fail to start when using the native X on NetBSD-7.0.2. This should allow it to work on native and pkgsrc X
2017-01-24New package, go-ovh.bsiegert6-1/+61
go-ovh is a lightweight Go wrapper around OVH's APIs. It handles all the hard work including credential creation and request signing.
2017-01-24Added net/p5-XMLRPC-Lite version 0.717mef1-1/+2
2017-01-24Import p5-XMLRPC-Lite-0.717 as net/p5-XMLRPC-Lite.mef3-0/+30
XMLRPC::Lite is a Perl modules which provides a simple nterface to the XML-RPC protocol both on client and server side. Based on SOAP::Lite module, it gives you access to all features and transports available in that module. See t/26-xmlrpc.t for client examples and examples/XMLRPC/* for server implementations.
2017-01-24Added net/p5-XML-RPC version 0.9mef1-1/+2
2017-01-24Import p5-XML-RPC-0.9 as net/p5-XML-RPC.mef4-0/+42
XML::RPC module provides simple Pure Perl methods for XML-RPC communication. It's goals are simplicity and flexibility. XML::RPC uses XML::TreePP for parsing. Thanks bsiegert@ for suggestion to category.
2017-01-24Update net/py-lexicon to 1.2.2.fhajny3-8/+11
- Add Yandex PDD as a DNS provider
2017-01-24Updated syncthing to 0.14.20.wiz2-7/+7
This is a regularly scheduled bugfix and improvement release recommended for all users. Resolved issues: #3197: There is now a warning when adding a folder that is a parent of an existing folder. #3912: Using -logfile flag together with -no-restart now causes an error instead of silently failing. #3891: Weak hashing is now disabled completely when the threshold percentage is > 100. #3921: Rate limiting now actually works on ARM64 builds again. #3924: An issue where UPnP port allocations would be incorrect under some circumstances has been fixed. Also: Weak hashing is a bit faster and allocates less memory. The hashing performance reported at startup now includes weak hashing.
2017-01-24Updated tor to 0.2.9.9.wiz2-7/+7
Changes in version 0.2.9.9 - 2017-01-23 Tor 0.2.9.9 fixes a denial-of-service bug where an attacker could cause relays and clients to crash, even if they were not built with the --enable-expensive-hardening option. This bug affects all 0.2.9.x versions, and also affects 0.3.0.1-alpha: all relays running an affected version should upgrade. This release also resolves a client-side onion service reachability bug, and resolves a pair of small portability issues. o Major bugfixes (security): - Downgrade the "-ftrapv" option from "always on" to "only on when --enable-expensive-hardening is provided." This hardening option, like others, can turn survivable bugs into crashes -- and having it on by default made a (relatively harmless) integer overflow bug into a denial-of-service bug. Fixes bug 21278 (TROVE-2017-001); bugfix on 0.2.9.1-alpha. o Major bugfixes (client, onion service): - Fix a client-side onion service reachability bug, where multiple socks requests to an onion service (or a single slow request) could cause us to mistakenly mark some of the service's introduction points as failed, and we cache that failure so eventually we run out and can't reach the service. Also resolves a mysterious "Remote server sent bogus reason code 65021" log warning. The bug was introduced in ticket 17218, where we tried to remember the circuit end reason as a uint16_t, which mangled negative values. Partially fixes bug 21056 and fixes bug 20307; bugfix on 0.2.8.1-alpha. o Minor features (geoip): - Update geoip and geoip6 to the January 4 2017 Maxmind GeoLite2 Country database. o Minor bugfixes (portability): - Avoid crashing when Tor is built using headers that contain CLOCK_MONOTONIC_COARSE, but then tries to run on an older kernel without CLOCK_MONOTONIC_COARSE. Fixes bug 21035; bugfix on 0.2.9.1-alpha. - Fix Libevent detection on platforms without Libevent 1 headers installed. Fixes bug 21051; bugfix on 0.2.9.1-alpha.
2017-01-24Updated tigervnc to 1.7.1.wiz2-8/+7
This is a security update for TigerVNC 1.7.0 which fixes a memory overflow issue via the RRE decoder. A malicious server could possibly use this issue to take control of the TigerVNC viewer. Users are advised to upgrade as soon as possible.
2017-01-22add dependency on adwaita icons. they're needed to display lots of iconsmaya1-1/+3
in corebird. bump PKGREVISION.
2017-01-22Updated p5-WebService-MusicBrainz to 0.94.wiz2-8/+7
0.94 Tuesday Auguest 2016 - Fixed tests
2017-01-21Update net/erlang-xmpp to 1.1.5.fhajny2-8/+8
- Fix translation order - Add legacy auth stream feature support - Better support subtags with empty namespaces - Add dialback feature support - Fix error generation for raw xml elements - Treat unknown message type as "normal" - Allow including #text{} elements into #sm_failed{} - Add xmpp:del_meta/2 function - Fix typo in add_delay_info/4 - Make it possible to get text by lang - Don't crash if previous delay tag misses 'from' attribute
2017-01-21Recursive revbump from audio/pulseaudio-10.0ryoon8-16/+16
2017-01-19Convert all occurrences (353 by my count) ofagc23-85/+85
MASTER_SITES= site1 \ site2 style continuation lines to be simple repeated MASTER_SITES+= site1 MASTER_SITES+= site2 lines. As previewed on tech-pkg. With thanks to rillig for fixing pkglint accordingly.
2017-01-19Update to kppp 16.12.0markd2-9/+8
minor changes
2017-01-19Update to kopete 16.12.0markd3-25/+9
bug fixes
2017-01-19Update to kdenetwork-strigi-analyzers 16.04.0markd2-9/+8
minor changes - last kde4 version
2017-01-18Update to 1.0.18. Changes not found.wiz2-7/+7
2017-01-18Updated py-foolscap to 0.12.6.wiz2-7/+7
* Release 0.12.6 (12-Jan-2017) This is a minor release to improve compatibility with Twisted and I2P. In this release, the Foolscap test suite no longer uses several deprecated and/or internal Twisted attributes, so it should pass cleanly on the next release of Twisted (which will probably be named Twisted-17.0.0). In addition, the I2P connection handler was enhanced to let applications pass arbitrary kwargs through to the underlying "SAM" API. Finally connection-status error messages should be slightly cleaner and provide more useful information in the face of unrecogized exceptions.
2017-01-18Fix typo in version number.wiz1-2/+2
2017-01-17Update net/py-lexicon to 1.2.1.fhajny3-17/+9
No changelog published. From the commitlog: lexicon 1.2.1 - Fix ttl handling. lexicon 1.2.0 - Python 3 compatibility, removed support for Python 2.6. - Fix route53 compat errors. - Remove gandi and transip support. Transip library is no longer maintained and is incompatible with python3.
2017-01-16Recursive bump for libvpx shlib major change.wiz3-6/+6
2017-01-16Updated filezilla to 3.24.0.wiz3-7/+23
3.24.0 (2017-01-13) - Fixed a possible crash if sending FTP commands fails during a directory listing operation - *nix: Fixed a scrolling issue in the message log if wxWidgets is built against GTK3 3.24.0-rc1 (2017-01-06) + The context menu for remote file search results now has a "Copy URL(s) to clipboard" item + Alt+number can now be used to switch between tabs in addition to Ctrl+number + SFTP hostkey fingerprints are now also shown as base64 encoded SHA256 hashes to match the new format displayed by OpenSSH - Errors at the end of SFTP transfers now correctly result in transfer failures instead - Cancelling synchronized browsing questions no longer prevents further directory changes - Fix display issues for the filter conditions dialog - Fix deleting multiple extensions on the filetype page in the settings - OS X: Do not open dialogs while already processing an event, e.g. while a context menu is open
2017-01-14Update net/youtube-dl to youtube-dl-20170114leot3-20/+32
Changes: version 2017.01.14 Core + [common] Add ability to customize akamai manifest host + [utils] Add more date formats Extractors - [mtv] Eliminate _transform_rtmp_url * [mtv] Generalize triforce mgid extraction + [cmt] Add support for full episodes and video clips (#11623) + [mitele] Extract DASH formats + [ooyala] Add support for videos with embedToken (#11684) * [mixcloud] Fix extraction (#11674) * [openload] Fix extraction (#10408) * [tv4] Improve extraction (#11698) * [freesound] Fix and improve extraction (#11602) + [nick] Add support for beta.nick.com (#11655) * [mtv,cc] Use HLS by default with native HLS downloader (#11641) * [mtv] Fix non-HLS extraction version 2017.01.10 Extractors * [youtube] Fix extraction (#11663, #11664) + [inc] Add support for inc.com (#11277, #11647) + [youtube] Add itag 212 (#11575) + [egghead:course] Add support for egghead.io courses version 2017.01.08 Core * Fix "invalid escape sequence" errors under Python 3.6 (#11581) Extractors + [hitrecord] Add support for hitrecord.org (#10867, #11626) - [videott] Remove extractor * [swrmediathek] Improve extraction - [sharesix] Remove extractor - [aol:features] Remove extractor * [sendtonews] Improve info extraction * [3sat,phoenix] Fix extraction (#11619) * [comedycentral/mtv] Add support for HLS videos (#11600) * [discoverygo] Fix JSON data parsing (#11219, #11522) version 2017.01.05 Extractors + [zdf] Fix extraction (#11055, #11063) * [pornhub:playlist] Improve extraction (#11594) + [cctv] Add support for ncpa-classic.com (#11591) + [tunein] Add support for embeds (#11579) version 2017.01.02 Extractors * [cctv] Improve extraction (#879, #6753, #8541) + [nrktv:episodes] Add support for episodes (#11571) + [arkena] Add support for video.arkena.com (#11568) version 2016.12.31 Core + Introduce --config-location option for custom configuration files (#6745, #10648) Extractors + [twitch] Add support for player.twitch.tv (#11535, #11537) + [videa] Add support for videa.hu (#8181, #11133) * [vk] Fix postlive videos extraction * [vk] Extract from playerParams (#11555) - [freevideo] Remove extractor (#11515) + [showroomlive] Add support for showroom-live.com (#11458) * [xhamster] Fix duration extraction (#11549) * [rtve:live] Fix extraction (#11529) * [brightcove:legacy] Improve embeds detection (#11523) + [twitch] Add support for rechat messages (#11524) * [acast] Fix audio and timestamp extraction (#11521) version 2016.12.22 Core * [extractor/common] Improve detection of video-only formats in m3u8 manifests (#11507) Extractors + [theplatform] Pass geo verification headers to SMIL request (#10146) + [viu] Pass geo verification headers to auth request * [rtl2] Extract more formats and metadata * [vbox7] Skip malformed JSON-LD (#11501) * [uplynk] Force downloading using native HLS downloader (#11496) + [laola1] Add support for another extraction scenario (#11460) version 2016.12.20 Core * [extractor/common] Improve fragment URL construction for DASH media * [extractor/common] Fix codec information extraction for mixed audio/video DASH media (#11490) Extractors * [vbox7] Fix extraction (#11494) + [uktvplay] Add support for uktvplay.uktv.co.uk (#11027) + [piksel] Add support for player.piksel.com (#11246) + [vimeo] Add support for DASH formats * [vimeo] Fix extraction for HLS formats (#11490) * [kaltura] Fix wrong widget ID in some cases (#11480) + [nrktv:direkte] Add support for live streams (#11488) * [pbs] Fix extraction for geo restricted videos (#7095) * [brightcove:new] Skip widevine classic videos + [viu] Add support for viu.com (#10607, #11329)
2017-01-14Use GITHUB framework to fetch the distfile. No distfile changeryoon1-2/+4
2017-01-14Update to 1.4.1ryoon7-22/+49
Changelog: Version 1.4.1 (2017-01-08) - Lower the required gspell version to 1.0 - Work around a binding problem in the gtk+ 3.18 vapi of vala 0.30 Version 1.4 (2017-01-06) - Images in quoted tweets now look more like they actually belong to the quoted tweet instead of the quoting tweet. - Allow deleting tweets from the tweet info page and not just from timelines. - Fix the user completion not showing all possible results - Focus the already opened window for an account if the account gets selected in the accounts popover - Avoid window resizing when typing in the Direct Message text box - Add 'q' accelerator to tweet rows for quoting - Add spellchecking. This add a dependency to gspell - Increase gtk+ dependency to 3.18 to get rid of some workarounds. - Increase avatar size in profiles and slightly overlap them over the banner. Also, always show the full banner. - Fix completion popup positioning under Wayland - Add experimental meson build files - Fix some videos not playing correctly - Add a minimal video progress indicator to the video dialog - Fix the retweet/favorite count updating in the tweet info page
2017-01-13Add a dependency to graphics/adwaita-icon-theme (for the gtk3 option)leot2-2/+4
Bump PKGREVISION Pointed out by Joern Clausen via PR pkg/51835.
2017-01-12Update bind99 to 9.9.9pl5 (BIND 9.9.9-P5), including security fixes.taca2-7/+7
--- 9.9.9-P5 released --- 4530. [bug] Change 4489 broke the handling of CNAME -> DNAME in responses resulting in SERVFAIL being returned. [RT #43779] 4528. [bug] Only set the flag bits for the i/o we are waiting for on EPOLLERR or EPOLLHUP. [RT #43617] 4519. [port] win32: handle ERROR_MORE_DATA. [RT #43534] 4517. [security] Named could mishandle authority sections that were missing RRSIGs triggering an assertion failure. (CVE-2016-9444) [RT # 43632] 4510. [security] Named mishandled some responses where covering RRSIG records are returned without the requested data resulting in a assertion failure. (CVE-2016-9147) [RT #43548] 4508. [security] Named incorrectly tried to cache TKEY records which could trigger a assertion failure when there was a class mismatch. (CVE-2016-9131) [RT #43522]
2017-01-12Update bind910 to 9.10.4pl5 (BIND 9.10.4-P5), including security fixes.taca2-8/+7
--- 9.10.4-P5 released --- 4530. [bug] Change 4489 broke the handling of CNAME -> DNAME in responses resulting in SERVFAIL being returned. [RT #43779] 4528. [bug] Only set the flag bits for the i/o we are waiting for on EPOLLERR or EPOLLHUP. [RT #43617] 4519. [port] win32: handle ERROR_MORE_DATA. [RT #43534] 4517. [security] Named could mishandle authority sections that were missing RRSIGs triggering an assertion failure. (CVE-2016-9444) [RT # 43632] 4510. [security] Named mishandled some responses where covering RRSIG records are returned without the requested data resulting in a assertion failure. (CVE-2016-9147) [RT #43548] 4508. [security] Named incorrectly tried to cache TKEY records which could trigger a assertion failure when there was a class mismatch. (CVE-2016-9131) [RT #43522]
2017-01-112.0.1:rodent2-8/+7
* Fixed returning all IP addresses from SDLNet_GetLocalAddresses() on Windows
2017-01-11Restore .includes to fix dependent package buildsryoon1-1/+15
2017-01-10Updated syncthing to 0.14.19.wiz2-7/+7
This is a regularly scheduled bugfix and improvement release recommended for all users. Resolved issues: #3846: Changing bandwidth rate limits now takes effect immediately without restart. #3859: The event log (-audit) can now be directed to stderr for piping into another program. #3584: A panic on folder listing at startup has been fixed. #3857: On Windows, we now make sure to never descend into directory symlinks. #3819: When a folder is deleted, the .stfolder marker is also removed. The ignore file and .stversions directory are retained, if present. #3839: Several scenarios where a device would get stuck with "not a directory" errors are now handled again. #3861: Third party copyrights in the about box are now more up to date. Also: Hashing performance has been improved again, after it was inadvertently reduced in v0.4.17.
2017-01-09Update to newest version.morr2-8/+7
ChangeLog: 2016/12/25 : 1.6.11 - BUILD: contrib: fix ip6range build on Centos 7 - BUG/MINOR: cli: fix pointer size when reporting data/transport layer name - BUG/MINOR: cli: dequeue from the proxy when changing a maxconn - BUG/MINOR: cli: wake up the CLI's task after a timeout update - BUG/MINOR: freq-ctr: make swrate_add() support larger values - BUG/MEDIUM: proxy: return "none" and "unknown" for unknown LB algos - BUG/MAJOR: stream: fix session abort on resource shortage - BUG/MINOR: http: don't send an extra CRLF after a Set-Cookie in a redirect - BUG/MEDIUM: variables: some variable name can hide another ones - BUG/MINOR: cli: be sure to always warn the cli applet when input buffer is full - MINOR: applet: Count number of (active) applets - MINOR: task: Rename run_queue and run_queue_cur counters - BUG/MEDIUM: stream: Save unprocessed events for a stream - BUG/MAJOR: Fix how the list of entities waiting for a buffer is handled - BUG/MEDIUM: lua: In some case, the return of sample-fetches is ignored (2) - BUG/MINOR: stream-int: automatically release SI_FL_WAIT_DATA on SHUTW_NOW - DOC: lua: section declared twice - DOC: fix small typo in fe_id (backend instead of frontend) - BUG/MINOR: lua: memory leak executing tasks - BUG/MEDIUM: ssl: properly reset the reused_sess during a forced handshake - BUG/MEDIUM: ssl: avoid double free when releasing bind_confs - BUG/MINOR: backend: nbsrv() should return 0 if backend is disabled - BUG/MEDIUM: ssl: for a handshake when server-side SNI changes - BUG/MINOR: systemd: potential zombie processes 2016/11/20 : 1.6.10 - BUG/MINOR: Fix OSX compilation errors - BUG/MINOR: displayed PCRE version is running release - MINOR: show Built with PCRE version - MINOR: show Running on zlib version - MINOR: Add fe_req_rate sample fetch - MEDIUM: make SO_REUSEPORT configurable - BUG/MINOR: vars: use sess and not s->sess in action_store() - BUG/MINOR: vars: make smp_fetch_var() more robust against misuses - BUG/MINOR: vars: smp_fetch_var() doesn't depend on HTTP but on the session - BUG/MINOR: ssl: Check malloc return code - BUG/MINOR: ssl: prevent multiple entries for the same certificate - BUG/MINOR: systemd: make the wrapper return a non-null status code on error - BUG/MINOR: systemd: always restore signals before execve() - BUG/MINOR: systemd: check return value of calloc() - MINOR: systemd: report it when execve() fails - BUG/MEDIUM: systemd: let the wrapper know that haproxy has completed or failed - BUILD: protocol: fix some build errors on OpenBSD - BUILD: log: iovec requires to include sys/uio.h on OpenBSD - BUILD: tcp: do not include netinet/ip.h for IP_TTL - BUILD: checks: remove the last strcat and eliminate a warning on OpenBSD - BUILD: poll: remove unused hap_fd_isset() which causes a warning with clang - MINOR: cfgparse: few memory leaks fixes. - MINOR: build: Allow linking to device-atlas library file - DOC: Fix typo in description of `-st` parameter in man page - BUG/MEDIUM: peers: on shutdown, wake up the appctx, not the stream - BUG/MEDIUM: peers: fix use after free in peer_session_create() - BUG/MEDIUM: systemd-wrapper: return correct exit codes - BUG/MEDIUM: srv-state: properly restore the DRAIN state - BUG/MINOR: srv-state: allow to have both CMAINT and FDRAIN flags - BUG/MEDIUM: servers: properly propagate the maintenance states during startup - BUG: vars: Fix 'set-var' converter because of a typo - BUG/MEDIUM: channel: bad unlikely macro - CLEANUP: lua: move comment - CLEANUP: lua: control executed twice - CLEANUP: ssl: Fix bind keywords name in comments - DOC: ssl: Use correct wording for ca-sign-pass - BUG/MINOR: stick-table: handle out-of-memory condition gracefully - BUG/MEDIUM: connection: check the control layer before stopping polling - BUG/MEDIUM: stick-table: fix regression caused by recent fix for out-of-memory - CONTRIB: initiate a debugging suite to make debugging easier - BUG/MINOR: cli: properly decrement ref count on tables during failed dumps - BUG/MEDIUM: lua: In some case, the return of sample-fetche is ignored
2017-01-09Update ruby-addressable to 2.5.0.taca3-9/+10
# Addressable 2.5.0 - dropping support for Ruby 1.9 - adding support for Ruby 2.4 preview - add support for public suffixes and tld; first runtime dependency - hostname escaping should match RFC; underscores in hostnames no longer escaped - paths beginning with // and missing an authority are now considered invalid - validation now also takes place after setting a path - handle backslashes in authority more like a browser for `heuristic_parse` - unescaped backslashes in host now raise an `InvalidURIError` - `merge!`, `join!`, `omit!` and `normalize!` don't disable deferred validation - `heuristic_parse` now trims whitespace before parsing - host parts longer than 63 bytes will be ignored and not passed to libidn - normalized values always encoded as UTF-8
2017-01-09Add and enable ruby-public_suffix.taca1-1/+2
2017-01-09Add ruby-public_suffix package version 2.0.5.taca4-0/+56
It was required by ruby-addressable 2.5.0. PublicSuffix can parse and decompose a domain name into top level domain, domain and subdomains.
2017-01-09Revert unintentional revbumpryoon1-2/+2
2017-01-09Recursive revbump from net/libvncserverryoon5-10/+10
2017-01-09Update to 0.9.11ryoon7-154/+23
* Update buildlink3.mk * Update HOMEPAGE and MASTER_SITES Changelog: 0.9.11: Overall changes: LibVNCServer/LibVNCClient development now uses continous intregration, provided by TravisCI. LibVNCClient: Now initializes libgcrypt before use if the application did not do it. Fixes a crash when connection to Mac hosts (#45). Various fixes that result in more stable handling of malicious or broken servers. Removed broken and unmaintained H264 decoding. Some documentation fixes. Added hooks to WriteToTLS() for optional protection by mutex. LibVNCServer: Stability fixes for the WebSocket implementation. Replaced SHA1 implementation with the one from RFC 6234. The built-in HTTP server does not allow directory traversals anymore. The built-in HTTP now sends correct MIME types for CSS and SVG. Added support for systemd socket activation. Made it possible to get autoPort behavior with either ipv4 or ipv6 disabled. Fixed starting of an onHold-client in threaded mode. 0.9.10: Overall changes: Moved the whole project from sourceforge to https://libvnc.github.io/. Cleaned out the autotools build system which now uses autoreconf. Updated noVNC HTML5 client to latest version. Split out x11vnc sources into separate repository at https://github.com/LibVNC/x11vnc Split out vncterm sources into separate repository at https://github.com/LibVNC/vncterm Split out VisualNaCro sources into separate repository at https://github.com/LibVNC/VisualNaCro Merged Debian patches. LibVNCServer/LibVNCClient: Fixed some security-related buffer overflow cases. Added compatibility headers to make LibVNCServer/LibVNCClient build on native Windows 8. Update LZO to version 2.07, fixing CVE-2014-4607. LibVNCServer: Merged patches from KDE/krfb. Can now do IPv6 without IPv4. Fixed a use-after-free issue in scale.c.