This module implements a set of requests TransportAdapter, PoolManager,
ConnectionPool and HTTPSConnection with one goal only: to use a specific IP
address when connecting via SSL to a web service without running into SNI
trouble.
The usual technique to force an IP address on an HTTP connection with Requests
is (assuming I want http://example.com/some/path on IP 1.2.3.4):
requests.get("http://1.2.3.4/some/path", headers={'Host': 'example.com'})
This is useful if I want to specifically test how 1.2.3.4 is responding; for
instance, if example.com is DNS round-robined to several IP addresses and I want
to hit one of them specifically.
WWW: https://github.com/Roadmaster/forcediphttpsadapter
uhashring implements consistent hashing in pure Python.
Consistent hashing is mostly used on distributed systems/caches/databases as
this avoid the total reshuffling of your key-node mappings when adding or
removing a node in your ring (called continuum on libketama).
WWW: https://github.com/ultrabug/uhashring
bmemcached is a pure python module (thread safe) to access memcached via it's
binary with SASL auth support.
The main purpose of this module it to be able to communicate with memcached
using binary protocol and support authentication, so it can work with Heroku for
example.
WWW: https://github.com/jaysonsantos/python-binary-memcached
After switch to meson libp11-kit.so no longer has symbols
in the LIBP11_KIT_1.0 namespace. As a workaround, bump
PORTREVISION of consumers to get those rebuilt.
See more details in the comments of the linked PR.
PR: 248819
Reported by: John Hein
Mutagen is a plugin to pytest that makes it easy to do mutation
testing. Mutation testing is a method of testing your tests. Mutagen
helps you to define "mutant" versions of your code - code which is
intentionally buggy - then you run your test suite on these mutants
and verify that your tests actually catch the bugs. Mutation testing
helps you to gauge test coverage and verify that your tests are
good enough to exercise interesting behaviors in your code.
WWW: https://pypi.org/project/pytest-mutagen/
Add a patch from an upstream merge request to fix the build of
net/isc-dhcp44-client when built with -fno-common, which is the default with
llvm 11.
MFH: 2020Q3 (implicit, -fno-common fixes, ok by joenum)
Add -fcommon to cad/gmsh to fix the build on current with llvm 11.
This is a stop-gap measure since an update which fixes the -fno-common issue
is waiting for approval.
PR: 248996
Name and/or location of the configuration file may be changed
with mpd_flags, in which case required_files prevents starting service.
It is no big deal if mpd5 started with missing configuration file
because it just prints a warning to the log and exits in that case.
PR: 248993
- Remove dependency on libexo exo-csource which has been deprecated
upstream and add one on xfce4-dev-tools xdt-csource
Approved by: woodsb02 (maintainer)
Differential Revision: https://reviews.freebsd.org/D26224