3
0
Fork 0
forked from mirrors/nixpkgs
Commit graph

319404 commits

Author SHA1 Message Date
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
markuskowa e3e5fc9bf1
Merge pull request #136925 from Artturin/snapperfix
nixos/snapper: change timer wantedBy to timers.target & add snapshotOnBoot
2021-09-27 14:13:34 +02:00
Aaron Andersen cdfe909dae
Merge pull request #139357 from arezvov/zabbix_ipmi_support
zabbix: add IPMI support
2021-09-27 08:07:07 -04:00
Bobby Rong 5c4181fa0c
Merge pull request #135986 from r-ryantm/auto-update/sigrok-cli
sigrok-cli: 0.7.1 -> 0.7.2
2021-09-27 20:00:57 +08:00
figsoda 57d3c9eb22
Merge pull request #139620 from illdefined/vim-plugins-update
vimPlugins.deoplete-emoji: Drop plugin
2021-09-27 07:49:13 -04:00
Michele Guerini Rocco d64827a3a1
Merge pull request #139594 from deviant/postfix-virtual-section
nixos/postfix: Fix virtual alias manpage section
2021-09-27 13:43:41 +02:00
happysalada 1cbb0feae5 erlang: fix nix-env version confusion 2021-09-27 20:39:30 +09:00
Mikael Voss 39f0cfdd12
vimPlugins.deoplete-emoji: Drop plugin
Upstream repository has been deleted.
2021-09-27 13:18:12 +02:00
Bobby Rong 5086684ead
Merge pull request #139583 from Vonfry/update/fcitx5
fcitx5{-rime}: 5.0.8 -> 5.0.9
2021-09-27 17:13:11 +08:00
Matthieu Coudron 639df4e23a
Merge pull request #139312 from jbedo/r-broken
rPackages: mark packages as broken when generating package sets
2021-09-27 10:32:30 +02:00
Fabian Affolter 92357f5e0b
Merge pull request #139600 from fabaff/lupupy
python3Packages.lupupy: init at 0.0.21
2021-09-27 09:34:29 +02:00
Fabian Affolter 9f5950ebec
Merge pull request #139602 from fabaff/bump-ge25519
python3Packages.ge25519: 0.2.0 -> 1.0.0, python3Packages.fe25519: 0.3.0 -> 1.0.0
2021-09-27 09:34:10 +02:00
Fabian Affolter bc3fafdfb1
Merge pull request #139303 from fabaff/bump-teleport
teleport: 7.1.2 -> 7.1.3
2021-09-27 09:33:48 +02:00
Fabian Affolter 77187783c4 python3Packages.fe25519: 0.3.0 -> 1.0.0 2021-09-27 09:03:05 +02:00
Fabian Affolter 56c4710770 python3Packages.ge25519: 0.2.0 -> 1.0.0 2021-09-27 09:02:45 +02:00
Travis A. Everett 1dd78cbd74 resholve: 0.6.5 -> 0.6.6, respect buildInputs 2021-09-27 16:01:09 +09:00
Travis A. Everett 407ff07598 resholve: 0.6.4 -> 0.6.5 2021-09-27 16:01:09 +09:00
Travis A. Everett 8b2cd3a79a resholve: 0.6.3 -> 0.6.4 2021-09-27 16:01:09 +09:00
Travis A. Everett 679b29d33d resholve: 0.6.2 -> 0.6.3, fix readme 2021-09-27 16:01:09 +09:00
Travis A. Everett 6568f18ea3 resholve: 0.6.1 -> 0.6.2 2021-09-27 16:01:09 +09:00
Travis A. Everett b5833091d4 resholve: 0.6.0 -> 0.6.1, add resholveScript* fns 2021-09-27 16:01:09 +09:00
Travis A. Everett 67ec4fa479 resholve: fix review nits from #138080 2021-09-27 16:01:09 +09:00
Travis A. Everett a649cbca09 resholvePackage: extract util functions
Extract argument-handling utility functions to prepare for adding
resholveScript* functions.

This tracks upstream work, but I broke it up a little more semantically here
in case it aids review. See:
6aab748205
2021-09-27 16:01:09 +09:00
Fabian Affolter 541fd9936d home-assistant: update component-packages 2021-09-27 08:49:30 +02:00
Fabian Affolter 194eb79288 python3Packages.lupupy: init at 0.0.21 2021-09-27 08:48:51 +02:00
Leo Maroni 7b03c7ee60 vikunja-frontend: 0.18.0 -> 0.18.1 2021-09-27 08:27:36 +02:00
Leo Maroni b24780c6b4 vikunja-api: 0.18.0 -> 1.18.1 2021-09-27 08:27:36 +02:00
Mikael Voss d08244d50e sydbox: init at 2.2.0 2021-09-27 08:15:44 +02:00
Brecht Savelkoul 5655e71eee lighttpd: remove null defaults for input packages 2021-09-27 07:33:27 +02:00
Brecht Savelkoul 8a585fd5c5 nixos/lighttpd: support new authentication modules 2021-09-27 07:33:27 +02:00
Brecht Savelkoul baa04706d7 lighttpd: add build options for new auth methods 2021-09-27 07:33:27 +02:00
V cc49c13a6b nixos/postfix: Fix virtual alias manpage section
virtual(8) is for virtual mailboxes, not aliases.
2021-09-27 06:39:27 +02:00
Vincent Laporte f9c7333bce ocamlPackages.qcheck: 0.17 → 0.18 2021-09-27 05:59:07 +02:00
Vincent Laporte b99e43a96e ocamlPackages.reason-native.qcheck-rely: mark as broken 2021-09-27 05:59:07 +02:00
Vincent Laporte f548ac9c6c ocamlPackages.iter: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte 8c32eb1a99 ocamlPackages.psq: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte c5a5f7b13d ocamlPackages.lru: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte 6f85b0fa7b ocamlPackages.syslog-message: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte 09f33fd8aa ocamlPackages.stdint: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte 049ca38a0c ocamlPackages.containers: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte 5f16f0a9cf ocamlPackages.batteries: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte 801b070c40 ocamlPackages.stringext: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Vincent Laporte bb7692db80 ocamlPackages.gen: disable tests with OCaml < 4.08 2021-09-27 05:59:07 +02:00
Ryan Burns e6654828b8 bashdb: 4.4-1.0.0 -> 5.0-1.1.2, fix build with bash 5.1 2021-09-27 11:52:26 +09:00
Bobby Rong 5eaa177945
Merge pull request #138015 from hrhino/fix/shotcut
shotcut: 21.03.21 -> 21.09.20 and clarify license
2021-09-27 10:47:46 +08:00
Bernardo Meurer 8b78e1c821
Merge pull request #139551 from TredwellGit/linux 2021-09-27 02:40:07 +00:00
Artturi 7097c8fef1
Merge pull request #139414 from r-ryantm/auto-update/python3.8-phonenumbers
python38Packages.phonenumbers: 8.12.32 -> 8.12.33
2021-09-27 03:27:15 +03:00
figsoda 41686cbe53
Merge pull request #139580 from figsoda/luals-main-program
sumneko-lua-language-server: set meta.mainProgram
2021-09-26 20:25:30 -04:00
Artturi 2a69dbeb0f
Merge pull request #139439 from romildo/upd.greybird
greybird: 3.22.14 -> 3.22.15
2021-09-27 03:24:51 +03:00
Artturi 59b728ba70
Merge pull request #139443 from Luflosi/update/apfsprogs
apfsprogs: unstable-2021-05-07 -> unstable-2021-08-24
2021-09-27 03:23:13 +03:00