Commit Graph

11931 Commits

Author SHA1 Message Date
Frederik Rietdijk
079622ef2d
Merge pull request #79628 from NixOS/staging-next
Staging next
2020-02-10 17:53:25 +01:00
R. RyanTM
d7e67bf088 libsmbios: 2.4.2 -> 2.4.3 2020-02-10 13:30:19 +01:00
Tim Steinbach
657582e43a
linux_latest-libre: 17262 -> 17318 2020-02-10 07:23:08 -05:00
Tim Steinbach
4d8f7a7905
linux: 5.4.17 -> 5.4.18 2020-02-10 07:23:08 -05:00
Tim Steinbach
54c0c2ee70
linux: 4.19.101 -> 4.19.102 2020-02-10 07:23:07 -05:00
Tim Steinbach
854eb8f3ef
linux: 4.14.169 -> 4.14.170 2020-02-10 07:23:07 -05:00
R. RyanTM
309e4a6003 intel-compute-runtime: 19.44.14658 -> 20.02.15268 2020-02-09 09:48:10 +01:00
Frederik Rietdijk
03755ed59a Merge master into staging-next 2020-02-09 09:17:51 +01:00
Vladimír Čunát
8130f3c1c2
linux config: revert BPF_JIT_ALWAYS_ON=yes
This reverts a small bit of af808bd82 from PR #73328.  Fixes #79304:
tests.installer.simpleUefiSystemdBoot.x86_64-linux

I still don't know why the regression happened, but this feature doesn't
seem important enough to block channel now, though it reportedly helps
to mitigate spectre 2 attack CVE-2017-5715.
2020-02-09 08:22:00 +01:00
R. RyanTM
ee9499e21f mcelog: 167 -> 168 2020-02-08 21:38:01 +00:00
Franz Pletz
4ba8086aa1
klibc: 2.0.4 -> 2.0.7 2020-02-08 14:57:49 +01:00
Frederik Rietdijk
30f0909e3a Merge master into staging-next 2020-02-07 19:27:52 +01:00
Jan Tojnar
07281f23b6
Merge pull request #79371 from jtojnar/hughsie-pkgs
fwupd: split daemon again
2020-02-07 00:35:27 +01:00
Jan Tojnar
e5f7dacc93
nixos/fwupd: disable test plugins implicitly
invalid test was introduced in 297d1598ef
and it is disabled in the shipped daemon.conf.

I forgot to reflect that in the module, which caused the daemon to print the following on start-up:

    FuEngine             invalid has incorrect built version invalid

and the command to warn:

    WARNING: The daemon has loaded 3rd party code and is no longer supported by the upstream developers!

To reduce the change of this happening in the future, I moved the list of default disabled plug-ins to the package expression.

I also set the value of the NixOS module option in the config section of the module instead of the default value used previously,
which will allow users to not care about these plug-ins.
2020-02-06 22:32:13 +01:00
Jan Tojnar
c942013dbc
fwupd: split daemon again
In 1.3.5, fwupdprivate library was made into a shared fwupdplugin library.
This library is considered semi-private and is used by fwupd daemon and
fwupd plug-ins and now possibly third party plug-ins.

The fwupdplugin library refers to the plug-in directory in fwupd.out
causing a dependency cycle. For that reason we need to move it to out.
2020-02-06 22:32:13 +01:00
R. RyanTM
4028dcf3a3 eventstat: 0.04.07 -> 0.04.08 2020-02-06 20:17:34 +01:00
Frederik Rietdijk
38cf6eac19 Merge master into staging-next 2020-02-06 19:43:36 +01:00
Maximilian Bosch
9e87041826
Merge pull request #79319 from r-ryantm/auto-update/jfbpdf
jfbpdf: 0.5.6 -> 0.5.7
2020-02-06 16:56:29 +01:00
Jan Tojnar
f4f39fc824
Merge pull request #79309 from jtojnar/hugsie-pkgs
fwupd: 1.3.3 → 1.3.7
2020-02-06 16:20:00 +01:00
Daiderd Jordan
3987ea9a9d
mpv: add flag for swift on darwin
While we currently don't have a pure swift build on macOS it's possible
to build mpv using the swift compiler from CLT. eg.

    self: super:
    let
      CommandLineTools = "/Library/Developer/CommandLineTools";
    in
    {
      swift = super.stdenv.mkDerivation {
        name = "swift-CommandLineTools-0.0.0";
        phases = [ "installPhase" "fixupPhase" ];

        propagatedBuildInputs = [ self.darwin.DarwinTools ];

        installPhase = ''
            mkdir -p $out/bin $out/lib
            ln -s ${CommandLineTools}/usr/bin/swift $out/bin
            ln -s ${CommandLineTools}/usr/lib/swift $out/lib
            ln -s ${CommandLineTools}/SDKs $out
        '';

        setupHook = builtins.toFile "hook" ''
            addCommandLineTools() {
                echo >&2
                echo "WARNING: this is impure and unreliable, make sure the CommandLineTools are installed!" >&2
                echo "  $ xcode-select --install" >&2
                echo >&2
                [ -d ${CommandLineTools} ]
                export NIX_LDFLAGS+=" -L@out@/lib/swift/macosx"
                export SWIFT=swift
                export SWIFT_LIB_DYNAMIC=@out@/lib/swift/macosx
                export MACOS_SDK_VERSION=$(sw_vers -productVersion | awk -F. '{print $1 "." $2}')
                export MACOS_SDK=@out@/SDKs/MacOSX$MACOS_SDK_VERSION.sdk
            }

            prePhases+=" addCommandLineTools"
        '';

        __impureHostDeps = [ CommandLineTools ];
      };

      mpv = super.mpv.override { swiftSupport = true; };
    }
2020-02-06 14:15:35 +01:00
R. RyanTM
e97294bec2 jfbpdf: 0.5.6 -> 0.5.7 2020-02-06 08:55:11 +00:00
Jan Tojnar
0ecc836777
fwupd: 1.3.3 → 1.3.7
Changelogs:
* 342a38b432
* 713d20f79f
* 1ac566bc09
* ca3cdaef43

Notably:
* libfwupdplugin was factored out of the binary, introducing irreconcilable dependency cycle between `out` and `lib` outputs.
2020-02-06 05:46:48 +01:00
Frederik Rietdijk
292fd97f67 Merge staging-next into staging 2020-02-05 20:48:28 +01:00
Frederik Rietdijk
419bc0a4cd Revert "Revert "Merge master into staging-next""
In 87a19e9048773d5a363679617406ad148d36c3b8 I merged staging-next into master using the GitHub gui as intended.
In ac241fb7a570d6cf81d229ad22a8889602639160 I merged master into staging-next for the next staging cycle, however, I accidentally pushed it to master.
Thinking this may cause trouble, I reverted it in 0be87c79797a5fa384fbc356c74ed54f9f7829ea. This was however wrong, as it "removed" master.

This reverts commit 0be87c79797a5fa384fbc356c74ed54f9f7829ea.
2020-02-05 19:41:25 +01:00
Frederik Rietdijk
0be87c7979 Revert "Merge master into staging-next"
I merged master into staging-next but accidentally pushed it to master.
This should get us back to 87a19e9048773d5a363679617406ad148d36c3b8.

This reverts commit ac241fb7a570d6cf81d229ad22a8889602639160, reversing
changes made to 76a439239eb310d9ad76d998b34d5d3bc0e37acb.
2020-02-05 19:18:35 +01:00
Frederik Rietdijk
87a19e9048
Merge pull request #79119 from NixOS/staging-next
Staging next
2020-02-05 19:09:27 +01:00
Maximilian Bosch
f8a0576f6c
linuxPackages.wireguard: 0.0.20200128 -> 0.0.20200205
https://lists.zx2c4.com/pipermail/wireguard/2020-February/004962.html
2020-02-05 16:47:41 +01:00
Tim Steinbach
ab0e69030e
linux: 5.5.1 -> 5.5.2 2020-02-05 08:30:01 -05:00
Tim Steinbach
447c14e62f
linux: 4.9.212 -> 4.9.213 2020-02-05 08:29:45 -05:00
Tim Steinbach
5b5f9d23f4
linux: 4.4.212 -> 4.4.213 2020-02-05 08:29:30 -05:00
Vladimír Čunát
48a997cd76
Merge #66528: glibc: 2.27 -> 2.30 (into staging)
Includes update of stdenv bootstap tools (for three main platforms)
and many package fixes with new glibc.
2020-02-05 13:41:09 +01:00
R. RyanTM
100f1f8cbc libv4l: 1.16.7 -> 1.18.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/v4l-utils/versions
2020-02-05 10:47:46 +01:00
Frederik Rietdijk
ed095a6965
Merge pull request #74666 from r-ryantm/auto-update/sysstat
sysstat: 12.1.7 -> 12.2.0
2020-02-05 10:44:59 +01:00
Frederik Rietdijk
76a439239e Merge master into staging-next 2020-02-05 10:28:52 +01:00
worldofpeace
49fb456ece
Merge pull request #75885 from voanhduy1512/add_asus_wmi_sensors
asus-wmi-sensors: init at 0.0.1
2020-02-04 10:53:37 -05:00
Jörg Thalheim
6cfc7e9bd2
Merge pull request #78448 from snicket2100/irqbalance-systemd
irqbalance: systemd service config aligned with upstream
2020-02-04 14:21:04 +00:00
Vo Anh Duy
a1cc279630 asus-wmi-sensors: init at 0.0.1 2020-02-04 11:18:35 +08:00
Edmund Wu
a31341bed7
nvidia_x11: 440.44 -> 440.59 2020-02-03 21:05:50 -05:00
misuzu
149737a2a4 linux: Enable NVME_HWMON
This is available for 5.5+ and enables support for
NVMe drives temperature reporting
2020-02-03 19:08:45 +02:00
snicket2100
04bfeeac79 irqbalance: using systemd service definition from the package itself 2020-02-02 18:09:45 +01:00
Frederik Rietdijk
c195ef6aab
Merge pull request #78928 from NixOS/staging-next
Staging next
2020-02-02 15:35:18 +01:00
Frederik Rietdijk
e4c28f78e7 Merge staging-next into staging 2020-02-02 15:33:13 +01:00
Maximilian Bosch
ea8ae88f04
Merge branch 'staging' into glibc230 2020-02-01 17:42:03 +01:00
Tim Steinbach
508fdb7a7c
linux: 5.5 -> 5.5.1 2020-02-01 09:23:08 -05:00
Tim Steinbach
9b668eb4cc
linux: 5.4.16 -> 5.4.17 2020-02-01 09:18:52 -05:00
Tim Steinbach
0f20047e4c
linux: 4.19.100 -> 4.19.101 2020-02-01 09:18:52 -05:00
Orivej Desh
d48e99d912 linuxHeaders: 4.19.16 -> 5.5
Linux has reworked its header install process in
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=59b2bd05f5f4dc62979c2e82ddd384f07e8f10bc
It has introduced `make headers` that prepares the headers in ./usr/include, and
made `make headers_install` copy the headers from there using rsync.
2020-02-01 06:58:19 +00:00
Daiderd Jordan
6567823996
stdenv: introduce appleSdkVersion and macosVersionMin 2020-01-31 21:52:11 +01:00
Frederik Rietdijk
5cc0468a20 Merge staging into staging-next 2020-01-31 00:16:31 +01:00
Tim Steinbach
38854fa22c
linux: 5.4.15 -> 5.4.16 2020-01-30 16:41:12 -05:00
Tim Steinbach
586fd9a43a
linux: 4.9.211 -> 4.9.212 2020-01-30 16:41:12 -05:00
Tim Steinbach
53c76abcae
linux: 4.4.211 -> 4.4.212 2020-01-30 16:41:12 -05:00
Tim Steinbach
104287202b
linux: 4.19.98 -> 4.19.100 2020-01-30 16:41:11 -05:00
Tim Steinbach
713b0ec29a
linux: 4.14.167 -> 4.14.169 2020-01-30 16:41:11 -05:00
Franz Pletz
e12d0b0d15
firmwareLinuxNonfree: 2019-12-15 -> 2020-01-22 2020-01-30 22:34:38 +01:00
Maximilian Bosch
b5da8e879c
Merge pull request #78726 from Ma27/bump-wireguard
linuxPackages.wireguard: 0.0.20200121 -> 0.0.20200128
2020-01-30 16:17:38 +01:00
Maximilian Bosch
306cbf24af
policycoreutils: fix build w/glibc-2.30 2020-01-30 15:34:17 +01:00
Jörg Thalheim
6f7c3fbff7
bpftool: fix compilation with 5.5 2020-01-30 14:11:47 +00:00
Jörg Thalheim
0fc20ed4fb
perf: fix build on 5.5 2020-01-30 12:11:16 +00:00
Mario Rodas
90d969e211
Merge pull request #73815 from alexbakker/zenmonitor
zenmonitor: init at 1.3
2020-01-29 05:02:43 -05:00
Alexander Bakker
fb775ae472 zenmonitor: init at 1.3 2020-01-29 10:47:04 +01:00
Michael Weiss
f77edab9c7 iproute: 5.4.0 -> 5.5.0
"Most of the fixes have been related to single (and json) formatting.
Thank you to Aya, Jakub, Jiri, and Ron for the work to get devlink
improved." [0]

File changes (additions/removals):
None

nix path-info -S:
5.4.0 46705272
5.5.0 46726136

[0]: https://marc.info/?l=linux-netdev&m=158013364425477
2020-01-29 08:56:39 +01:00
Franz Pletz
ff54d08dc8
linux_5_5: init at 5.5 2020-01-29 03:00:29 +01:00
Maximilian Bosch
0ab53979bc
linuxPackages.wireguard: 0.0.20200121 -> 0.0.20200128
https://lists.zx2c4.com/pipermail/wireguard/2020-January/004905.html
2020-01-28 20:29:59 +01:00
Peter Hoeg
c3c9f32869
Merge pull request #77836 from sjau/evdi-2020-01-16
evdi: 1.6.4 -> git-2020-01-16
2020-01-28 22:10:27 +08:00
Maximilian Bosch
6b0cd9ad47
Merge branch 'staging' into glibc230
Conflicts:
	pkgs/applications/misc/vit/default.nix
2020-01-28 14:54:51 +01:00
Maximilian Bosch
b7574e08a0
tiscamera: 0.9.1 -> 0.11.1, fix build w/glibc-2.30 2020-01-28 14:44:33 +01:00
Frederik Rietdijk
cdff57e1fc Merge staging-next into staging 2020-01-28 10:48:36 +01:00
Frederik Rietdijk
dce0ca29d9 Merge master into staging-next 2020-01-28 10:46:13 +01:00
Silvan Mosberger
34f020053d
Merge pull request #78307 from blanky0230/nixos-tuxedo-keyboard
Nixos tuxedo keyboard
2020-01-27 18:38:09 +01:00
Silvan Mosberger
80a2740991
Merge pull request #78265 from Synthetica9/https-homepages
treewide: fix redirected urls
2020-01-27 15:00:53 +01:00
Joachim F
7b819104a2
Merge pull request #78586 from r-ryantm/auto-update/gradm
gradm: 3.1-201608131257 -> 3.1-201903191516
2020-01-27 07:22:49 +00:00
R. RyanTM
5eb3be255e gradm: 3.1-201608131257 -> 3.1-201903191516 2020-01-27 00:29:41 +00:00
Will Dietz
b856b24bfa
Merge pull request #77490 from dtzWill/fix/kernel-update-sed-e
kernel/update.sh: always use -e
2020-01-26 16:42:21 -06:00
Tim Steinbach
8250469517
linux: 5.4.14 -> 5.4.15 2020-01-26 10:18:15 -05:00
blanky0230
f2fea8894d nixos/tuxedo-keyboard: init module. 2020-01-26 09:24:09 +01:00
blanky0230
4cf316f5bd tuxedo-keyboard: init at 2019-08-26. 2020-01-26 09:23:25 +01:00
Samuel Dionne-Riel
5afd503a9c
Merge pull request #77475 from lopsided98/linux-hardkernel-update
linux_hardkernel_4_14: 4.14.120-160 -> 4.14.165-172
2020-01-25 18:50:37 -05:00
Maximilian Bosch
c24fc44e1f
jfbview: fix build w/glibc-2.30 2020-01-25 19:35:08 +01:00
Tim Steinbach
d004a3c221
Merge pull request #78415 from sjau/zfs-0.8.3
zfs: 0.8.2 -> 0.8.3
2020-01-25 10:37:19 -05:00
Tim Steinbach
30ad9a98d4
linux_latest-libre: 17198 -> 17262 2020-01-24 11:18:02 -05:00
Tim Steinbach
461e8d1d59
linux: 5.4.13 -> 5.4.14 2020-01-24 11:17:37 -05:00
Tim Steinbach
35da29dd68
linux: 4.9.210 -> 4.9.211 2020-01-24 11:17:10 -05:00
Tim Steinbach
53616e8c4e
linux: 4.4.210 -> 4.4.211 2020-01-24 11:16:52 -05:00
Tim Steinbach
fd2ddc3288
linux: 4.19.97 -> 4.19.98 2020-01-24 11:16:38 -05:00
Tim Steinbach
0bb5075c62
linux: 4.14.166 -> 4.14.167 2020-01-24 11:15:31 -05:00
sjau
88de34b160 zfs: 0.8.2 -> 0.8.3 2020-01-24 14:52:44 +01:00
Will Dietz
d9c847236b light: 1.2 -> 1.2.1
https://github.com/haikarainen/light/releases/tag/v1.2.1
2020-01-24 02:06:43 -08:00
sjau
edd636f7cd evdi: 1.6.4 -> git-2020-01-16 2020-01-24 09:17:11 +01:00
Maximilian Bosch
eddfcc32b4
Merge branch 'staging' into glibc230 2020-01-23 11:31:13 +01:00
Maximilian Bosch
c3c2e67221
drbd: fix build w/glibc-2.30
Decided to not bump to a later version as they decided to split the repo
which would've made change way more complicated.
2020-01-23 00:21:22 +01:00
Ben Wolsieffer
07b977df89 linux_hardkernel_4_14: 4.14.120-160 -> 4.14.165-172 2020-01-22 17:56:24 -05:00
Robin Gloster
0751c48313
Merge pull request #78191 from Ma27/bump-wireguard
wireguard: 1.0.20200102 -> 1.0.20200121
2020-01-22 16:10:50 +01:00
Marek Mahut
645e7e22f8
Merge pull request #78266 from r-ryantm/auto-update/powerstat
powerstat: 0.02.20 -> 0.02.21
2020-01-22 13:44:18 +01:00
R. RyanTM
87e0a8a139 powerstat: 0.02.20 -> 0.02.21 2020-01-22 10:53:54 +00:00
Patrick Hilhorst
593e11fd94
treewide: fix redirected urls
According to https://repology.org/repository/nix_unstable/problems, we have a
lot of packages that have http links that redirect to https as their homepage.
This commit updates all these packages to use the https links as their
homepage.

The following script was used to make these updates:

```

curl https://repology.org/api/v1/repository/nix_unstable/problems \
    | jq '.[] | .problem' -r \
    | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \
    | sort | uniq > script.sed

find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
2020-01-22 11:26:22 +01:00
Will Dietz
d6430f3f77
Merge pull request #78192 from r-ryantm/auto-update/health-check
health-check: 0.03.04 -> 0.03.05
2020-01-21 15:49:48 -06:00
R. RyanTM
db6392dae9 health-check: 0.03.04 -> 0.03.05 2020-01-21 17:57:34 +00:00
Maximilian Bosch
5a8e936da8
linuxPackages.wireguard: 0.0.20200105 -> 0.0.20200121
https://lists.zx2c4.com/pipermail/wireguard/2020-January/004870.html
2020-01-21 17:58:35 +01:00
worldofpeace
58ef958f70
Merge pull request #78137 from snicket2100/firejail-homepage-updated
firejail: updated the homepage address
2020-01-20 19:14:54 -05:00
worldofpeace
348e48fdcc
Merge pull request #78004 from worldofpeace/mtrack-remove
nixos/multitouch: remove (properly known as mtrack)
2020-01-20 17:07:59 -05:00
snicket2100
a43a5479a5 firejail: updated the homepage address 2020-01-20 23:07:18 +01:00
worldofpeace
b7b4e443fc xf86_input_multitouch: remove
The source repo doesn't exist and it hasn't been touched in 8 years.
There is also no module to interface with it in NixOS.
2020-01-20 16:10:01 -05:00
worldofpeace
afe27e517b nixos/multitouch: remove
On numerous occasions I have seen users mistake this
module as libinput because it being called "multitouch"
and them being unaware that the actually module they want
is libinput. They then run into several decrepit bugs due
to the completely out-of-date nature of the underlying package.
The underlying package hasn't been changed to an up-to-date
fork in a period of 8 years. I don't consider this to be production quality.
However, I'm not opposed for the module being readded to NixOS
with new packaging, and a better name.
2020-01-20 16:09:29 -05:00
Niklas Hambüchen
b17d21dca0
Merge pull request #77882 from colemickens/nixpkgs-v4l2-fix
v4l2loopback: 0.12.2 -> 0.12.3
2020-01-20 20:45:56 +01:00
Tim Steinbach
d9e2bcb21d
linux: 5.5-rc6 -> 5.5-rc7 2020-01-20 07:47:25 -05:00
Graham Christensen
14aca32d26
Merge pull request #77888 from kraem/master
facetimehd: unstable-2016-10-09 -> unstable-2019-12-10 for kernels > 4.8
2020-01-19 15:44:48 -05:00
Luka Blaskovic
13555cb1ce syslinux: 2015-11-09 -> 2019-02-07 2020-01-19 14:51:50 -05:00
Michael Raskin
47b4451535
Merge pull request #77973 from snicket2100/firejail-0.9.62
firejail: 0.9.60 -> 0.9.62
2020-01-19 08:35:13 +00:00
Tim Steinbach
64d20fe9cc
linux: 5.4.12 -> 5.4.13 2020-01-18 11:41:44 -05:00
Tim Steinbach
cac9f210cf
linux: 4.19.96 -> 4.19.97 2020-01-18 11:41:12 -05:00
Tim Steinbach
e14d19be43
linux: 4.14.165 -> 4.14.166 2020-01-18 11:40:37 -05:00
hlolli
78b34b5e5b
graalvm8: 19.1.1 -> 19.2.1
- - nixpkgs now with full darwin support
2020-01-18 16:43:03 +01:00
snicket2100
d914e9d1db firejail: 0.9.60 -> 0.9.62 2020-01-18 11:56:07 +01:00
Frederik Rietdijk
bcd8c6b8dc Merge master into staging-next 2020-01-17 17:08:16 +01:00
Jörg Thalheim
d3a0befba1
quartus: init at 19.1.0.670 (#75561)
quartus: init at 19.1.0.670
2020-01-17 09:35:38 +00:00
Cole Mickens
c841d2017e v4l2loopback: 0.12.2 -> 0.12.3 2020-01-17 00:16:26 -08:00
kraem
ddaf7bf2c1
facetimehd: unstable-2016-10-09 -> unstable-2019-12-10 for kernels > 4.8 2020-01-17 09:15:56 +01:00
Mario Rodas
4186705a70
Merge pull request #73814 from alexbakker/zenpower
zenpower: init at 0.1.5
2020-01-16 08:55:09 -05:00
Kai Wohlfahrt
733113ed97 unstick: init at 0.1.0 2020-01-15 21:15:39 +00:00
Tim Steinbach
fb06094ae3
linux: 5.4.11 -> 5.4.12 2020-01-15 09:12:21 -05:00
Tim Steinbach
155d5292cc
linux: 4.9.209 -> 4.9.210 2020-01-15 09:12:06 -05:00
Tim Steinbach
ea1728f306
linux: 4.4.209 -> 4.4.210 2020-01-15 09:11:44 -05:00
Tim Steinbach
8dcf516adf
linux: 4.19.95 -> 4.19.96 2020-01-15 09:11:26 -05:00
Tim Steinbach
4d3f1ca18c
linux: 4.14.164 -> 4.14.165 2020-01-15 09:10:50 -05:00
R. RyanTM
cd6ac55fb1 linuxPackages.evdi: 1.6.3 -> 1.6.4 2020-01-15 14:41:21 +01:00
Anders Kaseorg
3cd8ce3bce treewide: Fix unsafe concatenation of $LD_LIBRARY_PATH
Naive concatenation of $LD_LIBRARY_PATH can result in an empty
colon-delimited segment; this tells glibc to load libraries from the
current directory, which is definitely wrong, and may be a security
vulnerability if the current directory is untrusted.  (See #67234, for
example.)  Fix this throughout the tree.

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2020-01-15 09:47:03 +01:00
Frederik Rietdijk
bc18cc72dd
Merge pull request #77610 from LnL7/darwin-stdenv-python3
darwin-stdenv: bootstrap with python3
2020-01-15 09:24:57 +01:00
Frederik Rietdijk
2a88c3c302 Merge staging-next into staging 2020-01-15 09:23:28 +01:00
Frederik Rietdijk
05962c4ad5 Merge master into staging-next 2020-01-14 10:20:32 +01:00
Tim Steinbach
7184df6beb
linux: 5.5-rc5 -> 5.5-rc6 2020-01-13 19:53:27 -05:00
Tim Steinbach
a8144b1ad3
linux_latest-libre: 17192 -> 17198 2020-01-13 19:25:14 -05:00
Alyssa Ross
1d51514ab2 linux-libre.updateScript: fix git commit
With nothing staged and no paths given, previously this wouldn't
actually do anything.
2020-01-13 16:44:48 +00:00
Alyssa Ross
345f6712e3 linux-libre.updateScript: don't update if unchanged
The revision applies to the whole SVN tree, not just the scripts
directory, so the revision will increment sometimes with no change in
content.
2020-01-13 16:44:48 +00:00
Alyssa Ross
be4d80d721 linux-libre.updateScript: fix COMMIT option
Because bash was being run with -u, if COMMIT wasn't set in the
environment the script would just crash here, rather than exiting
successfully.
2020-01-13 16:44:48 +00:00
Frederik Rietdijk
ed1b0d0bac Merge master into staging-next 2020-01-13 16:08:59 +01:00
Tim Steinbach
583e4b8d89
linux_latest-libre: 17190 -> 17192 2020-01-13 07:23:03 -05:00
Daiderd Jordan
c05efedd4d
darwin.iproute2mac: explicitly use python2 2020-01-13 11:41:23 +01:00
Daiderd Jordan
da6bc4b4cb
darwin.libtapi: python2 -> python3 2020-01-13 11:41:23 +01:00
Daiderd Jordan
73db5d8c38
darwin.apple_sdk: python2 -> python3 2020-01-13 11:13:57 +01:00
Daiderd Jordan
453e009947
darwin.CF: python2 -> python3 2020-01-13 11:13:06 +01:00
Daiderd Jordan
c7d457c9da
darwin.xnu: python2 -> python3 2020-01-13 11:13:01 +01:00
Jörg Thalheim
c6fed21306
Merge pull request #77596 from samueldr/fix/cross/libselinux-python3
libselinux: Fix cross-compilation with Python 3
2020-01-13 10:04:08 +00:00
Lassulus
bc4921a584
Merge pull request #73328 from magenbluten/af_xdp
linux config: add support for xdp sockets and ebpf jit
2020-01-13 05:54:57 +01:00
Samuel Dionne-Riel
0f94b540a5 libselinux: Fix cross-compilation with Python 3 2020-01-12 23:39:27 -05:00
Tim Steinbach
6d65b859ed
linux: 5.5-rc3 -> 5.5-rc5 2020-01-12 17:13:48 -05:00
Tim Steinbach
f2251b483c
linux: Remove 5.3
The 5.3.x series has been marked as EOL upstream
2020-01-12 16:45:24 -05:00
Tim Steinbach
0f8090b972
linux_latest-libre: 17185 -> 17190 2020-01-12 16:45:24 -05:00
Tim Steinbach
ebf3c67a1b
linux: 5.4.10 -> 5.4.11 2020-01-12 16:45:24 -05:00
Tim Steinbach
ad4637a2b8
linux: 4.9.208 -> 4.9.209 2020-01-12 16:45:23 -05:00
Tim Steinbach
aab055fc54
linux: 4.4.208 -> 4.4.209 2020-01-12 16:45:23 -05:00
Tim Steinbach
eadba9cd51
linux: 4.19.94 -> 4.19.95 2020-01-12 16:45:23 -05:00
Tim Steinbach
e69455a8be
linux: 4.14.163 -> 4.14.164 2020-01-12 16:45:23 -05:00
Jan Tojnar
61cf52bc17
Merge pull request #77501 from jtojnar/more-loaof-fxes
tree-wide: fix more warning related to loaOf deprecation
2020-01-12 18:47:34 +01:00
Frederik Rietdijk
b3245241d8 Merge staging-next into staging 2020-01-12 09:47:43 +01:00
Frederik Rietdijk
960f062825 Merge master into staging-next 2020-01-12 09:47:19 +01:00
snicket2100
0778f0aee6 firejail: local profile handling fixed
The sed expression wasn't really catching anything (as local profiles are
included in the provided set of profiles by `include aaa.local` and not by
`include xx/firejail/aaa.local` as the sed expression used to expect).
As a result, it was not possible to create local profiles in any
accessible location. This fix makes it possible to create them in
`/etc/firejail/` which seems pretty standard.
2020-01-11 20:49:48 +01:00
Tim Steinbach
33ebfc6cc3
linux_latest-libre: 17179 -> 17185 2020-01-11 09:49:01 -05:00
markuskowa
0f9a4a2e55
Merge pull request #77488 from dtzWill/update/ipset-7.5
ipset: 7.4 -> 7.5, pname
2020-01-11 13:49:59 +01:00
Mario Rodas
a33d21f5b3
Merge pull request #76314 from r-ryantm/auto-update/libratbag
libratbag: 0.11 -> 0.12
2020-01-11 05:26:08 -05:00
Frederik Rietdijk
263bc67bda Merge staging-next into staging 2020-01-11 09:33:08 +01:00
Frederik Rietdijk
1a654573b0 Merge master into staging-next 2020-01-11 09:32:41 +01:00
Jan Tojnar
e85b34c484
tree-wide: fix more warning related to loaOf deprecation 2020-01-11 08:09:56 +01:00
Will Dietz
84a6071bc7
kernel/update.sh: always use -e 2020-01-11 00:00:11 -06:00
Will Dietz
49638e309c
ipset: 7.4 -> 7.5, pname 2020-01-10 23:57:40 -06:00
Tim Steinbach
1a9e732288
linux_latest-libre: 17177 -> 17179 2020-01-10 20:47:31 -05:00
Frederik Rietdijk
348eaa280b Merge master into staging-next 2020-01-10 18:32:07 +01:00
Michael Weiss
1b4ab87668
nvme-cli: 1.9 -> 1.10.1 2020-01-10 17:10:55 +01:00
Frederik Rietdijk
5ad16cb27f Merge master into staging-next 2020-01-10 10:34:04 +01:00
Tim Steinbach
7ea793e7b9
linux_latest-libre: 17174 -> 17177 2020-01-09 20:33:38 -05:00
Tim Steinbach
895545d2b4
linux: 5.4.8 -> 5.4.10 2020-01-09 20:32:11 -05:00
Tim Steinbach
122c02c7f7
linux: 4.19.93 -> 4.19.94 2020-01-09 20:31:23 -05:00
Tim Steinbach
ca91b1694d
linux: 4.14.162 -> 4.14.163 2020-01-09 20:30:26 -05:00
Mario Rodas
9c41b826f9
Merge pull request #76325 from r-ryantm/auto-update/mcelog
mcelog: 166 -> 167
2020-01-09 05:39:12 -05:00
Mario Rodas
afc36c921b
Merge pull request #77033 from r-ryantm/auto-update/forkstat
forkstat: 0.02.11 -> 0.02.12
2020-01-09 05:26:52 -05:00
Mario Rodas
261b50ff9a
Merge pull request #77120 from r-ryantm/auto-update/ipvsadm
ipvsadm: 1.30 -> 1.31
2020-01-09 05:18:14 -05:00
Vladimír Čunát
5c780036c5
Merge branch 'master' into staging-next
The nss rebuild isn't so small.
2020-01-08 22:48:13 +01:00
squalus
9314327dee keepassxc: fix darwin build
- Removed the unnecessary libmicrohttpd dependency, which doesn't
  build on macOS. KeepassXC removed this dependency in 2.1.2
- Fixed a compiler error related to the Touch ID feature by adding a
  dependency on the LocalAuthentication framework
2020-01-08 16:44:14 +01:00
Tim Steinbach
74e75a8964
linux_latest-libre: 17169 -> 17174 2020-01-08 08:03:28 -05:00
Daiderd Jordan
e0b00eda58
Merge pull request #77306 from gpevnev/reattach-to-user-namespace-2.8
reattach-to-user-namespace: 2.7 -> 2.8
2020-01-08 12:06:59 +01:00
Greg Pevnev
a17dbd86ad
reattach-to-user-namespace: 2.7 -> 2.8
Add macOS Catalina (10.15) "support".
2020-01-08 13:50:08 +03:00
Michael Raskin
8b7d03e243
Merge pull request #77044 from r-ryantm/auto-update/firejail
firejail: 0.9.60 -> 0.9.62
2020-01-08 10:16:33 +00:00
Mario Rodas
f14931b294
Merge pull request #77079 from r-ryantm/auto-update/google-authenticator-libpam
google-authenticator: 1.07 -> 1.08
2020-01-08 05:13:11 -05:00
Frederik Rietdijk
5732db0652 Merge staging-next into staging 2020-01-07 20:06:45 +01:00
Frederik Rietdijk
a823616723 Merge master into staging-next 2020-01-07 20:06:22 +01:00
Tim Steinbach
7e3d864873
linux_latest-libre: 17167 -> 17169 2020-01-07 08:45:53 -05:00
Florian Klink
2eb2fccce5
Merge pull request #77137 from dtzWill/fix/systemd-243.4-version
systemd: fix version after update to 243.4 (#76134)
2020-01-07 09:41:07 +01:00
Matthew Bauer
7743eba511
Merge pull request #76718 from matthewbauer/fix-etc-sconfigdir
linux-pam: set sconfigdir to /etc for usage at runtime
2020-01-07 00:22:43 -05:00
Will Dietz
2fa60a6565
systemd: fix version after update to 243.4 (#76134) 2020-01-06 15:31:38 -06:00
R. RyanTM
5e6f852211 ipvsadm: 1.30 -> 1.31 2020-01-06 11:05:11 -08:00
Frederik Rietdijk
7f81119550 libapparmor: support python 3.8 2020-01-06 19:12:20 +01:00
Maximilian Bosch
2971c829e5
linuxPackages_5_4.ddci-driver: fix build
https://hydra.nixos.org/build/109690986
2020-01-06 18:47:37 +01:00
Maximilian Bosch
f02e9f460d
Merge pull request #77101 from xwvvvvwx/wireguard-0.0.20200105
wireguard: 0.0.20191226 -> 0.0.20200105
2020-01-06 18:27:53 +01:00
David Terry
ed72b90dd6
wireguard: 0.0.20191226 -> 0.0.20200105
https://lists.zx2c4.com/pipermail/wireguard/2020-January/004844.html
2020-01-06 17:24:28 +01:00
R. RyanTM
29802ae19b google-authenticator: 1.07 -> 1.08 2020-01-06 06:07:16 -08:00
Tim Steinbach
d748525498
linux_latest-libre: 17165 -> 17167 2020-01-06 07:14:47 -05:00
Frederik Rietdijk
4a91444aa8 Merge staging-next into staging 2020-01-06 12:01:12 +01:00
Frederik Rietdijk
8fff915659
Merge pull request #76488 from jtojnar/more-python-cleanups
Another batch of Python 2 clean-ups
2020-01-06 12:00:36 +01:00
R. RyanTM
06f9d0b944 firejail: 0.9.60 -> 0.9.62 2020-01-06 02:48:31 -08:00
R. RyanTM
316256839b forkstat: 0.02.11 -> 0.02.12 2020-01-06 01:42:08 -08:00