nixpkgs/pkgs/tools/networking
Profpatsch bf33c0e62e skawarePackages: Fall 2021 release
Maintainers Notes below.

~~~

 Hello,

 New versions of all the skarnet.org packages are available.

 skalibs has undergone a major update, with a few APIs having disappeared,
and others having changed. Compatibility with previous versions is  *not*
assured.
 Consequently, all the rest of the skarnet.org software has undergone
at least a release bump, in order to build with the new skalibs. But
some packages also have new functionality added (hence, a minor bump),
and others also have their own incompatible changes (hence, a major bump).

 The new versions are the following:

skalibs-2.11.0.0          (major)
nsss-0.2.0.0              (major)
utmps-0.1.0.3             (release)
execline-2.8.1.0          (minor)
s6-2.11.0.0               (major)
s6-rc-0.5.2.3             (release)
s6-portable-utils-2.2.3.3 (release)
s6-linux-utils-2.5.1.6    (release)
s6-linux-init-1.0.6.4     (release)
s6-dns-2.3.5.2            (release)
s6-networking-2.5.0.0     (major)
mdevd-0.1.5.0             (minor)
bcnm-0.0.1.4              (release)
dnsfunnel-0.0.1.2         (release)

Additionally, a new package has been released:
smtpd-starttls-proxy-0.0.1.0

 Dependencies have all been updated to the latest versions. They are,
this time, partially strict: libraries and binaries may build with older
releases of their dependencies, but not across major version bumps. The
safest approach is to upgrade everything at the same time.

 You do not need to recompile your s6-rc service databases or recreate
your s6-linux-init run-images.
 You should restart your supervision tree after upgrading skalibs and s6,
as soon as is convenient for you.

 Details of major and minor package changes follow.

* skalibs-2.11.0.0
  ----------------

 - A lot of obsolete or useless functionality has been removed:
libbiguint, rc4, md5, iobuffer, skasigaction, environ.h and
getpeereid.h headers, various functions that have not proven their
value in a while.
 - Some functions changed signatures or changed names, or both.
 - All custom types ending in _t have been renamed, to avoid treading on
POSIX  namespace. (The same change has not been done yet in other
packages,  but skalibs was the biggest offender by far.)
 - Signal functions have been deeply reworked.
 - cdb has been reworked, the API is now more user-friendly.
 - New functions have been added.

 The deletion of significant portions of code has made skalibs leaner.
libskarnet.so has dropped under 190 kB on x86_64.
 The cdb rewrite on its own has helped reduce an important amount of
boilerplate in cdb-using code.
 All in all, code linked against the new  skalibs should be slightly
smaller and use a tiny bit less RAM.

 https://skarnet.org/software/skalibs/
 git://git.skarnet.org/skalibs

* nsss-0.2.0.0
  ------------

 - Bugfixes.
 - nsss-switch wire protocol slightly modified, which is enough to
warrant a major version bump.
 - _r functions are now entirely thread-safe.
 - Spawned nsssd programs are now persistent and only expire after a
timeout on non-enumeration queries. This saves a lot of forking with
applications that can call  primitives such as getpwnam() repeatedly, as
e.g. mdevd does when  initially parsing its configuration file.
 - New nsssd-switch program, implementing real nsswitch functionality
by dispatching queries to various backends according to a script.
It does not dlopen a single library or read a single config file.

 https://skarnet.org/software/nsss/
 git://git.skarnet.org/nsss

* execline-2.8.1.0
  ----------------

 - Bugfixes.
 - New binary: case. It compares a value against a series of regular
expressions, executing into another command line on the first match.

 https://skarnet.org/software/execline/
 git://git.skarnet.org/execline

* s6-2.11.0.0
  -----------

 - Bugfixes.
 - Some libs6 header names have been simplified.
 - s6-svwait now accepts -r and -R options.
 - s6-supervise now reads an optional lock-fd file in the service
directory; if it finds one, the first action of the service is to take
a blocking lock. This prevents confusion when a controller process dies
while still leaving workers holding resources; it also prevents log
spamming on user mistakes (autobackgrounding services, notably).
 - New binaries: s6-socklog, s6-svlink, s6-svunlink. The former is a
rewrite of smarden.org's socklog program, in order to implement a fully
functional syslogd with only s6 programs. The latter are tools that start
and stop services by symlinking/unlinking service directories from a
scan directory, in order to make it easier to integrate s6-style services
in boot scripts for sequential service managers such as OpenRC.

 https://skarnet.org/software/s6/
 git://git.skarnet.org/s6

* s6-networking-2.5.0.0
  ---------------------

 - Bugfixes.
 - minidentd has been removed. It was an old and somehow still buggy
piece of  code that was only hanging around for nostalgia reasons.
 - Full support for client certificates. Details of the client
certificate are transmitted to the application via environment
variables (or via an environment string in the case of opportunistic
TLS).
 - Full SNI support, including server-side. (That involved a deep dive
into the bearssl internals, which is why it took so long.) The filenames
containing secret keys and certificates for <domain> are read in the
environment variables KEYFILE:<domain> and CERTFILE:<domain>.

 Complete client certificate and SNI support now make the TLS part of
s6-networking a fully viable replacement of stunnel and other similar
TLS tunneling tools. This is most interesting when s6-networking is
built against bearssl, which uses about 1/9 of the resources that OpenSSL
needs.

 https://skarnet.org/software/s6-networking/
 git://git.skarnet.org/s6-networking

* mdevd-0.1.5.0
  -------------

 - A new option to mdevd is available: -O <nlgroups>.
This option makes mdevd rebroadcast uevents to a netlink group (or set
of netlink groups) once they have been handled. This allows applications
to read uevents from a netlink group *after* the device manager is done
with them. This is useful, for instance, when pairing mdevd with
libudev-zero for full udev emulation.
 - The * and & directives, which previously were only triggered by
"add" and "remove" actions, are now triggered by *all* action types.
This gives users full scripting access to any event, which can be
used to implement complex rules similar to udev ones.

 These two changes make it possible to now build a full-featured desktop
system based on mdevd + libudev-zero, without running systemd-udevd or
eudev.

 https://skarnet.org/software/mdevd/
 git://git.skarnet.org/mdevd

* smtpd-starttls-proxy-0.0.1.0
  ----------------------------

 This new package, in conjunction with the latest s6-networking,
implements the STARTTLS functionality for inetd-like mail servers that
do not already support it. (Currently only tested with qmail-smtpd.)
If you have noticed that sending mail to skarnet.org supports STARTTLS
now, it is thanks to this little piece of software.

 https://skarnet.org/software/smtpd-starttls-proxy/
 git://git.skarnet.org/smtpd-starttls-proxy

 Enjoy,
 Bug-reports welcome.

 Laurent
2021-09-27 14:28:43 +02:00
..
6tunnel
acme-client
ahcpd tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
aircrack-ng tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
airfield
altermime
amass amass: 3.13.3 -> 3.13.4 (#130727) 2021-07-20 11:06:10 +02:00
anevicon
argus
argus-clients
aria2 aria: 1.35.0 -> 1.36.0 2021-08-21 10:38:42 +00:00
arping
arpoison tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
assh assh: buildFlagsArray -> ldflags 2021-08-21 18:23:50 +10:00
atftp atftp: enable tests 2021-09-18 15:52:54 +01:00
atinout
autossh
axel
babeld
bacnet-stack
badvpn
bandwhich bandwhich: add SuperSandro2000 as maintainer 2021-08-07 12:22:46 +02:00
bgpdump bgpdump: 1.6.0 -> 1.6.2 2021-08-22 16:16:27 +02:00
bgpq3
bgpq4 bgpq4: 0.0.7 -> 1.2 2021-08-20 17:08:49 +00:00
biosdevname
bitmask-vpn bitmask-vpn: init at 0.21.6 2021-09-22 00:04:12 +09:00
bore
boringtun
boundary boundary: 0.6.0 -> 0.6.1 2021-09-23 04:29:19 +00:00
brook brook: 20200201 -> 20210701 2021-08-22 17:17:51 +08:00
bsd-finger tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
bud
bukubrow
bully
burpsuite burpsuite: 2021.8 -> 2021.8.1 2021-08-14 06:33:06 +03:00
bwm-ng bwm_ng: 0.6.1 -> 0.6.3 2021-08-30 11:03:31 +02:00
cadaver tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
calendar-cli
cantoolz
carddav-util tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
cassowary treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
cbftp cbftp: init at 1173 2021-08-14 14:10:06 -03:00
cdpr cdpr: init at 2.4 2021-07-21 15:25:21 +02:00
changetower changetower: init at 1.0 2021-08-23 19:10:08 +02:00
chaos
checkip checkmate: init at 0.4.1 2021-09-05 00:54:05 +02:00
chisel treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
chrony
circus
cjdns
cksfv cksfv: format, cleanup 2021-08-12 01:18:19 +02:00
clash treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
cloud-custodian
cmst treewide: remove unnecessary enableParallelBuilding when using qmake 2021-07-20 10:32:58 +07:00
cntlm
cocom
connect
connman
corerad corerad: 0.3.3 -> 0.3.4 2021-09-03 11:10:05 -04:00
corkscrew
crackle
croc croc: 9.2.1 -> 9.3.0 2021-08-16 22:01:52 +02:00
curl pkgsStatic.curl: fix build 2021-09-07 16:48:03 +09:00
curl-unix-socket tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
curlie curlie: 1.6.0 -> 1.6.2 2021-07-11 03:22:34 +00:00
darkstat
davix
dd-agent datadog-agent: Add process to default integrations. 2021-09-11 15:32:14 -07:00
ddclient Merge pull request #119713 from uonr/master 2021-07-13 22:03:12 +02:00
dhcp dhcp: was relicensed from ISC to MPL2.0 in 2018 2021-07-11 22:11:34 +02:00
dhcpcd treewide: ensure pre/post phase hooks are strings 2021-08-20 19:08:42 -04:00
dhcpdump tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
dhcping
dibbler
dirb
djbdns
dnschef dnschef: init at 0.4 2021-08-05 07:12:10 -06:00
dnscrypt-proxy2 dnscrypt-proxy2: 2.0.45 -> 2.1.0 2021-08-15 03:26:21 +00:00
dnscrypt-wrapper
dnsmasq
dnsperf
dnsproxy dnsproxy: 0.39.5 -> 0.39.7 2021-09-22 04:44:55 +00:00
dnstop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
dnstracer
dnstwist
dnsviz
dogdns
driftnet
drill
dropbear tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
dsniff
easyrsa
eggdrop eggdrop: 1.8.4 -> 1.9.1 2021-08-08 10:26:38 +00:00
email tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
eternal-terminal
evillimiter
fakeroute
fastd
fdm
ferm
filegive filegive: use https 2021-08-12 01:19:38 +02:00
findomain findomain: 4.3.0 -> 5.0.0 2021-08-10 14:14:37 +00:00
flannel cni-plugin-flannel: unstable-2021-09-10 -> 1.0 2021-09-21 18:59:50 +10:00
flvstreamer tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
fping tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
freebind
frp frp: 0.36.1 -> 0.37.1 2021-08-08 11:49:40 +00:00
gandi-cli
getmail treewide: remove meta.version 2021-07-18 00:07:38 +02:00
getmail6
ghostunnel ghostunnel: format 2021-08-02 10:58:45 +02:00
globalprotect-openconnect
gmrender-resurrect
gnirehtet
go-shadowsocks2
gobgp gobgp: 2.30.0 -> 2.31.0 2021-09-16 09:33:24 +00:00
goimapnotify goimapnotify: 2.0 -> 2.3.2 2021-08-29 22:49:37 +08:00
goklp
goreplay
gping
grpcui treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
grpcurl treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
guardian-agent
gupnp-tools
gvpe
gvproxy gvproxy: init at 0.1.0 2021-08-24 06:59:20 +10:00
hans
haproxy haproxy: 2.3.13 -> 2.3.14 2021-09-19 13:00:16 +02:00
hey
horst
hp2p hp2p: init at 3.3 2021-08-26 11:03:54 +02:00
hping
hss
htpdate
http2tcp
http-prompt pythonPackages: normalise prompt_toolkit 2021-07-23 16:36:39 +02:00
httperf
httpie
httping
httplab
httplz
httpstat
httptunnel
hue-cli
hurl hurl: 1.3.0 -> 1.3.1 2021-09-14 11:20:32 +00:00
hyenae tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
i2p i2p: get rid of duplicate Java Service Wrapper 2021-09-22 20:42:33 +02:00
i2pd i2pd: 2.38.0 -> 2.39.0 2021-08-24 06:36:52 +00:00
ifstat-legacy ifstat: build on darwin 2021-07-12 19:35:55 -04:00
iftop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
igmpproxy
imapproxy tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
imapsync tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
inadyn
inetutils inetutils: 2.0 -> 2.2 2021-09-03 10:33:46 +09:00
innernet innernet: 1.4.1 -> 1.5.0 2021-09-17 07:54:38 +02:00
iodine
iouyap
ip2location
ip2unix
ipcalc ipcalc: 0.4.1 -> 1.0.1 2021-08-30 19:09:36 +02:00
iperf iperf: 3.9 -> 3.10.1 (#136027) 2021-08-29 22:10:43 +02:00
ipgrep
ipinfo ipinfo: 2.0.2 -> 2.1.1 2021-08-19 17:59:51 +02:00
ipv6calc ipv6calc: 2.2.0 -> 3.2.0 2021-08-30 13:33:21 +02:00
isync isync: 1.4.2 -> 1.4.3 2021-07-29 21:16:40 +02:00
iwgtk iwgtk: init at 0.4 2021-07-20 21:44:41 -04:00
jnettop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
junkie
jwhois jwhois: fix on aarch64-darwin 2021-09-14 06:50:35 +01:00
kail
kapp kapp: 0.39.0 -> 0.40.0 2021-09-16 12:04:18 +00:00
kea kea: 1.9.10 -> 1.9.11 2021-09-09 21:11:23 +02:00
keepalived
lftp
libnids
libreswan libreswan: 4.4 -> 4.5 2021-08-30 09:16:31 +02:00
linkchecker pythonPackages: deprecate ConfigArgParse alias 2021-07-21 13:32:54 +02:00
linux-router linux-router: init at 0.6.2 2021-09-12 10:13:27 +02:00
lldpd
logmein-hamachi
lsh tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
lxi-tools
lychee
maildrop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
mailsend
mailutils
maphosts Merge pull request #130757 from SuperSandro2000/SuperSandro2000-patch-4 2021-07-20 14:31:22 +02:00
maxscale
mcrcon
mdk4
megatools
memtier-benchmark
minidlna
minio-client minio-client: 2021-07-27T06-46-19Z -> 2021-09-02T09-21-27Z 2021-09-14 16:46:18 +00:00
minissdpd
miniupnpc
miniupnpd tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
miredo
mmsd
modemmanager modemmanager: fix pname/directory 2021-08-10 12:06:57 +02:00
moodle-dl
mosh mosh: fix on aarch64-darwin 2021-09-13 05:41:45 +01:00
mozwire
mpack tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
mtr
mu mu: 1.6.5 -> 1.6.6 2021-09-06 09:43:15 +02:00
mubeng mubeng: 0.4.5 -> 0.5.2 2021-08-17 11:00:22 -07:00
n2n n2n: init at 2.8 2021-07-12 00:24:35 +02:00
nat-traverse
nbd tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
ncftp
ndisc6 tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
ndjbdns
nebula treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
netboot tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
netcat tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
nethogs
netifd
netkit/tftp tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
netmask
netrw
netselect
netsniff-ng
nettee
networkmanager Merge master into staging-next 2021-09-12 12:01:10 +00:00
nfdump nfdump: 1.6.22 -> 1.6.23 2021-08-17 10:54:02 -07:00
nfstrace
ngrep
ngrok-1 ngrok-1: buildFlags -> tags 2021-08-06 11:29:32 +10:00
ngrok-2 ngrok: fix build on aarch64-darwin 2021-07-14 11:14:12 -07:00
nikto
noip tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
notemap
nss-mdns tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
nss-pam-ldapd
ntopng tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
ntp tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
nttcp nttcp: cleanup 2021-07-29 14:11:51 +02:00
ntttcp ntttcp: init at 1.4.0 2021-09-13 13:57:04 +02:00
nuttcp
nxdomain
nylon tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
nyx
nzbget Merge pull request #132722 from aanderse/nixos/nzbget 2021-08-29 12:25:37 -04:00
oapi-codegen oapi-codegen: 1.6.0 -> 1.8.2 2021-08-15 13:23:45 +00:00
obfs4
ocproxy
ocserv
offlineimap offlineimap: 7.3.3 -> 7.3.4 (#136145) 2021-08-31 09:17:09 -04:00
ofono ofono: fix config loading directory properly 2021-08-23 14:08:41 +02:00
oha oha: init at 0.4.6 2021-09-09 10:03:45 -04:00
olsrd
oneshot oneshot: 1.5.0 -> 1.5.1 2021-09-15 11:35:29 +02:00
ookla-speedtest ookla-speedtest: init at 1.0.0 (#130300) 2021-07-16 09:45:37 +02:00
openapi-generator-cli openapi-generator-cli: 5.2.0 -> 5.2.1 2021-08-22 09:16:48 +00:00
openconnect
openfortivpn
openntpd
openresolv
opensm opensm: 3.3.23 -> 3.3.24 2021-08-17 10:41:56 -07:00
opensnitch nixos/opensnitch: include systemd unit 2021-09-14 18:32:56 +02:00
openssh Merge master into staging-next 2021-09-23 00:01:50 +00:00
openvpn
p2p azureus: drop 2021-08-02 13:28:38 +02:00
packetdrill
pacparser
par2cmdline
passh
pcapc
pcapfix tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
pdnsd tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
pdsh tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
persepolis
philter
phodav
photon
pingtcp
pirate-get
pixiecore
pixiewps
pmacct
polygraph tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
polysh
ppp ppp: 2.4.8 -> 2.4.9 2021-07-21 15:20:44 +02:00
pptp
pptpd
prettyping
pritunl-ssh
privoxy
proxify proxify: 0.0.3 -> 0.0.4 2021-07-27 18:46:57 +02:00
proxychains proxychains: revert commit e6b5d5401e42346a0a2190a 2021-08-29 19:21:06 +08:00
proxychains-ng proxychains-ng: init at 4.15 2021-09-18 00:49:38 +08:00
pssh
pwnat
py-wmi-client
pykms
qrcp
quickserve
quicktun
radsecproxy
radvd
ratools
rcon
rdrview rdrview: unstable-2020-12-22 -> unstable-2021-05-30 2021-08-20 16:10:30 +00:00
reaver-wps
reaver-wps-t6x
redfang
redir
redsocks
ripmime
rp-pppoe
rshijack
rtptools
s3cmd
s3gof3r
s3rs
s4cmd
s5cmd s5cmd: 1.2.1 -> 1.3.0 2021-08-22 12:56:36 +00:00
s6-dns skawarePackages: Fall 2021 release 2021-09-27 14:28:43 +02:00
s6-networking skawarePackages: Fall 2021 release 2021-09-27 14:28:43 +02:00
saldl
samplicator
shadowfox treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
shadowsocks-libev
shadowsocks-rust
shadowsocks-v2ray-plugin
shncpd
shorewall
siege siege: 4.0.9 -> 4.1.1 2021-07-16 23:27:11 +02:00
simpleproxy
sipcalc
sipsak sipsakw: switch to fetchFromGitHub 2021-09-22 17:54:09 +02:00
sish sish: 1.1.6 -> 1.1.7 2021-09-15 22:35:05 +00:00
slack-cli
slirp4netns slirp4netns: 1.1.11 -> 1.1.12 2021-08-03 20:36:52 +10:00
smartdns smartdns: Fix systemd service 2021-09-18 12:51:19 +08:00
smokeping
snabb
sniffglue sniffglue: 0.13.0 -> 0.13.1 2021-09-14 23:32:37 +00:00
snmpcheck snmpcheck: init at 1.9 2021-08-01 09:46:29 +02:00
socat socat2pre: remove 2021-08-22 17:01:47 +02:00
sockperf sockperf: init at 3.7 2021-07-27 21:33:47 +10:00
spiped
spoof-mac spoof-mac: init at unstable-2018-01-27 2021-09-08 00:51:17 -05:00
spoofer spoofer: 1.4.6 -> 1.4.7 2021-08-22 06:31:14 +00:00
srelay tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
ssh-agents
ssh-askpass-fullscreen
ssh-ident
sshoogr
sshpass
sshping
ssldump ssldump: 1.1 -> 1.4 2021-08-28 12:12:04 +02:00
sslsplit
ssmtp ssmtp: cleanup, format 2021-08-02 13:15:47 +02:00
sstp sstp: rename phase 2021-09-05 11:22:45 +02:00
stevenblack-blocklist stevenblack-blocklist: 3.7.13 -> 3.8.2 2021-07-20 01:12:14 +08:00
strongswan strongswan: refactor to load from GitHub instead of archives 2021-07-26 19:59:18 +00:00
stubby
stun
stunnel stunnel: 5.59 -> 5.60 2021-08-21 00:28:00 +02:00
stuntman stuntman: init at 1.2.16 2021-09-12 08:22:04 -05:00
subfinder
surfraw tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
swagger-codegen
swagger-codegen3
swaks
swec tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
tayga
tcp-cutter
tcpdump
tcpflow
tcpreplay
tcptraceroute tcptraceroute: switch to fetchFromGitHub 2021-09-22 17:54:10 +02:00
tdns-cli
telepresence
telepresence2 treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
tendermint tendermint: 0.34.12 -> 0.34.13 2021-09-14 00:56:41 +00:00
termshark termshark: 2.2.0 -> 2.3.0 2021-09-15 00:59:09 +00:00
tftp-hpa
tgt
tinc
tinyfecvpn
tinyproxy
tlspool
tnat64
toss
tox-node
toxvpn toxvpn: format, cleanup 2021-08-02 13:14:13 +02:00
tracebox tracebox: switch to fetchFromGitHub 2021-09-22 17:54:44 +02:00
traceroute
trickle tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
tridactyl-native
tunnelto tunnelto: 0.1.12 -> 0.1.18 2021-08-17 16:20:39 +00:00
twa
ua
ubridge
ucspi-tcp tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
udptunnel tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
uget
uget-integrator
unbound Merge branch 'master' into staging-next 2021-08-25 19:42:15 +02:00
updog
uqmi
urlwatch
userhosts userhosts: init at 1.0.0 2021-07-16 09:44:58 +02:00
uwimap tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
v2ray v2ray: 4.41.1 -> 4.42.1 2021-09-12 21:55:03 +08:00
vde2 tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
vegeta
vlan tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
vpn-slice
vpnc tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
vpnc-scripts vpnc-scripts: add missing dependency iproute2 2021-07-21 15:59:30 +02:00
vtun tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
waitron
wakelan tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
wakeonlan
wavemon wavemon: 0.9.3 -> 0.9.4 2021-09-19 23:43:35 +02:00
wbox
webalizer tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
webwormhole
weighttp
wget wget: 1.21.1 -> 1.21.2 2021-09-19 15:53:14 +00:00
wget2
whois whois: 5.5.8 -> 5.5.10 2021-07-28 21:07:34 +02:00
wifish
wifite2 wifite2: add pixiewps dependency 2021-09-25 17:54:14 +07:00
wireguard-go wireguard-go: licence update 2021-08-16 16:40:31 +03:00
wireguard-tools wireguard-tools: 1.0.20210424 -> 1.0.20210914 2021-09-16 09:56:12 +02:00
wol
wolfebin
wormhole-william
wrk
wrk2
wuzz
x11-ssh-askpass tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
xh xh: 0.12.0 -> 0.13.0 2021-09-17 18:55:47 +00:00
xl2tpd
xnbd tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
yggdrasil treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
yrd
ytcc ytcc: 2.3.0 -> 2.4.1 2021-09-26 12:02:38 +00:00
zap
zerotierone zerotierone: 1.6.5 -> 1.6.6 2021-09-23 08:55:44 +02:00
zs-apc-spdu-ctl
zs-wait4host
zssh treewide: convert all links git.archlinux.org to github.com/archlinux/svntogit-* 2021-07-14 03:35:21 +02:00