summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Collapse)AuthorFilesLines
2019-01-15py-lexicon: revert ALTERNATIVES change from an outdated pkglinttriaxx1-1/+1
2019-01-15py-amqp: updated to 2.4.0adam2-8/+8
2.4.0 - Fix inconsistent frame_handler return value. The function returned by frame_handler is meant to return True once the complete message is received and the callback is called, False otherwise. This fixes the return value for messages with a body split across multiple frames, and heartbeat frames. - Don't default content_encoding to utf-8 for bytes. This is not an acceptable default as the content may not be valid utf-8, and even if it is, the producer likely does not expect the message to be decoded by the consumer. - Fix encoding of messages with multibyte characters. Body length was previously calculated using string length, which may be less than the length of the encoded body when it contains multibyte sequences. This caused the body of the frame to be truncated. - Respect content_encoding when encoding messages. Previously the content_encoding was ignored and messages were always encoded as utf-8. This caused messages to be incorrectly decoded if content_encoding is properly respected when decoding. - Fix AMQP protocol header for AMQP 0-9-1. - Add support for Python 3.7. Change direct SSLSocket instantiation with wrap_socket. Added Python 3.7 to CI. - Add support for field type "x" (byte array). - If there is an exception raised on Connection.connect or Connection.close, ensure that the underlying transport socket is closed. - TCP_USER_TIMEOUT has to be excluded from KNOWN_TCP_OPTS in BSD platforms. - Handle negative acknowledgments. - Added integration tests. - Fix basic_consume() with no consumer_tag provided. - Improved empty AMQPError string representation. - Drain events before publish. - Don't revive channel when connection is closing.
2019-01-15py-lexicon: update to 3.0.8triaxx5-141/+148
2019-01-15bwm-ng: remove inline to fix clang buildwiz2-1/+20
2019-01-13cctp: fix shared library nameadam2-8/+10
2019-01-13Update to 3.64wen2-7/+7
Upstream changes: Version 3.64 (2018-12-30) [NEW FEATURES] * #283 support for Exinda/GFI traffic shapers (inphobia) [ENHANCEMENTS] * #282 Aerohive base MAC lookup (inphobia) [BUG FIXES] * many documentation fixes (inphobia)
2019-01-12youtube-dl: Update to 20190110leot3-8/+20
Changes: version 2019.01.10 Core * [extractor/common] Use episode name as title in _json_ld + [extractor/common] Add support for movies in _json_ld * [postprocessor/ffmpeg] Embed subtitles with non-standard language codes (#18765) + [utils] Add language codes replaced in 1989 revision of ISO 639 to ISO639Utils (#18765) Extractors * [youtube] Extract live HLS URL from player response (#18799) + [outsidetv] Add support for outsidetv.com (#18774) * [jwplatform] Use JW Platform Delivery API V2 and add support for more URLs + [fox] Add support National Geographic (#17985, #15333, #14698) + [playplustv] Add support for playplus.tv (#18789) * [globo] Set GLBID cookie manually (#17346) + [gaia] Add support for gaia.com (#14605) * [youporn] Fix title and description extraction (#18748) + [hungama] Add support for hungama.com (#17402, #18771) * [dtube] Fix extraction (#18741) * [tvnow] Fix and rework extractors and prepare for a switch to the new API (#17245, #18499) * [carambatv:page] Fix extraction (#18739) version 2019.01.02 Extractors * [discovery] Use geo verification headers (#17838) + [packtpub] Add support for subscription.packtpub.com (#18718) * [yourporn] Fix extraction (#18583) + [acast:channel] Add support for play.acast.com (#18587) + [extractors] Add missing age limits (#18621) + [rmcdecouverte] Add support for live stream * [rmcdecouverte] Bypass geo restriction * [rmcdecouverte] Update URL regular expression (#18595, 18697) * [manyvids] Fix extraction (#18604, #18614) * [bitchute] Fix extraction (#18567)
2019-01-11Support PKG_SYSCONFDIR and VARBASE. Add SNIPROXY_{USER,GROUP}, bothschmonz7-2/+137
defaulting to "sniproxy." Add rc.d script. Bump PKGREVISION.
2019-01-11megatools: needs asciidoc for documentationleot1-2/+4
PKGREVISION++ Thanks to <jmcneill>!
2019-01-10Update to 0.34.1. From the changelog:schmonz3-48/+8
- Corrected typo in pen.c per suggestion by Belinda Liu. This fixes issue #38. - Merged pull request from Vincent Bernat for OpenSSL 1.1.0 compatibility. This fixes issue #28. - Allow setting local address for upstream connections. This fixes issue #31. - New penctl command "source" to set this option. - Fixed issue #30: UDP not working in combination with a configuration file. - In epoll.c: check for EPOLLHUP. - In dsr.c: always use our real mac address, to avoid confusing switches. - Cleaned up code residue surrounded by "#if 0". - Added CS_HALFDEAD for UDP streams that haven't seen traffic in a while. - Bug in pending_and_closing: don't modify the list we're looping over. - Updated pen manpage. - Deprecated -Q option (it didn't do anything since kqueue was already the default where it was available). - Fixed error handling in epoll support. - Added transparent UDP test case to testsuite.sh. - Contribution from Talik Eichinger: add X-Forwarded-Proto when doing SSL decryption. - Added tarpit test case to testsuite.sh. - Tarpit functionality to be used with the DSR mode. - pen.1: removed obsolete -S option, updated defaults for -x and -L. - In failover_server: sanity checks to failover routine. - In add_client: add the initial server to .client as well as .initial. - In failover_server: changed abuse_server to ABUSE_SERVER and emerg_server to EMERG_SERVER, to handle their default NO_SERVER values. See issue #19 on Github. - At the suggestion from Marcos Vinicius Rogowski, the hash algorith will now include the client port number if the -r (roundrobin) option is used. See https://github.com/UlricE/pen/pull/18 - Fixed IP-based client tracking. - Removed unnecessary #include <pen.h> in dlist.c - Added UDP mode for Direct Server Return. - Updated configure.ac for compatibility with CentOS 6. - Added #ifdef around SSLv3 initialization code in ssl, as suggested by jca@openbsd.org. - Transparent reverse proxy support for Linux, FreeBSD and OpenBSD. - Allow the client table size to be updated on the fly. Default size still 2048. - Allow the connection table size to be updated in the fly. Default still 500. - See penctl.1, options clients_max and conn_max. - Introduced the macro NO_SERVER to be used instead of -1 to signify error conditions and such. - Removed the fixed server table size along with the -S option. - Fixed cosmetic bug in startup code which required port to be specified on backend servers even if it was the same as the listening port. - Numerous updates to support the madness that is Windows. - Fix from Vincent Bernat: segfault when not using SSL. - DSR support using Netmap on FreeBSD. - Unbroke DSR on Linux. - Replaced all calls to perror with debug(..., strerror(errno); - Updated penlog and penlogd to use diag.[ch]. - More refactoring: broke out conn.[ch], client.[ch], server.[ch], idler.[ch]. - Made a hash index such that the load balancer may balance load. - Broke out Windows code from pen.c into windows.c. Added windows.h. - Broke out public definitions for dsr into dsr.h. - Broke out memory management into memory.[ch]. - Broke out dignostic and logging functions into diag.[ch]. - Broke out settings into settings.[ch]. - Broke out access lists into acl.[ch]. - Broke out event initialization into event.[ch]. - Added pen_epoll.h, pen_kqueue.h, pen_poll.h, pen_select.h. - Broke out pen_aton et al into netconv.[ch]. - Added dsr.c - Bug in copy_down affecting SSL connections fixed. - Updated ocsp stapling to be compatible with server name indication. - Added pen-ocsp.sh script. - SSL code broken out into ssl.[ch]. SSL context creation broken out from ssl_init to ssl_create_context. - Server Name Indication support. New command to enable: ssl_sni_path PATH where PATH is the name of a directory containing domain.key, domain.crt and domain.ca files for each domain. - OCSP stapling. New command ssl_ocsp_response filename specifies the location of the ocsp response to be stapled. The response must be pre-fetched. The idea was borrowed from Rob Stradling. - New command ssl_client_renegotiation_interval specifies the minimum number of seconds the client must wait between renegotiation requests. Default 3600. - Enabled SSL session resumption. - In do_cmd: don't print "ignoring command" for comments starting with '#'. - Added ssl_option no_tlsv1.1 and ssl_option no_tlsv1.2 to disable SSL 1.1 and 1.2 respectively. - Added autoconf check that the ECDHE is available and not disabled. - Bumped default max connections and listen queue to 500. - Support for ECDHE cipher suites. - New commands ssl_option and ssl_ciphers to individually disable insecure protocols and ciphers. - Updated penctl.1 with the new command. - New knob to tweak max number of pending nonblocking connection attempts: pending_max N (default 100). - Moved dlist prototypes to dlist.h. - Added check to close idle connections after a period of inactivity. - Penctl: idle_timeout N (default 0 = never close idle connections). - Moved git repository to GitHub.. - New feature: dummy server. Rather than acting as a proxy, Pen will pretend to be a web server with just barely enough functionality to work as a test target. - Penctl: dummy|no dummy. - Yet Another command: abort_on_error|no abort_on_error makes Pen call abort() (or not) when encountering a fatal error. - New feature: "reliable idling". Pen will make and maintain a number of idle connections to the backend servers. When a connection closes, a new one is made (hence "reliable"). Penctl: idlers [N]. - In do_cmd: return diagnostics to penctl so the user can see them, instead of uselessly sending them to syslog. - New penctl commands: - socket N (print which connection the socket belongs to) - connection N (print info on the specified connection) - close N (forcibly close connection N) - In open_listener: check that the requested port is in range. - Fixed bug in dlist_insert. - Even load distribution when a server is unavailable. - Let pen save the settings for tcp_nodelay and tcp_fastclose. - Make flush_up and flush_down return the correct value on error. - Added config.h.win with reasonable settings for Windows. - Better detection and blacklisting of unavailable servers. - New penctl commands: - tcp_nodelay sets TCP_NODELAY on sockets. Turn off with no tcp_nodelay. - tcp_fastclose closes both upstream and downstream sockets if one of them - closes theirs. Will take the values up, down, both or off (default). - Rather than making a table of pending connections every time through the main loop, keep them in a doubly linked list which is only updated as needed. O(n) -> O(1). - A bug in udp mode: after successful "connect", do not event_add downfd, because it is equal to listenfd and epoll_ctl doesn't like that. - Module kqueue.c updated. - Module poll.c: set unused fd:s to -1, or Solaris will say ENOSYS. - Enable diagnostic messages by default in configure.ac. - Changed event bookkeeping from stateless to stateful. - Made keepalive optional and added "keepalive / no keepalive" penctl command. - Added windows.c and pen.h to the release tarball. - More sensible autoconfiguration defaults: poll, kqueue, epoll, openssl and geoip are built if found unless explicitly excluded. - New event management defaults: kqueue, epoll, poll, select in that order. - New penctl commands: kqueue, epoll, poll, select. - New command line option: -O cmd where cmd is any penctl command. E.g. -O select to use select instead of the compiled-in default. - New penctl option "listen [address:]port" to allow listening address to be changed on the fly or via a configuration file. - New pen options -i and -u to install and uninstall Pen as a Windows service. - See pen manpage. - Reduced default timeout to 3 seconds. - New autoconf option --enable-debugging to enable debugging code. - Lots of fixes for compatibility with Windows. - Fixed bug in mainloop which kept trying to write 0 bytes. - MinGW port. Use Makefile.win to compile. - Event management code broken out into select.c, poll.c, kqueue.c and epoll.c. - New command-line option -m to accept multiple incoming connections in a batch. - New command-line option -q to set incoming pending connection queue length. - Close upfd when failing over. - Adjusted debug logging levels. - Started on epoll support for Linux. - Rewrote output_net and output_file to take a variable number of arguments. - Handle timed out connection attempts in mainloop_kqueue. - Fixed mainloop_kqueue. - A lot of code broken out from mainloop_select into separate functions. - Fixed mainloop_poll. - Bugfixes related to the new backend connection logic. - Cleaned up and simplified add_client() and associated circuitry. - Connections to back end servers are now nonblocking and parallel. - Removed the -n option and all code explicitly using blocking sockets. - Removed the -D option and the "delayed forward" feature. - Renamed server and client fields in the conn, client and server structures to better reflect what they are. - Restructured the add_client, store_client, store_conn and try_server functions. - Allow write_cfg to save IPv6 and GeoIP access lists. - Fixed a bug in write_cfg, where Pen would try to write to an unwritable file. Reported by Steven Myint - Return UDP replies from the server to the client. - UDP load balancing code restructured and bugfixed. - In mainloop_select: When there is a pending connection, keep accepting up to multi_accept times *or* until EAGAIN *or* connection table is full. This improves performance under load. - Updated GeoIP support for IPv6. - Servers can have ipv6 addresses. It is possible to use a mix of ipv4 and ipv6 servers: ./pen -df -S 2 -r :::2222 [::1]:22 [127.0.0.1]:22 - In order to allow server addresses with : in them (i.e. ipv6), it is now possible to use square brackets around the address part of the server specification: [address]:port (e.g. [::1]:8080). - Pen can now listen on ipv6 sockets in addition to ipv4 and unix ones. I.e. things like "pen ::1:2222 127.0.0.1:22" are now possible. - snprintf format errors reported by Christopher Meng fixed in pen.c and penctl.c. - Updated pen manpage to clarify what the control socket does. - Resist opening control socket running as root. - Remove the default file name for web log. - New feature: unix domain listening sockets. - Redesigned server and client structs to allow ipv6 addresses and require less casting (yuck) in the code. - Updated penctl man page with syntax for IPv6 and GeoIP access lists. - Fixed cosmetic signedness compiler warnings. - Moved defines for ACE_IPV4 et al outside #ifdef HAVE_SSL clause. Otherwise pen won't compile without ssl. - GeoIP access lists. - Added "special exception" clause for linking with OpenSSL. - Penlog ipv6 compatible. - Modernized automake configuration. - Penctl ipv6 compatible. - Updated autoconf to 2.69. - Updated SSL code. Protocol ssl2 removed. Default changed to tls1. - Added UDP patch from Zen. - Added patch from Debian that fixes some issues with penctl.cgi. - Priority based server selection algorithm. - Patch from Stephen P. Schaefer fixes several issues in write_cfg. - In the server_by_weight function, multiply current connections by WEIGHT_FACTOR to make the selection mo fine grained when the number of connections is small. - Patch from Dana Contreras: send stdio to /dev/null after forking. - Fixed a bunch of cosmetic signedness compiler warnings.
2019-01-10Let installed ucspi-tcp6 satisfy ucspi-tcp dependency.schmonz2-4/+4
2019-01-08Fix building on macOS 10.14adam1-1/+2
2019-01-08py-smb: updated to 1.1.27adam2-7/+7
1.1.27: Remove support for SMB-2.1 dialect which could be causing compatibility issues with Windows 2008 R2.
2019-01-08Let ucspi-tcp6, if installed, satisfy the non-'inet6' DEPENDS. Fixschmonz2-5/+5
rbldns_needcdb() to operate on rbldns_data. Ride previous bump.
2019-01-08Bump default dnscache datalimit, and version.schmonz2-4/+4
2019-01-08sniproxy: update to 0.6.0wiedi3-24/+7
2018-12-05 Dustin Lundquist <dustin@null-ptr.net> 0.6.0 Release * PROXY v1 protocol support * SO_REUSEPORT support on Linux 3.9 and later * Listener ipv6_only directive to accept only IPv6 connections * TCP keepalive
2019-01-08net: add py-prometheus_clientmarkd1-1/+2
2019-01-08py-prometheus_client: add version 0.5.0markd4-0/+99
Prometheus instrumentation library for Python applications.
2019-01-08tor: updated to 0.3.5.7adam3-11/+14
Changes in version 0.3.5.7: Tor 0.3.5.7 is the first stable release in its series; it includes compilation and portability fixes, and a fix for a severe problem affecting directory caches. The Tor 0.3.5 series includes several new features and performance improvements, including client authorization for v3 onion services, cleanups to bootstrap reporting, support for improved bandwidth- measurement tools, experimental support for NSS in place of OpenSSL, and much more. It also begins a full reorganization of Tor's code layout, for improved modularity and maintainability in the future. Finally, there is the usual set of performance improvements and bugfixes that we try to do in every release series. There are a couple of changes in the 0.3.5 that may affect compatibility. First, the default version for newly created onion services is now v3. Use the HiddenServiceVersion option if you want to override this. Second, some log messages related to bootstrapping have changed; if you use stem, you may need to update to the latest version so it will recognize them. We have designated 0.3.5 as a "long-term support" (LTS) series: we will continue to patch major bugs in typical configurations of 0.3.5 until at least 1 Feb 2022. (We do not plan to provide long-term support for embedding, Rust support, NSS support, running a directory authority, or unsupported platforms. For these, you will need to stick with the latest stable release.)
2019-01-07Update to 20180226. From the changelog:schmonz2-8/+8
- Support routes with different devs and gateways - Revive route cleanup for /sbin/route code - Support split-exclude rules from Pulse gateway - Check if resolved is enabled in nsswitch.conf prior to using it - Add support for systemd-resolved
2019-01-07Update to 8.01. From the changelog:schmonz3-8/+16
- Fix memset_s() arguments. - Fix OpenBSD build. - Clear form submissions (which may include passwords) before freeing (CVE-2018-20319). - Allow form responses to be provided on command line. - Add support for SSL keys stored in TPM2. - Fix ESP rekey when replay protection is disabled. - Drop support for GnuTLS older than 3.2.10. - Fix --passwd-on-stdin for Windows to not forcibly open console. - Fix portability of shell scripts in test suite. - Add Google Authenticator TOTP support for Juniper. - Add RFC7469 key PIN support for cert hashes. - Add protocol method to securely log out the Juniper session. - Relax requirements for Juniper hostname packet response to support old gateways. - Add API functions to query the supported protocols. - Verify ESP sequence numbers and warn even if replay protection is disabled. - Add support for PAN GlobalProtect VPN protocol (--protocol=gp). - Reorganize listing of command-line options, and include information on supported protocols. - SIGTERM cleans up the session similarly to SIGINT.
2019-01-07Get a copy of dnsroots.global from djbdns and use the copy asschmonz3-5/+9
CONF_FILES. Fixes build on NetBSD that somehow wasn't broken on OS X.
2019-01-07With the 'inet6' option, depend on djbdnscurve6 instead of djbdns.schmonz14-140/+175
Extract most of MESSAGE to README.pkgsrc. Remove vestigial Red Hat chkconfig stanza from main control script (we have pkgtools/rc.d-boot now). Use CONF_FILES where applicable. rc.d script defaults: - Tag log entries like qmail-run's; for instance, "nbtinydns" and "nbdnscache" become "nbdjbdns/tiny" and "nbdjbdns/cache". - Have tinydns listen on the network. - Auto-rebuild CDBs as needed on service start. Bump version.
2019-01-07py-smb: updated to 1.1.26adam2-7/+7
Version 1.1.26: Prevents OperationError from being raised when listPath() operation does not return any matching file results. SMBConnection is now a context manager
2019-01-06ddclient seems to lose its pidfile. It sets its proctitle early andschmonz2-16/+7
often, though; rely on that to find the process. Bump PKGREVISION.
2019-01-06rdesktop: update to 1.8.4tnn2-9/+10
Add rdp_protocol_error function that is used in several fixes Refactor of process_bitmap_updates Fix possible integer overflow in s_check_rem() on 32bit arch Fix memory corruption in process_bitmap_data - CVE-2018-8794 Fix remote code execution in process_bitmap_data - CVE-2018-8795 Fix remote code execution in process_plane - CVE-2018-8797 Fix Denial of Service in mcs_recv_connect_response - CVE-2018-20175 Fix Denial of Service in mcs_parse_domain_params - CVE-2018-20175 Fix Denial of Service in sec_parse_crypt_info - CVE-2018-20176 Fix Denial of Service in sec_recv - CVE-2018-20176 Fix minor information leak in rdpdr_process - CVE-2018-8791 Fix Denial of Service in cssp_read_tsrequest - CVE-2018-8792 Fix remote code execution in cssp_read_tsrequest - CVE-2018-8793 Fix Denial of Service in process_bitmap_data - CVE-2018-8796 Fix minor information leak in rdpsnd_process_ping - CVE-2018-8798 Fix Denial of Service in process_secondary_order - CVE-2018-8799 Fix remote code execution in in ui_clip_handle_data - CVE-2018-8800 Fix major information leak in ui_clip_handle_data - CVE-2018-20174 Fix memory corruption in rdp_in_unistr - CVE-2018-20177 Fix Denial of Service in process_demand_active - CVE-2018-20178 Fix remote code execution in lspci_process - CVE-2018-20179 Fix remote code execution in rdpsnddbg_process - CVE-2018-20180 Fix remote code execution in seamless_process - CVE-2018-20181 Fix remote code execution in seamless_process_line - CVE-2018-20182 Fix building against OpenSSL 1.1
2019-01-06Remove vestigial inet6 PLIST entries, missed in previous.schmonz1-3/+1
2019-01-06Fix PKG_SYSCONFDIR support. Run as a particular unprivileged user. Fixschmonz2-24/+34
non-"/usr/pkg" PREFIX and non-"/var" VARBASE in rc script. Bump PKGREVISION.
2019-01-05Update to 1.2.6. From the changelog:schmonz6-35/+43
# Fix compilation on some systems. # Add simplified Chinese localization. # Fix compatibility with newer GNU/automake. # Add systemd configuration file. # Automatically load if_tun on FreeBSD. # Use POSIX tree instead of linked list when libJudy is missing/disabled. # Fix C pointer aliasing violations. # Fix compilation with FreeBSD 7.2 or later.
2019-01-05Add and enable djbdnscurve6.schmonz1-1/+2
2019-01-05Initial import of djbdnscurve6, a fork of djbdns combiningschmonz7-0/+212
- IPv6 capabilities based on fehQlibs allowing the use of compactified IPv6 and LLU addresses, - a CurveDNS secured query/response for dnscache based on NaCl with an adapted Matthew Dempsky patch, - including improvements for CNAME caching, and - allowing a qualification of DNS Name Servers. - rbldns supporting now IPv6 addresses. - tinydns using now compactified IPv6 addresses within the tinydns-data data file. The decrypting djbdnscurve6 stub resolver can be used as standard lib for other programs.
2019-01-05Remove commented-out 'inet6' option. Add CONFLICTS with djbdnscurve6.schmonz2-15/+4
2019-01-04py-cares: updated to 2.4.0adam3-13/+13
Version 2.4.0 - misc: fix building wheels for unavailable Python versions - test: skip getaddrinfo6 test on Travis - doc: add FreeBSD building instructions - build: fix MinGW build - ci, misc: add support for CPython 3.7 - ci: run on latest PyPy versions on TravisCI - examples: extra examples - ci: fix AppVeyor build - test: fix TXT test - core: fix repr for PTR results
2019-01-04py-netifaces: updated to 0.10.9adam2-7/+7
0.10.9: ??? 0.10.8: * Fixed a bug that in certain circumstances could lead to an infinite loop in netifaces.gateways() (thanks asomers). * Fixed a memory management bug in an error path
2019-01-03synergy: downgrade 2.0.0 to 1.10.1tnn3-12/+10
It is sort of an update though. If you are interested in upstream drama you can read here for the details: https://symless.com/blog Also users might want to switch to wip/barrier instead. v1.10.1-stable Bug fixes: #6339 Windows validating install step freezes #6374 Windows background service crashes randomly #6376 Undeclared identifier compile error in VS2017 Enhancements: #6372 Forced use of TLS 1.2 without fallback method #6338 Auto config checkbox on settings screen #6384 Removal of GPL screen on Windows installer #6383 Extend foreground mode for Windows daemon #6382 Code comment for MSVC debugger logging #6380 Compile without warnings using VS2017 v1.10.0-stable Bug fixes: #6347 Log to file defaults to unwritable location #6345 Losing GUI config when restarting the OS #4991 Oversized Bonjour protocol name could conflict Enhancements: #6348 Use different hard coded Qt path for CI #6346 CLI argument to control screen lock feature #6344 Customizable size limit on clipboard sharing #6332 Decouple version from CI build properties #6319 Bonjour auto-config disabled by default #6318 Hide TIS/TSM error on config app log #6312 Removal of redundant CURL library #6306 Show version number in config app title #6305 Support for Raspbian in package config #6301 Combine enterprise and community codebases
2019-01-03samba4: use external tevent and tdb; bump revisionadam3-22/+9
2019-01-01gallery-dl: Update to 1.6.2leot3-8/+11
Changes: 1.6.2 ----- - Added support for: - `instagram` - https://www.instagram.com (#134) - Added support for multiple items on sta.sh pages (#113) - Added option to download `tumblr` avatars (#137) - Changed defaults for visited post types and inline media on `tumblr` - Improved inline extraction of `tumblr` posts (#133, #137) - Improved error handling and retry behavior of all API calls - Improved handling of missing fields in format strings (#136) - Fixed hash extraction for unusual `tumblr` URLs (#129) - Fixed image subdomains for `hitomi` galleries (#142) - Fixed and improved miscellaneous issues for `kissmanga` (#20), `luscious`, `mangapark`, `readcomiconline`
2019-01-01hub: Update to 2.7.0leot3-9/+49
Changes: 2.7.0 ----- ## Features * Add support for `hub pr list --state=merged` * Add base/head/merge commit SHA and merged date information to `hub pr list --format=FORMAT` * Un-deprecate converting issues to pull requests with `hub pull-request -i <issue>` 2a748a048d6903eca78332a484e63f8d647caf02 ## Fixes * Improve detecting default `hub pull-request` base branch name * Avoid the `Aborted: the origin remote doesn't point to a GitHub repository` error by allowing other git remotes as fallback * Improve `hub create` dealing with an existing "origin" remote * Fix 256-color terminal support for macOS Terminal.app * Don't choke on literal `%` output characters when using `--format=FORMAT` * Replace deprecated Dial with DialContext ## Documentation * Document how we scan git remotes and branch tracking information https://hub.github.com/hub.1.html#CONVENTIONS * Indicate that long-form CLI flags with values must use the equal sign like `--message=VALUE`
2018-12-31py-grpcio: Add NetBSD supportleot2-4/+16
2018-12-31grpc: Add NetBSD supportleot3-9/+52
2018-12-31mikutter: update to 3.8.4.tsutsui2-8/+8
Upstream changes: mikutter 3.8.4 * gtk2 3.3.0 * photo_support: support for Amazon product images * thanks cob odo
2018-12-31youtube-dl: Update to 20181231leot2-7/+7
Changes: version 2018.12.31 Extractors + [bbc] Add support for another embed pattern (#18643) + [npo:live] Add support for npostart.nl (#18644) * [beeg] Fix extraction (#18610, #18626) * [youtube] Unescape HTML for series (#18641) + [youtube] Extract more format metadata * [youtube] Detect DRM protected videos (#1774) * [youtube] Relax HTML5 player regular expressions (#18465, #18466) * [youtube] Extend HTML5 player regular expression (#17516) + [liveleak] Add support for another embed type and restore original format extraction + [crackle] Extract ISM and HTTP formats + [twitter] Pass Referer with card request (#18579) * [mediasite] Extend URL regular expression (#18558) + [lecturio] Add support for lecturio.de (#18562) + [discovery] Add support for Scripps Networks watch domains (#17947)
2018-12-27py-bonjour currently doesn't support Python 3.x, mark it so.joerg1-1/+3
2018-12-27Fix PLIST for Python 2.x build.joerg1-3/+3
2018-12-27Needs pkg-config.joerg1-1/+3
2018-12-27async is a keyword in Python 3.7, rename. Bump revision.joerg3-2/+48
2018-12-27async and await are keywords in Python 3.7, so rename them. Bump revision.joerg4-2/+178
2018-12-26vsftpd: more general fix for #53002adam1-2/+2
2018-12-22net/py-boto: fix ALTERNATIVES filetaca2-23/+23
Fix ALTERNATIVES file syntax. Bump PKGREVISION.
2018-12-22py-smbc: added version 1.0.15.8adam5-1/+35
This is a set of Python bindings for the libsmbclient library from the samba project.