Commit Graph

12403 Commits

Author SHA1 Message Date
Profpatsch
595afc2c3f bazel: use installShellCompletion for completions 2020-07-17 15:38:49 +02:00
Profpatsch
a06fda4c5d bazel: add fish completions
bazel 3.3 adds a first version of completions for fish shell.

Tested manually whether fish is able to load the completions.
2020-07-17 15:38:49 +02:00
Profpatsch
2ba87b6e79 bazel: use install for completions
Preserving existing behavior: the bash completion was not executable,
the zsh completion was; according to lukegb the fish completion does
not have to be executable.
2020-07-17 15:38:49 +02:00
Mario Rodas
64b23199ba
Merge pull request #93221 from r-ryantm/auto-update/fly
fly: 6.3.0 -> 6.4.0
2020-07-16 21:48:57 -05:00
Mario Rodas
05dc6afb08
Merge pull request #93285 from r-ryantm/auto-update/cargo-fuzz
cargo-fuzz: 0.5.4 -> 0.8.0
2020-07-16 21:46:13 -05:00
Kevin Rauscher
8a58662c40 metals: 0.9.1 -> 0.9.2 2020-07-16 23:31:28 +02:00
R. RyanTM
35f96e6c7b cargo-fuzz: 0.5.4 -> 0.8.0 2020-07-16 17:06:23 +00:00
Daniël de Kok
a856b54987
Merge pull request #93212 from r-ryantm/auto-update/cargo-expand
cargo-expand: 0.6.0 -> 0.6.4
2020-07-16 15:12:13 +02:00
Ryan Mulligan
aa9aa2b9dc
Merge pull request #93236 from r-ryantm/auto-update/mustache-go
mustache-go: 1.0.1 -> 1.2.0
2020-07-16 05:35:53 -07:00
zimbatm
390737910d
gopls: 0.4.1 -> 0.4.3 2020-07-16 14:32:18 +02:00
Florian Klink
ba20bc872f
Merge pull request #93128 from Ma27/fix-rust-build-flags
rust: Fix build flags
2020-07-16 12:47:26 +02:00
R. RyanTM
fbb1a543c0 mustache-go: 1.0.1 -> 1.2.0 2020-07-16 08:14:58 +00:00
R. RyanTM
2d5f459258 k6: 0.26.2 -> 0.27.0 2020-07-16 06:17:40 +00:00
Justin Gerhardt
2370ca0b26 stm32cubemx: 5.3.0 -> 5.6.1 2020-07-16 01:54:41 -04:00
Jan Tojnar
11ae0fb1ad
Merge pull request #93041 from jtojnar/flatpak-builder-1.0.11
flatpak-builder: 1.0.10 → 1.0.11
2020-07-16 07:15:56 +02:00
R. RyanTM
1e816defe7 fly: 6.3.0 -> 6.4.0 2020-07-16 04:42:06 +00:00
Jan Tojnar
75fdc1ced6
cmake.setupHook: define shareDocName
The docdir flag needs to include `PROJECT_NAME` according to [GNU guidelines]. We are passing
`-DCMAKE_INSTALL_DOCDIR=${!outputDoc}/share/doc/${shareDocName}` but `$shareDocName` was unset.

The `multiple-outputs.sh` setup hook actually only defines `shareDocName` as a local variable
so it was not available for cmake setup hook. Making it global would be of limited usability,
since it primarily tries to extract the project name from configure script.
Additionally, it would not be set because the setup hook defines `setOutputFlags=`,
preventing the function defining `shareDocName` from running. And lastly, the function
would not run for single-output derivations.

Previously, we tried [not disabling `setOutputFlags`] and passing the directory flags
only for multi-output derivations that do not disable `setOutputFlags` but that meant having
two different branches of code, making it harder to check correctness. The multi-output
one did in fact not work due to aforementioned undefined `shareDocName`. It also broke
derivations that set `setOutputFlags=` like [`qtModule` function does] (probably
because some Qt modules have configure scripts incompatible with `configureFlags` defined
by `multiple-outputs.sh` setup hook). For that reason, it was [reverted], putting us back to start.

Let’s try to extract the project name from CMake in the cmake setup hook.

CMake has a `-L` flag for dumping variables but `PROJECT_NAME` did not seem to be among them
when I tested, so I had to resort to parsing the `CMakeLists.txt` file.

The extraction function is limited, it does not deal with

* project name on different line from the `project(` command opening
    - that will just not get matched so we will fall back to
      using the derivation name
* variable interpolation
    - we will just fall back to using derivation name when the extracted
      `project_name` contains a dollar character
* multiple [`project`] commands
    - The command sets `PROJECT_NAME` variable anew with each call, so the
      last `project` call before `include(GNUInstallDirs)` command will be used
      when the included module would [cache the `CMAKE_INSTALL_DOCDIR` variable].
      We will just take the first discovered `project` command for simplicity.
      Hopefully, there are not many projects that use multiple `project` calls
      before including `GNUInstallDirs`.

In either case, we will have some subdirectory so the conflicts will be minimized.

[GNU guidelines]: https://www.gnu.org/prep/standards/html_node/Directory-Variables.html#index-docdir
[not disabling `setOutputFlags`]: be1b22538a
[`qtModule` function  does]: https://github.com/NixOS/nixpkgs/pull/12740
[reverted]: https://github.com/NixOS/nixpkgs/pull/92298
[`PROJECT_NAME`]: https://cmake.org/cmake/help/v3.18/variable/PROJECT_NAME.html
[`project`]: https://cmake.org/cmake/help/v3.18/command/project.html
[cache the `CMAKE_INSTALL_DOCDIR` variable]: 92e30d576d/Modules/GNUInstallDirs.cmake (L298-L299)
2020-07-16 04:38:07 +02:00
R. RyanTM
466562c3e0 cargo-expand: 0.6.0 -> 0.6.4 2020-07-16 02:38:04 +00:00
Dmitry Kalinkin
9173beb67d
Merge branch 'staging-next' into staging 2020-07-15 22:28:18 -04:00
Daniël de Kok
d2754e07bb
Merge pull request #92914 from danieldk/rocm-opencl
rocm-opencl-icd: init at 3.5.0
2020-07-15 18:55:53 +02:00
Jan Tojnar
821dba740e
Merge branch 'staging-next' into staging 2020-07-15 09:29:01 +02:00
Florian Klink
b0a107335a
Merge pull request #91359 from oxalica/rust-analyzer
rust-analyzer: 2020-06-08 -> 2020-07-13, and fix version display
2020-07-14 18:03:39 +02:00
Maximilian Bosch
7713fba8f8
Revert "buildRustPackage: fix cargoBuildFlags"
This reverts commit deb78151a9.

Mixing up two distinct phases of a derivation's build is not a good idea. See
also https://github.com/NixOS/nixpkgs/pull/91689#issuecomment-657813954.
2020-07-14 17:39:09 +02:00
adisbladis
e038a4363a
poetry2nix: 1.9.2 -> 1.10.0 2020-07-14 16:18:39 +02:00
oxalica
26de7b3711
rust-analyzer: disable install check due to #93119 2020-07-14 21:51:50 +08:00
David Sawatzke
705dbe002d easypdkprog: 1.2 -> 1.3 2020-07-14 14:25:50 +02:00
oxalica
ddacdbc953
rust-analyzer: fix version display and add check 2020-07-14 20:15:55 +08:00
oxalica
c90e6dd06d
rust-analyzer: 2020-06-08 -> 2020-07-13 2020-07-14 20:15:55 +08:00
oxalica
1cb300ac2a
rust-analyzer: fix update script and avoid updating nodePackages if possible 2020-07-14 19:02:04 +08:00
Jonas Schievink
720a9358dd nrfutil: 5.2 -> 6.1 2020-07-13 23:25:43 +02:00
Maximilian Bosch
514afd26bc
rustracer: 2.1.30 -> 2.1.33, fix build
ChangeLog: https://github.com/racer-rust/racer/blob/v2.1.33/CHANGELOG.md#2132
Broken build: https://hydra.nixos.org/build/123837796

Please note that I intentionally didn't bump to `2.1.35` since it
requires nightly features. `2.1.33` is the latest version which supports
our current `rustc`-version (1.44.1) on nixpkgs `master`.

Closes #89481
2020-07-13 22:46:22 +02:00
Daniël de Kok
4ba7e9aa8e rocm-cmake: init at 3.5.0 2020-07-13 20:00:20 +02:00
Daniël de Kok
9730290b77
Merge pull request #92939 from RaghavSood/mage/1.10.0
mage: 1.9.0 -> 1.10.0
2020-07-13 15:56:40 +02:00
Jan Tojnar
0e4bdc9f6e
flatpak-builder: 1.0.10 → 1.0.11
https://github.com/flatpak/flatpak-builder/releases/tag/1.0.11

Also try to fix: https://github.com/NixOS/nixpkgs/issues/73325
2020-07-13 07:25:49 +02:00
Vladimír Čunát
377324ca6d
Merge branch 'staging-next' (PR #91090) 2020-07-13 07:13:56 +02:00
Maximilian Bosch
e072276cf2
Merge pull request #93015 from equirosa/lazygit
lazygit: 0.20.5 -> 0.20.6
2020-07-12 23:37:50 +02:00
markuskowa
8a48fe1682
Merge pull request #92815 from ck3d/add-redo-c
redo-c: Init at 0.2
2020-07-12 23:07:30 +02:00
Eduardo Quiros
6c70cee85a lazygit: 0.20.5 -> 0.20.6
new version released with some improvements and a couple fixes:
https://github.com/jesseduffield/lazygit/releases/tag/v0.20.6
2020-07-12 11:50:04 -06:00
Oleksii Filonenko
a2e8547c36
Merge pull request #92913 from equirosa/lazygit
lazygit: 0.20.4 -> 0.20.5
2020-07-12 12:37:10 +03:00
Daniël de Kok
4c40111f1d maturin: 0.8.1 -> 0.8.2
The changelog is not updated, so this has to do:

https://github.com/PyO3/maturin/compare/v0.8.1...v0.8.2
2020-07-12 07:26:44 +02:00
Daniël de Kok
e8d7851e00
Merge pull request #92943 from minijackson/cargo-inspect-0.10.3
cargo-inspect: 0.10.1 -> 0.10.3
2020-07-11 20:09:27 +02:00
Minijackson
ca343e5398
cargo-inspect: 0.10.1 -> 0.10.3 2020-07-11 18:26:40 +02:00
Raghav Sood
881c92f68f
mage: 1.9.0 -> 1.10.0 2020-07-11 16:06:12 +00:00
Eduardo Quiros
40f4cbbd7c lazygit: 0.20.4 -> 0.20.5
new version released with a small improvement
https://github.com/jesseduffield/lazygit/releases/tag/v0.20.5
2020-07-11 02:10:54 -06:00
Frederik Rietdijk
a3a40ac7cc Merge staging-next into staging 2020-07-11 09:00:18 +02:00
Frederik Rietdijk
ae8eee9c3f Merge master into staging-next 2020-07-11 08:59:54 +02:00
Mario Rodas
c87c474b17
Merge pull request #92901 from r-ryantm/auto-update/rustup
rustup: 1.21.1 -> 1.22.1
2020-07-10 22:32:18 -05:00
R. RyanTM
0d68512749 rustup: 1.21.1 -> 1.22.1 2020-07-11 01:11:05 +00:00
Silvan Mosberger
75ee18766a
yarn2nix: Don't pass yarnNix to mkDerivation (#92856)
The generated yarnNix file doesn't need to be part of the mkDerivation.
And doing so prevents other platforms from reproducibly instantiating
it. With this change you can e.g. do

  darwinPkgs.yarn2nix.mkYarnPackage {
    # ...
    yarnNix = pkgs.yarn2nix.mkYarnNix {
      yarnLock = ./yarn.lock;
    };
  }

Which is a darwin derivation, but can still be instantiated reproducibly on Linux.
2020-07-10 16:24:03 +00:00
Jörg Thalheim
33b5621ef6
Merge pull request #92794 from dguibert/dg/cross-texinfo-interactive 2020-07-10 07:28:39 +01:00
David Guibert
b92c2c666c
Update cross-tools-flags.patch 2020-07-10 08:07:35 +02:00
Christian Kögler
30a2f40336 redo-c: Initial 0.2 2020-07-10 00:48:57 +02:00
David Guibert
a2eb391e8f fix pkgsCross.*.texinfoInteractive
This fixes #86166 to build cross compilied texinfoInteractive.
BUILD_CC has been renamed to CC_FOR_BUILD so the patch needs to applied
this renaming.

tested on: pkgsCross.armv7l-hf-multiplatform.texinfoInteractive
2020-07-09 17:19:09 +02:00
Austin Seipp
e494368606
trellis: 2020.06.12 -> 2020.06.29
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2020-07-09 09:12:42 -05:00
Austin Seipp
f22c718e17
icestorm: 2020.04.22 -> 2020.07.08
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2020-07-09 09:12:42 -05:00
Mario Rodas
61f57d850e
Merge pull request #92729 from r-ryantm/auto-update/tfsec
tfsec: 0.21.0 -> 0.23.2
2020-07-08 19:10:11 -05:00
Mario Rodas
aa5ee82db2
tfsec: add ldflags 2020-07-08 18:55:18 -05:00
Ryan Mulligan
f2ff245bfd
Merge pull request #92730 from r-ryantm/auto-update/the-way
the-way: 0.3.2 -> 0.4.0
2020-07-08 11:54:47 -07:00
R. RyanTM
b9d29dad13 the-way: 0.3.2 -> 0.4.0 2020-07-08 16:58:51 +00:00
R. RyanTM
4b0ab3f2a4 tfsec: 0.21.0 -> 0.23.2 2020-07-08 16:49:39 +00:00
Mario Rodas
9b2a1ea654
Merge pull request #92688 from r-ryantm/auto-update/golangci-lint
golangci-lint: 1.27.0 -> 1.28.1
2020-07-08 07:52:39 -05:00
Daniël de Kok
d915b7223a
Merge pull request #92657 from CRTified/pkg/cc-tool
cc-tool: Init at unstable-2020-05-19
2020-07-08 14:16:30 +02:00
CRTified
cc1fadf581 cc-tool: init at unstable-2020-05-19 2020-07-08 13:30:53 +02:00
Mario Rodas
27ac9620c6 golangci-lint: update meta 2020-07-08 04:22:00 -05:00
Mario Rodas
4568f9bfb1 golangci-lint: add ldflags 2020-07-08 04:21:00 -05:00
Mario Rodas
c94a2de710 golangci-lint: install completions 2020-07-08 04:20:00 -05:00
José Luis Lafuente
e9d928ad3a
kustomize: 3.3.1 -> 3.8.0
tree removed, since doesn't look necessary
buildDate flag removed. If unset, the default date is 1/1/1970, which is
common practice when building nix packages
2020-07-08 10:56:05 +02:00
R. RyanTM
bf76f25248 golangci-lint: 1.27.0 -> 1.28.1 2020-07-08 06:42:40 +00:00
Mario Rodas
b25895d964
Merge pull request #92647 from r-ryantm/auto-update/webdis
webdis: 0.1.10 -> 0.1.11
2020-07-07 19:34:33 -05:00
Mario Rodas
a6fad046a8
Merge pull request #92555 from r-ryantm/auto-update/redo-apenwarr
redo-apenwarr: 0.42a -> 0.42c
2020-07-07 19:33:19 -05:00
Timo Kaufmann
c6e47d5763
Merge pull request #78451 from arnarg/adding-operator-sdk
operator-sdk: init at 0.18.2
2020-07-07 23:41:30 +02:00
R. RyanTM
20f4914bf5 webdis: 0.1.10 -> 0.1.11 2020-07-07 21:31:50 +00:00
Arnar Gauti Ingason
5458f54a83 operator-sdk: init at 0.18.2
Operator-sdk is a cli tool for scaffolding and building Kubernetes
operators.
2020-07-07 21:13:26 +02:00
MetaDark
832a240b12 cmake-language-server: build with pygls 0.9.x 2020-07-07 10:33:26 -07:00
R. RyanTM
ed9f1b36b3 mill: 0.7.3 -> 0.7.4 2020-07-07 10:04:15 -07:00
R. RyanTM
babd73a3e3 spring-boot-cli: 2.3.0 -> 2.3.1 2020-07-07 09:51:30 -07:00
Mario Rodas
005b5770f4
redo-apenwarr: install bash completion 2020-07-07 04:20:00 -05:00
Mario Rodas
a12ccb7f3e redo-apenwarr: update meta 2020-07-07 04:20:00 -05:00
R. RyanTM
abe8394a5b redo-apenwarr: 0.42a -> 0.42c 2020-07-07 08:01:26 +00:00
Jörg Thalheim
ad3140e898
Merge pull request #92470 from ericdallo/bump-clojure-lsp
clojure-lsp: 20200624T142700 -> 20200706T152722
2020-07-06 22:57:20 +01:00
Luflosi
92ca9d643f
include-what-you-use: 0.13 -> 0.14
https://github.com/include-what-you-use/include-what-you-use/releases/tag/0.14
2020-07-06 23:05:39 +02:00
Maximilian Bosch
146e96d9ba
Merge pull request #92492 from Tomahna/scalafmt
scalafmt: 2.5.2 -> 2.6.2
2020-07-06 21:03:23 +02:00
Daniël de Kok
f4dce8e967
Merge pull request #91634 from bmilanov/submit/add-nxp-mfgtools
nxpmicro-mfgtools: init at 1.3.191
2020-07-06 20:59:50 +02:00
Biser Milanov
cb2ab83d3e nxpmicro-mfgtools: init at 1.3.191
Add nxpmicro-mfgtools to nixpkgs

From the project's homepage [1]:

    Freescale/NXP I.MX Chip image deploy tools.

The project's only binary and library at the moment is UUU. NXP
might add more in the future, so making the package name:

    nxpmicro-mfgtools

instead of:

    nxp-uuu

or something similar.

[1]: https://github.com/NXPmicro/mfgtools
2020-07-06 20:43:14 +02:00
Kevin Rauscher
e8cb5d5d14 scalafmt: 2.5.2 -> 2.6.2 2020-07-06 20:37:40 +02:00
Matthew Bauer
89d4142fc8
Merge pull request #92416 from matthewbauer/fix-elfutils
Fix elfutils
2020-07-06 12:27:27 -04:00
Eric Dallo
e8a734c6c8
clojure-lsp: 20200624T142700 -> 20200706T152722 2020-07-06 12:52:34 -03:00
Vladimír Čunát
e978eb5986
gnumake42: bring this version back
This is almost a revert of commit 0cfe9f3a (PR #86293).  Version 4.3
https://lists.gnu.org/archive/html/info-gnu/2020-01/msg00004.html
brought some incompatibilities, so this will be useful for shorter-term
workarounds.
2020-07-06 10:55:32 +02:00
Matthew Bauer
80ca70b0e1 elfutils: add argp-standalone for musl
https://hydra.nixos.org/build/123111192
2020-07-06 01:51:46 -04:00
R. RyanTM
0a5fd4c12e bison: 3.6.3 -> 3.6.4 2020-07-06 07:42:31 +02:00
R. RyanTM
9beef71b32 help2man: 1.47.15 -> 1.47.16 2020-07-06 03:57:53 +02:00
Jan Tojnar
cfe7e12d38
Revert "cmake: only set output paths with multiple outputs"
This reverts commit be1b22538a.

The commit broke Qt modules using CMake because they disable setOutputFlags.

There is no need to have these flags limited to multiple output derivations since it
should just work. If it does not, it is a bug that should be fixed as per
https://github.com/jtojnar/cmake-snips#assuming-cmake_install_dir-is-relative-path
Likewise, having a variable to disable passing the flags is also unnecessary,
since CMake, unlike some configure scripts, ignores unknown flags. And if a person
does not like the values, they can just override them by passing the offending
flag with a different value to cmakeFlags.
2020-07-05 19:01:53 +02:00
Mario Rodas
969e35423c dune_2: 2.6.0 -> 2.6.1
Changelog: https://github.com/ocaml/dune/releases/tag/2.6.1
2020-07-05 12:11:03 +02:00
Jan Tojnar
4bca7dfb27
Merge branch 'master' into staging-next 2020-07-04 23:59:32 +02:00
Ludovic Claude
6eeb612a9b gradle: 5.6.4 -> 6.5.1
Co-authored-by: Daniël de Kok <me@github.danieldk.eu>
Use https for all urls
fix version for native library
pin gradle for jd-gui
2020-07-04 14:56:12 -07:00
Maximilian Bosch
9203abb204
Merge pull request #92246 from r-ryantm/auto-update/liquibase
liquibase: 3.10.0 -> 3.10.1
2020-07-04 23:22:06 +02:00
Maximilian Bosch
67a1c36929
cargo-watch: 7.4.1 -> 7.5.0
https://github.com/passcod/cargo-watch/releases/tag/v7.5.0

Also fixes the `aarch64`-build: https://hydra.nixos.org/build/123187262
2020-07-04 23:13:30 +02:00
Jack Kelly
c0e9bc1cf8 aws-sam-cli: 0.44.0 -> 1.0.0rc1 2020-07-04 21:01:32 +10:00
Vladimír Čunát
e1206a2129
Merge master into staging-next
This brings thousands of rebuilds.
Hydra nixpkgs: ?compare=1597944
2020-07-04 09:15:27 +02:00
Daniël de Kok
563b4b01ee
Merge pull request #92191 from Tomahna/metals
metals: 0.9.0 -> 0.9.1
2020-07-04 08:35:45 +02:00
R. RyanTM
95930da953 liquibase: 3.10.0 -> 3.10.1 2020-07-04 05:22:12 +00:00
Mario Rodas
a252c3747d
Merge pull request #92179 from r-ryantm/auto-update/flyway
flyway: 6.4.4 -> 6.5.0
2020-07-03 18:27:57 -05:00
Saúl Cabrera
a45b66e3d9 asls: init at 0.4.0 2020-07-03 18:19:04 -04:00
Maximilian Bosch
db0540d178
cargo-make: fix darwin build
https://hydra.nixos.org/build/123569405
2020-07-03 23:10:36 +02:00
Peter Simons
f614e5006f
Merge pull request #91759 from NixOS/haskell-updates
Update Haskell package set to LTS 16.3 (plus other fixes)
2020-07-03 21:29:53 +02:00
Peter Simons
6ab9c60bbe
Merge pull request #91640 from sarahzrf/patch-1
Fixed syntax errors in ihaskell wrapper
2020-07-03 20:17:09 +02:00
Maximilian Bosch
12ff390744
Merge pull request #92162 from r-ryantm/auto-update/fdroidserver
fdroidserver: 1.1.7 -> 1.1.9
2020-07-03 18:58:56 +02:00
Kevin Rauscher
04eb79c8a9 metals: 0.9.0 -> 0.9.1 2020-07-03 18:50:01 +02:00
Daniël de Kok
8e51d14108
Merge pull request #92185 from r-ryantm/auto-update/hopper
hopper: 4.5.28 -> 4.5.29
2020-07-03 17:31:50 +02:00
R. RyanTM
b994272c13 hopper: 4.5.28 -> 4.5.29 2020-07-03 14:51:48 +00:00
R. RyanTM
ff5bf5e793 flyway: 6.4.4 -> 6.5.0 2020-07-03 13:40:00 +00:00
Maximilian Bosch
873e21190e
cargo-make: 0.31.1 -> 0.32.0
https://github.com/sagiegurari/cargo-make/releases/tag/0.32.0
2020-07-03 14:28:46 +02:00
R. RyanTM
7117b0d6a2 fdroidserver: 1.1.7 -> 1.1.9 2020-07-03 11:31:51 +00:00
Peter Simons
7536a09d30 Merge remote-tracking branch 'origin/master' into haskell-updates. 2020-07-03 11:23:30 +02:00
Mario Rodas
e489b840ff
Merge pull request #92115 from r-ryantm/auto-update/bmake
bmake: 20200606 -> 20200629
2020-07-02 23:13:50 -05:00
Alyssa Ross
57f3c834bc
automake115x: 1.15 -> 1.15.1 2020-07-03 03:36:42 +00:00
Mario Rodas
2f32d65644
Merge pull request #92085 from r-ryantm/auto-update/skaffold
skaffold: 1.11.0 -> 1.12.0
2020-07-02 20:42:09 -05:00
Mario Rodas
d1565a01d0
skaffold: use src.rev 2020-07-02 20:24:17 -05:00
R. RyanTM
2d6d3db7e2 bmake: 20200606 -> 20200629 2020-07-03 01:07:55 +00:00
Flakebi
deb78151a9 buildRustPackage: fix cargoBuildFlags
When features were supplied in cargoBuildFlags, the binaries were built
with these features enabled. Unless checking was disabled, `cargo test`
was executed without these build flags, meaning the binaries were
rebuilt and overwritten without the specified features.

Fix this bug by running tests after the installation phase.
2020-07-03 08:53:57 +10:00
Pawel Kruszewski
17e1fbe0fc
eclipse-mat: init at 1.10.0.20200225
Closes #43611
2020-07-02 23:39:33 +02:00
R. RyanTM
52c87393ea skaffold: 1.11.0 -> 1.12.0 2020-07-02 19:14:01 +00:00
Jonathan Ringer
6eb63fc2e5 pmd: 6.17.0 -> 6.25.0, fix runtime 2020-07-02 11:48:59 -07:00
Daniël de Kok
805ab8c14f
Merge pull request #91589 from waldheinz/master
ccache: 3.4.1 -> 3.7.10
2020-07-02 20:18:43 +02:00
Matthias Treydte
4ec15456b3 ccache: 3.4.1 -> 3.7.10
The fix-debug-prefix-map-suite patch became obsolete with upstream
commit:

82010e0eb9

The skip-fs-dependent-test patch with PR:

https://github.com/ccache/ccache/pull/444
2020-07-02 19:42:10 +02:00
R. RyanTM
dc5a3f9f13 rust-cbindgen: 0.14.2 -> 0.14.3 2020-07-02 10:33:07 -07:00
Chuck
0cfe9f3ae2 gnumake: 4.2.1 -> 4.3 2020-07-02 17:44:47 +02:00
Frederik Rietdijk
ae1584dc98
Merge pull request #91457 from matthewbauer/prefixed-pkg-config
Fixes from prefixed pkg config
2020-07-02 17:26:16 +02:00
Tim Steinbach
5fce232e3f elfutils: 0.176 -> 0.180 2020-07-02 17:24:23 +02:00
Frederik Rietdijk
c33ca7c5ce Merge staging-next into staging 2020-07-02 17:14:53 +02:00
Mario Rodas
4ee9de0ce0
Merge pull request #92003 from r-ryantm/auto-update/flow
flow: 0.127.0 -> 0.128.0
2020-07-02 09:01:51 -05:00
R. RyanTM
5b846f1c11 flow: 0.127.0 -> 0.128.0 2020-07-02 10:29:08 +00:00
Mario Rodas
ba67663b0a
Merge pull request #91993 from r-ryantm/auto-update/circleci-cli
circleci-cli: 0.1.8302 -> 0.1.8599
2020-07-02 04:23:10 -05:00
R. RyanTM
55948dff74 circleci-cli: 0.1.8302 -> 0.1.8599 2020-07-02 07:03:20 +00:00
Diego Rodriguez
2f817d5c77
kubectx: 0.9.0 -> 0.9.1
New release of Go implementation of Kubectx: https://github.com/ahmetb/kubectx/releases/tag/v0.9.1
2020-07-01 22:28:36 -06:00
Mario Rodas
c343436fcd
Merge pull request #91924 from marsam/update-heroku
heroku: 7.41.1 -> 7.42.2
2020-07-01 18:35:08 -05:00
Vincent Laporte
18094dbdc2 frama-c: 21.0 (Scandium) → 21.1 (Scandium) 2020-07-01 23:51:10 +02:00
Claudio Bley
cda852a528 bazel: 3.3.0 -> 3.3.1 2020-07-01 23:23:33 +02:00
Drew Risinger
2396eb646d conan: 1.25.0 -> 1.27.0
Switch to fetching source from GitHub vs PyPi, which will enable running
packaging tests in the future.
2020-07-01 12:45:39 -07:00
Drew Risinger
ea5a79c4a3 conan: enable pythonPackages.six > 1.14.0 2020-07-01 12:45:39 -07:00
Vincent Laporte
581660a4d3 ocamlPackages.camlp5: 7.11 → 7.12 2020-07-01 13:46:30 +02:00
Pascal Bach
c323751a71
gitlab-runner: remove additional binaries (#91811)
Only the gitlab-runner and the helper-images are required.
All other binaries that were currently in the derivation were only for
testing.
2020-07-01 09:43:31 +00:00
Mario Rodas
a8a49b4ad3
heroku: 7.41.1 -> 7.42.2 2020-07-01 04:20:00 -05:00
Ryan Mulligan
bff350e854
Merge pull request #89643 from r-ryantm/auto-update/micronaut
micronaut: 1.3.5 -> 1.3.6
2020-06-30 22:01:52 -07:00
Mario Rodas
731417253f
Merge pull request #91862 from r-ryantm/auto-update/terraform-ls
terraform-ls: 0.3.2 -> 0.4.0
2020-06-30 19:44:42 -05:00
Mario Rodas
09756b3a52
Merge pull request #91887 from r-ryantm/auto-update/yq-go
yq-go: 3.3.1 -> 3.3.2
2020-06-30 19:11:45 -05:00
Mario Rodas
58d13e99e4
Merge pull request #91861 from r-ryantm/auto-update/terracognita
terracognita: 0.4.0 -> 0.5.0
2020-06-30 18:20:37 -05:00
Maximilian Bosch
6c648f96e3
Merge pull request #91869 from r-ryantm/auto-update/tokei
tokei: 11.2.1 -> 12.0.4
2020-07-01 00:53:05 +02:00
Tim Steinbach
360e0fae7e
Merge pull request #91846 from r-ryantm/auto-update/sbt
sbt: 1.3.12 -> 1.3.13
2020-06-30 17:09:05 -04:00
R. RyanTM
1a7ac5872e yq-go: 3.3.1 -> 3.3.2 2020-06-30 20:40:10 +00:00