Commit Graph

40542 Commits

Author SHA1 Message Date
Nikolay Korotkiy
07655cd724 lsd2dsl: 0.4.1 -> 0.5.1 2020-02-10 20:01:14 +01:00
Peter Hoeg
b19c857985 redoflacs: 0.30.20150202 -> 0.30.20190903 2020-02-10 19:59:36 +01:00
Patrick Hilhorst
603109c171 vscodium: 1.41.1 -> 1.42.0 2020-02-10 19:58:55 +01:00
Emily
6957e476f4 weechatScripts.weechat-matrix: unstable-2019-11-10 -> unstable-2020-01-21 2020-02-10 19:57:23 +01:00
Brenton Horne
567be48707 marvin: 20.3.0 -> 20.4.0 2020-02-10 19:55:13 +01:00
Evils
d3a9e634bf kicad-unstable: update update.sh && update
use /tmp instead of XDG_RUNTIME_DIR
  which is /run/user/1000, which defaults to 10% of RAM
  and kicad-packages3d needs ~6gb
2020-02-10 19:54:38 +01:00
Evils
a9942b0226 kicad: simplify component names 2020-02-10 19:54:38 +01:00
Nikolay Korotkiy
ec85f51603 tippecanoe: 1.34.3 -> 1.35.0 2020-02-10 19:53:57 +01:00
Ben Darwin
39f0e3b32b minc_tools: enable building conversion tools 2020-02-10 19:53:25 +01:00
Ben Darwin
bcad453bcf minc_tools: 2017-09-11 -> unstable-2019-12-04 2020-02-10 19:53:25 +01:00
Daniel Schaefer
e77291b64e hpmyroom: 11.1.0.0508 -> 12.0.0.0220 2020-02-10 19:51:42 +01:00
Maciej Krüger
70e3b2b442 twinkle: patch manual link since old domain got re-used 2020-02-10 19:51:12 +01:00
zimbatm
bcdc90a3a7 ruby_2_4: remove
According to https://endoflife.software/programming-languages/server-side-scripting/ruby
ruby 2.4 will go end-of-life in march, where the new release of nixpkgs
will be cut. We won't be able to support it for security updates.

Remove all references to ruby_2_4 and add ruby_2_7 instead where
missing.

Mark packages that depend on ruby 2.4 as broken:
* chefdk
* sonic-pi
2020-02-10 13:23:35 -05:00
R. RyanTM
1c438a0cd0 catt: 0.10.2 -> 0.10.3 2020-02-10 18:11:15 +01:00
R. RyanTM
ccc54f0fc3 drumkv1: 0.9.11 -> 0.9.12 2020-02-10 18:06:03 +01:00
R. RyanTM
1543fd14be saga: 7.3.0 -> 7.5.0 2020-02-10 18:04:44 +01:00
R. RyanTM
8790ca3a0c snd: 19.9 -> 20.0 2020-02-10 18:04:28 +01:00
Thomas Tuegel
b78092a551
Merge pull request #78773 from layus/sane-override
sane module: support overriding config files
2020-02-10 10:53:57 -06:00
Frederik Rietdijk
079622ef2d
Merge pull request #79628 from NixOS/staging-next
Staging next
2020-02-10 17:53:25 +01:00
Marek Mahut
5301420990
Merge pull request #79739 from mmahut/exodus
exodus: 19.5.24 -> 20.1.30
2020-02-10 17:44:50 +01:00
Marek Mahut
b9c5da9195
Merge pull request #79741 from mmahut/cloudflared
cloudflared: 2019.12.0 -> 2020.2.0
2020-02-10 17:40:33 +01:00
Guillaume Maudoux
4979541cad sane module: make warning more explicit 2020-02-10 17:28:37 +01:00
Michele Guerini Rocco
565724c775
Merge pull request #77347 from rnhmjoj/urxvt
rxvt-unicode: rewrite plugin system
2020-02-10 17:21:59 +01:00
Michael Weiss
c213993880
gitRepo: 1.13.9.4 -> 2.0 2020-02-10 17:08:26 +01:00
Marek Mahut
78e0d72c88 cloudflared: 2019.12.0 -> 2020.2.0 2020-02-10 16:59:52 +01:00
Christian Kauhaus
edfd964253
Merge pull request #79050 from andrew-d/andrew/qemu-CVEs
qemu: add patches for CVE-2020-7039 and CVE-2020-7211
2020-02-10 16:52:25 +01:00
Marek Mahut
38d84665d8 exodus: 19.5.24 -> 20.1.30 2020-02-10 16:27:20 +01:00
Marek Mahut
0dfcfe13d4 exodus: adding at-spi2-core dependency 2020-02-10 16:26:02 +01:00
Marek Mahut
ff06678927 exodus: adding exodus alias 2020-02-10 16:25:30 +01:00
Marek Mahut
d6474081d0 exodus: reformating 2020-02-10 16:24:59 +01:00
Benjamin Hipple
2115a2037c fetchcargo: use flat tar.gz file for vendored src instead of recursive hash dir
This has several advantages:

1. It takes up less space on disk in-between builds in the nix store.
2. It uses less space in the binary cache for vendor derivation packages.
3. It uses less network traffic downloading from the binary cache.
4. It plays nicely with hashed mirrors like tarballs.nixos.org, which only
   substitute --flat hashes on single files (not recursive directory hashes).
5. It's consistent with how simple `fetchurl` src derivations work.
6. It provides a stronger abstraction between input src-package and output
   package, e.g., it's harder to accidentally depend on the src derivation at
   runtime by referencing something like `${src}/etc/index.html`. Likewise, in
   the store it's harder to get confused with something that is just there as a
   build-time dependency vs. a runtime dependency, since the build-time
   src dependencies are tarred up.

Disadvantages are:
1. It takes slightly longer to untar at the start of a build.

As currently implemented, this attaches the compacted vendor.tar.gz feature as a
rider on `verifyCargoDeps`, since both of them are relatively newly implemented
behavior that change the `cargoSha256`.

If this PR is accepted, I will push forward the remaining rust packages with a
series of treewide PRs to update the `cargoSha256`s.
2020-02-10 10:17:29 -05:00
Sascha Grunert
c36fca9701
cri-o: remove unused ldflags variable
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-02-10 14:42:40 +01:00
R. RyanTM
b94c1c89f6 manuskript: 0.10.0 -> 0.11.0 2020-02-10 13:36:57 +01:00
R. RyanTM
e988c072be clp: 1.17.3 -> 1.17.5 2020-02-10 13:24:22 +01:00
R. RyanTM
ec3f3601bd elisa: 19.12.0 -> 19.12.2 2020-02-10 13:23:51 +01:00
R. RyanTM
c717844ff7 jgmenu: 4.0 -> 4.0.2 2020-02-10 13:22:57 +01:00
Mario Rodas
48509f87f3
Merge pull request #79690 from saschagrunert/cri-o
cri-o: v1.16.1 -> v1.17.0
2020-02-10 07:03:09 -05:00
Frederik Rietdijk
ec3edaf7b5 Merge master into staging-next 2020-02-10 12:55:47 +01:00
Daniel Schaefer
f10e240b86 Merge pull request #72886 from JohnAZoidberg/manim
manim: init at 0.1.10
2020-02-10 10:09:22 +01:00
Kevin Rauscher
05b4fe20a7 mopidy: update to python3
mopidy: 2.3.1 -> 3.0.1
mopidy-iris: 3.43.0 -> 3.44.0
mopidy-spotify: 3.1.0 -> 4.0.1
pykka: 1.2.0 -> 2.0.1
2020-02-10 09:53:13 +01:00
Sascha Grunert
b771cc73d4
cri-o: v1.16.1 -> v1.17.0
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-02-10 09:18:23 +01:00
chamatht
16fe603750 calibre: switch to qtwebengine to fix 4.x (#79608) 2020-02-10 01:26:32 -05:00
worldofpeace
9c22a82d2b
Merge pull request #78420 from evanjs/gitkraken-6.5.0
gitkraken: 6.4.1 -> 6.5.1
2020-02-09 21:30:09 -05:00
Silvan Mosberger
349b471469 Merge pull request #79297 from arcnmx/pr-firefox-extension-links
firefox: resolve relative nativeMessagingHosts links
2020-02-10 00:15:19 +01:00
Florian Klink
9bf7d51047 conkeror: remove package
Conkeror doesn't work with any secure firefox release.
Please move to some of the alternatives suggested at
http://conkeror.org/Alternatives.
2020-02-09 22:48:27 +01:00
Florian Klink
84af9839e0 firefoxPackages.*, firefox-esr*, icecat: add aliases 2020-02-09 22:33:33 +01:00
Florian Klink
94b2596540 firefox: simplify derivation
with firefox 64 being the latest version, and the removal of
"tor-browser/icecat-like" variants, we can greatly simplify the common
firefox derivation.
2020-02-09 22:33:33 +01:00
Florian Klink
e3659c50fc firefoxPackages.firefox-esr-52: remove package
firefoxPackages.firefox-esr-52 was removed as it's an unsupported ESR
with open security issues. If you need it because you need to run some
plugins not having been ported to WebExtensions API, import it from an
older nixpkgs checkout still containing it.
2020-02-09 22:33:33 +01:00
Florian Klink
9704fbec86 firefoxPackages.icecat[-52]: remove package
firefoxPackages.icecat was removed as even its latest upstream version
is based on an unsupported ESR release with open security issues.
2020-02-09 22:33:33 +01:00
Florian Klink
83fff69fca firefoxPackages.firefox-esr-60: remove
There's not really a reason to ship an unsupported ESR variant of
firefox, and if one really needs it, it's also possible to just checkout
an older version of nixpkgs.
2020-02-09 22:33:33 +01:00
Florian Klink
c173d663fd firefoxPackages.*: use config.allowAliases 2020-02-09 22:33:33 +01:00
R. RyanTM
1d4fd7f5f2 verifast: 18.02 -> 19.12 2020-02-09 14:29:31 -06:00
Daniel Schaefer
ff1018a61e Merge pull request #79384 from bbigras/handbrake
handbrake: 1.3.0 -> 1.3.1
2020-02-09 21:19:24 +01:00
Michael Weiss
828e383f84
gitRepo: 1.13.9.3 -> 1.13.9.4 2020-02-09 19:13:13 +01:00
Ryan Mulligan
61140bc7e9
Merge pull request #79587 from r-ryantm/auto-update/palemoon
palemoon: 28.8.1 -> 28.8.2.1
2020-02-09 08:34:24 -08:00
R. RyanTM
bf49dc75c7 syncthingtray: 0.10.5 -> 0.10.6 2020-02-09 16:52:53 +01:00
R. RyanTM
41356b253b tribler: 7.4.0-exp1 -> 7.4.1 2020-02-09 16:52:26 +01:00
R. RyanTM
1809f5d3a8 kid3: 3.8.1 -> 3.8.2 2020-02-09 16:51:12 +01:00
R. RyanTM
3a1098e3e2 pcb: 4.2.1 -> 4.2.2 2020-02-09 16:49:13 +01:00
Frederik Rietdijk
3846896084 Merge pull request #79293 from NixOS/staging-next
Staging next (with glibc 2.30)
2020-02-09 16:40:16 +01:00
Frederik Rietdijk
cffec212dc Merge staging into staging-next 2020-02-09 16:38:32 +01:00
worldofpeace
89e9f68549
Merge pull request #79585 from Kiwi/scribusUnstable-poppler-0.84
scribusUnstable: Fix build with Poppler 0.84
2020-02-09 09:54:26 -05:00
Ryan Mulligan
c9cf351871 Merge pull request #79479 from r-ryantm/auto-update/workcraft
workcraft: 3.1.9 -> 3.2.5
2020-02-09 06:37:47 -08:00
R. RyanTM
20a73c5434 kdeApplications.okteta: 0.26.2 -> 0.26.3 2020-02-09 13:59:25 +01:00
R. RyanTM
eab57b9266 opera: 66.0.3515.36 -> 66.0.3515.72 2020-02-09 13:58:32 +01:00
Frederik Rietdijk
531a48ebdb Merge master into staging-next 2020-02-09 11:00:29 +01:00
Piotr Bogdan
1f775c59b7 gmtp: remove pbogdan from maintainers 2020-02-09 09:49:47 +00:00
Gabriel Ebner
6699655ed3
Merge pull request #79601 from jvierling/iprover
iprover: 2018_Jul_24_11h -> 3.1
2020-02-09 10:30:52 +01:00
Jan Tojnar
c8ce15bec7 Merge pull request #79592 from r-ryantm/auto-update/pulseeffects
pulseeffects: 4.7.0 -> 4.7.1
2020-02-09 09:59:50 +01:00
R. RyanTM
d3302d3763 smtube: 19.6.0 -> 20.1.0 2020-02-09 09:59:16 +01:00
R. RyanTM
c984fbb50f tqsl: 2.4.7 -> 2.5.1 2020-02-09 09:58:13 +01:00
R. RyanTM
9ee70815f1 frostwire-bin: 6.7.4 -> 6.8.3 2020-02-09 09:54:10 +01:00
R. RyanTM
4006c66d08 rapid-photo-downloader: 0.9.17 -> 0.9.18 2020-02-09 09:48:40 +01:00
Jannik Vierling
6ea5cd21ab iprover: 2018_Jul_24_11h -> 3.1 2020-02-09 09:38:57 +01:00
Benjamin Esham
35b403bf12 git: enable zsh completion
Git ships with a zsh completion script, but this script was previously
only available at $out/share/git/contrib/completion/git-completion.zsh,
which is not a path (or a filename) that would be discovered by a
typical zsh installation. This commit symlinks that file to
$out/share/zsh/site-functions/_git, which is a more standard location.

That zsh completion script is mostly a wrapper around the Bash
completion script, so this commit also patches the former so that it can
"find" the latter.
2020-02-09 09:22:20 +01:00
Frederik Rietdijk
8847d57763 Merge staging-next into staging 2020-02-09 09:18:17 +01:00
Frederik Rietdijk
03755ed59a Merge master into staging-next 2020-02-09 09:17:51 +01:00
PanAeon
eee784a1bb conkeror: pin to firefox-esr-52 (#72090) 2020-02-09 02:43:38 -05:00
Thomas Churchman
c32ccccd9d
rstudio: use qt5's mkDerivation (#74381) 2020-02-09 01:44:53 -05:00
pasqui23
f9735f05ac
qnotero: 1.0.0 -> 2.1.1 (#74560)
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
2020-02-09 01:40:09 -05:00
R. RyanTM
dbf7607110 pulseeffects: 4.7.0 -> 4.7.1 2020-02-09 06:30:44 +00:00
Luz
0522b3347e librepcb: 0.1.2 -> 0.1.3 (#74786) 2020-02-09 01:07:31 -05:00
Dmitry Kalinkin
1872e69450
Merge pull request #79301 from Abdillah/patch-2
librepcb: Fix platform plugin xcb not found
2020-02-09 00:28:49 -05:00
Robert Djubek
bef2837579
scribusUnstable: Fix build with Poppler 0.84
see: https://github.com/NixOS/nixpkgs/pull/77186#issuecomment-583800213

it seems poppler updates (almost?) always break scribusUnstable

additionally:
formatted with nixpkgs-fmt;
added kiwi to maintainers - the more eyes the better;
add additional licenses that are listed on scribus COPYING;
2020-02-09 05:20:32 +00:00
Emily
a14a32fd75 symbiyosys: 2019.10.11 -> 2020.02.08 2020-02-08 23:00:07 -06:00
R. RyanTM
9bf6c5d7da palemoon: 28.8.1 -> 28.8.2.1 2020-02-09 04:41:55 +00:00
worldofpeace
4ced5611db
Merge pull request #75670 from mkg20001/pkg/bless
bless: init at 0.6.2
2020-02-08 21:58:35 -05:00
Mario Rodas
a6245439a0 Merge pull request #79566 from marsam/update-flexget
flexget: 3.1.18 -> 3.1.21
2020-02-08 18:18:12 -05:00
Maximilian Bosch
1e0934f69a
i3status-rust: 0.13.0 -> 0.13.1
https://github.com/greshake/i3status-rust/releases/tag/v0.13.1
2020-02-08 23:09:00 +01:00
Ryan Mulligan
537f07555f Merge pull request #79557 from r-ryantm/auto-update/marvin
marvin: 19.27.0 -> 20.3.0
2020-02-08 12:42:18 -08:00
Bruno Bigras
2104c8bbdb cloudflared: 2019.7.0 -> 2019.12.0 2020-02-08 13:57:12 -06:00
R. RyanTM
20f22f681f marvin: 19.27.0 -> 20.3.0 2020-02-08 19:34:35 +00:00
Maximilian Bosch
2af5093f76 Merge pull request #79495 from zowoq/vscode
vscode 1.41.1 -> 1.42.0
2020-02-08 18:06:24 +01:00
Mario Rodas
5b1a8c74f1
Merge pull request #79521 from r-ryantm/auto-update/git-machete
gitAndTools.git-machete: 2.12.6 -> 2.13.1
2020-02-08 10:41:42 -05:00
Peter Simons
8bd8345f56 esniper: update to latest git version 2020-02-08 16:09:47 +01:00
markuskowa
8261fc4980
Merge pull request #79511 from r-ryantm/auto-update/gmsh
gmsh: 4.5.1 -> 4.5.2
2020-02-08 14:21:27 +01:00
R. RyanTM
dae266aa66 last: 1045 -> 1047 2020-02-08 13:04:53 +00:00
markuskowa
da6a384504
Merge pull request #79520 from r-ryantm/auto-update/fomp
fomp: 1.0.0 -> 1.2.0
2020-02-08 14:01:04 +01:00
Thomas Tuegel
f84107c857
Merge pull request #79112 from dtzWill/update/kde-applications-19.20.1
kdeApplications: 19.08.3 -> 19.12.1, new fetch base URL?
2020-02-08 06:24:05 -06:00
Thomas Tuegel
6545aa450c
kdeApplications.kcalcore: Removed 2020-02-08 05:45:22 -06:00
Mario Rodas
54df335531
Merge pull request #79491 from zowoq/crun
crun: 0.12 -> 0.12.1
2020-02-08 06:14:06 -05:00
Mario Rodas
44788c3529
Merge pull request #79507 from r-ryantm/auto-update/gallery_dl
gallery-dl: 1.12.2 -> 1.12.3
2020-02-08 06:11:38 -05:00
R. RyanTM
b2b755ece5 gitAndTools.git-machete: 2.12.6 -> 2.13.1 2020-02-08 09:20:18 +00:00
Peter Simons
68e753d0d9
Merge pull request #79517 from r-ryantm/auto-update/grip
grip: 4.0.1 -> 4.1.0
2020-02-08 10:20:05 +01:00
Mario Rodas
75650a5ad1
flexget: 3.1.18 -> 3.1.21 2020-02-08 04:20:00 -05:00
R. RyanTM
b1dcf27c7f fomp: 1.0.0 -> 1.2.0 2020-02-08 09:14:43 +00:00
R. RyanTM
9e1d9e95a9 grip: 4.0.1 -> 4.1.0 2020-02-08 08:53:40 +00:00
lewo
0594edc542
Merge pull request #79460 from saschagrunert/podman
podman: v1.7.0 -> v1.8.0
2020-02-08 08:50:11 +01:00
R. RyanTM
7c58b6437b gmsh: 4.5.1 -> 4.5.2 2020-02-08 07:25:27 +00:00
R. RyanTM
0c1d4a13e6 gallery-dl: 1.12.2 -> 1.12.3 2020-02-08 06:42:53 +00:00
R. RyanTM
200b0caa9b fldigi: 4.1.08.51 -> 4.1.09 2020-02-08 04:52:30 +00:00
Ryan Mulligan
27c3d36741
Merge pull request #79408 from r-ryantm/auto-update/bleachbit
bleachbit: 3.0 -> 3.2.0
2020-02-07 19:46:57 -08:00
zowoq
d39e08e462 vscode 1.41.1 -> 1.42.0 2020-02-08 12:36:18 +10:00
Ryan Mulligan
555ca166ec
Merge pull request #79467 from r-ryantm/auto-update/picard-tools
picard-tools: 2.21.6 -> 2.21.8
2020-02-07 18:10:16 -08:00
R. RyanTM
825f7cda3f copyq: 3.9.3 -> 3.10.0 2020-02-08 02:03:06 +00:00
Ryan Mulligan
431b4ca37f
Merge pull request #79447 from r-ryantm/auto-update/k9s
k9s: 0.13.6 -> 0.13.8
2020-02-07 17:43:44 -08:00
zowoq
69c29537b3 crun: 0.12 -> 0.12.1
https://github.com/containers/crun/blob/0.12.1/NEWS
2020-02-08 11:24:26 +10:00
Ryan Mulligan
cd67f9f2e5
Merge pull request #79414 from r-ryantm/auto-update/cherrytree
cherrytree: 0.38.10 -> 0.38.11
2020-02-07 14:04:18 -08:00
R. RyanTM
5bf0de57ad workcraft: 3.1.9 -> 3.2.5 2020-02-07 21:09:41 +00:00
Ryan Mulligan
ddafe89068
Merge pull request #79465 from r-ryantm/auto-update/pdfsam-basic
pdfsam-basic: 4.0.5 -> 4.1.1
2020-02-07 12:26:56 -08:00
Frederik Rietdijk
30f0909e3a Merge master into staging-next 2020-02-07 19:27:52 +01:00
R. RyanTM
d5404eebe9 picard-tools: 2.21.6 -> 2.21.8 2020-02-07 17:20:58 +00:00
R. RyanTM
bed41f5ad6 pdfsam-basic: 4.0.5 -> 4.1.1 2020-02-07 17:14:21 +00:00
Bruno Bigras
95124a4877 handbrake: 1.3.0 -> 1.3.1 2020-02-07 09:56:40 -05:00
Ryan Mulligan
833438c0d4
Merge pull request #79341 from r-ryantm/auto-update/pivx
pivx: 4.0.0 -> 4.0.2
2020-02-07 06:33:21 -08:00
Sascha Grunert
6d7e4fb746
podman: v1.7.0 -> v1.8.0
Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2020-02-07 15:25:19 +01:00
Michael Weiss
310316701f
Merge pull request #79242 from primeos/chromium
chromium: 79.0.3945.130 -> 80.0.3987.87
2020-02-07 15:15:28 +01:00
Ryan Mulligan
91aaa11b06
Merge pull request #79436 from r-ryantm/auto-update/gpodder
gpodder: 3.10.12 -> 3.10.13
2020-02-07 05:10:10 -08:00
Ryan Mulligan
6a586f3562
Merge pull request #79392 from r-ryantm/auto-update/toot
toot: 0.25.0 -> 0.25.2
2020-02-07 05:05:41 -08:00
R. RyanTM
1652fbccd7 k9s: 0.13.6 -> 0.13.8 2020-02-07 11:51:05 +00:00
R. RyanTM
781ba5f339 bitcoin-abc: 0.20.9 -> 0.20.12 2020-02-07 12:23:33 +01:00
Franz Pletz
57ed5db343
Merge pull request #79399 from r-ryantm/auto-update/xmrig
xmrig: 5.5.1 -> 5.5.3
2020-02-07 09:58:11 +00:00
Maximilian Bosch
fde7ffab6b
Merge pull request #79427 from r-ryantm/auto-update/drawio
drawio: 12.5.3 -> 12.6.5
2020-02-07 10:51:30 +01:00
R. RyanTM
041fb51fdb gpodder: 3.10.12 -> 3.10.13 2020-02-07 09:49:50 +00:00
R. RyanTM
92444e1f3b drawio: 12.5.3 -> 12.6.5 2020-02-07 08:27:56 +00:00
Maximilian Bosch
e2c378348e
Merge pull request #79404 from marsam/update-gitAndTools.delta
gitAndTools.delta: 0.0.15 -> 0.0.16
2020-02-07 09:08:39 +01:00
R. RyanTM
f000f78d53 cherrytree: 0.38.10 -> 0.38.11 2020-02-07 04:34:48 +00:00
R. RyanTM
685a8f01e9 bleachbit: 3.0 -> 3.2.0 2020-02-07 03:01:27 +00:00
Mario Rodas
947ace2a16
Merge pull request #79188 from sikmir/viking
viking: 1.7 -> 1.8
2020-02-06 21:40:51 -05:00
Mario Rodas
2fda7c1224
gitAndTools.delta: 0.0.15 -> 0.0.16
Changelog: https://github.com/dandavison/delta/releases/tag/0.0.16
2020-02-06 21:21:21 -05:00
R. RyanTM
2c547c26fb xmrig: 5.5.1 -> 5.5.3 2020-02-06 23:52:47 +00:00
Maximilian Bosch
629c35627f
Merge pull request #79395 from Frostman/docker-compose
docker-compose: 1.25.1 -> 1.25.4
2020-02-07 00:09:26 +01:00
Sergey Lukjanov
57be3cab36 docker-compose: 1.25.1 -> 1.25.4 2020-02-06 14:31:59 -08:00
Michael Weiss
4ffe245420
tev: 1.13 -> 1.14 2020-02-06 22:56:14 +01:00
Bruno Bigras
a03b2b331e notmuch: 0.29.2 -> 0.29.3 2020-02-06 22:51:21 +01:00
Michael Weiss
5a0e91e78f
gitRepo: 1.13.9.2 -> 1.13.9.3 2020-02-06 21:49:21 +01:00
R. RyanTM
cba54926dc synthv1: 0.9.11 -> 0.9.12 2020-02-06 20:23:19 +01:00
R. RyanTM
05c439a62c samplv1: 0.9.11 -> 0.9.12 2020-02-06 20:22:47 +01:00
R. RyanTM
58bfcdd0f5 clipgrab: 3.8.6 -> 3.8.7 2020-02-06 20:18:21 +01:00
R. RyanTM
78d6e74427 eagle: 9.5.1 -> 9.5.2 2020-02-06 20:17:53 +01:00
R. RyanTM
f07fc12703 rambox-pro: 1.2.0 -> 1.2.2 2020-02-06 20:15:35 +01:00
R. RyanTM
ce5b0406db labelImg: 1.6.0 -> 1.8.1 2020-02-06 20:11:53 +01:00
R. RyanTM
0db991d067 padthv1: 0.9.11 -> 0.9.12 2020-02-06 20:11:33 +01:00
R. RyanTM
4a9b6ece20 rednotebook: 2.15 -> 2.16 2020-02-06 20:09:20 +01:00
R. RyanTM
2b5bb8d084 thonny: 3.2.4 -> 3.2.6 2020-02-06 20:09:04 +01:00
Frederik Rietdijk
38cf6eac19 Merge master into staging-next 2020-02-06 19:43:36 +01:00
R. RyanTM
29afdd8609 toot: 0.25.0 -> 0.25.2 2020-02-06 17:34:47 +00:00
worldofpeace
1013c2e3a6
Merge pull request #79348 from r-ryantm/auto-update/quilter
quilter: 2.0.5 -> 2.1.0
2020-02-06 09:24:29 -05:00
R. RyanTM
0af886dcf9 quilter: 2.0.5 -> 2.1.0 2020-02-06 14:10:42 +00:00
Rakesh Gupta
21b11bfc0e mapproxy: init at 1.12.0 2020-02-06 05:46:32 -08:00
R. RyanTM
475c652f7a pivx: 4.0.0 -> 4.0.2 2020-02-06 13:00:56 +00:00
Lancelot SIX
d761fcbc04
Merge pull request #79314 from Moredread/gogs-0.11.91
gogs: 0.11.86 -> 0.11.91, fixes CVE-2019-14544
2020-02-06 13:43:07 +01:00
Anton Desyatov
6866ca71a7 tilt: 0.10.13 -> 0.11.3 2020-02-06 10:46:01 +01:00
André-Patrick Bubel
3cd72fbd76
gogs: 0.11.86 -> 0.11.91, fixes CVE-2019-14544 2020-02-06 07:49:01 +01:00
Bruno Bigras
e57e4ea0cf next: 1.3.4 -> 1.4.0 2020-02-05 23:18:59 -05:00
Hernawan Faïz Abdillah
2d4ee40176
librepcb: Fix platform plugin xcb not found 2020-02-06 08:44:16 +07:00
arcnmx
c7a58a7ba7 firefox: resolve relative nativeMessagingHosts links 2020-02-05 14:29:52 -08:00
Michael Weiss
14e53a0508
gitRepo: Rewrite the "urllib.request.urlopen" patch for Python 3
The old variant is still working but setting "cafile" is deprecated
since version 3.6 [0] and generates a warning:
DeprecationWarning: cafile, capath and cadefault are deprecated, use a custom context instead.

But without this patch "fetchRepoProject" still fails with
"error no host given" (see 337380ea1d).

[0]: https://docs.python.org/3.7/library/urllib.request.html#urllib.request.urlopen
2020-02-05 21:34:49 +01:00
Michael Weiss
7c558f7ac7
gitRepo: 1.13.9.1 -> 1.13.9.2 2020-02-05 21:01:38 +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 87a19e9048 I merged staging-next into master using the GitHub gui as intended.
In ac241fb7a5 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 0be87c7979. This was however wrong, as it "removed" master.

This reverts commit 0be87c7979.
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 87a19e9048.

This reverts commit ac241fb7a5, reversing
changes made to 76a439239e.
2020-02-05 19:18:35 +01:00
Ryan Mulligan
67143ec938
Merge pull request #79231 from r-ryantm/auto-update/SPAdes
SPAdes: 3.13.1 -> 3.14.0
2020-02-05 06:54:45 -08: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
worldofpeace
d7b56dda7f
Merge pull request #79166 from wucke13/master
paraview: add wrapQtAppsHook
2020-02-05 07:08:32 -05:00
Maximilian Bosch
e9d9603754
Merge pull request #78837 from r-ryantm/auto-update/teamviewer
teamviewer: 15.0.8397 -> 15.1.3937
2020-02-05 08:12:09 +01:00
Florian Klink
b8a8fd0fd5
Merge pull request #79165 from sikmir/xournalpp
xournalpp: 1.0.16 -> 1.0.17
2020-02-05 00:38:55 +01:00
Michael Weiss
272041b85a
chromium: 79.0.3945.130 -> 80.0.3987.87
https://chromereleases.googleblog.com/2020/02/stable-channel-update-for-desktop.html

This update includes 56 security fixes.

CVEs:
CVE-2020-6381 CVE-2020-6382 CVE-2019-18197 CVE-2019-19926 CVE-2020-6385
CVE-2019-19880 CVE-2019-19925 CVE-2020-6387 CVE-2020-6388 CVE-2020-6389
CVE-2020-6390 CVE-2020-6391 CVE-2020-6392 CVE-2020-6393 CVE-2020-6394
CVE-2020-6395 CVE-2020-6396 CVE-2020-6397 CVE-2020-6398 CVE-2020-6399
CVE-2020-6400 CVE-2020-6401 CVE-2020-6402 CVE-2020-6403 CVE-2020-6404
CVE-2020-6405 CVE-2020-6406 CVE-2019-19923 CVE-2020-6408 CVE-2020-6409
CVE-2020-6410 CVE-2020-6411 CVE-2020-6412 CVE-2020-6413 CVE-2020-6414
CVE-2020-6415 CVE-2020-6416 CVE-2020-6417
2020-02-05 00:20:16 +01:00
Nikolay Korotkiy
a1caeda72c
viking: 1.7 -> 1.8 2020-02-04 23:07:14 +03:00
R. RyanTM
3c54ae5679 SPAdes: 3.13.1 -> 3.14.0 2020-02-04 16:40:50 +00:00
Lancelot SIX
fb37b20d4d
Merge pull request #79093 from bdesham/wee-slack-2.4.0
weechatScripts.wee-slack: 2.3.0 -> 2.4.0
2020-02-04 17:01:39 +01:00
Michael Weiss
a95cfefa55
Merge pull request #79223 from primeos/pijul-fix
pijul: Fix the build (broke due to a more recent Rust version)
2020-02-04 14:52:58 +01:00
Michael Weiss
eacc771f72
gitRepo: Switch to Python 3 2020-02-04 14:45:57 +01:00
Michael Weiss
7d4b5a2154
gitRepo: 1.13.8 -> 1.13.9.1 2020-02-04 14:45:57 +01:00
Michael Weiss
6fd230f144
signal-desktop: 1.30.0 -> 1.30.1
Changelog: https://github.com/signalapp/Signal-Desktop/releases/tag/v1.30.1
2020-02-04 14:16:18 +01:00
Michael Weiss
434ff94e73
pijul: Fix the build (broke due to a more recent Rust version)
This uses an upstream patch [0] to fix a compatibility error with a new
version of Rust. Fix #79150.

Unfortunately patching Rust dependencies in Nixpkgs turned out to be way
more hacky than I expected (maybe there is a nicer way?), but it should
be fine for now.

A new release might follow soonish [1] so that we can drop the patches.

References:
- https://nest.pijul.com/pijul_org/pijul/discussions/401
- https://nest.pijul.com/pijul_org/thrussh/discussions/31

[0]: https://nest.pijul.com/pijul_org/thrussh:master/patches/AsyuWkJg4jAwNaG3H1yv1kbECx5E3GQAtjzXWBDB8yEGMswyfKbxKvYmAGWCohTVaTipdvF8mHh63yU5PTr5F9py
[1]: https://discourse.pijul.org/t/is-this-project-still-active-yes-it-is/451
2020-02-04 14:05:02 +01:00
Maximilian Bosch
f32e921ca9
Merge pull request #79206 from Frostman/hugo-0.64.0
hugo: 0.63.2 -> 0.64.0
2020-02-04 11:53:41 +01:00
Michele Guerini Rocco
96358710f7
qutebrowser: 1.9.0 -> 1.10.0 (#79172) 2020-02-04 11:24:07 +01:00
wucke13
b020b0153d paraview: add wrapQtAppsHook
Also reformatted meta and arguments
2020-02-04 11:14:20 +01:00
Sergey Lukjanov
8447c84d48 hugo: 0.63.2 -> 0.64.0 2020-02-04 01:49:01 -08:00
Mario Rodas
bb769908f9
Merge pull request #79103 from marsam/init-pueue
pueue: init at 0.1.4
2020-02-04 04:04:36 -05:00
Mario Rodas
7596dfeb9a
Merge pull request #79201 from marsam/update-syncthing
syncthing: 1.3.3 -> 1.3.4
2020-02-04 03:19:48 -05:00
Mario Rodas
3267ed0853
Merge pull request #79200 from marsam/update-flexget
flexget: 3.1.13 -> 3.1.18
2020-02-04 03:14:59 -05:00
zowoq
eb957383b7 gitAndTools.gh: init at 0.5.3 2020-02-04 13:53:56 +10:00
Peter Hoeg
1b38ba9121
Merge pull request #79185 from zowoq/crun
crun: 0.11 -> 0.12
2020-02-04 08:59:33 +08:00
Will Dietz
6f60621c0c
kcontacts: kdeApplications -> kdeFrameworks 2020-02-03 18:08:59 -06:00
Will Dietz
d18b1ee998
Merge pull request #78155 from dtzWill/update/zanshin-0.5.71
zanshin: 2019-07-28 -> 0.5.71
2020-02-03 17:38:20 -06:00
zowoq
1a021570f9 crun: 0.11 -> 0.12
https://github.com/containers/crun/releases/tag/0.12
2020-02-04 08:19:12 +10:00
Florian Klink
ca00a3f302
Merge pull request #79008 from flokli/bump-aerc
aerc: 0.3.0 -> unstable-2020-02-01
2020-02-03 22:23:21 +01:00
markuskowa
df1453639d
Merge pull request #79111 from pulsation/fldigi-update-fltk-dependency-to-14
fldigi: update fltk dependency to 1.4
2020-02-03 21:36:18 +01:00