Commit Graph

296035 Commits

Author SHA1 Message Date
superherointj
05ffbcc311 tfk8s: 0.1.3 -> 0.1.4 2021-06-16 04:19:24 -03:00
happysalada
c4174fb183 vscode-extensions.b4dm4n.vscode-nixpkgs-fmt: remove unused buildInput 2021-06-16 16:09:55 +09:00
happysalada
0fa94c1ab7 vscode-extensions.timonwong.shellcheck: 0.12.3 -> 0.14.1 2021-06-16 16:03:03 +09:00
Markus S. Wamser
2d82a3e2ca pythonPackages.selectors34: drop
package is abandonded and supports only Python < 3.4
2021-06-16 08:51:54 +02:00
Vladimír Čunát
28dd3b6177
knot-dns: 3.0.6 -> 3.0.7
Fixes various bugs and introduces a few requested features.
https://gitlab.nic.cz/knot/knot-dns/-/tags/v3.0.7
2021-06-16 08:34:17 +02:00
R. RyanTM
cbb742aa0c i3-balance-workspace: 1.8.4 -> 1.8.5 2021-06-16 06:23:19 +00:00
R. RyanTM
e264354b61 erlangR23: 23.3.4.2 -> 23.3.4.3 2021-06-16 15:21:49 +09:00
R. RyanTM
4e63e476c7 dua: 2.13.0 -> 2.13.1 2021-06-16 15:13:21 +09:00
Dennis Gosnell
c19576bb70
Merge pull request #127033 from expipiplus1/joe-haskell-codeowner
CODEOWNERS: add expipiplus1 for Haskell files
2021-06-16 14:53:37 +09:00
Fabian Affolter
6b83b2ac72 python3Packages.georss-ign-sismologia-client: 0.2 -> 0.3 2021-06-15 22:39:46 -07:00
Luke Granger-Brown
305f0d8ab8 python3Packages.hg-evolve: add a basic smoke test 2021-06-15 21:48:17 -07:00
R. RyanTM
aa4cb4f6c7 python38Packages.hg-evolve: 10.3.1 -> 10.3.2 2021-06-15 21:48:17 -07:00
R. RyanTM
52ffe02b31 checkstyle: 8.42 -> 8.43 2021-06-15 21:47:52 -07:00
Steve Purcell
23e15940bc hdf4: fix build on aarch64-darwin
This resolves #126156 by preventing the headers from confusing Linux
aarch64 with Apple. The package's own tests work fine without further
changes.
2021-06-16 16:47:18 +12:00
R. RyanTM
f04ac9ddb9 helvum: 0.2.0 -> 0.2.1 2021-06-16 04:31:34 +00:00
Joe Hermaszewski
7a0b55c042
CODEOWNERS: add expipiplus1 for Haskell files 2021-06-16 12:17:11 +08:00
Weihua Lu
6a41e5719e logseq: 0.1.3 -> 0.1.8 2021-06-16 12:06:26 +08:00
Anderson Torres
ca35dfd337
Merge pull request #127017 from r-ryantm/auto-update/free42
free42: 3.0.3 -> 3.0.4
2021-06-16 00:35:26 -03:00
R. RyanTM
c78d3f3ecd avocode: 4.14.0 -> 4.14.1 2021-06-15 20:04:52 -07:00
R. RyanTM
059004ef54 ergo: 4.0.11 -> 4.0.12 2021-06-15 20:02:07 -07:00
R. RyanTM
f9649a7908 bfs: 2.2 -> 2.2.1 2021-06-15 20:01:51 -07:00
R. RyanTM
76ceead4ec lefthook: 0.7.5 -> 0.7.6 2021-06-15 20:01:41 -07:00
R. RyanTM
76e6c06464 bchoppr: 1.10.6 -> 1.10.8 2021-06-15 20:01:23 -07:00
figsoda
54c7521b5b vimPlugins: update 2021-06-15 22:54:29 -04:00
figsoda
c06fb999eb vimPlugins: presence.nvim -> presence.nvim@main 2021-06-15 22:54:29 -04:00
aszlig
6db890aff7
Merge pull request #127025 (fix overlayfs test)
This essentially fixes the overlayfs test, which was broken since a
while but since commit b7749c7671 was
pushed to master the error has actually surfaced.

The reason why I'm merging this immediately without additional review is
because the change is fixing something that's currently broken so the
worst that could happen is that things are still broken.

However, since I did open a pull request, the checks done by @ofborg at
least seem to suggest that this is indeed fixing the test.
2021-06-16 04:38:34 +02:00
aszlig
c55e00d8ff
nixos/tests/overlayfs: Use individual commands
This reverts the test to be similar to its original Perl version, where
the test steps were performed as individual commands instead of what we
have now, where commands are sent to the machine as one giant string.

While this change doesn't seem like it would make a big difference, it
makes a huge difference if the test fails because you then get an error
about which command has failed exactly instead of just knowing that
"something in there" has failed.

I also switched 2 spaces indentation, because it is more in line with
Nix coding conventions.

Signed-off-by: aszlig <aszlig@nix.build>
2021-06-16 04:12:18 +02:00
Sandro
56e1dac7c8
Merge pull request #126975 from dotlambda/blebox-uniapi-init 2021-06-16 04:12:11 +02:00
aszlig
9ecde9d165
nixos/tests/overlayfs: Fix erroneous backslashes
Since commit b7749c7671, commands run as
part of VM tests are exiting immediately if an error happens.

When converting the overlayfs test to Python in commit
5ae92144ba, the individual test commands
were crammed into one big string instead of using a series of test
commands like done in the Perl version.

Additionally, the backslash-escaped dollar signs were necessary in
Perl's double-quoted strings to avoid variable interpolation, for Python
however, this results in an actual backslash being inserted into the
command.

While this obviously results in an exit code of 1 (without an error
message, since it's using bash's expression evaluation command), the
test didn't fail because putting all these commands in one string will
result in only the last error code being relevant.

With the change to "set -e" for commands sent to test machines, this has
changed and with the exit code of all commands now relevant, the test
now fails because the errors from individual command substitutions that
were prevented by escaping the dollar sign are now actually visible.

This in turn also means that until now, we wouldn't have noticed if the
overlayfs test would have failed for real.

Signed-off-by: aszlig <aszlig@nix.build>
2021-06-16 04:12:04 +02:00
Sandro
2c5fef044c
Merge pull request #126928 from Ma27/bump-grafana 2021-06-16 04:11:08 +02:00
Sandro
7edab891c8
Merge pull request #126961 from fabaff/bump-aio-geojson-geonetnz-quakes
python3Packages.aio-geojson-geonetnz-quakes: 0.12 -> 0.13
2021-06-16 04:10:18 +02:00
Sandro
0dffd09c08
Merge pull request #126988 from Ma27/bump-mautrix-whatsapp
mautrix-whatsapp: unstable-2021-06-15 -> 0.1.7
2021-06-16 03:45:02 +02:00
NANASHI0X74
af734f5a8c
dart: 2.12.2 -> 2.13.1 (#126979)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-16 03:42:30 +02:00
R. RyanTM
29cf0172e0 glab: 1.18.0 -> 1.18.1 2021-06-16 01:39:44 +00:00
Sandro
145195cd7d
Merge pull request #104077 from dotkrnl/patch-2 2021-06-16 03:33:53 +02:00
Sandro
df4ffccc5c
Merge pull request #126863 from alyssais/bear
bear: 3.0.9 -> 3.0.12
2021-06-16 03:33:22 +02:00
Sandro
5e91584b6a
Merge pull request #126849 from jshholland/master
gnuapl: set meta.mainProgram
2021-06-16 03:31:49 +02:00
Fabian Affolter
35832045ce python3Packages.httpcore: 0.13.0 -> 0.13.4 2021-06-15 18:30:49 -07:00
Fabian Affolter
7b22e0adfa python3Packages.anyio: 2.2.0 -> 3.1.0 2021-06-15 18:30:49 -07:00
Sandro
973b16c79c
Merge pull request #126307 from ratsclub/dotnetPackages-cleanup
nixos/dotnetPackages: remove packages
2021-06-16 03:25:32 +02:00
Sandro
7a7c7de4e3
Merge pull request #126697 from arezvov/iotop-c 2021-06-16 03:20:23 +02:00
Robert Schütz
3ec6a1059a home-assistant: test bond component 2021-06-15 18:13:00 -07:00
Robert Schütz
9807186bfd home-assistant: update component-packages.nix 2021-06-15 18:13:00 -07:00
Robert Schütz
ef689d5c0f python3Packages.bond-api: init at 0.1.12 2021-06-15 18:13:00 -07:00
Sandro
fda3bb6c21
Merge pull request #126972 from dotlambda/azure-eventhub-init 2021-06-16 03:10:01 +02:00
Sandro
4bfec72937
Merge pull request #124842 from veprbl/pr/boost-histogram 2021-06-16 03:05:50 +02:00
Sandro
c091e0ae9c
Merge pull request #126851 from musfay/xfce.xfce4-settings-4.16.2
xfce.xfce4-settings: 4.16.1 -> 4.16.2
2021-06-16 03:03:08 +02:00
Sandro
b8958bbfa6
Merge pull request #126874 from legendofmiracles/espanso-cleanup
espanso: add runtime dependencies correctly, nixos/espanso remove path hack
2021-06-16 03:01:18 +02:00
Sandro
ccf988f2ec
Merge pull request #126877 from bobrik/ivan/uvloop-flaky-aarch64-darwin
python3Packages.uvloop: disable flaky test on aarch64-darwin
2021-06-16 02:59:54 +02:00
Ricardo M. Correia
a5f20bfd4a
kyotocabinet: 1.2.76 -> 1.2.79 (#126836)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-16 02:58:52 +02:00