R. RyanTM
317462428a
mlkit: 4.5.0 -> 4.5.1
2020-10-25 21:59:26 +00:00
Sandro
cf36a4fea8
maintainers scripts: Fix shebang
...
Fixes:
error: syntax error, unexpected $undefined, at (string):1:94
2020-10-25 22:47:18 +01:00
R. RyanTM
dab7064970
minikube: 1.14.0 -> 1.14.1
2020-10-25 21:18:39 +00:00
Peter Simons
40bc6c8dad
Merge pull request #100393 from matthiasbeyer/update-r
...
R: 4.0.2 -> 4.0.3
2020-10-25 21:57:03 +01:00
R. RyanTM
eace2d6848
mdbook: 0.4.3 -> 0.4.4
2020-10-25 20:44:45 +00:00
Frank Doepper
5ac9edb121
btrfs-progs: 5.7 -> 5.9
2020-10-25 21:38:14 +01:00
Michael Raskin
2566c366a5
Merge pull request #101661 from 7c6f434c/more-quicklisp
...
lispPackages: add some more, mainly from Quicklisp top 100
2020-10-25 20:36:02 +00:00
R. RyanTM
afdd017def
matcha-gtk-theme: 2020-10-05 -> 2020-10-23
2020-10-25 20:31:23 +00:00
Jörg Thalheim
2257afa81d
Merge pull request #101594 from Mic92/x265-aarch64
...
x265: fix linux-aarch64 build
2020-10-25 20:58:11 +01:00
R. RyanTM
1b8842e757
lucky-cli: 0.23.1 -> 0.24.0
2020-10-25 19:55:08 +00:00
R. RyanTM
a37ff262d4
livepeer: 0.5.10 -> 0.5.11
2020-10-25 19:45:44 +00:00
R. RyanTM
f646364f4f
libxls: 1.6.0 -> 1.6.1
2020-10-25 19:31:34 +00:00
Andreas Rammhold
d4fb7daafd
nixos-build-vms: use the driverInteractive attribute instead
...
This reverts commit aab534b894
& uses the
driverInteractive attribute for the test driver instead.
This has the same effect but removes the extra module in the
nixos-build-vms code.
2020-10-25 20:14:53 +01:00
Andreas Rammhold
73635b859d
nixos/tests: fix runInMachine
...
In 5500dc8
we introduced the --keep-vm-state flag and defaulted to that
flag not being set. This lead to the `runInMachine` tests not longer
working and that going unnoticed for quite some time now.
2020-10-25 20:09:33 +01:00
Andreas Rammhold
fa25d84d13
nixos/tests: fix testDriver reference in runInMachine function
...
In a previous commit I broke this as there is no longer one testDriver
but only a function to generate one based on some QEMU inputs.
2020-10-25 20:09:33 +01:00
Andreas Rammhold
61b09f552c
nixos/tests: format the testing-python.nix file more consistenly
2020-10-25 20:09:33 +01:00
Andreas Rammhold
04100cd281
nixos/tests: restructure test driver so that QEMU is actually overriden
...
Previously you would be able to override only the QEMU package to be
used in the test runner. Frankly that doesn't help a lot if you are
trying to get a graphical session. The graphical session requires the
option in the NixOS module system to bet set to the correct QEMU
package.
In this commit I moved most of the test node configuration and
transformations into the `mkDriver` function (previously called
`driver`). The motivation was to be able to create a `driver` instance
with a given QEMU package that will be used consistently througout the
test expression.
2020-10-25 20:09:33 +01:00
Frank Lanitz
b1b7551cb0
geany: 1.36.0 -> 1.37.0
2020-10-25 19:56:55 +01:00
Nikolay Korotkiy
d2a28d3b38
xournalpp: 1.0.18 -> 1.0.19
2020-10-25 19:34:20 +01:00
Maximilian Bosch
2543fb203b
Merge pull request #101640 from erictapen/tor-browser-bundle-bin-10.0.2
...
tor-browser-bundle-bin: 10.0.1 -> 10.0.2
2020-10-25 19:27:57 +01:00
Maximilian Bosch
a3041ab124
Merge pull request #101645 from andir/qemu-tests-fixup
...
nixos/tests: only apply qemu parameters if the options are defined
2020-10-25 19:25:50 +01:00
Kierán Meinhardt
ea0d888242
vimv: init at unstable-2019-10-31
2020-10-25 19:13:20 +01:00
Michael Raskin
665597f50b
lispPackages: add some more, mainly from Quicklisp top 100
2020-10-25 18:32:33 +01:00
R. RyanTM
96a163601a
jackett: 0.16.1757 -> 0.16.1883
2020-10-25 16:27:37 +00:00
Ryan Mulligan
f262382e01
Merge pull request #101653 from r-ryantm/auto-update/gobuster
...
gobuster: 3.0.1 -> 3.1.0
2020-10-25 09:19:07 -07:00
Jacek Galowicz
f4254fba4f
Merge pull request #101538 from xfix/test-driver-bufsize
...
test-driver.py: remove bufsize=1 from Popen calls
2020-10-25 16:41:09 +01:00
R. RyanTM
74ae6e1209
helmfile: 0.131.0 -> 0.132.1
2020-10-25 15:38:58 +00:00
Konrad Borowski
254d30d4c9
test-driver.py: remove bufsize=1 from Popen calls
...
According to Python documentation [0], `bufsize=1` is only meaningful in
text mode. As we don't pass in an argument called `universal_newlines`,
`encoding`, `errors` or `text` the file objects aren't opened in text
mode, which means the argument is ignored with a warning in Python 3.8.
line buffering (buffering=1) isn't supported in binary mode,
the default buffer size will be used
This commit removes this warning that appared when using
interactive test driver built with `-A driver`. This is done by
removing `bufsize=1` from Popen calls.
The default parameter when unspecified for `bufsize` is `-1` which
according to the documentation will be interpreted as
`io.DEFAULT_BUFFER_SIZE`. As mentioned by a warning, Python already
uses default buffer size when providing `buffering=1` parameter for
file objects not opened in text mode.
[0]: https://docs.python.org/3/library/subprocess.html#subprocess.Popen
2020-10-25 16:22:07 +01:00
Lucas Ransan
ce383a1985
ssh-chat: 1.9 -> 1.10
2020-10-25 11:12:39 -04:00
R. RyanTM
11eb8167b1
gomuks: 0.2.0 -> 0.2.1
2020-10-25 15:03:21 +00:00
Vincent Laporte
b5f396e43a
ocamlPackages.mirage-net: init at 3.0.1
2020-10-25 16:02:34 +01:00
R. RyanTM
1920b371c8
golangci-lint: 1.31.0 -> 1.32.0
2020-10-25 14:56:58 +00:00
Alyssa Ross
f20b89d1d4
dtc,python.pkgs.libfdt: drop python buildInput
...
This doesn't seem to be necessary to build the library with
strictDeps = true, or when cross-compiling.
2020-10-25 10:55:52 -04:00
Guillaume Pagnoux
fdba3f6db0
boxfort: unstable-2019-09-19 -> unstable-2019-10-09
...
Signed-off-by: Guillaume Pagnoux <guillaume.pagnoux@lse.epita.fr>
2020-10-25 10:53:24 -04:00
Benjamin Hipple
d53dd036d2
Merge pull request #80151 from ju1m/dstat_fix_pluginpath
...
dstat: fix pluginpath
2020-10-25 10:48:54 -04:00
MrKorner
e8268c7627
Update default.nix
2020-10-25 10:41:22 -04:00
MrKorner
7392ef4cce
Update default.nix
2020-10-25 10:41:22 -04:00
R. RyanTM
ce1bc3c3b0
gobuster: 3.0.1 -> 3.1.0
2020-10-25 14:40:51 +00:00
Benjamin Hipple
f98312fcb5
Merge pull request #79759 from lopsided98/syncoid-no-root
...
nixos/syncoid: automatically setup privilege delegation
2020-10-25 10:40:33 -04:00
Sebastian Nagel
7426e53f95
zsh-autoenv: fix zsh-autoenv-share description
...
Fix a copy & paste error in zsh-autoenv-share documentation
2020-10-25 10:37:47 -04:00
Benjamin Hipple
40a50db054
Merge pull request #101585 from r-ryantm/auto-update/ephemeralpg
...
ephemeralpg: 3.0 -> 3.1
2020-10-25 10:22:12 -04:00
Benjamin Hipple
39d1011c45
Merge pull request #101575 from r-ryantm/auto-update/debianutils
...
debianutils: 4.11.1 -> 4.11.2
2020-10-25 10:19:38 -04:00
Benjamin Hipple
19256a1f6f
Merge pull request #101649 from siraben/desc-fix
...
treewide: remove periods from end of package descriptions (part 2)
2020-10-25 10:13:55 -04:00
Martin Weinelt
923ceda526
Merge pull request #101639 from Luflosi/glances-add-py-cpuinfo
...
glances: add py-cpuinfo dependency
2020-10-25 15:03:44 +01:00
Martin Weinelt
5eb2dc80f2
Merge pull request #101638 from dywedir/slurp
...
slurp: 1.2.0 -> 1.3.0
2020-10-25 14:52:58 +01:00
Bas van Dijk
67f5d7f7cb
Merge pull request #101559 from basvandijk/rocksdb-6.12.7
...
rocksdb: 6.10.2 -> 6.12.7
2020-10-25 14:46:39 +01:00
Lucas Ransan
2436e41916
rofi-calc: 1.8 -> 1.9
2020-10-25 14:31:57 +01:00
Ben Siraphob
c98962e1a3
treewide: remove periods from end of package descriptions
2020-10-25 20:13:18 +07:00
Matt Wittmann
cc25408652
vscode-extensions.dhall.vscode-dhall-lsp-server: init at 0.0.4
2020-10-25 14:08:40 +01:00
Matt Wittmann
6981011d90
vscode-extensions.dhall.dhall-lang: init at 0.0.4
2020-10-25 14:08:40 +01:00