Commit Graph

197385 Commits

Author SHA1 Message Date
Will Dietz
9ae8499342 deluge: 1.3.15 -> 2.0.3
* let's try 2.0 version now, no time better than the present! Maybe!
* bz2 -> xz
* maybe python3
* disable pyGtkGlade for deps, maybe not needed?
* fix gtk/etc deps, deluge-gtk works! \o/
* restore installation of images and such

The old version is kept available as some torrent trackers have not
updated their whitelists yet.
2020-04-18 02:00:04 +02:00
Will Dietz
ca722c5e2b libtorrent-rasterbar: 1.1.11 -> 1.2.5
https://raw.githubusercontent.com/arvidn/libtorrent/libtorrent-1_2_5/ChangeLog

The old release is kept available as libtorrentRasterbar-1_1_x for deluge 1.x.
2020-04-18 02:00:04 +02:00
Milan Pässler
69e73264a9 Partially revert "libtorrent-raster: 1.1.11 -> 1.2.5; qbittorrent: 4.2.1 -> 4.2.2"
This partially reverts commit cc03fb4210.
The libtorrentRasterbar update broke deluge 1.x, the hash was not
updated and obsolete dependencies and flags were not removed.
2020-04-18 02:00:04 +02:00
Jeff Labonte
094c35b920 brave: 1.5.123 -> 1.7.92 2020-04-17 19:50:17 -04:00
John Ericson
e99a409065
Merge pull request #85190 from Ericson2314/fwupdate
fwupdate: Clean up -I flags
2020-04-17 18:50:22 -04:00
zowoq
95847e6405 yq-go: 3.2.1 -> 3.3.0
https://github.com/mikefarah/yq/releases/tag/3.3.0
2020-04-18 08:49:49 +10:00
adisbladis
ce283f055b
Merge pull request #85448 from bhipple/fix/mesa-glu
mesa-glu: use HTTPS instead of FTP
2020-04-18 00:46:20 +02:00
John Ericson
cdfda4b455
Merge pull request #83888 from matthewbauer/blas-alternatives
Add BLAS/LAPACK switching mechanism
2020-04-17 18:38:41 -04:00
adisbladis
3fe18a5b4e
emacsPackages.pod-mode: Fix platforms meta 2020-04-17 23:27:06 +01:00
Matthew Bauer
97fc083fd4 giac: broken on 64-bit blas 2020-04-17 16:24:31 -05:00
Matthew Bauer
fcf33e2499 scs: breaks on 64bit blas 2020-04-17 16:24:31 -05:00
Matthew Bauer
98fb0ede70 arrayfire: remove mkl
This is unfree.
2020-04-17 16:24:30 -05:00
Matthew Bauer
d83e9c9573 setup-hooks/audit-blas.sh: init
Add a simple hook that makes sure blas and lapack are linked to the
right place.
2020-04-17 16:24:25 -05:00
Matthew Bauer
7841b4290f pkgs/release-alternatives.nix: create
Add some ability to test the different BLAS/LAPACK implementations
together.
2020-04-17 16:24:16 -05:00
Matthew Bauer
1c8aba8334 treewide: use blas and lapack
This makes packages use lapack and blas, which can wrap different
BLAS/LAPACK implementations.

treewide: cleanup from blas/lapack changes

A few issues in the original treewide:

- can’t assume blas64 is a bool
- unused commented code
2020-04-17 16:24:09 -05:00
Matthew Bauer
43873351ff blas/lapack: add wrapper for “alternative”s of BLAS/LAPACK provider
This is based on previous work for switching between BLAS and LAPACK
implementation in Debian[1] and Gentoo[2]. The goal is to have one way
to depend on the BLAS/LAPACK libraries that all packages must use. The
attrs “blas” and “lapack” are used to represent a wrapped BLAS/LAPACK
provider. Derivations that don’t care how BLAS and LAPACK are
implemented can just use blas and lapack directly. If you do care what
you get (perhaps for some CPP), you should verify that blas and lapack
match what you expect with an assertion.

The “blas” package collides with the old “blas” reference
implementation. This has been renamed to “blas-reference”. In
addition, “lapack-reference” is also included, corresponding to
“liblapack” from Netlib.org.

Currently, there are 3 providers of the BLAS and LAPACK interfaces:

- lapack-reference: the BLAS/LAPACK implementation maintained by netlib.org
- OpenBLAS: an optimized version of BLAS and LAPACK
- MKL: Intel’s unfree but highly optimized BLAS/LAPACK implementation

By default, the above implementations all use the “LP64” BLAS and
LAPACK ABI. This corresponds to “openblasCompat” and is the safest way
to use BLAS/LAPACK. You may received some benefits from “ILP64” or
8-byte integer BLAS at the expense of breaking compatibility with some
packages.

This can be switched at build time with an override like:

    import <nixpkgs> {
        config.allowUnfree = true;
        overlays = [(self: super: {
          lapack = super.lapack.override {
            lapackProvider = super.lapack-reference;
          };
          blas = super.blas.override {
            blasProvider = super.lapack-reference;
          };
        })];
      }

or, switched at runtime via LD_LIBRARY_PATH like:

    $ LD_LIBRARY_PATH=$(nix-build -E '(with import <nixpkgs> {}).lapack.override { lapackProvider = pkgs.mkl; is64bit = true; })')/lib:$(nix-build -E '(with import <nixpkgs> {}).blas.override { blasProvider = pkgs.mkl; is64bit = true; })')/lib ./your-blas-linked-binary

By default, we use OpenBLAS LP64 also known in Nixpkgs as
openblasCompat.

[1]: https://wiki.debian.org/DebianScience/LinearAlgebraLibraries
[2]: https://wiki.gentoo.org/wiki/Blas-lapack-switch
2020-04-17 16:23:55 -05:00
Matthew Bauer
90326ba624 lapack: enable shared libraries, cblas, and tests 2020-04-17 16:17:12 -05:00
adisbladis
04afb68ad7
systemfd: init at 0.3.0 2020-04-17 22:10:18 +01:00
Peter Simons
10100a97c8 ghc-8.10.x: add plenty of overrides to fix builds 2020-04-17 22:50:43 +02:00
Maximilian Bosch
135ae45d24
grocy: 2.7.0 -> 2.7.1
https://github.com/grocy/grocy/releases/tag/v2.7.1
2020-04-17 22:02:28 +02:00
Mario Rodas
2f33062f53 flow: 0.122.0 -> 0.123.0
Changelog: https://github.com/facebook/flow/releases/tag/v0.123.0
2020-04-17 22:00:54 +02:00
Graham Christensen
e42312e354
Merge pull request #85183 from Xe/zig-0.6.0
zig: upgrade to 0.6.0
2020-04-17 15:17:45 -04:00
Peter Simons
e9687df24a
Merge pull request #85178 from NixOS/haskell-updates
Update Haskell package set to LTS 15.8 (plus other fixes)
2020-04-17 21:02:58 +02:00
Matthieu Coudron
839263d558 termpdf.py: init at 2019-09-30
This is a pdf reader for the terminal kitty.
2020-04-17 21:01:17 +02:00
Matthieu Coudron
c881dd5e68 pythonPackages.pagelabels: init at 1.2.0
Used in termpdf I want to package.
2020-04-17 21:01:17 +02:00
Matthieu Coudron
c0a498b5d5 pythonPackages.pdfrw: init at 0.4.0 2020-04-17 21:01:17 +02:00
Anders Kaseorg
4fdc455543
mesa-demos: init at 8.4.0 (#74310)
* mesa-demos: init at 8.4.0

Signed-off-by: Anders Kaseorg <andersk@mit.edu>

* Update pkgs/tools/graphics/mesa-demos/default.nix

Co-Authored-By: Doron Behar <doron.behar@gmail.com>
2020-04-17 14:00:48 -05:00
Peter Simons
783af05bbb all-cabal-hashes: update to Hackage at 2020-04-17T17:47:53Z 2020-04-17 20:56:52 +02:00
Peter Simons
d6aedf7bcd haskell-ghc-lib-parser-ex: fix build with GHC versions prior to 8.8.x 2020-04-17 20:50:48 +02:00
Guillaume Bouchard
abc4f961b4 haskellPackages.ghcWithPackages: fix for GHC 8.10
This closes #79441.

ghcWithPackages is using `ghc-pkg recache` to build its package
database. By doing so, it overrides the `package.cache[.lock]` files.

Details are unclear, but GHC 8.10 changed a bit the behavior.
Previously, it was unconditionally replacing the files by new ones. Now
it tries to open (for modification) the files. These files are symlinks
to another nix derivation, which is hence read-only.

This commit removes the files before running `ghc-pkg recache`, hence it
will just write the new files.

Tested with `haskellPackages.ghcWithPackages` (i.e. GHC 8.8) and
`haskell.packages.ghc8101.ghcWithPackages` (i.e GHC 8.10) with the
following nix file, at the root of the nixpkgs repository:

```
with import ./. {
  overlays = [
    (
      self: super: {
        haskellPackages = super.haskell.packages.ghc8101.override {
          overrides = selfh: superh: {
             th-lift-instances = super.haskell.lib.doJailbreak superh.th-lift-instances;
             th-expand-syns    = super.haskell.lib.doJailbreak superh.th-expand-syns;
             th-reify-many     = super.haskell.lib.doJailbreak superh.th-reify-many;
             th-orphans        = super.haskell.lib.doJailbreak superh.th-orphans;
             haskell-src-meta  = super.haskell.lib.doJailbreak superh.haskell-src-meta;
          };
        };
      }
  )
  ];
};
haskellPackages.ghcWithPackages(p:[p.PyF])
```

This will test with GHC 8.10. Comment out the `overlays` to test with
GHC 8.8.
2020-04-17 20:50:48 +02:00
Mike Sperber
53cfd1d132 haskell-tensorflow: unbreak
- get the current Git head of haskell-tensorflow
- adjust dependencies
2020-04-17 20:50:48 +02:00
Michael Alan Dorman
d59d157ad9 cabal-install-parsers: update Cabal dependency
This also unbreaks `haskell-ci`.
2020-04-17 20:50:48 +02:00
Jappie Klooster
b95534aaea cut-the-crap: init at 1.0.0 2020-04-17 20:50:48 +02:00
Manuel Bärenz
a762316e72 haskell simple-affine-space: Disable test suite 2020-04-17 20:50:48 +02:00
Troels Henriksen
802dfc8bd7 futhark: stop wrapping the executable 2020-04-17 20:50:48 +02:00
(cdep)illabout
a0612c2a06 spago: 0.14.0 -> 0.15.1 2020-04-17 20:50:48 +02:00
Gabor Greif
7932fb22cb ghcHEAD: bump to 8.11.20200403 (#84217)
* ghcHEAD: bump to 8.11.20200403

* ghcHead: reduce diff vs. 8.10.1

dontAddExtraLibs was removed by accident (IMO) in ea19a8ed1e

* ghcHEAD: add ability to use system libffi

- enable nixpkgs' libffi
- minimise diffs against 8.10.1
- remove patching

* remove configure warning about --with-curses-includes

configure: WARNING: unrecognized options: --with-curses-includes
2020-04-17 20:50:48 +02:00
Peter Simons
fd1103227d hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.15.1 from Hackage revision
fcda2563cd.
2020-04-17 20:50:40 +02:00
Peter Simons
fd63776ff4 hackage2nix: update list of broken builds to fix evaluation errors 2020-04-17 20:50:26 +02:00
Remo
83d84e6233 hackage2nix: unbreak postgrest 2020-04-17 20:50:07 +02:00
Remo
629af9f518 hackage2nix: unbreak hasql-pool 2020-04-17 20:49:49 +02:00
Peter Simons
572e8f6008 LTS Haskell 15.8 2020-04-17 20:49:10 +02:00
Tony O
39b1de0fbf
sv-kalendar: fix meta 2020-04-17 19:03:26 +01:00
Maximilian Bosch
192485f8fa
neomutt: 20200320 -> 20200417
https://github.com/neomutt/neomutt/releases/tag/20200417

To fix the tests, I had to copy the recently created
`neomutt-test-files`[1] repository into the build-environment.

Also applied a patch from master[2] which ensures that the
`change-folder` macro actually switches to the specified folder.

[1] https://github.com/neomutt/neomutt-test-files
[2] 9e7537cadd
2020-04-17 19:35:20 +02:00
Jan Tojnar
42f2d370a5
Merge pull request #81955 from r-ryantm/auto-update/poppler-glib 2020-04-17 18:38:20 +02:00
Michele Guerini Rocco
8afc0daa29
Merge pull request #85431 from rnhmjoj/vapoursynth
vapoursynth: R48 -> R49
2020-04-17 18:20:46 +02:00
Peter Simons
464d1861ee
Merge pull request #81307 from jabranham/r-pkgs
R: Update R, CRAN, & Bioconductor
2020-04-17 17:43:38 +02:00
Benjamin Hipple
ba8c116519 mesa-glu: use HTTPS instead of FTP
FTP is often blocked by firewalls and is generally slower and less secure than HTTPS.

No change to `src` hash.
2020-04-17 11:35:16 -04:00
Emily
7fdfe5381d linux_*_hardened: don't set FORTIFY_SOURCE
Upstreamed in anthraxx/linux-hardened@d12c0d5f0c.
2020-04-17 16:13:39 +01:00
Emily
ed89b5b3f1 linux_*_hardened: don't set PANIC_ON_OOPS
Upstreamed in anthraxx/linux-hardened@366e0216f1.
2020-04-17 16:13:39 +01:00
Emily
0d5f1697b7 linux_*_hardened: don't set SLAB_FREELIST_{RANDOM,HARDENED}
Upstreamed in anthraxx/linux-hardened@786126f177,
anthraxx/linux-hardened@44822ebeb7.
2020-04-17 16:13:39 +01:00
Emily
4fb796e341 linux_*_hardened: don't set HARDENED_USERCOPY_FALLBACK
Upstreamed in anthraxx/linux-hardened@c1fe7a68e3,
anthraxx/linux-hardened@2c553a2bb1.
2020-04-17 16:13:39 +01:00
Emily
3eeb5240ac linux_*_hardened: don't set DEBUG_LIST
Upstreamed in anthraxx/linux-hardened@6b20124185.
2020-04-17 16:13:39 +01:00
Emily
0611462e33 linux_*_hardened: don't set {,IO_}STRICT_DEVMEM
STRICT_DEVMEM is on by default in upstream 5.6.2; IO_STRICT_DEVMEM is
turned on by anthraxx/linux-hardened@103d23cb66.

Note that anthraxx/linux-hardened@db1d27e10e
disables DEVMEM by default, so this is only relevant if that default is
overridden to turn it back on.
2020-04-17 16:13:39 +01:00
Emily
303bb60fb1 linux_*_hardened: don't set DEBUG_WX
Upstreamed in anthraxx/linux-hardened@55ee7417f3.
2020-04-17 16:13:39 +01:00
Emily
33b94e5a44 linux_*_hardened: don't set BUG_ON_DATA_CORRUPTION
Upstreamed in anthraxx/linux-hardened@3fcd15014c.
2020-04-17 16:13:39 +01:00
Emily
db6b327508 linux_*_hardened: don't set LEGACY_VSYSCALL_NONE
Upstreamed in anthraxx/linux-hardened@d300b0fdad.
2020-04-17 16:13:39 +01:00
Emily
130f6812be linux_*_hardened: don't set RANDOMIZE_{BASE,MEMORY}
These are on by default for x86 in upstream linux-5.6.2, and turned on
for arm64 by anthraxx/linux-hardened@90f9670bc3.
2020-04-17 16:13:39 +01:00
Emily
8c68055432 linux_*_hardened: don't set MODIFY_LDT_SYSCALL
Upstreamed in anthraxx/linux-hardened@05644876fa.
2020-04-17 16:13:39 +01:00
Emily
8efe83c22e linux_*_hardened: don't set DEFAULT_MMAP_MIN_ADDR
Upstreamed in anthraxx/linux-hardened@f1fe0a64dd.
2020-04-17 16:13:39 +01:00
Emily
3d4c8ae901 linux_*_hardened: don't set VMAP_STACK
This has been on by default upstream for as long as it's been an option.
2020-04-17 16:13:39 +01:00
Emily
7d5352df31 linux_*_hardened: don't set X86_X32
As far as I can tell, this has never defaulted to on upstream, and our
common kernel configuration doesn't turn it on, so the attack surface
reduction here is somewhat homeopathic.
2020-04-17 16:13:39 +01:00
Emily
0d4f35efd4 linux_*_hardened: use linux-hardened patch set
This is an updated version of the former upstream,
https://github.com/AndroidHardeningArchive/linux-hardened, and provides
a minimal set of additional hardening patches on top of upstream.

The patch already incorporates many of our hardened profile defaults,
and releases are timely (Linux 5.5.15 and 5.6.2 were released on
2020-04-02; linux-hardened patches for them came out on 2020-04-03 and
2020-04-04 respectively).
2020-04-17 16:13:39 +01:00
Emily
3d01e802bd linux: explicitly enable SYSVIPC
The linux-hardened patch set removes this default, probably because of
its original focus on Android kernel hardening.
2020-04-17 16:12:29 +01:00
Emily
10dd3f3de0 graphene-hardened-malloc: enable on aarch64-linux 2020-04-17 16:12:29 +01:00
Jörg Thalheim
a7b3a6982a
Merge pull request #68171 from rileyinman/postcss-cli 2020-04-17 15:24:37 +01:00
Jörg Thalheim
3cb479a31a
Merge pull request #85443 from Mic92/st 2020-04-17 14:55:30 +01:00
nschoe
b584941ab9
st: copy config file in 'prePatch' instead of 'preBuild'
The patch phase runs after the build phase. Which means than when
using an override to override both 'conf' and 'patches' to provide
a custom config file and apply some patches, it doesn't work:
- first the patches applied (optionally changing config.def.h)
- then preBuild is run which overrides config.def.h with the user
supplied one (effectively cancelling previously applied patches)

By copying the config file in the prePatch phase instead, changes
are kept and applied in order.
2020-04-17 14:52:40 +01:00
adisbladis
98be297deb
Merge pull request #82651 from adisbladis/mopidyPackages
mopidy: Create a mopidyPackages set
2020-04-17 15:44:22 +02:00
worldofpeace
786946a952
Merge pull request #83782 from mkg20001/krita-fix
krita: disable parallel building #35359
2020-04-17 09:42:19 -04:00
Peter Hoeg
52c06182eb
nix-prefetch: 0.3.0 -> 0.3.1 (#85367)
* nix-prefetch: 0.3.0 -> 0.3.1

* nix-prefetch: date in man page

* nix-prefetch: use UTC
2020-04-17 21:10:24 +08:00
Michael Fellinger
056778b315
crystal: 0.31 -> 0.34 (#85432)
* crystal: 0.31 -> 0.34

* crystal: use latest llvm

* crystal: skip tests for 0.33
2020-04-17 21:04:33 +08:00
Tim Steinbach
e341107367
linux: 5.4.32 -> 5.4.33 2020-04-17 08:34:01 -04:00
Tim Steinbach
d9258d33be
linux: 4.19.115 -> 4.19.116 2020-04-17 08:34:01 -04:00
Graham Christensen
b76e3eab18
Merge pull request #84153 from colemickens/nixpkgs-obs-v4lsink
obs-v4l2sink: init at unstable-20181012
2020-04-17 08:29:30 -04:00
Vladimír Čunát
acb4710214
alsaTools: 1.1.7 -> 1.2.2
Fixes build regression (after alsa update, I assume).
Despite the version number change, the diff is trivial:
https://git.alsa-project.org/?p=alsa-tools.git;a=log;h=refs/tags/v1.2.2
2020-04-17 13:49:20 +02:00
Michael Weiss
cb5c0a4bbc
chromium{Beta,Dev}: M81 -> M83 -> M84 2020-04-17 13:44:45 +02:00
adisbladis
5340ebe085
mopidy: Create a mopidyPackages set
This is to avoid mixing python versions in the same plugin closure.
2020-04-17 12:39:03 +01:00
adisbladis
83cb22963b
mopidy: Move mopidy default.nix to mopidy.nix
This is in anticipation of a mopidyPackages set
2020-04-17 12:39:03 +01:00
Florian Klink
357be5c66c
Merge pull request #85385 from takikawa/racket-enable-useprefix
racket: use --enable-useprefix configure flag.
2020-04-17 13:17:00 +02:00
Mario Rodas
ba947eba04
Merge pull request #85347 from zowoq/megatools
megatools: 1.10.2 -> 1.10.3
2020-04-17 05:54:19 -05:00
Jörg Thalheim
61a03065fd
Merge pull request #84190 from geistesk/platformio-4.3.1 2020-04-17 11:37:07 +01:00
aszlig
3679c8d2d1
pcsc-cyberjack: 3.99.5_SP12 -> 3.99.5_SP13
Unfortunately, the upstream changelog consists of just the following:

  * Update to the Reiner-SCT repository rev cyberJack@1374

This is not very helpful since I haven't found a public SVN (I assume,
since it's using integer revisions) repository, so I decided to diff the
tarball against the old one, here's what I've found:

  * No longer ship generated files from autotools
  * Add support for REINER SCT cyberJack comfort PL
  * Add support for tanJack USB
  * Allow to override secoder information
  * Lots of whitespace and coding style changes

As mentioned above, the autotools-generated files are no longer shipped,
so I've added autoreconfHook to nativeBuildInputs.

I also verified the source tarball using the upstream hashes found here:

http://downloads.reiner-sct.de/LINUX/Hashwerte/Hashwerte.txt

Signed-off-by: aszlig <aszlig@nix.build>
Merges: https://github.com/NixOS/nixpkgs/pull/84749
2020-04-17 12:32:57 +02:00
Jörg Thalheim
ee6f5a32bb
python38.pkgs.python-jsonrpc-server: disable for python38 2020-04-17 11:22:35 +01:00
Timo Kaufmann
42ca7c114e
Merge pull request #85176 from timokau/zimports-init
python.pkgs.zimports: init at 0.2.0
2020-04-17 09:43:12 +00:00
Mario Rodas
fa4907859a
bazelisk: 1.3.0 -> 1.4.0
Changelog; https://github.com/bazelbuild/bazelisk/releases/tag/v1.4.0
2020-04-17 04:20:00 -05:00
zowoq
6dc7443d1b skopeo: cleanup 2020-04-17 17:34:34 +10:00
rnhmjoj
c339130b80
vapoursynth: R48 -> R49 2020-04-17 08:51:55 +02:00
Sarah Brofeldt
1d20b2872f
Merge pull request #85354 from srhb/k8s-1.18.1
kubernetes: 1.18.0 -> 1.18.1
2020-04-17 07:44:30 +02:00
Linus Heckemann
6b23355abb
Merge pull request #85307 from xaverdh/firefox-plugins-cleanup
firefox-wrapper: remove dead npapi plugin code
2020-04-17 07:32:41 +02:00
Riley Inman
523152f8c7 postcss-cli: init at 7.1.0 2020-04-17 01:17:07 -04:00
Constantine Glen Evans
919293492b ipe: fix Qt wrapping
Uses mkDerivation instead of stdenv.mkDerivation, to fix Qt wrapping problem.
2020-04-16 20:31:22 -07:00
José Romildo Malaquias
3b8a98d639 mpc-qt: 18.08 -> 2019-06-09
- update to the latest commit in git repository
- use mkDerivation for qt applications
- original repo disappeared from github; use the one from gitlab
2020-04-16 20:30:34 -07:00
worldofpeace
8d428ac33c
Merge pull request #85249 from kuznero/vscode
vscode, vscodium: 1.44.0 -> 1.44.1
2020-04-16 22:29:15 -04:00
Drew Risinger
0b6602c9a2 python3Packages.cirq: fix test failures (ZHF)
Also build on aarch64 by disabling a few failing tests.
2020-04-16 18:44:02 -07:00
Niklas Hambüchen
c4455d55d8
Merge pull request #85276 from r-ryantm/auto-update/pidgin-carbons
pidgin-carbons: 0.1.3 -> 0.2.2
2020-04-17 02:26:58 +02:00
Niklas Hambüchen
81c9968569 pidgin-carbons: Remove no-longer-maintainer.
See https://github.com/NixOS/nixpkgs/pull/85276#issuecomment-614832814.
2020-04-17 02:22:51 +02:00
xrelkd
93c19ecc88 go-ethereum: 1.9.12 -> 1.9.13 2020-04-17 08:14:02 +08:00
Jan Tojnar
9a4ee0c633
scribusUnstable: Fix build with Poppler 0.86 2020-04-17 01:22:16 +02:00
Hugo Reeves
9301b2c95d
joplin-desktop: add maintainer hugoreeves, change homepage 2020-04-17 10:52:22 +12:00
Maximilian Bosch
e61c924adb
mautrix-whatsapp: 2020-04-02 -> 2020-04-12 2020-04-17 00:28:13 +02:00
Maximilian Bosch
20252ee647
findomain: 1.4.5 -> 1.5.0
https://github.com/Edu4rdSHL/findomain/releases/tag/1.5.0
2020-04-17 00:28:13 +02:00
Maximilian Bosch
cd5bc89cca
evcxr: 0.5.0 -> 0.5.1
582ce09f21/RELEASE_NOTES.md (version-051)
2020-04-17 00:28:12 +02:00
zowoq
dc85a2e584 megatools: 1.10.2 -> 1.10.3 2020-04-17 08:07:55 +10:00
Zakkor
13c58fbbf4 upwork: init at 5.3.3-883 2020-04-16 14:45:30 -07:00
Niklas Hambüchen
37d03dd470
Merge pull request #85387 from r-ryantm/auto-update/gifski
gifski: 0.10.2 -> 0.10.4
2020-04-16 23:20:58 +02:00
Dominik Xaver Hörl
c415d67284 mozilla-plugins: remove all npapi plugins except for flash player
Firefox from version 52 onwards no longer supports npapi plugins (see https://support.mozilla.org/en-US/kb/npapi-plugins).
2020-04-16 23:04:51 +02:00
Edmund Wu
b4f8ce9e92
gitsrht: include minio 2020-04-16 16:49:37 -04:00
Edmund Wu
ae6a55cd44
srht: include html5lib
73600466cc
2020-04-16 16:48:32 -04:00
Edmund Wu
85b64d3006
buildsrht: fix build 2020-04-16 16:41:29 -04:00
Edmund Wu
578ebda358
srht: include prometheus_client
61c730191c
2020-04-16 16:41:29 -04:00
Edmund Wu
5b6e080603
scmsrht: 0.18.1 -> 0.19.11 2020-04-16 16:41:28 -04:00
Edmund Wu
2e171ac844
todosrht: 0.55.3 -> 0.57.14 2020-04-16 16:41:28 -04:00
Edmund Wu
2667f93c34
pastesrht: 0.9.2 -> 0.10.3 2020-04-16 16:41:28 -04:00
Edmund Wu
1f6d95badf
metasrht: 0.41.10 -> 0.42.13 2020-04-16 16:41:27 -04:00
Edmund Wu
e264904e4c
mansrht: 0.14.1 -> 0.14.7 2020-04-16 16:41:27 -04:00
Edmund Wu
188d031824
listssrht: 0.40.3 -> 0.41.8 2020-04-16 16:41:27 -04:00
Edmund Wu
f493868f9e
hgsrht: 0.21.1 -> 0.26.0 2020-04-16 16:41:26 -04:00
Edmund Wu
20466af068
gitsrht: 0.43.3 -> 0.50.3 2020-04-16 16:41:26 -04:00
Edmund Wu
0809ed89ea
dispatchsrht: 0.13.3 -> 0.14.1 2020-04-16 16:41:26 -04:00
Edmund Wu
924cd84a20
buildsrht: 0.52.5 -> 0.56.13 2020-04-16 16:41:25 -04:00
Edmund Wu
bc3020fbc7
srht: 0.57.2 -> 0.59.13 2020-04-16 16:41:25 -04:00
Michael Weiss
6109f94f8a
Merge pull request #85360 from primeos/chromium
chromium: 81.0.4044.92 -> 81.0.4044.113
2020-04-16 22:33:45 +02:00
Roman Kuznetsov
4fd1f49ea4
vscodium: 1.44.0 -> 1.44.1 2020-04-16 22:31:00 +02:00
Daniel Albert
2355d9d545
eclipse-scala-sdk: 4.4.1 -> 4.7.0
Unfortunately scala-ide is based on eclipse 4.7 (oxygen).
Thus is requires a java SDK 8 and GTK2.
2020-04-16 21:58:48 +02:00
ajs124
9e34eccb0f pythonPackages.rtslib: 2.1.71 -> 2.1.72 2020-04-16 12:56:28 -07:00
ajs124
15e790cec8 pythonPackages.configshell: 1.1.27 -> 1.1.28 2020-04-16 12:54:21 -07:00
Maximilian Bosch
d4659dece2
grocy: 2.6.2 -> 2.7.0 2020-04-16 21:52:08 +02:00
R. RyanTM
88be9a1b2f python27Packages.foxdot: 0.8.5 -> 0.8.7 2020-04-16 12:51:21 -07:00
Maximilian Bosch
ab0a10b39b
Merge pull request #85341 from Ma27/bump-hydra
hydra: 2020-04-07 -> 2020-04-16
2020-04-16 21:48:45 +02:00
Benjamin Hipple
5f814bf9cc
Merge pull request #85363 from prusnak/jitsi-meet-electron
jitsi-meet-electron: 2.0.0 -> 2.0.2
2020-04-16 13:53:28 -04:00
R. RyanTM
f7500ace8d dkimpy: 1.0.2 -> 1.0.4 2020-04-16 10:31:36 -07:00
R. RyanTM
fa5ee6e501 gifski: 0.10.2 -> 0.10.4 2020-04-16 17:21:49 +00:00
Jason Felice
ff4419ac4a plan9port: Do not attempt to build on aarch64-linux 2020-04-16 13:08:50 -04:00
Asumu Takikawa
b271255ede racket: use --enable-useprefix configure flag.
This is to fix a regression in upstream Racket packaging, the upstream
bug tracking this is here:

  https://github.com/racket/racket/issues/3046

When the bug is fixed this workaround will be unnecessary.
2020-04-16 09:49:21 -07:00
Oleksii Filonenko
90cd0a6334
packet-cli: init at 0.0.6 2020-04-16 18:21:21 +03:00
Vladimír Čunát
9d77dc28d2
Merge #85263: git: 2.25.1 -> 2.26.1 (into staging-next) 2020-04-16 16:59:53 +02:00
Benjamin Hipple
b4c36fe436
Merge pull request #84448 from lbpdt/feature/init-node-problem-detector
node-problem-detector: init at 0.8.1
2020-04-16 09:46:29 -04:00
sternenseemann
4e0a6294a3
ocamlPackages.erm_xmpp: 0.3+20180112 -> 0.3+20200317 2020-04-16 15:32:44 +02:00
Michael Weiss
7c2fc1ce23
gitRepo: 2.5 -> 2.6 2020-04-16 14:37:22 +02:00
Michael Weiss
56f7c93a2f
signal-desktop: 1.33.0 -> 1.33.1 2020-04-16 14:31:55 +02:00
Michael Weiss
16477d764f
google-chrome-{beta,dev}: Fix one substituteInPlace pattern 2020-04-16 13:39:07 +02:00
José Romildo Malaquias
cef0895d24 xfce.xfce4-netload-plugin: odd minor version number is not unstable 2020-04-16 08:06:56 -03:00
José Romildo Malaquias
7d84c7cd36 common-updater: change default development version check to false 2020-04-16 08:06:56 -03:00
José Romildo Malaquias
4b596ca254
Merge pull request #85304 from romildo/common-updater
common-updater: add update script to all-packages
2020-04-16 08:05:18 -03:00
Maximilian Bosch
7913b6cbcb
Merge pull request #85361 from zowoq/fd
fd: 7.5.0 -> 8.0.0
2020-04-16 12:58:31 +02:00
Pavol Rusnak
ffbf9af258
jitsi-meet-electron: 2.0.0 -> 2.0.2 2020-04-16 12:16:59 +02:00
Profpatsch
bcfca556f4 skalibs: 2.9.2.0 -> 2.9.2.1 2020-04-16 11:54:11 +02:00
zowoq
785eba0c23 fd: 7.5.0 -> 8.0.0
https://github.com/sharkdp/fd/releases/tag/v8.0.0
2020-04-16 19:21:43 +10:00
Mario Rodas
35eac7e51e
postgresqlPackages.timescaledb: 1.6.1 -> 1.7.0
Changelog: https://github.com/timescale/timescaledb/releases/tag/1.7.0
2020-04-16 04:20:00 -05:00
Mario Rodas
fc7efb2d49
lxc: 4.0.1 -> 4.0.2 2020-04-16 04:20:00 -05:00
Michael Weiss
ef2c3ab20e
chromium: 81.0.4044.92 -> 81.0.4044.113
https://chromereleases.googleblog.com/2020/04/stable-channel-update-for-desktop_15.html

This update includes 1 security fix.

CVEs: CVE-2020-6457
2020-04-16 10:53:53 +02:00
Dominik Xaver Hörl
c51b0afd54 firefox-wrapper: remove dead npapi plugin code 2020-04-16 10:12:09 +02:00
Jan Tojnar
3d8e436917
Merge branch 'master' into staging-next 2020-04-16 10:09:43 +02:00
R. RyanTM
342eaba9eb cjdns: 20.5 -> 20.6 2020-04-16 12:29:02 +05:30
worldofpeace
10d1088f7f
Merge pull request #85338 from lopsided98/g2o-update
g2o: unstable-2019-04-07 -> 20200410
2020-04-16 02:33:43 -04:00
worldofpeace
7b20f79df3
Merge pull request #85284 from andersk/system-syzygy
system-syzygy: Fix invalid desktopFile arguments
2020-04-16 02:23:33 -04:00
worldofpeace
9ec6bcba22
Merge pull request #85228 from etu/update-sequeler
sequeler: 0.7.4 -> 0.7.9
2020-04-16 02:19:13 -04:00
worldofpeace
34e037225c
Merge pull request #83742 from dkudriavtsev/multimc-update
multimc: 0.6.7 -> 0.6.11
2020-04-16 02:11:04 -04:00
Sarah Brofeldt
b57b6cdf02 kubernetes: 1.18.0 -> 1.18.1 2020-04-16 07:54:53 +02:00
worldofpeace
7eb0a87ace pantheon.pantheon-agent-geoclue2: 1.0.3 -> 1.0.4
https://github.com/elementary/pantheon-agent-geoclue2/releases/tag/1.0.4
2020-04-16 01:22:31 -04:00
worldofpeace
8da467e04b pantheon.elementary-videos: 2.7.0 -> 2.7.1
https://github.com/elementary/videos/releases/tag/2.7.1
2020-04-16 01:21:59 -04:00
worldofpeace
c3408adb7d ephemeral: 6.3.1 -> 6.3.3
https://github.com/cassidyjames/ephemeral/releases/tag/6.3.2
https://github.com/cassidyjames/ephemeral/releases/tag/6.3.3
2020-04-16 01:11:28 -04:00
worldofpeace
fbd4290fa9 monitor: add note how to use indicator. 2020-04-16 01:11:27 -04:00
worldofpeace
f646069c4c monitor: 0.6.2 -> 0.7.1
https://github.com/stsdc/monitor/releases/tag/0.7.0
https://github.com/stsdc/monitor/compare/0.7.0...0.7.1
2020-04-16 01:11:27 -04:00
worldofpeace
e4dc205023 agenda: 1.0.12 -> 1.1.0
https://github.com/dahenson/agenda/releases/tag/1.1.0
2020-04-16 01:11:27 -04:00
Sarah Brofeldt
67413f6eea
Merge pull request #83984 from r-ryantm/auto-update/kubernetes
kubernetes: 1.17.3 -> 1.18.0
2020-04-16 06:23:57 +02:00
Jonathan Ringer
0eec28560f python3Packages.ibis: 1.2.0 -> 1.3.0, fix tests 2020-04-15 21:19:26 -07:00
Mario Rodas
95e007d69f netdata-go.d.plugin: 0.15.0 -> 0.18.0 2020-04-15 21:15:52 -07:00
Mario Rodas
7ff456d2de netdata: 1.21.0 -> 1.21.1
Changelog: https://github.com/netdata/netdata/releases/tag/v1.21.1
2020-04-15 21:15:52 -07:00
Mario Rodas
bde951035b fira-code: 3 -> 3.1
Changelog; https://github.com/tonsky/FiraCode/releases/tag/3.1
2020-04-15 21:15:38 -07:00
Jan Tojnar
03bfda0196
poppler: add freedesktop team to maintainers 2020-04-16 04:54:58 +02:00
Niklas Hambüchen
74946536fe
Merge pull request #85196 from r-ryantm/auto-update/blugon
blugon: 1.12.0 -> 1.12.1
2020-04-16 04:52:00 +02:00
Niklas Hambüchen
33496aa3a6
Merge pull request #85261 from r-ryantm/auto-update/notejot
notejot: 1.6.0 -> 1.6.3
2020-04-16 04:46:04 +02:00
Niklas Hambüchen
ae06d93779
Merge pull request #85273 from r-ryantm/auto-update/otfcc
otfcc: 0.9.6 -> 0.10.4
2020-04-16 04:38:51 +02:00
Mario Rodas
50db521dff
Merge pull request #85302 from das-g/chromedriver-81.0.4044
chromedriver: 80.0.3987.16 -> 81.0.4044.69
2020-04-15 21:38:34 -05:00
Mario Rodas
2da9490e76
Merge pull request #85335 from zowoq/podman
podman: 1.8.2 -> 1.9.0
2020-04-15 21:33:59 -05:00
Mario Rodas
23b6677551
Merge pull request #85344 from xrelkd/update/eksctl
eksctl: 0.16.0 -> 0.17.0
2020-04-15 21:33:23 -05:00
xrelkd
9ce430fc38 tinygo: 0.12.0 -> 0.13.0 2020-04-16 10:20:02 +08:00
Jan Tojnar
796f9696f1
poppler: 0.86.1 → 0.87.0 2020-04-16 04:18:09 +02:00
Dmitry Kalinkin
af72bf0ae2
texlive.bin: fix for poppler 0.84 2020-04-16 04:17:22 +02:00
R. RyanTM
6187d5babc
poppler: 0.85.0 -> 0.86.1 2020-04-16 04:17:21 +02:00
Niklas Hambüchen
7d39eea965
Merge pull request #85283 from r-ryantm/auto-update/smarty3
smarty3: 3.1.34 -> 3.1.35
2020-04-16 04:16:30 +02:00
Niklas Hambüchen
9aaa515af3
Merge pull request #85292 from r-ryantm/auto-update/acpica-tools
acpica-tools: 20200110 -> 20200326
2020-04-16 04:09:27 +02:00
Niklas Hambüchen
4774ac3d03
Merge pull request #85297 from r-ryantm/auto-update/bibclean
bibclean: 3.03 -> 3.04
2020-04-16 04:07:38 +02:00
Niklas Hambüchen
fc10692dd0
Merge pull request #85309 from r-ryantm/auto-update/chirp-daily
chirp: 20200213 -> 20200409
2020-04-16 04:07:00 +02:00
Niklas Hambüchen
4c48a24aca
Merge pull request #85310 from r-ryantm/auto-update/cfdg
cfdg: 3.2_2 -> 3.3
2020-04-16 04:02:49 +02:00
José Romildo Malaquias
2b98505890 xfce: use updateScript from pkgs 2020-04-15 23:02:34 -03:00
José Romildo Malaquias
5aad6a361d common-updater: add update script to all-packages 2020-04-15 23:02:33 -03:00
xrelkd
5905597f51 eksctl: 0.16.0 -> 0.17.0 2020-04-16 09:58:46 +08:00
Dmitry Kudriavtsev
d44b9d3028 multimc: 0.6.7 -> 0.6.11 2020-04-15 18:01:15 -07:00
Maximilian Bosch
1b95c71989
nextcloud*: add passthru.tests to reference VM-tests 2020-04-16 02:31:54 +02:00
Ben Wolsieffer
9693911c5a g2o: unstable-2019-04-07 -> 20200410 2020-04-15 19:57:13 -04:00
Ben Wolsieffer
dd14ee840c g2o: fix log limit exceeded error in Hydra 2020-04-15 19:56:43 -04:00
Maximilian Bosch
ef80b6324b
hydra*: add passthru.tests to reference VM-tests 2020-04-16 01:01:31 +02:00
Maximilian Bosch
6f6c08af30
hydra-unstable: 2020-04-07 -> 2020-04-16 2020-04-16 01:01:08 +02:00
zowoq
05be03fbce podman: 1.8.2 -> 1.9.0
https://github.com/containers/libpod/releases/tag/v1.9.0
2020-04-16 08:26:09 +10:00
Maximilian Bosch
8c50c432ef
Merge pull request #85114 from r-ryantm/auto-update/offlineimap
offlineimap: 7.3.2 -> 7.3.3
2020-04-15 23:44:18 +02:00
worldofpeace
433ea74af1 nasc: fix build 2020-04-15 17:19:47 -04:00
worldofpeace
10c03528c0 ping: use vala_0_40
fails to build otherwise.
2020-04-15 17:16:34 -04:00
José Romildo Malaquias
cfa1718220
Merge pull request #85233 from romildo/upd.humanity-icon-theme
humanity-icon-theme: init at 0.6.15
2020-04-15 18:05:11 -03:00
AndersonTorres
d811d6a0dc [WIP] {help wanted} calibre: 4.12.0 -> 4.13.0 2020-04-15 17:44:08 -03:00
Maximilian Bosch
2da253a7de
documize-community: add passthru.tests to reference VM-test 2020-04-15 22:35:46 +02:00
Maximilian Bosch
b7c3c3f5cc
cargo-make: 0.30.4 -> 0.30.5
https://github.com/sagiegurari/cargo-make/releases/tag/0.30.5
2020-04-15 22:35:46 +02:00
Maximilian Bosch
37fe88e227
grocy: add passthru.tests to reference VM-test 2020-04-15 22:35:46 +02:00
Maximilian Bosch
e3553f1d94
iftop: add passthru.tests to reference VM-test 2020-04-15 22:35:46 +02:00
vasile luta
f57da8ef0a tig: fix tig-completion's dependency on __git_complete
tig recently updated it's bash-completion making it depend on __git-complete from git.
Becase __git-complete is not automatically sourced tig bash completion fails.
Also this PR makes tig completion load on-demand.
2020-04-15 22:14:51 +02:00
Simon Waibl
55e327244a
Merge pull request #83872 from bachp/unifi-5.12.66
unifiStable: 5.12.35 -> 5.12.66
2020-04-15 21:26:20 +02:00
Jan Tojnar
2a19a03431
Merge pull request #85210 from prusnak/gtk-mac-integration 2020-04-15 21:15:07 +02:00
Jan Tojnar
1fade973fc
libjcat: init at 0.1.1 2020-04-15 20:30:06 +02:00
Maximilian Bosch
2ef110ae64
Merge pull request #85294 from r-ryantm/auto-update/atlassian-cli
atlassian-cli: 9.1.1 -> 9.2.0
2020-04-15 20:02:36 +02:00
Dmitry Kalinkin
7cc1c2c626 wpsoffice: remove specific output names 2020-04-15 13:52:49 -04:00
Dmitry Kalinkin
a2d16c4d89 wpsoffice: drop i686-linux from platforms 2020-04-15 13:52:49 -04:00
Dmitry Kalinkin
0e5aefce3f wpsoffice: remove outdated substituteInPlace 2020-04-15 13:52:49 -04:00
Dmitry Kalinkin
6daab9b9ff wpsoffice: apply Qt and GTK wrappers
Based on the work of Ninlives.
2020-04-15 13:52:49 -04:00
Dmitry Kalinkin
593fd37ce6 wpsoffice: switch to autoPatchelfHook, update dependencies 2020-04-15 13:52:49 -04:00
Dmitry Kalinkin
f6e2834821 wpsoffice: 11.1.0.9080 -> 11.1.0.9505 2020-04-15 13:52:49 -04:00
Dmitry Kalinkin
8f4bb21af0 wpsoffice: apply nixpkgs-fmt, sort alphabetically 2020-04-15 13:52:49 -04:00
Anderson Torres
832dc4a043
Merge pull request #84456 from AndersonTorres/update-higan
higan: 106 -> 110
2020-04-15 14:13:06 -03:00
Vincent Laporte
238bd2a888
Revert "[Don’t merge] Recurse into OCaml packages"
This reverts commit e16c7dae25.
2020-04-15 19:06:05 +02:00
sternenseemann
759cac4288
ocamlPackages.notty: 0.2.1 → 0.2.2 2020-04-15 19:03:46 +02:00
Vincent Laporte
e16c7dae25
[Don’t merge] Recurse into OCaml packages 2020-04-15 18:57:42 +02:00
R. RyanTM
8e00de9366 cfdg: 3.2_2 -> 3.3 2020-04-15 16:51:30 +00:00
R. RyanTM
c446ce30c1 chirp: 20200213 -> 20200409 2020-04-15 16:42:37 +00:00
sternenseemann
a3cd9c9767
ocamlPackages.fmt: 0.8.6 -> 0.8.8 2020-04-15 18:30:09 +02:00
Ryan Mulligan
5b36111f3c
Merge pull request #85238 from ryantm/linode-cli
linode-cli: remove deprecated perl version, init python version at 2.14.1
2020-04-15 09:22:45 -07:00
Ryan Mulligan
ccd6892678 linode-cli: remove deprecated perl version, init python version at 2.14.1 2020-04-15 09:19:34 -07:00
AndersonTorres
187718251e higan: 106 -> 110 2020-04-15 12:27:44 -03:00
R. RyanTM
7cfd7367c1 python27Packages.autopep8: 1.5 -> 1.5.1 2020-04-15 17:22:02 +02:00
Timo Kaufmann
c6ca626b4b
Merge pull request #83537 from puzzlewolf/line-awesome
line-awesome: init at 1.3.0
2020-04-15 14:19:58 +00:00
R. RyanTM
a7f013e7f8 bitlbee-discord: 0.4.2 -> 0.4.3 2020-04-15 16:19:27 +02:00
José Romildo Malaquias
2e80fb5a20
Merge pull request #84292 from romildo/xfce.upate-script
xfce: add update script
2020-04-15 11:16:29 -03:00
Raphael Das Gupta
dd3cc04adf chromedriver: 80.0.3987.16 -> 81.0.4044.69 2020-04-15 16:03:03 +02:00
puzzlewolf
8930a67d19 line-awesome: init at 1.3.0 2020-04-15 15:35:51 +02:00
Tim Steinbach
f6a53ee71f
zoom-us: 3.5.383291.0407 -> 3.5.385850.0413 2020-04-15 09:20:27 -04:00
sternenseemann
29a98f2be1
ocamlPackages.ounit2: init at 2.2.2 2020-04-15 15:01:36 +02:00
José Romildo Malaquias
b1325ec4bc
Merge pull request #85291 from r-ryantm/auto-update/zafiro-icons
zafiro-icons: 1.0 -> 1.1
2020-04-15 09:50:37 -03:00
José Romildo Malaquias
06ba312152 xfce: add update scripts to xfce packages 2020-04-15 09:45:25 -03:00
José Romildo Malaquias
8162d76b18 xfce: tailor general update scripts to the xfce packages 2020-04-15 09:45:25 -03:00
José Romildo Malaquias
827a6619eb common-updater-scripts: add scripts to help update packages
- updateScript:
  A nix expression that can be used in passThrough to update a package

- list-git-tags:
  A shell script to list available tags in a git repository

- list-archive-two-level-versions:

  A shell script to list available versions in a web site in two
  levels: there is a page listing the available major.minor versions,
  and for each of them there is another page listings the patch level
  versions major.minor.patch.

  It is suitable for Xfce packages for instance.

How the updater works:

1. collect the available versions from the source repository (using a
script given as argument)

2. print the collected versions (for debugging)

3. (optionally) apply some transformation to the collected versions to
make them compatible with the versions used in nixpkgs (for instance,
tags in the Xfce git repository may be prefixed with the package name,
and the prefix need to be removed)

4. sort the available versions in decreasing order

5. choose the first version that pass validation:
   - check if the version may be a development version

   - if the version IS unstable, skip it and give a warning about
   skipping a development version (for debugging)

   - if the version COULD BE unstable, take it and give a warning
   about taking a potential development version (for debugging)

   - if the version IS stable, take it

6. update the package version and checksum in its nix expression

7. print the git commands for adding the modified files and for
committing the changes
2020-04-15 09:45:25 -03:00
José Romildo Malaquias
a772bc6eae xfce.orage: the git repository has been archived (unmaintained) 2020-04-15 09:45:25 -03:00
José Romildo Malaquias
2dff34b56b xfce: add pos attribute in mkXfcederivation 2020-04-15 09:45:25 -03:00
Niklas Hambüchen
b5765e6710
Merge pull request #82903 from freepotion/ivan-add-iconset
ivan: add full iconset
2020-04-15 14:34:25 +02:00
sternenseemann
90bc1492ca ocamlPackages.asn1-combinators: 0.2.0 -> 0.2.2 2020-04-15 14:33:57 +02:00
R. RyanTM
cf1c9247c2 bibclean: 3.03 -> 3.04 2020-04-15 12:28:23 +00:00
Jörg Thalheim
924e5cdc55
Merge pull request #85278 from jamesottaway/git-update-script 2020-04-15 13:00:19 +01:00
R. RyanTM
0a37de957f atlassian-cli: 9.1.1 -> 9.2.0 2020-04-15 11:56:16 +00:00
Mario Rodas
d9bdfd6d0b
Merge pull request #85274 from r-ryantm/auto-update/pgmetrics
pgmetrics: 1.8.1 -> 1.9.0
2020-04-15 06:52:14 -05:00
Mario Rodas
a4d12f7d81
Merge pull request #85109 from marsam/update-victoriametrics
victoriametrics: 1.34.5 -> 1.34.7
2020-04-15 06:51:53 -05:00
markuskowa
4289160b17
Merge pull request #85281 from r-ryantm/auto-update/rdma-core
rdma-core: 28.0 -> 29.0
2020-04-15 13:27:20 +02:00