Commit Graph
295793 Commits
Author SHA1 Message Date
Alyssa Ross c08246b70a s6-rc: 0.5.2.1 -> 0.5.2.2
• skalibs dependency bumped to 2.10.0.3.
• execline dependency bumped to 2.8.0.1.
• s6 dependency bumped to 2.10.0.3.
2021-06-16 07:59:51 +00:00
Alyssa Ross 2f752b158d s6: 2.10.0.2 -> 2.10.0.3
• skalibs dependency bumped to 2.10.0.3.
• execline dependency bumped to 2.8.0.1.
2021-06-16 07:59:51 +00:00
Alyssa Ross 5539fec8c0 execline: 2.8.0.0 -> 2.8.0.1
• skalibs dependency bumped to 2.10.0.3.
2021-06-16 07:59:51 +00:00
Alyssa Ross 0efb71b390 utmps: 0.1.0.0 -> 0.1.0.2
in 0.1.0.2

  • WTMP_FILE is now /var/log/wtmp, to ease integration with
    distributions. (Unlike utmp, wtmp is supposed to be persistent.)

in 0.1.0.1

  • skalibs dependency bumped to 2.10.0.3.
  • s6 run-time dependency bumped to 2.10.0.3.
2021-06-16 07:59:51 +00:00
Alyssa Ross 1dc039e653 nsss: 0.1.0.0 -> 0.1.0.1
• skalibs dependency bumped to 2.10.0.3.
2021-06-16 07:59:51 +00:00
Alyssa Ross 850b926aad skalibs: 2.10.0.2 -> 2.10.0.3
• No functional changes.
2021-06-16 07:59:51 +00:00
Alyssa Ross 508aede4bd skawarePackages.buildPackage: add me as maintainer 2021-06-16 07:59:51 +00:00
R. RyanTMandRaphael Megzari e264354b61 erlangR23: 23.3.4.2 -> 23.3.4.3 2021-06-16 15:21:49 +09:00
R. RyanTMandRaphael Megzari 4e63e476c7 dua: 2.13.0 -> 2.13.1 2021-06-16 15:13:21 +09:00
Dennis GosnellandGitHub 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 AffolterandJonathan Ringer 6b83b2ac72 python3Packages.georss-ign-sismologia-client: 0.2 -> 0.3 2021-06-15 22:39:46 -07:00
Luke Granger-BrownandJonathan Ringer 305f0d8ab8 python3Packages.hg-evolve: add a basic smoke test 2021-06-15 21:48:17 -07:00
R. RyanTMandJonathan Ringer aa4cb4f6c7 python38Packages.hg-evolve: 10.3.1 -> 10.3.2 2021-06-15 21:48:17 -07:00
R. RyanTMandJonathan Ringer 52ffe02b31 checkstyle: 8.42 -> 8.43 2021-06-15 21:47:52 -07:00
Joe Hermaszewski 7a0b55c042 CODEOWNERS: add expipiplus1 for Haskell files 2021-06-16 12:17:11 +08:00
Anderson TorresandGitHub 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. RyanTMandJonathan Ringer c78d3f3ecd avocode: 4.14.0 -> 4.14.1 2021-06-15 20:04:52 -07:00
R. RyanTMandJonathan Ringer 059004ef54 ergo: 4.0.11 -> 4.0.12 2021-06-15 20:02:07 -07:00
R. RyanTMandJonathan Ringer f9649a7908 bfs: 2.2 -> 2.2.1 2021-06-15 20:01:51 -07:00
R. RyanTMandJonathan Ringer 76ceead4ec lefthook: 0.7.5 -> 0.7.6 2021-06-15 20:01:41 -07:00
R. RyanTMandJonathan Ringer 76e6c06464 bchoppr: 1.10.6 -> 1.10.8 2021-06-15 20:01:23 -07: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
SandroandGitHub 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
SandroandGitHub 2c5fef044c Merge pull request #126928 from Ma27/bump-grafana 2021-06-16 04:11:08 +02:00
SandroandGitHub 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
SandroandGitHub 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
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
SandroandGitHub 145195cd7d Merge pull request #104077 from dotkrnl/patch-2 2021-06-16 03:33:53 +02:00
SandroandGitHub df4ffccc5c Merge pull request #126863 from alyssais/bear
bear: 3.0.9 -> 3.0.12
2021-06-16 03:33:22 +02:00
SandroandGitHub 5e91584b6a Merge pull request #126849 from jshholland/master
gnuapl: set meta.mainProgram
2021-06-16 03:31:49 +02:00
Fabian AffolterandJonathan Ringer 35832045ce python3Packages.httpcore: 0.13.0 -> 0.13.4 2021-06-15 18:30:49 -07:00
Fabian AffolterandJonathan Ringer 7b22e0adfa python3Packages.anyio: 2.2.0 -> 3.1.0 2021-06-15 18:30:49 -07:00
SandroandGitHub 973b16c79c Merge pull request #126307 from ratsclub/dotnetPackages-cleanup
nixos/dotnetPackages: remove packages
2021-06-16 03:25:32 +02:00
SandroandGitHub 7a7c7de4e3 Merge pull request #126697 from arezvov/iotop-c 2021-06-16 03:20:23 +02:00
Robert SchützandJonathan Ringer 3ec6a1059a home-assistant: test bond component 2021-06-15 18:13:00 -07:00
Robert SchützandJonathan Ringer 9807186bfd home-assistant: update component-packages.nix 2021-06-15 18:13:00 -07:00
Robert SchützandJonathan Ringer ef689d5c0f python3Packages.bond-api: init at 0.1.12 2021-06-15 18:13:00 -07:00
SandroandGitHub fda3bb6c21 Merge pull request #126972 from dotlambda/azure-eventhub-init 2021-06-16 03:10:01 +02:00
SandroandGitHub 4bfec72937 Merge pull request #124842 from veprbl/pr/boost-histogram 2021-06-16 03:05:50 +02:00
SandroandGitHub 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
SandroandGitHub 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
SandroandGitHub 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
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
SandroandGitHub 15fd4a48fa Merge pull request #126978 from dotkrnl/patch-reattach-to-user-namespace
reattach-to-user-namespace: support apple silicon
2021-06-16 02:54:20 +02:00
Mario RodasandGitHub e92f441d81 Merge pull request #126992 from r-ryantm/auto-update/docker-slim
docker-slim: 1.35.2 -> 1.36.0
2021-06-15 19:37:23 -05:00
Mario RodasandGitHub f11f724db0 Merge pull request #126950 from marsam/update-nodejs-14_x
nodejs-14_x: 14.17.0 -> 14.17.1
2021-06-15 19:35:01 -05:00
R. RyanTM 6f719b3fb9 free42: 3.0.3 -> 3.0.4 2021-06-16 00:27:32 +00:00
Alexander Rezvov 34ee46760f maintainers: add arezvov 2021-06-16 03:16:16 +03:00