Commit graph

25688 commits

Author SHA1 Message Date
Mario Rodas 497849dccb
Merge pull request #83754 from r-ryantm/auto-update/nwipe
nwipe: 0.27 -> 0.28
2020-03-30 05:51:07 -05:00
Pascal Wittmann 19fb719cd5
Merge pull request #83710 from r-ryantm/auto-update/hevea
hevea: 2.33 -> 2.34
2020-03-30 11:06:55 +02:00
R. RyanTM 7edd932239 nwipe: 0.27 -> 0.28 2020-03-30 06:55:38 +00:00
Benjamin Hipple ecfb2b41ce
Merge pull request #80522 from doronbehar/update-brotab
brotab: 1.1.0 -> 1.2.1
2020-03-30 01:25:49 -04:00
Benjamin Hipple 25467c4490
Merge pull request #83735 from cole-h/zoxide
zoxide: 0.2.2 -> 0.3.0
2020-03-29 23:05:04 -04:00
Cole Helbling dbdae465cb
zoxide: 0.2.2 -> 0.3.0
https://github.com/ajeetdsouza/zoxide/compare/v0.2.2...v0.3.0
2020-03-29 18:54:24 -07:00
Mario Rodas a105345624
Merge pull request #83650 from r-ryantm/auto-update/pspg
pspg: 2.6.6 -> 2.7.1
2020-03-29 19:29:27 -05:00
Mario Rodas 35afcc33be
Merge pull request #83724 from zowoq/ripgrep
ripgrep: 12.0.0 -> 12.0.1
2020-03-29 19:12:50 -05:00
Profpatsch bf3bd5fee1 skawarePackages: support static builds via pkgsStatic
Most of the skaware packages already build just fine with pkgsStatic,
however the wrapper scripts for execline and stdnotify-wrapper needed
the `-lskarlib` argument to go at the end.

`utmps` and `nsss` still fail with this error:

```
exec ./tools/install.sh -D -m 600 utmps-utmpd /bin/utmps-utmpd
/build/utmps-0.0.3.1/tools/install.sh: line 48: can't create /bin/utmps-utmpd.tmp.479: Permission denied
make: *** [Makefile:121: /bin/utmps-utmpd] Error 1
```
2020-03-30 01:35:39 +02:00
Profpatsch 49be064fa5 skawarePackages: release 2020-03
Hello,

  New versions of all the skarnet.org packages are available.
This is mostly a bugfix release (there was an installation bug in
some circumstances with shared libraries) but some packages, notably
execline and s6, have new, useful features.

  The new versions are the following:

skalibs-2.9.2.0
nsss-0.0.2.2
utmps-0.0.3.2
execline-2.6.0.0
s6-2.9.1.0
s6-rc-0.5.1.2
s6-linux-init-1.0.4.0
s6-dns-2.3.2.0
s6-networking-2.3.1.2
s6-portable-utils-2.2.2.2
s6-linux-utils-2.5.1.2
mdevd-0.1.1.2
bcnm-0.0.1.0

  Here are details for the packages that have more than bugfixes:

* skalibs-2.9.2.0
   ---------------

  - New header: skalibs/bigkv.h. It's a set of functions allowing
efficient lookups in a large set of strings (typically read from the
command line or the environment).

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

  * execline-2.6.0.0
    ----------------

  - It's a major release because an API has been modified: dollarat.
Beforehand, dollarat's -0 option would always prevail over any -d
option. Now, dollarat has its conflicting -0 and -d options handled
in the conventional way, with rightmost priority.

  - The runblock program now accepts a command line prefix, which is
given as runblock's own command line. This allows blocks to serve as
arguments to a new command, instead of having to be full command lines
by themselves.

  - New binary: posix-umask.

  - The former "cd" program is now named "execline-cd" and the former
"umask" program is named "execline-umask". When the=20
--enable-pedantic-posix
option is not given at configure time, "cd" and "umask" are symbolic
links created at installation time and pointing to execline-cd and
execline-umask respectively. When the --enable-pedantic-posix option is
given, the symbolic links point to posix-cd and posix-umask instead.

  - With posix-cd and posix-umask (and the changes to wait done in the
previous version), execline is now fully POSIX-compliant when built with
the --enable-pedantic-posix option. This will certainly, without the
slightest hint of a doubt, change distributions' attitudes about it.

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

  * s6-2.9.1.0
    ----------

  - A new '?' directive has been added to s6-log. It behaves exactly like
'!', except that it spawns the given processor with /bin/sh as an
interpreter instead of execlineb.

  - execline support is now optional: it can be disabled by specifying
--disable-execline at configure time. Some functionality is unavailable
when execline support is disabled:
    * s6-log's '!' directive
    * s6-notifyoncheck's -c option
    * s6-ipcserver-access's support for 'exec' directives in a ruleset

  - A new -X option has been added to s6-svscan, to specify a descriptor
that will be passed as stderr to a service spawned by this s6-svscan and
named s6-svscan-log. This is used in the new s6-linux-init, to avoid
needing to hardcode the /dev/console name for the catch-all logger's
standard error.

  - On systems that define SIGPWR and SIGWINCH, s6-svscan -s now diverts
those signals. This allows powerfail and kbrequest events to be handled
when s6-svscan runs as process 1.

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

  * s6-linux-init-1.0.4.0
    ---------------------

  - New options have been added to s6-linux-init-maker: to support
running s6-linux-init without a catch-all logger, and to support running
it in a container.

  - s6-linux-init-maker now adds a SIGPWR handler to the default image:
on receipt of a SIGPWR, the system's shutdown procedure is triggered.

  - s6-linux-init now handles kbrequest, which triggers a SIGWINCH in
init when a special, configurable set of keys is pressed. By default,
no SIGWINCH handler is declared in the image, and no set of keys is
bound to kbrequest.

  https://skarnet.org/software/s6-linux-init/
  git://git.skarnet.org/s6-linux-init

  * s6-dns-2.3.2.0
    --------------

  - New library: libdcache, implementing a clean cache structure
to contain DNS data. It's still not used at the moment.

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

  * bcnm-0.0.1.0
    ------------

  - First numbered release, because the Ad=C3=A9lie Linux distribution,
which uses libwpactrl, needs an official release instead of pulling
from git.

  - libwpactrl is a set of C functions helping control a wpa_supplicant
process.

  - bcnm-waitif is a binary that waits for network interface state
events such as appearance/disappearance, up/down, running/not-running.
It is useful to avoid race conditions during a boot sequence, for
instance.

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

  Enjoy,
  Bug-reports welcome.

--
  Laurent
2020-03-30 01:23:46 +02:00
zowoq 6d4749dede ripgrep: 12.0.0 -> 12.0.1
https://github.com/BurntSushi/ripgrep/blob/master/CHANGELOG.md#1201-2020-03-29
2020-03-30 09:11:31 +10:00
R. RyanTM bf29da08c2 hevea: 2.33 -> 2.34 2020-03-29 20:58:22 +00:00
Jörg Thalheim d04396da8b
Merge pull request #82852 from Mic92/cross-build-rust-package
[WIP] buildRustPackage: enable strictDeps
2020-03-29 14:07:07 +01:00
R. RyanTM 439f083931 bindfs: 1.14.3 -> 1.14.4 2020-03-29 14:37:56 +02:00
Fabian Möller 2346014aae bgpq3: init at 0.1.35 2020-03-29 14:12:36 +02:00
Jörg Thalheim 5f09258114
sequoia: fix strict deps build 2020-03-29 12:37:27 +01:00
Jörg Thalheim e1bea9e8b1
vector: fix strict deps build 2020-03-29 12:37:26 +01:00
Jörg Thalheim 965dc7bb24
uutils-coreutils: fix strict deps build 2020-03-29 12:37:26 +01:00
Jörg Thalheim b684103191
tensorman: fix strict deps build 2020-03-29 12:37:26 +01:00
Jörg Thalheim dbd8e0e162
ripasso-cursive: fix strict deps build 2020-03-29 12:37:26 +01:00
Jörg Thalheim 0c3759abdf
parallel-rust: remove
- package has no maintainer
- upstream is dead
- build is broken
2020-03-29 12:37:25 +01:00
Jörg Thalheim 2e74a9b1bf
vdirsyncer: fix strict deps build 2020-03-29 12:37:25 +01:00
Jörg Thalheim 649eecd631
httplz: fix strict deps build 2020-03-29 12:37:24 +01:00
Jörg Thalheim 49787b63b9
cargo-update: fix strict deps build 2020-03-29 12:37:24 +01:00
R. RyanTM 3015851788 pspg: 2.6.6 -> 2.7.1 2020-03-29 07:27:43 +00:00
Maximilian Bosch 7a7d7b1215
findomain: 1.4.2 -> 1.4.5 2020-03-28 23:37:26 +01:00
worldofpeace d5cfaf5c39
Merge pull request #83473 from doronbehar/update-connman
connman: 1.37 -> 1.38
2020-03-28 18:18:14 -04:00
Orivej Desh ce1695ace7 midicsv: init at 1.1 2020-03-28 14:43:03 +00:00
Elis Hirwing f2baa711d1
Merge pull request #82237 from zaninime/libgen-cli
libgen-cli: init at 1.0.5
2020-03-28 14:36:38 +01:00
Elis Hirwing 362a983a45
Merge pull request #82278 from lightdiscord/package-request/pdf-parser
pdf-parser: init at 0.7.4
2020-03-28 14:34:02 +01:00
Michael Raskin 05f0934825
Merge pull request #82939 from jluttine/linphone-4.1.1
linphone: 3.12.0 -> unstable-2020-03-06
2020-03-28 12:27:16 +00:00
Jörg Thalheim b4567fb004
Merge pull request #82682 from Mic92/xidlehook
xidlehook: 0.8.0 -> 0.8.2
2020-03-28 11:37:44 +00:00
Jaakko Luttinen 86a012b960
trx: 0.4 -> 0.5 2020-03-28 12:49:50 +02:00
Robin Gloster 16c8590aa1
Merge pull request #82691 from Ma27/pass-exts
pass: don't rebuild when adding extensions, pass-audit: 0.1 -> 1.0.1
2020-03-28 09:51:28 +00:00
Doron Behar bffec3d884 nixos/connman: add TODOs regarding connman + network-manager 2020-03-28 12:28:29 +03:00
Jaakko Luttinen 4179075b4d
bcunit: 3.0.2 -> unstable-2019-11-19 2020-03-28 11:25:28 +02:00
Jörg Thalheim cc9389e76f
xidlehook: 0.8.0 -> 0.8.2 2020-03-28 08:04:39 +00:00
Jörg Thalheim 774ddebd87
Merge pull request #83472 from Mic92/propragate-darwin-go
Propragate darwin go
2020-03-28 06:57:59 +00:00
Benjamin Hipple 698ec44e74 treewide: remove torch and related packages
See #71888 for details.
2020-03-27 22:32:35 -04:00
Thibault Gagnaux 99a2467722 amazon-ecs-cli: 1.18.0 -> 1.18.1 2020-03-27 13:32:40 -07:00
Lancelot SIX 087417b34e
Merge pull request #83431 from r-ryantm/auto-update/bibutils
bibutils: 6.8 -> 6.10
2020-03-27 19:51:01 +01:00
Florian Klink e1fc1d22f4 google-cloud-sdk: 281.0.0 -> 286.0.0 2020-03-27 18:09:05 +01:00
Michele Guerini Rocco 4a3f9aced7
Merge pull request #82692 from doronbehar/package-sacd
sacd: init at 19.7.16.37
2020-03-27 11:43:54 +01:00
Doron Behar 5930c2f02c sacd: init at 19.7.16.37 2020-03-27 13:40:41 +03:00
Michael Weiss 87f08d070d
ubridge: 0.9.17 -> 0.9.18 2020-03-27 11:09:38 +01:00
Jörg Thalheim 4e4bbe575d
Merge pull request #83465 from r-ryantm/auto-update/LanguageTool
languagetool: 4.8 -> 4.9
2020-03-27 09:30:14 +00:00
Doron Behar b03bf779ae connman: remove unneeded deps from nativeBuildInputs 2020-03-27 10:43:51 +03:00
Doron Behar aa44c23c7a connman: reverse order of build flavors declaration 2020-03-27 10:43:51 +03:00
Doron Behar 22b27dd635 connman: remove import of networkmanager 2020-03-27 10:43:51 +03:00
Doron Behar a3d2e48a62 connmanMinimal: remove use of lowPrio 2020-03-27 10:43:51 +03:00