Commit Graph

140081 Commits

Author SHA1 Message Date
Frederik Rietdijk
7a6bf668fb python: jira: 1.0.14 -> 1.0.15 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
4dd0f741a2 python: ipywidgets: 7.2.0 -> 7.2.1 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
8fbbd261d8 python: hdbscan: 0.8.12 -> 0.8.13 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
228900dc85 python: google-api-core: 1.1.0 -> 1.1.2 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
7450cccaa7 python: google-api-python-client: 1.6.6 -> 1.6.7 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
af6be7b0c7 python: Flask: 0.12.2 -> 0.12.4 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
07cec56a04 python: Flask-Cors: 3.0.3 -> 3.0.4 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
60f26a166f python: Fiona: 1.7.11.post1 -> 1.7.11.post2 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
ecd18e40b4 python: fastimport: 0.9.6 -> 0.9.8 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
6c60f396fa python: Faker: 0.8.12 -> 0.8.13 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
26f175e44a python: Django: 2.0.4 -> 2.0.5 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
712b0bc719 python: django-ipware: 2.0.1 -> 2.0.2 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
0aaa1fac54 python: devpi-common: 3.2.1 -> 3.2.3 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
3ffc398d20 python: dask: 0.17.2 -> 0.17.4 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
282aee8799 python: confluent-kafka: 0.11.0 -> 0.11.4 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
216e90c6ff python: colorlog: 3.1.2 -> 3.1.4 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
e2d1c747fa python: cmarkgfm: 0.4.0 -> 0.4.2 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
06bab760f3 python: zc.buildout: 2.2.1 -> 2.2.5 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
e80b491288 python: zc.buildout: 2.11.2 -> 2.11.3 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
a7ec7402f1 python: bayespy: 0.5.14 -> 0.5.17 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
698b94b540 python: astropy: 3.0.1 -> 3.0.2 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
ec5dcae625 python: astral: 1.6 -> 1.6.1 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
48c82cac4d python: aiohttp: 3.1.2 -> 3.1.3 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
3cf2fb1fa7 python: aenum: 2.1.0 -> 2.1.2 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
3977666717 python: XlsxWriter: 1.0.2 -> 1.0.4 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
a8c7973a42 python: Nikola: 7.8.14 -> 7.8.15 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
5cfbfb662b python: Cython: 0.28.1 -> 0.28.2 2018-05-10 10:09:13 +02:00
Frederik Rietdijk
64c8c6dcb3 Merge master into staging 2018-05-10 09:30:56 +02:00
aszlig
67a8c66f68
nixos/dovecot: Fix usage of dhparams option
The pull request that added dhparams (#39507) was made at the time where
the dhparams module overhaul (#39526) wasn't done yet, so it's still
using the old mechanics of the module.

As stated in the release notes:

  Module implementers should not set a specific bit size in order to let
  users configure it by themselves if they want to have a different bit
  size than the default (2048).

  An example usage of this would be:

    { config, ... }:

    {
      security.dhparams.params.myservice = {};
      environment.etc."myservice.conf".text = ''
        dhparams = ${config.security.dhparams.params.myservice.path}
      '';
    }

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @qknight, @abbradar, @hrdinka, @leenaars
2018-05-10 08:29:29 +02:00
aszlig
fb9f5e4a03
nixos/testing: Fix output of systemd messages
Regression introduced by d4468bedb5.

No systemd messages are shown anymore during VM test runs, which is not
very helpful if you want to find out about failures.

There is a bit of a conflict between testing and the change that
introduced the regression. While the mentioned commit makes sure that
the primary console is tty0 for virtualisation.graphics = false, our VM
tests need to have the serial console as primary console.

So in order to support both, I added a new virtualisation.qemu.consoles
option, which allows to specify those options using the module system.

The default of this option is to use the changes that were introduced
and in test-instrumentation.nix we use only the serial console the same
way as before.

For test-instrumentation.nix I didn't add a baudrate to the serial
console because I can't find a reason on top of my head why it should
need it. There also wasn't a reason stated when that was introduced in
7499e4a5b9.

Signed-off-by: aszlig <aszlig@nix.build>
Cc: @flokli, @dezgeg, @edolstra
2018-05-10 08:21:20 +02:00
John Ericson
7d8e16d939
Merge pull request #40275 from obsidiansystems/fewer-crossAttrs
fontconfig, misc A/V packages: No crossAttrs
2018-05-10 02:17:34 -04:00
John Ericson
7864a17bfb misc video players: Clean up cross 2018-05-10 01:57:49 -04:00
John Ericson
7d0906eea8 fontconfig: Clean up cross 2018-05-10 01:57:49 -04:00
John Ericson
006422d08d Merge commit 'feb648ce59ffbed94c58133eb7aa2761992a35e1' into staging 2018-05-10 01:55:26 -04:00
John Ericson
e659c32448
Merge pull request #40270 from obsidiansystems/lib-platform-simplify
treewide: Get rid of `*Platform.arch`
2018-05-10 01:54:35 -04:00
John Ericson
c17f79ea3b Merge remote-tracking branch 'upstream/master' into lib-platform-simplify 2018-05-10 01:40:44 -04:00
John Ericson
feb648ce59 Merge commit '70963b382f3f820ba6d3bc3b3aaf50a2957ec1ff' into lib-platform-simplify 2018-05-10 01:40:38 -04:00
John Ericson
a02be2bd85 treewide: Get rid of *Platform.arch
Use `parsed.cpu.name` or `platform.gcc.arch` instead.
2018-05-10 01:37:31 -04:00
Frederik Rietdijk
3390592cfc python.pkgs.traitlets: fix build and don't include .pytest_cache
Fixes build and prevents including `.pytest_cache` file (#40259).
2018-05-10 07:17:37 +02:00
John Ericson
0fd655f355
Merge pull request #40268 from obsidiansystems/uclibc
uclibc: Bump and clean
2018-05-10 00:47:30 -04:00
John Ericson
3bc923bf5f Merge remote-tracking branch 'upstream/master' into uclibc 2018-05-10 00:23:12 -04:00
John Ericson
b3ef322770 Merge commit '70963b382f3f820ba6d3bc3b3aaf50a2957ec1ff' into uclibc 2018-05-10 00:18:51 -04:00
John Ericson
a31984ecda uclibc: Bump to uclibc-ng 1.0.30 2018-05-10 00:17:44 -04:00
John Ericson
d65fe65616 uclibc: Fix eval 2018-05-10 00:17:43 -04:00
John Ericson
83fdfb9837
Merge pull request #40210 from ElvishJerricco/fix-android-prebuilt-ghc
Fix android prebuilt ghc [Fixes #40194]
2018-05-10 00:10:11 -04:00
Peter Hoeg
17b2ef2461 hugo: 0.36.1 -> 0.40.3 2018-05-10 11:54:56 +08:00
Will Fancher
9dadb9e3cb Fix hsc2hs cross compiler build 2018-05-09 23:53:30 -04:00
John Ericson
f063a860d6 xbursttools: Cleanup slightly 2018-05-09 23:40:13 -04:00
John Ericson
e42a7a5c0b lib/systems: Add uClibc just like MUSL 2018-05-09 23:39:23 -04:00
John Ericson
0b45f0ebf9
Merge pull request #40261 from obsidiansystems/more-arm
lib/systems: Parse more arm cpu types
2018-05-09 20:05:10 -04:00