Commit graph

13049 commits

Author SHA1 Message Date
Jan Tojnar 9ce350cdcc
blackfire: init at 1.44.0 2020-10-07 10:44:53 +02:00
Domen Kožar a05f231884
nix-linter: 2019-04-26 -> 2020-09-25 2020-10-06 19:33:54 +02:00
oxalica 714abbc5f5
rust-analyzer: 2020-09-28 -> 2020-10-05 2020-10-06 16:38:38 +08:00
Tim Steinbach 04509f6847
Merge pull request #99277 from NeQuissimus/sbt-extras_2020-09-24
sbt-extras: 2020-06-01 -> 2020-09-24
2020-10-05 09:25:06 -04:00
Tim Steinbach 41a6a77b9e
Merge pull request #99616 from avdv/sbt-1.4.0
sbt: 1.3.13 -> 1.4.0
2020-10-05 09:24:17 -04:00
Diego Louzán dbbd13568e
gitlab-runner: 13.4.0 -> 13.4.1 (#99409) 2020-10-05 14:46:20 +02:00
Claudio Bley e92691b93d sbt: 1.3.13 -> 1.4.0
* remove broken piccolo.link
* add symlink to native `sbtn` client executable to `bin`
2020-10-05 12:04:13 +02:00
JesusMtnez d21f278bce
coursier: 2.0.0-RC6-27 -> 2.0.0 2020-10-05 11:31:15 +02:00
Michael Raskin e456594413
Merge pull request #99578 from deliciouslytyped/bump-rr
rr: 5.3.0 +> 9ff37581 in rr-unstable add unstable until a new release is made
2020-10-05 04:49:25 +00:00
Maximilian Bosch 77cdb1f64f
Merge pull request #99505 from dywedir/strace
strace: 5.8 -> 5.9
2020-10-05 00:29:26 +02:00
deliciouslytyped eaf756639f rr: 5.3.0 +> 9ff37581 add rr-unstable until a new rr release is made 2020-10-04 23:27:08 +02:00
Hongchang Wu 4304c709af ocamlPackages.merlin: 3.3.9 -> 3.4.0 2020-10-04 16:57:52 +02:00
Mario Rodas c2fbdeb28a
Merge pull request #98704 from r-ryantm/auto-update/conftest
conftest: 0.20.0 -> 0.21.0
2020-10-04 08:45:30 -05:00
Robert Scott 4de226e22d
Merge pull request #99402 from risicle/ris-gomplate-init
gomplate: init at 3.8.0
2020-10-04 12:04:31 +01:00
Mario Rodas f25744eda0
Merge pull request #99354 from JesusMtnez/update-coursier
coursier: 2.0.0-RC6-26 -> 2.0.0-RC6-27
2020-10-03 22:58:51 -05:00
Vladyslav M 3f01bf51e7
strace: 5.8 -> 5.9 2020-10-03 22:57:28 +03:00
Elis Hirwing bf9dc8a00c
Merge pull request #99405 from steveeJ-forks/pr/bump-wally-2.0
wally-cli: bump to 2.0.0
2020-10-03 19:44:31 +02:00
Stefan Junker aba8b0799e wally-cli: bump to 2.0.0 2020-10-03 13:48:50 +02:00
Mario Rodas cb4ca87504 skaffold: replace SRI hash 2020-10-03 06:36:00 -05:00
Mario Rodas 2475277198
Merge pull request #99393 from wheelsandmetal/skaffold-update
skaffold: 1.14.0 -> 1.15.0
2020-10-03 06:35:50 -05:00
Mario Rodas 44026c9364
Merge pull request #98724 from r-ryantm/auto-update/goconst
goconst: 1.1.0 -> 1.2.0
2020-10-03 06:23:26 -05:00
Mario Rodas 4c9017e4b0
Merge pull request #98687 from r-ryantm/auto-update/cargo-generate
cargo-generate: 0.5.0 -> 0.5.1
2020-10-02 23:55:48 -05:00
Mario Rodas a2375629e6
Merge pull request #98985 from r-ryantm/auto-update/autoflake
autoflake: 1.3.1 -> 1.4
2020-10-02 23:31:12 -05:00
Mario Rodas bbc13f8d39
Merge pull request #99411 from fatho/godot-3.2.3
godot: 3.2.2 -> 3.2.3
2020-10-02 22:39:36 -05:00
Robert Scott d451ecbc9c gomplate: init at 3.8.0 2020-10-02 23:15:57 +01:00
Doron Behar 6bb90a2d01
Merge pull request #99274 from siraben/patchrom-init
knightos-patchrom: init at 1.1.3
2020-10-02 22:47:27 +03:00
Fabian Thorand a7cbe40289 godot: 3.2.2 -> 3.2.3 2020-10-02 21:00:16 +02:00
Doron Behar 6488d4489e
Merge pull request #99294 from samuelgrf/initpkg/jpexs
jpexs: init at 11.3.0
2020-10-02 21:45:10 +03:00
Samuel Gräfenstein afa5fba493
jpexs: init at 11.3.0 2020-10-02 18:21:07 +02:00
Patrick Hilhorst f7e390e6d4 treewide: fix redirected urls (run 3)
Related:
 - 9fc5e7e473
 - 593e11fd94
 - 508ae42a0f

Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).

Here's the new script I used:

```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
   | jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
   | sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```

I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
Ben Siraphob fd18f7bbd7 knightos-patchrom: init at 1.1.3 2020-10-02 21:49:58 +07:00
wheelsandmetal b13aac39a8 skaffold: 1.14.0 -> 1.15.0 2020-10-02 15:26:06 +01:00
Timo Kaufmann d832ca8178
Merge pull request #97237 from midchildan/package/sd-local
sd-local: init at 1.0.5
2020-10-02 11:08:05 +02:00
zowoq 0f81c5d686 buildah: 1.16.3 -> 1.16.4
https://github.com/containers/buildah/releases/tag/v1.16.4
2020-10-02 16:45:08 +10:00
JesusMtnez f4b1b2a943
coursier: 2.0.0-RC6-26 -> 2.0.0-RC6-27 2020-10-02 06:50:27 +02:00
adisbladis c25f55e38b
Merge pull request #99327 from adisbladis/poetry2nix-1_13_0
poetry2nix: 1.12.0 -> 1.13.0
2020-10-02 01:36:25 +02:00
Sascha Grunert 462a9bf9fb buildah: 1.16.2 -> 1.16.3
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-10-01 22:02:41 +00:00
adisbladis 0eeedc732c
poetry2nix: 1.12.0 -> 1.13.0 2020-10-01 23:11:14 +02:00
Jonathan Ringer e6ec27be98 tabnine: fix build
Co-authored by: @onsails
2020-10-01 14:05:44 -07:00
Andrey Kuznetsov 9a54352353 tabnine: init at 3.1.1 2020-10-01 10:32:22 -07:00
Tim Steinbach 6865ad9ce8
sbt-extras: 2020-06-01 -> 2020-09-24 2020-10-01 09:39:36 -04:00
Mario Rodas d68b9a9e59 goconst: fix excludedPackages 2020-10-01 04:20:00 -05:00
Anderson Torres 7211bbbee5
Merge pull request #94345 from cohei/init-chruby-fish
chruby-fish: init at 0.8.2
2020-09-30 17:19:27 -03:00
Maximilian Bosch 0c56c7357f
packer: 1.6.3 -> 1.6.4
https://github.com/hashicorp/packer/releases/tag/v1.6.4
2020-09-30 20:39:44 +02:00
Daniël de Kok d343cd62d5
Merge pull request #99104 from oxalica/rust-analyzer
rust-analyzer: 2020-09-21 -> 2020-09-28
2020-09-30 18:06:29 +02:00
TANIGUCHI Kohei ec0f69b0a9 chruby-fish: init at 0.8.2 2020-09-30 22:49:35 +09:00
Vincent Laporte 22b076e1c3 ikos: 2.1 → 3.0 2020-09-30 07:20:38 +02:00
oxalica 7d32577544
rust-analyzer: 2020-09-21 -> 2020-09-28 2020-09-29 23:19:02 +08:00
Robert Scott 9f65c524bb minizinc: fix build against bison 3.7
fixed in upstream development branch

enable for darwin
2020-09-29 05:47:46 -07:00
Christoph Hrdinka 7201e03a07
Merge pull request #98792 from NixOS/kevincox-b2
backblaze-b2: 1.3.8 -> 2.0.2
2020-09-29 13:21:38 +02:00