Commit graph

17643 commits

Author SHA1 Message Date
leot
21326e1840 hub: Update to 2.13.0
Changes:
2.13.0
------
  * New command: hub gist
  * Add git pr show --format=... flag
  * Add hub api --obey-ratelimit flag
  * hub help: support compressed man pages
  * Add hub release download --include=PATTERN flag
  * hub help: Enable hub help --web <command>
  * hub release: Retry attaching release assets on 5xx server errors
  * hub pr checkout fixes
      + handle case when the PR given matches the current branch
      + avoid overriding existing branch merge config
  * hub release: Fail fast when attempting to attach unavailable files
  * Honor HTTPS_PROXY, NO_PROXY environment variables
  * Strip "co-authored-by" lines when populating PR body from git log
  * git compatibility: have hub <cmd> --help open the man page
  * hub fork bash completion improvements
  * hub pr fish completion improvements

2.12.8
------
  * hub compare: improve upstream branch detection & error messages
  * hub compare: allow slash character in branch names
  * hub api: fix GraphQL requests made to Enterprise hosts
  * Docs: clarify --message, --file, and --edit flags

2.12.7
------
  * Fix password prompt on Windows
2020-01-02 11:52:48 +00:00
leot
d08a884ece fstrm: Add missing patch-libmy_argv.c entry to distinfo
PKGREVISION++
2020-01-02 03:31:24 +00:00
leot
436531c897 mitmproxy: Update to 5.0.1
Changes:
5.0.1
-----
 * Fixed precompiled Linux binaries to not crash in table mode.
 * Support image/webp preview in mitmweb
2020-01-01 21:30:03 +00:00
adam
79c40b9cb1 haproxy: updated to 2.1.2
2.1.2:
* BUG/MEDIUM: stream: Be sure to never assign a TCP backend to an HTX stream
* BUILD: ssl: improve SSL_CTX_set_ecdh_auto compatibility
* BUG/MEDIUM: ssl: Don't set the max early data we can receive too early.
* BUG/MEDIUM: ssl: Revamp the way early data are handled.
* BUG/MEDIUM: fd/threads: fix a concurrency issue between add and rm on the
  same fd
* BUG/MINOR: ssl: openssl-compat: Fix getm_ defines
* MINOR: sample: Validate the number of bits for the sha2 converter
* DOC: clarify the fact that replace-uri works on a full URI
* BUG/MINOR: sample: fix the closing bracket and LF in the debug converter
* BUG/MINOR: sample: always check converters' arguments
* MINOR: debug: support logging to various sinks
* MINOR: http: add a new "replace-path" action
* MINOR: task: only check TASK_WOKEN_ANY to decide to requeue a task
* BUG/MAJOR: task: add a new TASK_SHARED_WQ flag to fix foreing requeuing
* MINOR: fd/threads: make _GET_NEXT()/_GET_PREV() use the volatile attribute
* BUG/MEDIUM: state-file: do not allocate a full buffer for each server
* BUG/MINOR: state-file: do not store duplicates in the global tree
* BUG/MINOR: state-file: do not leak memory on parse errors
2020-01-01 21:18:07 +00:00
leot
760e299008 aria2: Update to 1.35.0
pkgsrc changes:
 - Address several pkglint suggestions (NFCI)

Changes:
1.35.0
======
Release Note
------------
This release fixes several bugs. See Changes for details.

Changes
-------
  * Update mingw build dependencies (GH-1469)
  * Update android build dependencies (GH-1467)
    Update android build dependencies. Use android NDK r20 and build
    aarch64 binary.
  * Drop SSLv3.0 and TLSv1.0 and add TLSv1.3 (GH-1385)
    TLSv1.3 support is added for GNUTLS and OpenSSL.
  * Platform: Fix compilation without deprecated OpenSSL APIs (GH-1315)
    Patch from Rosen Penev
  * Remove linux getrandom and use C++ stdlib instead (GH-1306)
  * Don't send Accept Metalink header if Metalink is disabled (GH-1300)
  * gnutls: Fix bug that commonName is always empty (GH-1214)
  * Fix openssl API version logic for libressl 2.7.x
    Patch from Ben Chaney (GH-1213)
  * Fix build failure when InternalDHKeyExchange is used


1.34.0
======
Release Note
------------
This release fixes several bugs. See Changes for details.

Changes
-------
  * mingw: Use SetFileTime to avoid DST adjustment (GH-1079)
  * UnknownLengthPieceStorage: return piece length (GH-1065)
    show something in console status when downloading items
    with unknown content length
    Patch from kwkam
  * WinConsoleFile: fix colour properly (GH-1058)
    Patch from kwkam
  * util: also detect xdg_* env variables on windows (GH-1057)
    so if people like to keep FHS they could define XDG_* for it
    Patch from kwkam
  * MacOS: Allocate once (apfs compat)
  * Fix bug that signal handler does not work with libaria2 (GH-1053)
    This commit fixes the bug that signal handler does not work with
    libaria2 when aria2::RUN_ONCE is passed to aria2::run().
  * Retry on HTTP 502 (GH-1038)
    Patch from nicolov


1.33.1
======
Release Note
------------
This release fixes a bug that causes high CPU usage in mingw build.

Changes
-------
  * mingw: Fix high CPU usage in BitTorrent downloads
    This commit fixes high CPU usage in BitTorrent downloads. Only
    mingw build is affected by this bug.
    Thank you kwkam for identifying the cause of the issue, and helping
    debugging this patch.


1.33.0
======
Release Note
------------
This release fixes several bugs, and add new features.

Changes
-------
  * Include arm in a filename of android zip
  * Upgrade base image of Dockerfile.mingw to ubuntu:16.04
  * wintls: Potential fix for undecrypted read (GH-1021)
  * libaria2: Return last error code from DownloadHandle::getErrorCode (GH-991)
  * Windows: pass writefds also as exceptfds to select()
    winsock notifies connect() failures on exceptfds instead of
    writefds.
    Fixes GH-969 and GH-975
  * libuv: use pkg-config
  * FeatureConfig: align text
  * Update Dockerfile.mingw (GH-970)
    avoid docker cache when using git
    Patch from qweaszxcdf
  * Add --peer-agent option (GH-947)
    Add --peer-agent for setting the version/user agent used in the
    extended handshake protocol for bittorrent.
    Patch from Kurt Kartaltepe
  * OSX: Allow to specify a build
  * OSX: update c-ares
  * [Docs, libaria2] Fix type of obj pushed into options vector (GH-941)
    aria::KeyVals is a vector of pair of std strings, therefore the type
    of object being pushed should be std::pair<std::string,
    std::string>, however in the docs, the type of the said object is
    KeyVals. If one follows the docs, their code will fail to compile.
    Patch from geetam
  * AppleTLS: Silence cipher suite selection
  * Unbreak build OSX build
  * Update macOS versions
  * Add --bt-load-saved-metadata option (GH-909)
    Before getting torrent metadata from DHT when downloading with
    magnet link, first try to read file saved by --bt-save-metadata
    option. If it is successful, then skip downloading metadata from
    DHT. By default, this feature is turned off.
  * Fix regression in bfc54d0 (GH-917)
    Don't save control file if --auto-save-interval is 0.
  * Fix infinite loop bug when file is not found
2020-01-01 16:21:02 +00:00
nia
60cb7bb6ab net: Remove gnome-netstatus
Dead gnome2 panel applet. This is no longer part of GNOME.
2020-01-01 14:05:55 +00:00
pho
80d3fffbca Update to network-3.1.1.1
Version 3.1.1.1
* Fix for GHCJS. #431

Version 3.1.1.0
* A new API: gracefulClose. #417
* touchSocket, unsafeFdSocket: Allow direct access to a socket's file
  descriptor while providing tools to prevent it from being garbage
  collected. This also deprecated fdSocket in favor of unsafeFdSocket
  and withFdSocket. #423
* socketToFd: Duplicates a socket as a file desriptor and closes the
  source socket. #424

Version 3.1.0.1
* getAddrInfo: raise exception if no AddrInfo returned. #410
* Avoid catching SomeException. #411

Version 3.1.0.0
* Making GC of socket safer. #399
* Deprecating fdSocket. Use withFdSocket instead to ensure that
  sockets are GCed in proper time. #399

Version 3.0.1.1
* Fix blocking if_nametoindex errors on Windows #391

Version 3.0.1.0
* Added getSocketType :: Socket -> IO SocketType. #372
* Correcting manual and brushing up test cases #375
* Fixed longstanded bug in getContents on mac #375
* Fixing regression: set correct sockaddr length for abstract
  addresses for Linux. #374

Version 3.0.0.1
* Fixed a bug in connect where exceptions were not thrown #368

Version 3.0.0.0
* Breaking change: the Network and Network.BSD are
  removed. Network.BSD is provided a new package: network-bsd.
* Breaking change: the signatures are changed:

    old fdSocket :: Socket -> CInt
    new fdSocket :: Socket -> IO CInt

    old mkSocket :: CInt -> Family -> SocketType -> ProtocolNumber -> SocketStatus -> IO Socket
    new mkSocket :: CInt -> IO Socket

* Breaking change: the deprecated APIs are removed: send, sendTo,
  recv, recvFrom, recvLen, htonl, ntohl, inet_addr, int_ntoa,
  bindSocket, sClose, SocketStatus, isConnected, isBound, isListening,
  isReadable, isWritable, sIsConnected, sIsBound, sIsListening,
  sIsReadable, sIsWritable, aNY_PORT, iNADDR_ANY, iN6ADDR_ANY,
  sOMAXCONN, sOL_SOCKET, sCM_RIGHTS, packSocketType, getPeerCred.
* Breaking change: SockAddrCan is removed from SockAddr.
* Socket addresses are extendable with Network.Socket.Address.
* "socket" is now asynchronous-exception-safe. #336
* "recvFrom" returns (0, addr) instead of throwing an error on EOF. #360
* All APIs are available on any platforms.
* Build system is simplified.
* Bug fixes.

Version 2.8.0.1
* Eensuring that accept returns a correct sockaddr for unix
  domain. #400
* Avoid out of bounds writes in pokeSockAddr. #400

Version 2.8.0.0
* Breaking change: PortNumber originally contained Word16 in network
  byte order and used "deriving Ord". This results in strange behavior
  on the Ord instance. Now PortNumber holds Word16 in host byte
  order. #347
* Breaking change: stopping the export of the PortNum constructor in
  PortNumber.
* Use bytestring == 0.10.* only.
* Use base >= 4.7 && < 5.

Version 2.7.0.2
* Removing withMVar to avoid the deadlock between "accept" and "close"
  #330
* "close" does not throw exceptions. A new API: "close'" throws
  exceptions when necessary. #337
* Fixing the hang of lazy sendAll. #340
* Installing NetDef.h (#334) #334

Version 2.7.0.1
* A new API: socketPortSafe. #319
* Fixing a drain bug of sendAll. #320
* Porting the new CALLCONV convention from master. #313
* Withdrawing the deprecations of packFamily and unpackFamily. #324

Version 2.7.0.0
* Obsoleting the Network module.
* Obsoleting the Network.BSD module.
* Obsoleting APIs: MkSocket, htonl, ntohl, getPeerCred, getPeerEid,
  send, sendTo, recv, recvFrom, recvLen, inet_addr, inet_ntoa,
  isConnected, isBound, isListening, isReadable, isWritable, aNY_PORT,
  iNADDR_ANY, iN6ADDR_ANY, sOMAXCONN, sOL_SOCKET, sCM_RIGHTS,
  packFamily, unpackFamily, packSocketType
* Breaking change: do not closeFd within sendFd. #271
* Exporting ifNameToIndex and ifIndexToName from Network.Socket.
* New APIs: setCloseOnExecIfNeeded, getCloseOnExec and getNonBlock
* New APIs: isUnixDomainSocketAvailable and getPeerCredential
* socketPair, sendFd and recvFd are exported even on Windows.

Version 2.6.3.5
* Reverting "Do not closeFd within sendFd" #271

Version 2.6.3.4
* Don't touch IPv6Only when running on OpenBSD #227
* Do not closeFd within sendFd #271
* Updating examples and docs.

Version 2.6.3.3
* Adds a function to show the defaultHints without reading their
  undefined fields #291
* Improve exception error messages for getAddrInfo and getNameInfo
  #289

Version 2.6.3.2
* Zero memory of sockaddr_un if abstract socket #220
* Improving error messages #232
* Allow non-blocking file descriptors via setNonBlockIfNeeded #242
* Update config.{guess,sub} to latest version #244
* Rename my_inet_ntoa to avoid symbol conflicts #228
* Test infrastructure improvements #219 #217 #218
* House keeping and cleanup #238 #237

Version 2.6.3.1
* Reverse breaking exception change in Network.Socket.ByteString.recv
  #215

Version 2.6.3.0
* New maintainers: Evan Borden (@eborden) and Kazu Yamamoto
  (@kazu-yamamoto). The maintainer for a long period, Johan Tibell
  (@tibbe) stepped down. Thank you, Johan, for your hard work for a
  long time.
* New APIs: ntohl, htonl,hostAddressToTuple{,6} and
  tupleToHostAddress{,6}. #210
* Added a Read instance for PortNumber. #145
* We only set the IPV6_V6ONLY flag to 0 for stream and datagram socket
  types, as opposed to all of them. This makes it possible to use
  ICMPv6. #180 #181
* Work around GHC bug #12020. Socket errors no longer cause segfaults
  or hangs on Windows. #192
* Various documentation improvements and the deprecated pragmas. #186
  #201 #205 #206 #211
* Various internal improvements. #193 #200

Version 2.6.2.1
* Regenerate configure and HsNetworkConfig.h.in.
* Better detection of CAN sockets.

Version 2.6.2.0
* Add support for TCP_USER_TIMEOUT.
* Don't conditionally export the SockAddr constructors.
* Add isSupportSockAddr to allow checking for supported address types
  at runtime.
2020-01-01 03:10:36 +00:00
leot
e871956176 youtube-dl: Update to 20200101
Changes:
20200101
--------
Extractors
* [brightcove] Invalidate policy key cache on failing requests
* [pornhub] Improve locked videos detection (#22449, #22780)
+ [pornhub] Add support for m3u8 formats
* [pornhub] Fix extraction (#22749, #23082)
* [brightcove] Update policy key on failing requests
* [spankbang] Improve removed video detection (#23423)
* [spankbang] Fix extraction (#23307, #23423, #23444)
* [soundcloud] Automatically update client id on failing requests
* [prosiebensat1] Improve geo restriction handling (#23571)
* [brightcove] Cache brightcove player policy keys
* [teachable] Fail with error message if no video URL found
* [teachable] Improve locked lessons detection (#23528)
+ [scrippsnetworks] Add support for Scripps Networks sites (#19857, #22981)
* [mitele] Fix extraction (#21354, #23456)
* [soundcloud] Update client id (#23516)
* [mailru] Relax URL regular expressions (#23509)
2019-12-31 23:31:06 +00:00
nia
139964bd66 dnscrypt-proxy2: Update to 2.0.36
* Version 2.0.36
 - New option: `block_undelegated`. When enabled, `dnscrypt-proxy` will
directly respond to queries for locally-served zones (https://sk.tl/2QqB971U)
and nonexistent zones that should have been kept local, but are frequently
leaked. This reduces latency and improves privacy.
 - Conformance: the `DO` bit is now set in synthetic responses if it was
set in a question, and the `AD` bit is cleared.
 - The `miegkg/dns` module was updated to version 1.1.26, that fixes a
security issue affecting non-encrypted/non-authenticated DNS traffic. In
`dnscrypt-proxy`, this only affects the forwarding feature.
2019-12-31 14:41:38 +00:00
triaxx
802915f84d py-digitalocean: fix invalid byte
Bump revision
2019-12-31 13:05:10 +00:00
wiz
262e1214d0 libsoup: update to 2.68.3.
Changes in libsoup from 2.68.2 to 2.68.3:

        * Fixes to testing infrastructure [Simon McVittie]

        * Enable GNOME support in mingw [Fabiano Fidêncio]

        * Allow introspection in cross builds [Ross Burton]

        * Updated translations: Chinese (Taiwan)
2019-12-31 11:39:27 +00:00
mef
11e827b8d7 (net/py-ifaddr) revert wrong change on Makefile 2019-12-31 10:02:07 +00:00
mef
40f93acb36 (net/py-ifaddr) experimental build fix for py27 (and py37) 2019-12-31 09:56:46 +00:00
wiz
94ad53e1a9 filezilla: update to 3.46.3.
3.46.3 (2019-12-23)

- SFTP: Fixed handle leak on Windows
- SFTP: Remote paths were not fully resolved on all operations

3.46.2 (2019-12-20)

- SFTP: Fixed a regression connecting using a password-protected keyfile

3.46.1 (2019-12-20)

- Fixed a crash if an FTP server sends too long response lines
- Building and running FileZilla now depends on libfilezilla >= 0.19.3 (https://lib.filezilla-project.org/), this fixes a few issues with the new speed limiting code
- SFTP components have been updated and are now based on PuTTY 0.73

3.46.0 (2019-11-25)

- Fixed a rare crash if closing FileZilla the very same moment a connection or transfer requests user attention

3.46.0-rc1 (2019-11-15)

+ Show an error message in the local directory listing if the user lacks permission to show the directory
- Local filelist status bar is now reset if accessing a local directory fails
- macOS: Work around an a bug in macOS 10.15 (Catalina) where closing a dialog shown from a timer can result in temporary freezes
- Refactored speed-limiting code
- Building and running FileZilla now depends on libfilezilla >= 0.19.1 (https://lib.filezilla-project.org/)
2019-12-31 08:57:26 +00:00
wiz
f87e660214 libfilezilla: update to 0.19.3.
0.19.3 (2019-12-19)

- Rate limiting: Fix a divide by zero when distributing overflow

0.19.2 (2019-12-19)

+ Rate limiting: Added debt repay mechanism to bucket removal
- *nix: Fix returned permissions in fz::local_filesys::get_file_info/get_next_file

0.19.1 (2019-11-15)

+ Return error information to fz::local_filesys::begin_find_files
- Fix for version.hpp not getting installed

0.19.0 (2019-11-07)

+ Addded rate limiting code and a new rate-limited socket layer
+ Added fz::mutex::try_lock
+ Implemented libtool's library versioning scheme for shared library builds of libfilezilla
2019-12-31 08:46:23 +00:00
gutteridge
b99103bcc8 mate-user-share: update to mate-user-share 1.22.1
Change log:

mate-user-share 1.22.1

  * Translations update
  * add missing autogen.sh to tarballs
  * Change url project's website
  * Fix HTTPD config notice
  * help: update copyright
2019-12-30 23:50:20 +00:00
triaxx
5e4f7bcbc8 py-digitalocean: sort PLIST 2019-12-30 21:17:29 +00:00
triaxx
3dd5a10424 net: added py-digitalocean version 1.14.0 2019-12-30 19:38:27 +00:00
triaxx
96c0523cdf py-digitalocean: added version 1.14.0
This library provides easy access to Digital Ocean APIs to deploy droplets, images and more.

Features
python-digitalocean support all the features provided via digitalocean.com APIs, such as:
    Get user’s Droplets
    Get user’s Images (Snapshot and Backups)
    Get public Images
    Get Droplet’s event status
    Create and Remove a Droplet
    Resize a Droplet
    Shutdown, restart and boot a Droplet
    Power off, power on and “power cycle” a Droplet
    Perform Snapshot
    Enable/Disable automatic Backups
    Restore root password of a Droplet
2019-12-30 19:25:02 +00:00
adam
844352a7d7 freeradius: updated to 3.0.20
FreeRADIUS 3.0.20 Thu 14 Nov 2019 12:00:00 EDT urgency=medium
Feature improvements
* Add Jenkins continuous integration.
  Used to build http://packages.networkradius.com/
* Added Force10 dictionary.
* Update dictionary.hp with new attributes.
* Update dictionary.aruba with new attributes.
* Update logrotate settings to rotate as non-root user.
* Fix side-channel leak in EAP-PWD.  Patch from Mathy Vanhoef.
* Relax OpenSSL version checks, now that their API is both
  public, and stable.
* Note that tls_min_version/tls_max_version also support "1.3"
  Since there is no standard yet for EAP with TLS 1.3, it
  will not work.
* Added tripplite dictionary.
* Switch to the async interface for rlm_sql_postgresql so that
  we can enforce query_timeout.
* Added new LDAP option 'allow_dangling_group_ref'.
* Updated documentation and functionality for EAP session caching.
  See "cache" section of mods-available/eap.
* Tighten systemd unit file security.
* Disable TLS 1.0 and TLS 1.1 support in the default configuration.
  We STRONGLY recommend doing this for all installations.
* Add expansions for *outgoing* Radsec connections.
  "%{proxy_listen:TLS-...}"  for TLS-Client-Cert-* and TLS-Cert-*
  attributes.
* Add %{listen:tls} which returns "yes" or "no" for TLS or non-TLS
  connections.
* Update dictionary.lancom with new attributes.
* Added rlm_sql_mongo.  See raddb/mods-available/sql.  Note that
  this module is experimental.
* Added more documentation in sites-available/robust-proxy-accounting
* sqlippool now re-allocates unexpired leases, to prevent IP pool
  exhaustion when clients perform multiple reauthentication attempts.
  Patch from Terry Burton.
* Add support to radmin keep the history in ~/.radmin_history
* Add support for ENV and LD_PRELOAD in radiusd.conf.  See the new
  ENV sub-section of radiusd.conf.
* Update dictionary.aptilo.
* Update dictionary.airespace.
* Add sites-available/coa-relay, which makes CoA easier.
  Patch from Terry Burton.
* Add example stored procedure for IP Pools in MySQL.
  See mods-config/sql/ippool/mysql/procedure.sql
  Patch from Terry Burton.
* Update dictionary.dhcp dictionary with the recent hardware types.
* Add experimental rlm_python3.  This should largely work the same
  as rlm_python, which was Python2 only.
* Add Dockerfiles for Debian10 and CentOS8.
* Add RPM spec file compatibility for RHEL/CentOS 8.
* Notes on iOS 13 certificate issues.  See
  https://support.apple.com/en-us/HT210176.
* Notes on certificate constraints.  See raddb/certs/server.cnf.
* Add NAIRealm example to raddb/certs/server.cnf, for RFC 7585.

Bug fixes
* Allow listen.ipaddr to reference an IPv6-only host.
* ERX-Acct-Request-Reason is "integer".
* Fix a slow memory leak in the file management code.
* Try to fix file permissions if they get modified while
  the server is running.
* Fix slow memory leak with clients.
* Fix request and connection timeouts in rlm_rest.
* Fix systemd issues.  Patches from Daniele Rondina.
* Fixes from clang analyzer.
* Fix missing include for the dictionaries: alcatel.esam,
  altiga,alvarion.wimax.v2_2,aptis,asn,audiocodes,avaya,bristol,
  columbia_university,freedhcp,garderos,infoblox,motorola.illegal,
  starent.vsa1, telkom, wimax.wichorus.
* Fix internal sanity check when running with "-Xx"
* Allow "inner-tunnel" virtual servers to work better with
  "accept" and "reject" policies.
* Fix dictionary.huawei data types for Huawei-DNS-Server-IPv6-address
  and Huawei-Framed-IPv6-Address.
* Framed-Interface-ID in postgresql/queries.conf is string, not inet

* Fix rlm_cache to complain on unknown attributes in the
  "update" section of its configuration.
* Add configure checks for -latomic.  This helps on armel, mips
  and mipsel.
* Add support to Oracle 19 and 18.
* Add support for decoding tags in rlm_rest.
* Use correct passwords when updating CRLs in raddb/certs/
* Properly separate "originate-coa" packets when accounting packets
  are read from the detail file reader.
* Use the correct virtual server for pre/post-proxy.
* radsqlrelay fixes backported from "master" branch.
  Patches from Terry Burton.
* Fix DoS issues due to multithreaded BN_CTX access.
  Patch from Mathy Vanhoef.  CVE-2019-17185
2019-12-30 18:17:22 +00:00
adam
7e49b5278c py-responses: updated to 0.10.9
0.10.9
- Fixed regression with `add_callback()` and content-type header.
- Fixed implicit dependency on urllib3>1.23.0
2019-12-30 17:51:49 +00:00
adam
1ca2a36618 wireshark: updated to 3.2.0
Wireshark 3.2.0

What’s New

This is the last release branch with official support for Windows 7
and Windows Server 2008 R2.

Many improvements have been made. See the “New and Updated Features”
section below for more details.

New and Updated Features

 The following features are new (or have been significantly updated)
 since version 3.2.0rc2:

   • Minor bug fixes.

 The following features are new (or have been significantly updated)
 since version 3.2.0rc1:

   • Minor bug fixes.

 The following features are new (or have been significantly updated)
 since version 3.1.1:

   • Miscellaneous UI fixes and updates.

   • The macOS installer now ships with Qt 5.12.6. It previously
     shipped with Qt 5.12.5.

 The following features are new (or have been significantly updated)
 since version 3.1.0:

   • Automatic updates are supported on macOS.

   • You can now select multiple packets in the packet list at the
     same time

   • They can be exported as Text by “Ctrl+C” or “Cmd+C” and the
     corresponding menu in “Edit › Copy › As …<U+200B>”

   • They can be marked/unmarked or ignored/unignored at the same time

   • They can be exported and printed using the corresponding menu
     entries “File › Export Specified Packets”, “File › Export Packet
     Dissections” and “File › Print”

 You can now follow HTTP/2 and QUIC streams.

 You can once again mark and unmark packets using the middle mouse
 button. This feature went missing around 2009 or so.

 The Windows packages are now built using Microsoft Visual Studio
 2019.

 IOGraph automatically adds a graph for the selected display filter if
 no previous graph exists

 Action buttons for the display filter bar may be aligned left via the
 context menu

   • The "Expression…<U+200B>" toolbar entry has been moved to "Analyze ›
     Display filter Expression …<U+200B>" as well as to the context menu of
     the display filter toolbar

 Allow extcaps to be loaded from the personal configuration directory

 The Wireshark 3.1.0 Windows installers ship with Qt 5.12.6. Previous
 installers shipped with Qt 5.12.4.

 The following features are new (or have been significantly updated)
 since version 3.0.0:

   • You can drag and drop a field to a column header to create a
     column for that field, or to the display filter input to create a
     display filter. If a display filter is applied, the new filter
     can be added using the same rules as “Apply Filter”

   • You can drag and drop a column entry to the display filter to
     create a filter for it.

   • You can import profiles from a .zip archive or an existing
     directory.

   • Dark mode support on macOS and dark theme support on other
     platforms has been improved.

   • Brotli decompression support in HTTP/HTTP2 (requires the brotli
     library).

   • The build system now checks for a SpeexDSP system library
     installation. The bundled Speex resampler code is still provided
     as a fallback.

   • WireGuard decryption can now be enabled through keys embedded in
     a pcapng in addition to the existing key log preference (Bug
     15571[1]).

   • A new tap for extracting credentials from the capture file has
     been added. It can be accessed through the -z credentials option
     in tshark or from the “Tools › Credentials” menu in Wireshark.

   • Editcap can now split files on floating point intervals.

   • Windows .msi packages are now signed using SHA-2[2]. .exe
     installers are still dual-signed using SHA-1 and SHA-2.

   • The “Enabled Protocols” Dialog now only enables, disables and
     inverts protocols based on the set filter selection. The protocol
     type (standard or heuristic) may also be choosen as a filter
     value.

   • Save RTP stream to .au supports any codec with 8000 Hz rate
     supported by Wireshark (shown in RTP player). If save of audio is
     not possible (unsupported codec or rate), silence of same length
     is saved and warning is shown.

   • The “Analyze › Apply as Filter” and “Analyze › Prepare a Filter”
     packet list and detail popup menus now show a preview of their
     respective filters.

   • Protobuf files (*.proto) can now be configured to enable more
     precise parsing of serialized Protobuf data (such as gRPC).

   • HTTP2 support streaming mode reassembly. To use this feature,
     subdissectors can register itself to "streaming_content_type"
     dissector table and return pinfo→desegment_len and
     pinfo→desegment_offset to tell HTTP2 when to start and how many
     additional bytes requires when next called.

   • The message of stream gRPC method can now be parsed with
     supporting of HTTP2 streaming mode reassembly feature.

   • The Wireshark 3.1.0 Windows installers ship with Qt 5.12.4.
     Previous installers shipped with Qt 5.12.1.

New Protocol Support

 3GPP BICC MST (BICC-MST), 3GPP log packet (LOG3GPP), 3GPP/GSM Cell
 Broadcast Service Protocol (cbsp), Asynchronous Management Protocol
 (AMP), Bluetooth Mesh Beacon, Bluetooth Mesh PB-ADV, Bluetooth Mesh
 Provisioning PDU, Bluetooth Mesh Proxy, CableLabs Layer-3 Protocol
 IEEE EtherType 0xb4e3 (CL3), DCOM IProvideClassInfo, DCOM ITypeInfo,
 Diagnostic Log and Trace (DLT), Distributed Replicated Block Device
 (DRBD), Dual Channel Wi-Fi (CL3DCW), EBHSCR Protocol (EBHSCR), EERO
 Protocol (EERO), evolved Common Public Radio Interface (eCPRI), File
 Server Remote VSS Protocol (FSRVP), FTDI FT USB Bridging Devices
 (FTDI FT), Graylog Extended Log Format over UDP (GELF), GSM/3GPP CBSP
 (Cell Broadcast Service Protocol), ITS message - CAMv1, ITS message -
 DENMv1, Linux net_dm (network drop monitor) protocol, MIDI System
 Exclusive DigiTech (SYSEX DigiTech), Network Controller Sideband
 Interface (NCSI), NR Positioning Protocol A (NRPPa) TS 38.455, NVM
 Express over Fabrics for TCP (nvme-tcp), OsmoTRX Protocol (GSM
 Transceiver control and data), Scalable service-Oriented MiddlewarE
 over IP (SOME/IP), USB 2.0 Link Layer (USBLL), and Wi-Fi Neighbour
 Awareness Networking (NAN)

Updated Protocol Support

 Too many protocols have been updated to list here.

New and Updated Capture File Support

 3gpp phone, Android Logcat Text, Ascend, Busmaster log file, Candump,
 Endace ERF, NetScaler, pcapng, and Savvius *Peek
2019-12-30 17:48:05 +00:00
adam
ee4b36db0c samba4: updated to 4.11.4
Changes since 4.11.3:
* BUG 14161: s3: libsmb: Ensure SMB1 cli_qpathinfo2() doesn't return an inode
  number.
* BUG 14174: s3: utils: smbtree. Ensure we don't call cli_RNetShareEnum()
  on an SMB1 connection.
* BUG 14176: NT_STATUS_ACCESS_DENIED becomes EINVAL when using SMB2 in
  SMBC_opendir_ctx.
* BUG 14189: s3: smbd: SMB2 - Ensure we use the correct session_id if
  encrypting an interim response.
* BUG 14205: Prevent smbd crash after invalid SMB1 negprot.
* BUG 13745: s3:printing: Fix %J substition.
* BUG 13925: s3: Remove now unneeded call to cmdline_messaging_context().
* BUG 14069: Incomplete conversion of former parametric options.
* BUG 14070: Fix sync dosmode fallback in async dosmode codepath.
* BUG 14171: vfs_fruit returns capped resource fork length.
* BUG 14116: libnet_join: Add SPNs for additional-dns-hostnames entries.
* BUG 14211: smbd: Increase a debug level.
* BUG 14153: Prevent azure ad connect from reporting discovery errors:
  reference-value-not-ldap-conformant.
* BUG 14179: krb5_plugin: Fix developer build with newer heimdal system
  library.
* BUG 14168: replace: Only link libnsl and libsocket if requrired.
* BUG 14175: ctdb: Incoming queue can be orphaned causing communication
  breakdown.
* BUG 13846: ldb: Release ldb 2.0.8. Cross-compile will not take
  cross-answers or cross-execute.
* BUG 13856: heimdal-build: Avoid hard-coded /usr/include/heimdal in
  asn1_compile-generated code.
2019-12-30 13:58:35 +00:00
adam
f500163d30 haproxy: updated to 2.0.12
2.0.12
- DOC: Improve documentation of http-re(quest|sponse) replace-(header|value|uri)
- DOC: clarify the fact that replace-uri works on a full URI
- BUG/MINOR: sample: fix the closing bracket and LF in the debug converter
- BUG/MINOR: sample: always check converters' arguments
- BUG/MEDIUM: ssl: Don't set the max early data we can receive too early.
- MINOR: task: only check TASK_WOKEN_ANY to decide to requeue a task
- BUG/MAJOR: task: add a new TASK_SHARED_WQ flag to fix foreing requeuing
- BUG/MEDIUM: ssl: Revamp the way early data are handled.
- MINOR: fd/threads: make _GET_NEXT()/_GET_PREV() use the volatile attribute
- BUG/MEDIUM: fd/threads: fix a concurrency issue between add and rm on the same fd
- BUG/MINOR: ssl: openssl-compat: Fix getm_ defines
- BUG/MEDIUM: stream: Be sure to never assign a TCP backend to an HTX stream
- BUILD: ssl: improve SSL_CTX_set_ecdh_auto compatibility

2.0.11
- BUG/MINOR: stream: init variables when the list is empty
- BUG/MINOR: contrib/prometheus-exporter: Use HTX errors and not legacy ones
- BUG/MINOR: contrib/prometheus-exporter: decode parameter and value only
- BUG/MINOR: http-htx: Don't make http_find_header() fail if the value is empty
- DOC: Clarify behavior of server maxconn in HTTP mode
- DOC: clarify matching strings on binary fetches
- DOC: move the "group" keyword at the right place
- BUG/MEDIUM: stream-int: don't subscribed for recv when we're trying to flush data
- BUG/MINOR: stream-int: avoid calling rcv_buf() when splicing is still possible
- BUG/MEDIUM: listener/thread: fix a race when pausing a listener
- BUG/MINOR: ssl: certificate choice can be unexpected with openssl >= 1.1.1
- BUG/MEDIUM: mux-h1: Never reuse H1 connection if a shutw is pending
- BUG/MINOR: mux-h1: Don't rely on CO_FL_SOCK_RD_SH to set H1C_F_CS_SHUTDOWN
- BUG/MINOR: mux-h1: Fix conditions to know whether or not we may receive data
- BUG/MEDIUM: tasks: Make sure we switch wait queues in task_set_affinity().
- BUG/MEDIUM: checks: Make sure we set the task affinity just before connecting.
- BUG/MINOR: mux-h1: Be sure to set CS_FL_WANT_ROOM when EOM can't be added
- BUG/MINOR: proxy: make soft_stop() also close FDs in LI_PAUSED state
- BUG/MINOR: listener/threads: always use atomic ops to clear the FD events
- BUG/MINOR: listener: also clear the error flag on a paused listener
- BUG/MEDIUM: listener/threads: fix a remaining race in the listener's accept()
- DOC: document the listener state transitions
- BUG/MAJOR: dns: add minimalist error processing on the Rx path
- BUG/MEDIUM: proto_udp/threads: recv() and send() must not be exclusive.
- BUG/MEDIUM: kqueue: Make sure we report read events even when no data.
- DOC: listeners: add a few missing transitions
- BUG/MINOR: tasks: only requeue a task if it was already in the queue
- DOC: proxies: HAProxy only supports 3 connection modes
- BUILD/MINOR: ssl: shut up a build warning about format truncation
- BUILD/MINOR: tools: shut up the format truncation warning in get_gmt_offset()
- BUILD: do not disable -Wformat-truncation anymore
- DOC: remove references to the outdated architecture.txt
- BUG/MINOR: log: fix minor resource leaks on logformat error path
- BUG/MINOR: mworker: properly pass SIGTTOU/SIGTTIN to workers
- BUG/MINOR: listener: do not immediately resume on transient error
- BUG/MINOR: server: make "agent-addr" work on default-server line
- BUG/MINOR: listener: fix off-by-one in state name check
- BUILD/MINOR: unix sockets: silence an absurd gcc warning about strncpy()
2019-12-30 13:57:40 +00:00
ng0
0ea47fd807 net/wgetpaste: Update to 2.29
No Changelog.
2019-12-29 22:09:38 +00:00
sevan
64cfdb2585 tweak 2019-12-29 17:14:08 +00:00
ryoon
b0c54f1af0 Enable py-pychromecast 2019-12-29 04:46:28 +00:00
ryoon
b576b9fb75 net/py-pychromecast: import py38-pychromecast-4.1.0
Python module to talk to Google Chromecast
2019-12-29 04:44:58 +00:00
ryoon
26cc83f662 Enable py-zeroconf 2019-12-29 04:41:18 +00:00
ryoon
7a291883ac net/py-zeroconf: import py38-zeroconf-0.24.3
Pure Python Multicast DNS Service Discovery Library
2019-12-29 04:39:49 +00:00
ryoon
1877f6d91b Enable py-ifaddr 2019-12-29 02:26:04 +00:00
ryoon
d1245f908e net/py-ifaddr: import py38-ifaddr-0.1.6
ifaddr is a small Python library that allows you to find all the
IP addresses of the computer.
2019-12-29 02:24:18 +00:00
leot
3032236741 gallery-dl: Update to 1.12.1
Changes:
### Additions
- [4chan] add extractor for entire boards (#510)
- [realbooru] add extractors for pools, posts, and tag searches (#514)
- [instagram] implement a `videos` option (#521)
- [vsco] implement a `videos` option
- [postprocessor:metadata] implement a `bypost` option for downloading the
  metadata of an entire post (#511)

### Changes
- [reddit] change the default value for `comments` to `0`
- [vsco] improve image resolutions
- make filesystem-related errors during file downloads non-fatal (#512)

### Fixes
- [foolslide] add fallback for chapter data extraction
- [instagram] ignore errors during post-page extraction
- [patreon] avoid errors when fetching user info (#508)
- [patreon] improve URL pattern for single posts
- [reddit] fix errors with `t1` submissions
- [vsco] fix user profile extraction … again
- [weibo] handle unavailable/deleted statuses
- [downloader:http] improve rate limit handling
- retain trailing zeroes in Cloudflare challenge answers
2019-12-28 21:44:17 +00:00
schmonz
2a8072b3f8 Update to 1.11.1. From the changelog:
- tcpserver and tcpclient set ipv4socket = 1 upon call with IPv4 address on input
  to improve compatibility with NetBSD/MacOS.
2019-12-28 19:00:10 +00:00
wiz
7d650f022d kismet: update to 2008.05.01nb49.
Disable gps option by default.
The configure script does not recognize pkgsrc's version of
ImageMagick, which breaks the option.
2019-12-28 12:43:47 +00:00
gdt
e05bfc3d5d net/syncthing: Update to 1.3.2
Update prepared by Frédéric Fauberteau <triaxx@NetBSD.org>.

While this update is slightly larger than micro, syncthing is a leaf
package or nearly so, and the update fixes a critical bug:
  https://github.com/syncthing/syncthing/issues/6081
which results in excessive CPU use and syslog trouble.

Tested on netbsd-8/amd64 interoperating with Android Syncthing 1.3.2
from f-droid.  (For the record, pkgsrc synching 1.3.1 worked fine with
android 1.3.2, other than the QUIC accept bug.)

packaging change: Drop note about differing Android versions now that
Android version relate to the main version.

Upstream changelog

v1.3.2
Bugfixes

    #5810: GUI theme not changing on WebKit-based/like browsers
    #5968: Folder "Up To Date" but has pending "Revert Local Changes"
    #5980: (De)select all not working in add device dialog
    #6027: Folder shows as "Syncing" when there is no data transfer
    #6043: Cannot exit after failed startup
    #6081: QUIC accept error loops too quickly, causing excessive log output
    #6090: Pull-scan loop due to symlink traversal
    #6093: cmd/stdiscosrv: Data race in replication
    #6136: API + UI device last seen is empty/Never
    #6160: Uses too much RAM when syncing large files (1.3.0+)

Enhancements

    #6036: Generate HTTPS certificates accepted by iOS 13 / macOS Catalina
    #6056: Improve sharing tab when there are no devices to share with
    #6115: Change Web UI based on prefers-color-scheme
2019-12-28 02:28:46 +00:00
leot
a1dd57b9a9 youtube-dl: Reset PKGREVISION (accidentally left unmodified in previous commit) 2019-12-26 22:18:18 +00:00
leot
a876ecd8c5 youtube-dl: Update to 20191225
Changes:
20191225
--------
Core
* [utils] Improve str_to_int
+ [downloader/hls] Add ability to override AES decryption key URL (#17521)

Extractors
* [mediaset] Fix parse formats (#23508)
+ [tv2dk:bornholm:play] Add support for play.tv2bornholm.dk (#23291)
+ [slideslive] Add support for url and vimeo service names (#23414)
* [slideslive] Fix extraction (#23413)
* [twitch:clips] Fix extraction (#23375)
+ [soundcloud] Add support for token protected embeds (#18954)
* [vk] Improve extraction
    * Fix User Videos extraction (#23356)
    * Extract all videos for lists with more than 1000 videos (#23356)
    + Add support for video albums (#14327, #14492)
- [kontrtube] Remove extractor
- [videopremium] Remove extractor
- [musicplayon] Remove extractor (#9225)
+ [ufctv] Add support for ufcfightpass.imgdge.com and
  ufcfightpass.imggaming.com (#23343)
+ [twitch] Extract m3u8 formats frame rate (#23333)
+ [imggaming] Add support for playlists and extract subtitles
+ [ufcarabia] Add support for UFC Arabia (#23312)
* [ufctv] Fix extraction
* [yahoo] Fix gyao brightcove player id (#23303)
* [vzaar] Override AES decryption key URL (#17521)
+ [vzaar] Add support for AES HLS manifests (#17521, #23299)
* [nrl] Fix extraction
* [teachingchannel] Fix extraction
* [nintendo] Fix extraction and partially add support for Nintendo Direct
  videos (#4592)
+ [ooyala] Add better fallback values for domain and streams variables
+ [youtube] Add support youtubekids.com (#23272)
* [tv2] Detect DRM protection
+ [tv2] Add support for katsomo.fi and mtv.fi (#10543)
* [tv2] Fix tv2.no article extraction
* [msn] Improve extraction
    + Add support for YouTube and NBCSports embeds
    + Add support for articles with multiple videos
    * Improve AOL embed support
    * Improve format extraction
* [abcotvs] Relax URL regular expression and improve metadata extraction
  (#18014)
* [channel9] Reduce response size
* [adobetv] Improve extaction
    * Use OnDemandPagedList for list extractors
    * Reduce show extraction requests
    * Extract original video format and subtitles
    + Add support for adobe tv embeds
2019-12-26 22:12:27 +00:00
joerg
ab683eed55 Fix kqueue use on newer NetBSD. 2019-12-22 22:28:15 +00:00
joerg
9f0c52f9e2 Needs libtool. 2019-12-21 23:44:59 +00:00
nros
a4023ddc46 Revbump dhcpcd-gtk and dhcpcd-qt due to PLIST change
Set the right values this time.
2019-12-21 23:22:08 +00:00
nros
3385c7188c Revbump dhcpcd-gtk and dhcpcd-qt due to PLIST change 2019-12-21 23:11:58 +00:00
nros
3988ef308e Fix installation of xdg autostart desktop files in dhcpcd-*
Make dhcpcd-gtk and dhcpcd-qt install xdg autostart files in the right
locations and use pkg_install framework to put then in PKG_SYSCONFDIR.
Fixes installation that was broken due to non updated PLIST files.
2019-12-21 23:09:23 +00:00
roy
786b1ac332 Update to dhcpcd-8.1.4 with the following change:
* options: Fix allocating the script option
2019-12-20 22:28:04 +00:00
roy
c19224b401 Import dhcpcd-8.1.3 with the following changes:
* Linux: prefer ms RA times
 * Linux: Support kernels without PR_SET_MM_MAP
 * dhcpcd: Only report SSID when we have a carrier
 * IPv6ND: Fix reachable test
 * DHCP6: Work better with infinite addresses
 * DHCP6: Suboption 3 of NTP Server is a FQDN
 * DHCP6: Fix deprecating a delegated prefix
 * DHCP: Ensure we have a lease to extract options from
2019-12-20 11:54:48 +00:00
joerg
119b27382e fetch-1.9: Fix inode check for conditional GET. 2019-12-19 23:50:44 +00:00
joerg
a64dd788f1 Deal with the kqueue type change in NetBSD. 2019-12-19 22:21:57 +00:00
markd
afc7a68db9 ns: modern compilers fussy about unsigned char 2019-12-19 21:15:39 +00:00
markd
53c63fc8ce nam: modern compilers fussy about unsigned char 2019-12-19 21:14:02 +00:00
nros
dc6e34576d Fix patch or sys/loadavg.h
The patch for including sys/loadavg.h included the file in the section where
getloadavg isn't used so the patch did nothing. Include it in the right
place to fix it.
2019-12-19 12:52:28 +00:00