Commit graph

48478 commits

Author SHA1 Message Date
bqv be17edc6f6 pkgs.nyxt: init at 2020-10-23 2020-10-25 08:56:12 +01:00
lewo 68f03380b2
Merge pull request #101393 from 06kellyjac/tekton-cli_0.13.1
tektoncd-cli: 0.13.0 -> 0.13.1
2020-10-25 08:07:46 +01:00
Jörg Thalheim 2f31499703
Merge pull request #101611 from stigtsp/package/firefox-bin-82.0
firefox-bin: 81.0.2 -> 82.0
2020-10-25 07:32:30 +01:00
Jörg Thalheim c8bccb080b
Merge pull request #101624 from taku0/fix_update_nix_for_82
firefox-bin: fix update.nix freezing
2020-10-25 07:31:49 +01:00
taku0 4eacc3784f firefox-bin: fix update.nix freezing
https://github.com/NixOS/nixpkgs/pull/98338#issuecomment-716070078
2020-10-25 13:48:42 +09:00
Mario Rodas 0b2d320f39 rclone: 1.53.1 -> 1.53.2 2020-10-25 04:20:00 +00:00
Benjamin Hipple 64a620f8d3
Merge pull request #101418 from arcnmx/terraform-providers-github
terraform-providers.github: 2.8.0 -> 3.1.0
2020-10-24 23:10:13 -04:00
R. RyanTM 5e09575e03 fava: 1.15 -> 1.16 2020-10-25 00:37:40 +00:00
Stig Palmquist 728b984d57
firefox-bin: 81.0.2 -> 82.0 2020-10-25 01:22:03 +02:00
Andreas Rammhold 250fb4611f
Merge pull request #100456 from maralorn/boolToString
treewide: De-inline uses of lib.boolToString
2020-10-25 00:45:11 +02:00
Lassulus a020c1b591
Merge pull request #101536 from kmein/feature/opustags
opustags: init at 1.3.0
2020-10-24 23:39:16 +02:00
Ryan Mulligan 43ddf205c5
Merge pull request #101573 from r-ryantm/auto-update/dstask
dstask: 0.21 -> 0.22
2020-10-24 14:08:20 -07:00
Mario Rodas da8c8a2d34
Merge pull request #100537 from wilsonehusin/sonobuoy-0.19
sonobuoy: 0.16.1 -> 0.19.1
2020-10-24 14:29:14 -05:00
Mario Rodas 002c634339
Merge pull request #101448 from 06kellyjac/terragrunt_0.25.5
terragrunt: 0.25.4 -> 0.25.5
2020-10-24 14:14:06 -05:00
Kierán Meinhardt af0eab7a79 opustags: init at 1.3.0 2020-10-24 21:11:25 +02:00
Daniël de Kok 793a236e4c
Merge pull request #101483 from Flakebi/birdtray
birdtray: 1.8.1 -> 1.9.0
2020-10-24 20:42:28 +02:00
Michael Weiss 253c9cb0b8
tdesktop: 2.4.3 -> 2.4.4 2020-10-24 20:22:56 +02:00
Maximilian Bosch 12b7217fba
Merge pull request #101564 from jojosch/dbeaver-7.2.3
dbeaver: 7.2.2 -> 7.2.3
2020-10-24 18:19:08 +02:00
R. RyanTM 76a15c71b6 dstask: 0.21 -> 0.22 2020-10-24 16:13:30 +00:00
Michael Weiss 26dbf31f49
Merge pull request #101555 from meutraa/update/android-studio-canary
androidStudioPackages.{canary,dev}: 4.2.0.13 -> 4.2.0.14
2020-10-24 18:06:17 +02:00
Johannes Schleifenbaum 3d3e792965
dbeaver: 7.2.2 -> 7.2.3 2020-10-24 17:32:41 +02:00
StigP 7ecdf141d2
Merge pull request #98338 from Atemu/firefox-bin-update-fix
firefox-bin/update: fix
2020-10-24 14:42:01 +00:00
meutraa eb7e78ee99
androidStudioPackages.{canary,dev}: 4.2.0.13 -> 4.2.0.14 2020-10-24 15:02:26 +01:00
Anderson Torres db2c904c3c
Merge pull request #100294 from pniedzwiedzinski/amfora-desktop
amfora: Add desktop file
2020-10-24 08:50:44 -03:00
Anderson Torres 2dfad07d44
Merge pull request #99494 from jb55/barrier_2_3_3
barrier: 2.3.2 -> 2.3.3
2020-10-24 08:49:29 -03:00
TredwellGit 2bb011032c
chromium: use official build settings (#101467)
LLD: https://lld.llvm.org/
When you link a large program on a multicore machine, you can expect that LLD runs more than twice as fast as the GNU gold linker. Your mileage may vary, though.
Link-time optimization (LTO) is supported by default.
Some default settings have been tuned for the 21st century. For example, the stack is marked as non-executable by default to tighten security.

LTO & ThinLTO: https://clang.llvm.org/docs/ThinLTO.html
LTO (Link Time Optimization) achieves better runtime performance through whole-program analysis and cross-module optimization. However, monolithic LTO implements this by merging all input into a single module, which is not scalable in time or memory, and also prevents fast incremental compiles. ThinLTO is a new approach that is designed to scale like a non-LTO build, while retaining most of the performance achievement of full LTO.

PGO: https://llvm.org/docs/HowToBuildWithPGO.html https://blog.chromium.org/2020/08/chrome-just-got-faster-with-profile.html
Allows your compiler to better optimize code for how it actually runs. Users report that applying this to Clang and LLVM can decrease overall compile time by 20%.
Because PGO uses real usage scenarios that match the workflows of Chrome users around the world, the most common tasks get prioritized and made faster. Delivers up to 10% faster page loads.

CFI: https://clang.llvm.org/docs/ControlFlowIntegrity.html https://www.chromium.org/developers/testing/control-flow-integrity
Aborts the program upon detecting certain forms of undefined behavior that can potentially allow attackers to subvert the program’s control flow. These schemes have been optimized for performance, allowing developers to enable them in release builds.
By default, a program compiled with CFI will crash with SIGILL if it detects a CFI violation.

Additionally:
Use minizip instead of zlib. Chromium says zlib but actually uses minizip.
Remove old unused workarounds.
Make shell scripts POSIX compliant.
Update documentation URLs.
Prepare for using system libraries.
2020-10-24 12:27:40 +02:00
Vladimír Čunát c0a646edd0
Merge #101380: thunderbird*: 78.3.2 -> 78.4.0 2020-10-24 09:16:36 +02:00
Ryan Burns c58233a34a blugon: fix build on darwin 2020-10-23 18:06:36 -07:00
Andreas Rammhold 582f622f6c
Merge pull request #101481 from makefu/pkgs/cozy/0.7.2
cozy-audiobooks: 0.6.7 -> 0.7.2
2020-10-23 23:59:44 +02:00
Andreas Rammhold b0f9c2b4e1
Merge pull request #101498 from TredwellGit/mumble
mumble: 1.3.2 -> 1.3.3 (security)
2020-10-23 23:26:41 +02:00
WilliButz 993437d0d6
Merge pull request #96511 from Zopieux/rtl_433_prom
Add rtl_433 Prometheus exporter
2020-10-23 23:24:38 +02:00
TredwellGit 1bc72b3494 mumble: 1.3.2 -> 1.3.3
https://github.com/mumble-voip/mumble/releases/tag/1.3.3
2020-10-23 20:35:27 +00:00
Kevin Cox 7eddff6821
Merge pull request #99931 from sikmir/cudatext
cudatext: 1.111.0 -> 1.115.0
2020-10-23 15:23:25 -04:00
Michael Weiss de32261d9f
git: 2.29.0 -> 2.29.1 (#101488) 2020-10-23 20:55:30 +02:00
Magicloud e416dc89a1 virtualbox: 6.1.14 -> 6.1.16
6.1.16 is the latest release of Virtualbox. And it is necessary to have it when using Linux 5.9 kernel.
2020-10-24 02:53:08 +08:00
Flakebi 8995b667c3
birdtray: 1.8.1 -> 1.9.0 2020-10-23 20:09:46 +02:00
makefu fabf544001
cozy-audiobooks: 0.6.7 -> 0.7.2 2020-10-23 20:02:44 +02:00
Michael Weiss 7c76eafdb7
chromiumDev: Mark as broken for now 2020-10-23 19:47:43 +02:00
Nikolay Korotkiy a2472ebfb1
geogebra: 5-0-593-0 -> 5-0-609-0, geogebra6: 6-0-600-0 -> 6-0-609-0 2020-10-23 19:25:11 +03:00
Graham Christensen 4770d412c9
Merge pull request #101470 from endocrimes/dani/bump-p4
p4: 2020.1.1991450 -> 2020.1.2007551
2020-10-23 12:17:10 -04:00
Michael Weiss 50a2f50acb
chromiumDev: 88.0.4292.2 -> 88.0.4298.4
This should also fix VA-API for chromiumBeta (though that part needs
some cleanup). However, chromiumDev likely still fails due to the
absence of dirmd (not included in the tarball so far, we might have to
package and add it as a dependency).
2020-10-23 17:49:46 +02:00
Kevin Cox 6cbef452b0
Merge pull request #100685 from buckley310/brave
brave: 1.12.112 -> 1.15.76
2020-10-23 11:31:55 -04:00
Danielle Lancashire b197c7fb48 p4: 2020.1.1991450 -> 2020.1.2007551
The download URL hasn't changed, but the sha256 and user facing download
version has. See [perforce downloads][p4-download].

[p4-download]: https://www.perforce.com/downloads/helix-command-line-client-p4
2020-10-23 16:24:13 +02:00
Sandro Jäckel e44cc1404b docker: use upstream repo for containerd
http://github.com/docker/containerd is archived and redirects to
https://github.com/docker-archive/containerd.

To make updates easier track the upstream repo which Docker uses.
2020-10-24 00:12:06 +10:00
Michael Weiss b36db49ae7
chromium: Add some brief documentation
Wanted to do this for a long time to collect important knowledge and
make it easier to pass maintainership.
Only time will tell if this'll be useful or become outdated instead.
2020-10-23 11:39:05 +02:00
06kellyjac 10c152cb58 terragrunt: 0.25.4 -> 0.25.5 2020-10-23 09:50:15 +01:00
06kellyjac 268f5110f6 terragrunt: add jk as a maintainer
Add jk (myself) as a maintainer for terragrunt
2020-10-23 09:49:41 +01:00
06kellyjac 200bf0a3af terragrunt: clean and sort arguments
lib was already imported so no need for stdenv.lib
sorted arguments into order of use
2020-10-23 09:48:39 +01:00
Vincent Laporte 2cb651ad14 cryptoverif: 2.01pl1 → 2.03pl1 2020-10-23 10:20:09 +02:00
Andreas Rammhold e7a4b3df43
Merge pull request #101434 from andir/firefox-disable-lto
firefox: disable LTO by default due to segfaults with wayland
2020-10-23 03:58:12 +02:00
Sean Buckley 61e2d90486 brave: 1.12.112 -> 1.15.76 2020-10-22 21:05:20 -04:00
Ryan Mulligan ff23aaed3a
Merge pull request #101299 from r-ryantm/auto-update/argo
argo: 2.11.5 -> 2.11.6
2020-10-22 18:04:48 -07:00
Andreas Rammhold bca15c82d8 firefox: disable LTO by default due to segfaults with wayland
As discussed in #101429 firefox 82 started crashing when used with
wayland. A brief investigation showed that this appears to be rooted
within the LTO support that was recently added to the package. For the
time being, until someone figures out where the crashes are coming from,
we can just disable LTO.
2020-10-23 02:51:46 +02:00
Martin Weinelt 924e5f5cba
Merge pull request #101338 from r-ryantm/auto-update/cantata
cantata: 2.4.1 -> 2.4.2
2020-10-23 02:15:57 +02:00
Anderson Torres 253fb7648c
Merge pull request #101244 from zaninime/nanovna-saver
nanovna-saver: init at 0.3.7
2020-10-22 20:42:56 -03:00
arcnmx c603dae70d terraform-providers.github: 2.8.0 -> 3.1.0 2020-10-22 14:47:16 -07:00
Jan Tojnar 3e01d383ee
Merge branch 'staging-next' into staging 2020-10-22 21:20:32 +02:00
Jan Tojnar d13fc932cd
Merge branch 'master' into staging-next 2020-10-22 21:20:14 +02:00
Jan Tojnar 78ff7e0a7a
Merge pull request #101398 from nh2/pitivi-fix-startup-svg-error
pitivi: Fix .svg loading at startup, see #56943 #89691
2020-10-22 20:47:49 +02:00
Martin Weinelt 0179259408
Merge pull request #101381 from SuperSandro2000/gitstatus-1.3.1
gitstatus: 1.3.0 -> 1.3.1, zsh-powerlevel10k: 1.12.0 -> 1.13.0
2020-10-22 19:59:47 +02:00
arcnmx f7cf7ed51d terraform-providers.time: init at 0.6.0 2020-10-22 10:59:46 -07:00
Niklas Hambüchen 4bf0061d28 pitivi: Fix .svg loading at startup, see #56943 #89691 2020-10-22 18:36:53 +02:00
06kellyjac a7c1563b03 tektoncd-cli: 0.13.0 -> 0.13.1 2020-10-22 16:55:29 +01:00
Anderson Torres 02e4a0e65f
Merge pull request #95320 from mstrangfeld/tektoncd-cli
tektoncd-cli: init at 0.13.0
2020-10-22 12:15:38 -03:00
Marek Mahut 67496d2bb5
Merge pull request #101375 from 1000101/terraform-providers_vultr
terraform-providers: vultr 1.3.0 -> 1.4.1
2020-10-22 16:55:40 +02:00
Mario Rodas 77fd054bc2
Merge pull request #101313 from marsam/update-terraform_0_13
terraform_0_13: 0.13.4 -> 0.13.5
2020-10-22 09:37:44 -05:00
Francesco Zanini 2a54c4f950 nanovna-saver: init at 0.3.7 2020-10-22 16:23:13 +02:00
Sandro Jäckel 0ec595f0eb
gitstatus: 1.3.0 -> 1.3.1 2020-10-22 15:51:11 +02:00
taku0 a1ad05b45c thunderbird-bin: 78.3.2 -> 78.4.0 2020-10-22 22:41:21 +09:00
1000101 f5a852941e terraform-providers: vultr 1.3.0 -> 1.4.1 2020-10-22 15:37:33 +02:00
Doron Behar 5f7a159538
Merge pull request #101346 from r-ryantm/auto-update/CopyQ
copyq: 3.12.0 -> 3.13.0
2020-10-22 15:57:25 +03:00
Michael Raskin bb7e76bebb
alpine: 2.23 -> 2.24 (#101318) 2020-10-22 12:56:04 +00:00
Doron Behar e97848c10a
Merge pull request #101340 from r-ryantm/auto-update/calcurse
calcurse: 4.6.0 -> 4.7.0
2020-10-22 15:55:39 +03:00
Michael Weiss d8cbc9d331
signal-desktop: 1.37.1 -> 1.37.2 2020-10-22 13:36:12 +02:00
GuangTao f5a8ea23bd
polar-bookshelf: 1.13.10 -> 2.0.42
* polar-bookshelf: 1.13.10 -> 2.0.42

* Update pkgs/applications/misc/polar-bookshelf/default.nix

Co-authored-by: Zak B. Elep <zakame@zakame.net>
2020-10-22 13:35:35 +02:00
Vladimir Serov 2ee31417c9
super-slicer: 2.2.54.0 -> 2.2.54.1 2020-10-22 13:26:11 +03:00
R. RyanTM ee0e15a8fc copyq: 3.12.0 -> 3.13.0 2020-10-22 09:51:53 +00:00
Michael Weiss 10b4fe1022
Merge pull request #101306 from TredwellGit/chromium
chromium: 86.0.4240.75 -> 86.0.4240.111
2020-10-22 11:47:35 +02:00
Lancelot SIX ec6f9e1c83
Merge pull request #101193 from bachp/skypeforlinux-8.65.0.78
skypeforlinux: 8.64.0.81 -> 8.65.0.78
2020-10-22 10:30:36 +01:00
Eelco Dolstra 357a62df6c
Merge pull request #101272 from edolstra/fix-kdeconnect
Fix kdeconnect
2020-10-22 11:18:38 +02:00
R. RyanTM 8f778f861c calcurse: 4.6.0 -> 4.7.0 2020-10-22 09:18:32 +00:00
R. RyanTM 28d1a9f6a9 cantata: 2.4.1 -> 2.4.2 2020-10-22 09:08:31 +00:00
Maximilian Bosch d976433296
element-desktop: 1.7.9 -> 1.7.10
https://github.com/vector-im/element-desktop/releases/tag/v1.7.10
2020-10-22 11:03:10 +02:00
Maximilian Bosch 96f29b90a1
element-web: 1.7.9 -> 1.7.10
https://github.com/vector-im/element-web/releases/tag/v1.7.10
2020-10-22 11:03:10 +02:00
Marek Mahut c177135cb2
Merge pull request #101298 from r-ryantm/auto-update/bitcoin-unlimited
bitcoin-unlimited: 1.8.0.0 -> 1.9.0.1
2020-10-22 09:23:57 +02:00
R. RyanTM 693bd2565b alpine: 2.23 -> 2.24 2020-10-22 03:04:18 +00:00
Mario Rodas 916401a2f7
Merge pull request #101253 from eyJhb/bitlbeefb
bitlbee-facebook: 1.2.0 -> 1.2.1
2020-10-21 20:35:39 -05:00
TredwellGit 7dc2d9f819 chromium: 86.0.4240.75 -> 86.0.4240.111
https://chromereleases.googleblog.com/2020/10/stable-channel-update-for-desktop_20.html

CVE-2020-16000 CVE-2020-16001 CVE-2020-16002 CVE-2020-15999 CVE-2020-16003
2020-10-22 00:38:17 +00:00
R. RyanTM cc10193222 argo: 2.11.5 -> 2.11.6 2020-10-21 23:41:45 +00:00
Mario Rodas 8b636137c2 terraform_0_13: 0.13.4 -> 0.13.5
https://github.com/hashicorp/terraform/releases/tag/v0.13.5
2020-10-21 18:00:00 -05:00
R. RyanTM 6ba8459ccb bitcoin-unlimited: 1.8.0.0 -> 1.9.0.1 2020-10-21 22:52:26 +00:00
Eelco Dolstra 42bf61811b kdeconnect: 20.08.1 -> 20.08.2
Fixes an invalid MIME type.
2020-10-21 20:39:37 +02:00
taku0 fb252b8932 thunderbird: 78.3.2 -> 78.4.0 2020-10-22 03:38:00 +09:00
Daiderd Jordan bb0b872b61
Merge pull request #100388 from thefloweringash/darwin-dylib-names-hook
treewide: move fixDarwinDylibNames to nativeBuildInputs
2020-10-21 19:25:48 +02:00
Lassulus 46fac2ff10
Merge pull request #99538 from vividn/patch-1
qtile: add missing python package dependencies
2020-10-21 16:06:59 +02:00
Josh Holland 802e9ea3a6 open-vm-tools: fix build w/glibc-2.32 2020-10-21 14:21:49 +01:00
eyjhb 324ea5b54e
bitlbee-facebook: 1.2.0 -> 1.2.1 2020-10-21 15:21:14 +02:00
Vladimír Čunát 90094b0468
Merge branch 'master' into staging-next
minor conflict: rust update vs. darwin fixes for it
  (not tested but seems quite OK)
2020-10-21 13:34:06 +02:00
Théo Zimmermann 5d0e2dedd5 coq: propagate and install ocaml and findlib
Fix #34657.
2020-10-21 11:07:02 +02:00
Gabriel Ebner 9085a724fd
Merge pull request #101238 from lovesegfault/octoprint-misc 2020-10-21 10:46:27 +02:00
Marek Mahut 8b02768dd2
Merge pull request #101191 from RaghavSood/polkadot/0.8.25
polkadot: 0.8.24 -> 0.8.25
2020-10-21 10:35:34 +02:00
Timo Kaufmann ea0abe99d8
Merge pull request #100374 from berbiche/wayst
wayst: init at 2020-10-12
2020-10-21 09:56:52 +02:00
markuskowa 4eb5b1285c
Merge pull request #101065 from markuskowa/fix-molcas
openmolcas: 19.11 -> 20.10
2020-10-21 09:37:28 +02:00
Bernardo Meurer d6a1aff820
octoprint.python.pkgs.bedlevelvisualizer: init at 0.1.15 2020-10-21 00:24:52 -07:00
Bernardo Meurer f66c7667e3
octoprint.python.pkgs.themeify: init at 1.2.2 2020-10-21 00:00:46 -07:00
Bernardo Meurer ea33f3dab8
octoprint: sort plugins 2020-10-20 23:56:39 -07:00
Bernardo Meurer f2e31a9921
octoprint.python.pkgs.octoprint-dashboard: 1.15.1 -> 1.15.2 2020-10-20 23:53:28 -07:00
Bernardo Meurer f706072579
octoprint.python.pkgs.simpleemergencystop: 0.2.5 -> 1.0.3 2020-10-20 23:52:09 -07:00
Bernardo Meurer f51bd15d67
octoprint.python.pkgs.gcodeeditor: 0.2.6 -> 0.2.9 2020-10-20 23:50:49 -07:00
Bernardo Meurer b9df9c7454
octoprint.python.pkgs.abl-expert: 2019-12-21 -> 0.6 2020-10-20 23:49:29 -07:00
Bernardo Meurer 48f69d45dd
octoprint.python.pkgs.printtimegenius: 2.2.1 -> 2.2.6 2020-10-20 23:47:16 -07:00
Bernardo Meurer 96a7a76e69
octoprint.python.pkgs.touchui: 0.3.14 -> 0.3.16 2020-10-20 23:44:53 -07:00
Bernardo Meurer a2bdd1e70d
octoprint.python.pkgs.curaenginelegacy: 1.0.2 -> 1.1.1 2020-10-20 23:41:04 -07:00
Bernardo Meurer e4cf0fdd42
octoprint.python.pkgs.titlestatus: 0.0.4 -> 0.0.5 2020-10-20 23:39:38 -07:00
Bernardo Meurer a9c2caea4f
octoprint.python.pkgs.mqtt: 0.8.6 -> 0.8.7 2020-10-20 23:39:29 -07:00
Bernardo Meurer 76bbe9eb34
octoprint.python.pkgs.m33-fio: remove
It is incompatible with modern octoprints and has been abandoned by
upstream.
c.f. https://plugins.octoprint.org/plugins/m33fio/
2020-10-20 23:38:54 -07:00
Andrew Childs 722d02a720 treewide: move fixDarwinDylibNames to nativeBuildInputs
This hook runs at build time and depends on executing
install_name_tool from binutils.
2020-10-21 13:26:53 +09:00
Nicolas Berbiche 31cd7cfbd1 wayst: init at 2020-10-12 2020-10-20 19:20:36 -04:00
Andreas Rammhold f6cd17269e
Merge pull request #49403 from andir/qemu_test_reduce_closure
qemu_test: disable features that are not needed for tests (closure 641 -> 335.3M)
2020-10-21 00:41:01 +02:00
Ryan Mulligan 7d9979ec1b
Merge pull request #100956 from r-ryantm/auto-update/gqrx
gqrx: 2.12.1 -> 2.13
2020-10-20 13:20:12 -07:00
Vladimír Čunát 65d6adcf3e
Merge #100713: chromium: build on all cores 2020-10-20 20:58:16 +02:00
Frederik Rietdijk 23890fc236 Merge staging-next into staging 2020-10-20 20:55:46 +02:00
Samuel Dionne-Riel 49edde0905 rsync: Work around upstream cross-compilation issue
It should be fixed by the next release:

 * b7fab6f285

Already a part of the updates for 3.2.4

 * https://download.samba.org/pub/rsync/NEWS#3.2.4
2020-10-20 14:28:27 -04:00
Ryan Mulligan 72ac8255dc
Merge pull request #88921 from sikmir/keeweb
keeweb: init at 1.15.7
2020-10-20 10:44:55 -07:00
Anderson Torres 751d7c6c80
Merge pull request #100350 from vidbina/init-ghorg-v1.4.0
ghorg: init at 1.4.0
2020-10-20 14:44:39 -03:00
Andreas Rammhold bd01776050
Merge pull request #101178 from andir/firefox-82
firefox: 81.0.2 -> 82, firefox-esr: 78.3.1esr -> 78.4.0esr
2020-10-20 19:27:49 +02:00
Doron Behar 0f3d40ef68
Merge pull request #84816 from FlorianFranzen/texmacs
texmacs: 1.99.11 -> 1.99.13
2020-10-20 20:17:26 +03:00
Pascal Bach 6ee7c68f94 skypeforlinux: 8.64.0.81 -> 8.65.0.78 2020-10-20 18:39:10 +02:00
Raghav Sood 6c5dc5e17e
polkadot: add RaghavSood as maintainer 2020-10-21 00:29:14 +08:00
Raghav Sood 7470fd9a5e
polkadot: 0.8.24 -> 0.8.25 2020-10-21 00:28:34 +08:00
Doron Behar 4d7925f642
Merge pull request #101141 from magnetophon/faust 2020-10-20 19:07:45 +03:00
Dmitry Kalinkin a4a9957eda
Merge pull request #101090 from SuperSandro2000/asf-4.3.1.0
ArchiSteamFarm: 4.3.0.6 -> 4.3.1.0
2020-10-20 10:44:34 -04:00
Andreas Rammhold 6057ea490f firefox: 78.3.1esr -> 78.4.0esr 2020-10-20 16:29:09 +02:00
Andreas Rammhold ae2f5cccbb firefox: 81.0.2 -> 82.0 2020-10-20 16:29:07 +02:00
Andreas Rammhold b6b09ac7ae
Merge pull request #99922 from S-NA/wip/firefox-lto
firefox: add ltoSupport and enable it by default
2020-10-20 16:23:35 +02:00
JesusMtnez fdc5b324d6
slack: 4.9.0 -> 4.10.3 2020-10-20 15:49:55 +02:00
Marek Mahut 8dd059e344
Merge pull request #98785 from andresilva/polkadot-0.8.24
polkadot: 0.2.17 -> 0.8.24
2020-10-20 15:20:50 +02:00
Marek Mahut 1e454e584e
Merge pull request #100733 from RaghavSood/ethereum/1.9.23
go-ethereum: 1.9.22 -> 1.9.23
2020-10-20 15:19:24 +02:00
Bart Brouns 5461c5f633 faust2jaqt: remove opencv2
It's marked broken and it seems it wasn't needed in here in the first place.
5e68d203f3
2020-10-20 14:02:30 +02:00
Bart Brouns c5277d01c5 faust2jack: use opencv instead of opencv2
opencv2 is marked broken:
5e68d203f3

This reverts f68a0031bb
2020-10-20 14:02:20 +02:00
Matthieu Coudron 4c4c4874c4
neovim: add config to passthru (#101100)
first will register the config under the name init.vim which is more
appropriate for neovim.
Pass the generated config to passthru so that one can easily pass the
current config to a
raw/unwrapped neovim (helps with development).

For instance, home-manager can reference the config in $XDG_CONFIG_HOME/nvim/init.vim
without the need to wrap nvim with its config.
2020-10-20 12:26:39 +02:00
David Asabina abb7f225ec ghorg: init at 1.4.0 2020-10-20 12:13:01 +02:00
Vladimír Čunát 176243b059
Merge #100808: thunderbird*: 78.3.2 -> 78.3.3 2020-10-20 07:52:52 +02:00
V 3835f35f2b uemacs: remove
This crashes with a buffer overflow upon running it. It has likely been
broken for some time. It has no maintainers. It is also unfree.
2020-10-20 03:27:03 +02:00
Tim Steinbach 6f2e9937af
git: 2.28.0 -> 2.29.0 2020-10-19 19:22:46 -04:00
Austin Seipp fba7eaeb63
Merge pull request #100741 from arcz/btor2tools
btor2tools: enable unix platforms
2020-10-19 16:18:56 -05:00
Sandro Jäckel f9f1691050
ArchiSteamFarm: 4.3.0.6 -> 4.3.1.0 2020-10-19 21:40:12 +02:00
Evan Stoll 154fa4d0e7 pythonPackages.hydrus: init at 413 2020-10-19 09:13:33 -07:00
Andreas Rammhold 2451796b49
qemu: make ncurses optional for the test runner
This shaves another 3MB off the closure size of QEMU.
2020-10-19 17:49:31 +02:00
Andreas Rammhold e79eed4840
qemu: strip down the features for the test runner
This allows much faster VM-test based systemd testing as the closure of
qemu suddenly shrinks to reasonable sizes again.
2020-10-19 17:39:47 +02:00
Ryan Mulligan bc1b00acde
Merge pull request #100996 from r-ryantm/auto-update/kibi
kibi: 0.2.0 -> 0.2.1
2020-10-19 05:40:09 -07:00
Markus Kowalewski 2eee4e4eac
openmolcas: 19.11 -> 20.10 2020-10-19 14:13:08 +02:00
Markus Kowalewski 8b02ff6b8e
openmolcas: fix build w.r.t. openblas
Fall out from switching openblas over to multiple outputs:
https://github.com/NixOS/nixpkgs/pull/98337
2020-10-19 14:00:48 +02:00
Michele Guerini Rocco 50ee62ae07
Merge pull request #100821 from markus1189/imv-backends
imv: enable LIBNSGIF and LIBJPEG backends
2020-10-19 13:41:20 +02:00
Sarah Brofeldt 902e0997c3
Merge pull request #101025 from johanot/kubernetes-1.19.3
kubernetes: 1.19.1 -> 1.19.3
2020-10-19 11:59:35 +02:00
Michael Raskin 0a2d2f9774
Merge pull request #101056 from teto/visidata
visidata: 1.5.2 -> 2.0.1
2020-10-19 09:29:12 +00:00
Michael Raskin d4328e91bb
Merge pull request #101046 from omasanori/gfan-unbreak
gfan: fix build failures with cddlib v0.94l
2020-10-19 09:05:58 +00:00
Matthieu Coudron b2bde30def visidata: 1.5.2 -> 2.0.1
also added way to open .pcap file.
2020-10-19 10:54:08 +02:00
Michele Guerini Rocco 856cdf5c46
Merge pull request #100819 from rnhmjoj/mkvtoolnix
mkvtoolnix: 50.0.0 -> 51.0.0
2020-10-19 07:55:56 +02:00
Mario Rodas e725ae8704 gitAndTools.git-absorb: 0.6.4 -> 0.6.5 2020-10-19 04:20:00 +00:00
Masanori Ogino 096ef94717 gfan: fix build failures with cddlib v0.94l
It fixes https://github.com/NixOS/nixpkgs/issues/100622.

Signed-off-by: Masanori Ogino <167209+omasanori@users.noreply.github.com>
2020-10-19 10:29:01 +09:00
Ryan Mulligan 713c368291
Merge pull request #101001 from r-ryantm/auto-update/kubeseal
kubeseal: 0.12.5 -> 0.12.6
2020-10-18 16:29:21 -07:00
Johan Thomsen c1fa775058 kubernetes: 1.19.1 -> 1.19.3 2020-10-18 21:28:23 +02:00
Martin Weinelt c3054b77d7
Merge pull request #93400 from ruuda/mopidy-local
mopidy-local: init at 3.1.1
2020-10-18 20:19:31 +02:00
Gabriel Ebner 6d22203168
Merge pull request #101010 from r-ryantm/auto-update/lean
lean: 3.19.0 -> 3.21.0
2020-10-18 20:10:42 +02:00
Ryan Mulligan 396f3407a2
Merge pull request #95717 from KAction/git-vanity-hash
git-vanity-hash: init at 2020-02-26
2020-10-18 10:56:51 -07:00
Ruud van Asseldonk b82ca4d2e1 mopidy-local-sqlite: remove
This plugin has been merged into the newer "mopidy-local" plugin which I
just added. "mopidy-local-images" and "mopidy-local-sqlite" were added
originally for Mopidy Iris, but Iris now works with mopidy-local, and
does not need the older ones any more.
2020-10-18 19:33:55 +02:00
Ruud van Asseldonk 79a823ceae mopidy-local-images: remove
This plugin has been merged into the newer "mopidy-local" plugin which I
just added. "mopidy-local-images" and "mopidy-local-sqlite" were added
originally for Mopidy Iris, but Iris now works with mopidy-local, and
does not need the older plugins any more.
2020-10-18 19:32:55 +02:00
Ruud van Asseldonk 7565d00a7c mopidy-local: init at 3.1.1
Mopidy-Local is the successor to Mopidy-Local-SQLite and
Mopidy-Local-Images, which are already packaged. I had to make
gobject-introspection a propagated build input, otherwise
Mopidy-Local can't import Mopidy.
2020-10-18 19:31:07 +02:00
Mario Rodas 7e3cf7fc16
Merge pull request #100998 from r-ryantm/auto-update/kpt
kpt: 0.34.0 -> 0.35.0
2020-10-18 12:01:09 -05:00
R. RyanTM 855b84d8b0 lean: 3.19.0 -> 3.21.0 2020-10-18 17:00:15 +00:00
Marek Mahut 6d8373cbda
Merge pull request #100836 from RaghavSood/ledger-live/2.14.0
ledger-live-desktop: 2.9.0 -> 2.14.0
2020-10-18 18:36:33 +02:00
R. RyanTM 328a7c6aa0 kubeseal: 0.12.5 -> 0.12.6 2020-10-18 16:34:11 +00:00
Markus Hauck 1320526747 imv: enable LIBNSGIF and LIBJPEG backends 2020-10-18 18:26:41 +02:00
R. RyanTM 3065a71a58 kpt: 0.34.0 -> 0.35.0 2020-10-18 16:06:59 +00:00
R. RyanTM 500c8afa87 kibi: 0.2.0 -> 0.2.1 2020-10-18 15:54:34 +00:00
Gabriel Ebner 7caa81d8a2
Merge pull request #100972 from gebner/freecadgitpython 2020-10-18 16:28:57 +02:00
Mario Rodas ef977423da
Merge pull request #100885 from r-ryantm/auto-update/cava
cava: 0.7.2 -> 0.7.3
2020-10-18 08:59:32 -05:00
Mario Rodas 6572e341fb
Merge pull request #100971 from r-ryantm/auto-update/hugo
hugo: 0.75.1 -> 0.76.5
2020-10-18 08:53:20 -05:00
Mario Rodas d5b5057c24
Merge pull request #100900 from r-ryantm/auto-update/cloudflared
cloudflared: 2020.6.1 -> 2020.10.0
2020-10-18 08:42:45 -05:00
José Romildo Malaquias 2f74428675
Merge pull request #100805 from danieldk/softmaker-unlock-again
softmaker-office: fix unlocking again
2020-10-18 10:35:38 -03:00
Mario Rodas 8c581aaebe
Merge pull request #100948 from r-ryantm/auto-update/go-jira
go-jira: 1.0.24 -> 1.0.27
2020-10-18 08:18:51 -05:00
Mario Rodas 166ea0f3dc
Merge pull request #100933 from r-ryantm/auto-update/fluxctl
fluxctl: 1.20.2 -> 1.21.0
2020-10-18 08:17:49 -05:00
Gabriel Ebner 1665d59ac3 freecadStable: remove
It depends on the insecure qtwebkit package.
2020-10-18 15:12:12 +02:00
Mario Rodas e180569ba1
Merge pull request #100940 from r-ryantm/auto-update/ft2-clone
ft2-clone: 1.31 -> 1.36
2020-10-18 08:03:00 -05:00
Mario Rodas e7a18af0d9
Merge pull request #100945 from r-ryantm/auto-update/gitoxide
gitoxide: 0.4.0 -> 0.4.3
2020-10-18 07:56:51 -05:00
R. RyanTM a8d6b961d8 hugo: 0.75.1 -> 0.76.5 2020-10-18 12:52:08 +00:00
Mario Rodas 3454c5289b
Merge pull request #100963 from r-ryantm/auto-update/helmfile
helmfile: 0.130.1 -> 0.131.0
2020-10-18 07:49:30 -05:00
Marek Mahut d32b01ea36
Merge pull request #100923 from r-ryantm/auto-update/ergo
ergo: 3.3.3 -> 3.3.4
2020-10-18 14:27:21 +02:00
Peter Hoeg 3694212f4d puddletag: fix wrapping 2020-10-18 20:26:50 +08:00
Gabriel Ebner 351f24fa03 freecad: 2020-09-25 -> 2020-10-17 2020-10-18 14:09:26 +02:00
Gabriel Ebner 5bc7030a25 freecad: add missing python module for addon manager 2020-10-18 14:08:28 +02:00
R. RyanTM a25c9b6b43 helmsman: 3.4.4 -> 3.4.6 2020-10-18 12:00:42 +00:00
R. RyanTM b116c54879 helmfile: 0.130.1 -> 0.131.0 2020-10-18 11:52:51 +00:00
R. RyanTM 90b1417a1d gqrx: 2.12.1 -> 2.13 2020-10-18 10:45:23 +00:00
R. RyanTM 0d68479eb7 go-jira: 1.0.24 -> 1.0.27 2020-10-18 09:42:57 +00:00
R. RyanTM b1d5d5174f gitoxide: 0.4.0 -> 0.4.3 2020-10-18 09:21:55 +00:00
R. RyanTM 6392f5e308 ft2-clone: 1.31 -> 1.36 2020-10-18 08:30:03 +00:00
Vladimír Čunát 81b1356944
Merge #98415: wordnet: Fix darwin build 2020-10-18 10:07:04 +02:00
Peter Simons 265fc30a97
Merge pull request #99683 from jshcmpbll/issue-99681
obs-ndi: 4.7.1 -> 4.9.1
2020-10-18 10:03:59 +02:00
R. RyanTM 8c4c6a4b71 fluxctl: 1.20.2 -> 1.21.0 2020-10-18 07:14:08 +00:00
Daniël de Kok 6068afe0fd
Merge pull request #100916 from r-ryantm/auto-update/drawio
drawio: 13.7.3 -> 13.7.9
2020-10-18 08:08:40 +02:00
Joshua Campbell c7bbc9b9f8 Update obs-ndi plugin to latest 2020-10-17 21:44:09 -07:00
R. RyanTM 0a39c42f52 ergo: 3.3.3 -> 3.3.4 2020-10-18 04:08:43 +00:00
R. RyanTM 2a98bddce5 drawio: 13.7.3 -> 13.7.9 2020-10-18 02:40:14 +00:00
Robert Scott 1315c20bf1
Merge pull request #100869 from r-burns/feh
feh: fix build on darwin
2020-10-18 01:44:22 +01:00
R. RyanTM 7573143201 cloudflared: 2020.6.1 -> 2020.10.0 2020-10-17 22:58:45 +00:00
Serg Nesterov 227ecf0b10
navi: 2.12.0 -> 2.12.1 2020-10-18 00:33:48 +03:00
R. RyanTM 7093561865 cava: 0.7.2 -> 0.7.3 2020-10-17 21:26:41 +00:00
Ryan Burns 942ad9a49a feh: fix build on darwin
Darwin doesn't support inotify, needed for autoreload
2020-10-17 12:44:35 -07:00
Florian Franzen a30600a387 texmacs: 1.99.11 -> 1.99.13 2020-10-17 21:24:54 +02:00
StigP 1bae8e2b28
Merge pull request #100073 from devhell/update-msteams
teams: 1.3.00.16851 -> 1.3.00.25560
2020-10-17 19:08:04 +00:00
Mario Rodas 31a06eeaa0
Merge pull request #100843 from r-ryantm/auto-update/argo
argo: 2.10.1 -> 2.11.5
2020-10-17 13:16:45 -05:00
Doron Behar 1693d00562
Merge pull request #85456 from matthuszagh/kicad-libraries 2020-10-17 20:31:38 +03:00
Ryan Mulligan ed8a50fa13
Merge pull request #100548 from r-ryantm/auto-update/MAVProxy
mavproxy: 1.8.19 -> 1.8.22
2020-10-17 10:28:18 -07:00
Matt Huszagh 9320c69ecb kicad: set default footprint, symbol library and package locations
Previously, these library locations were set absolutely. This
prevented overriding their locations with environment variables. Now,
setting the corresponding environment variable will override the
setting in the environment wrapper. For instance, I can set

KISYSMOD=/some/path/to/footprints

and this will be used as my footprint library instead of the default
footprint library in the nix store. This feature is particularly
useful for having kicad libraries which are writable.
2020-10-17 09:32:55 -07:00
R. RyanTM a0a9e4d83d argo: 2.10.1 -> 2.11.5 2020-10-17 16:04:50 +00:00
Raghav Sood 85f9e7f722
ledger-live-desktop: Add RaghavSood as maintainer 2020-10-17 23:22:39 +08:00
Ben Siraphob 683a87dbeb treewide: remove periods from end of package descriptions 2020-10-17 08:22:31 -07:00
Raghav Sood 6df2ff3df8
ledger-live-desktop: 2.9.0 -> 2.14.0 2020-10-17 23:22:05 +08:00
Michele Guerini Rocco 54de950dee
Merge pull request #100815 from rnhmjoj/monero
monero: 0.17.0.1 -> 0.17.1.0
2020-10-17 15:14:24 +02:00
rnhmjoj 160c27413f
mkvtoolnix: 50.0.0 -> 51.0.0 2020-10-17 13:47:20 +02:00
rnhmjoj 101bb7814b
monero-gui: fix install path 2020-10-17 11:47:07 +02:00
rnhmjoj 9bf0008d68
monero-gui: 0.17.0.1 -> 0.17.1.0 2020-10-17 11:18:43 +02:00
rnhmjoj bf627ae0e0
monero: 0.17.0.1 -> 0.17.1.0 2020-10-17 11:18:15 +02:00
taku0 5e5702649f thunderbird-bin: 78.3.2 -> 78.3.3 2020-10-17 15:47:23 +09:00
Daniël de Kok c342e5a6dc softmaker-office: add additional programs to PATH
These seem to be needed for the SoftMaker/FreeOffice unlock code. If
they are not added to PATH, startup takes a very long time and reports
many segmentation faults.

Fixes #71228.
2020-10-17 08:18:07 +02:00
Daniël de Kok e3b407e555 Revert "softmaker-office: remove /bin/ls intercept"
This reverts commit e883c6578c.
2020-10-17 07:35:52 +02:00
Dmitry Bogatov c004bcab9c git-vanity-hash: init at 2020-02-26 2020-10-17 00:00:00 -04:00
Michele Guerini Rocco 51b2e7a2d8
Merge pull request #100702 from emmanuelrosa/qutebrowser-1.14.0
pdfjs: 2.4.456 -> 2.6.347
2020-10-16 20:48:24 +02:00
Maximilian Bosch 3dd39cb4d4
Merge pull request #100600 from yoctocell/tbb-10.0.1
tor-browser-bundle-bin: 10.0 -> 10.0.1
2020-10-16 20:22:18 +02:00
Artur Cygan 5229b4502a btor2tools: enable unix platforms 2020-10-16 19:39:46 +02:00
conferno c557c27ac3
chromium: fix build on i686 (#100512)
ld.gold runs out of memory on i686.
2020-10-16 19:37:28 +02:00
Jack Kelly b5e37e1ea5
terragrunt: 0.23.40 -> 0.25.4 (#100727)
* terragrunt: use buildFlagsArray

* terragrunt: 0.23.40 -> 0.25.4
2020-10-16 17:18:01 +02:00
Raghav Sood 3d90247080
go-ethereum: 1.9.22 -> 1.9.23 2020-10-16 23:11:45 +08:00
Michael Weiss 7ca4469122
tdesktop: Drop unused CMake variables and passthru tg_owt
Before this change:
> CMake Warning:
>   Manually-specified variables were not used by the project:
>
>     BUILD_TESTING
>     CMAKE_EXPORT_NO_PACKAGE_REGISTRY
>     CMAKE_POLICY_DEFAULT_CMP0025
>     DESKTOP_APP_USE_PACKAGED_GSL
>     DESKTOP_APP_USE_PACKAGED_RLOTTIE
>     DESKTOP_APP_USE_PACKAGED_VARIANT
>     TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME
>     TDESKTOP_USE_PACKAGED_TGVOIP
2020-10-16 16:15:22 +02:00
oxalica 4c59c0b1da
tdesktop: 2.3.0 -> 2.4.3 and enable webrtc (#100450)
Enables WebRTC by packaging tg_owt.
2020-10-16 15:41:07 +02:00
Ryan Mulligan f9728adae7
Merge pull request #99128 from jbedo/delly
delly: 0.8.2 -> 0.8.5
2020-10-16 06:30:11 -07:00
volth 8e861c07ce chromium: build on $NIX_BUILD_CORES 2020-10-16 13:09:54 +00:00
Emmanuel Rosa 72f0938597 pdfjs: 2.4.456 -> 2.6.347 2020-10-16 18:55:37 +07:00
volth 5742fcdfa9 chromium: build on all cores 2020-10-16 11:22:28 +00:00
Michael Weiss db33f99343
signal-desktop: 1.36.3 -> 1.37.1 2020-10-16 12:13:12 +02:00
Michael Weiss aee3076ba7
chromiumDev: M87 -> M88 2020-10-16 11:58:20 +02:00
Daniël de Kok 33d73ba66a
Merge pull request #98088 from turion/vscode_1.49.0
Bump VSCode version
2020-10-16 11:52:21 +02:00
Marek Mahut fdb94a1728
Merge pull request #100523 from SuperSandro2000/dnscontrol-3.4.2
dnscontrol: 3.3.0 -> 3.4.2
2020-10-16 11:22:35 +02:00
Manuel Bärenz 40c84bd392 vscode, vscodium: Document update scripts 2020-10-16 11:14:43 +02:00
Manuel Bärenz ffb7a61905 vscode, vscodium: 1.50.0 -> 1.50.1 2020-10-16 11:14:42 +02:00
R. RyanTM a3dca9576b deeptools: 3.4.1 -> 3.5.0 2020-10-16 00:42:47 -07:00
R. RyanTM 00f0b1d721 nbstripout: 0.3.7 -> 0.3.9 2020-10-16 00:40:08 -07:00
taku0 336c672a3a thunderbird: 78.3.2 -> 78.3.3 2020-10-16 15:13:04 +09:00
Michele Guerini Rocco 1bfa8c120e
Merge pull request #100608 from charvp/qutebrowser-1.14.0
qutebrowser: 1.13.1 -> 1.14.0
2020-10-15 23:59:32 +02:00
xrelkd 7ee6eb7e1d clipcat: init at 0.4.19 2020-10-16 03:49:26 +08:00
Michael Weiss a667bc7ae1
chromiumBeta: M86 -> M87 2020-10-15 20:46:24 +02:00
Doron Behar 1db3202722
Merge pull request #75843 from jbedo/lumpy 2020-10-15 19:46:13 +03:00
Charlotte Van Petegem 0ff57286ee
qutebrowser: 1.13.1 -> 1.14.0 2020-10-15 18:15:37 +02:00
Ryan Mulligan c39f08a4c8
Merge pull request #97374 from yanganto/gitui-10.1
gitAndTools.gitui: 0.9.1 -> 0.10.1
2020-10-15 08:26:32 -07:00
Ryan Mulligan 8ba08bb26c
Merge pull request #100545 from r-ryantm/auto-update/tzupdate
tzupdate: 2.0.0 -> 2.1.0
2020-10-15 06:36:12 -07:00
yoctocell 178ca67f93
tor-browser-bundle-bin: 10.0 -> 10.0.1 2020-10-15 15:00:50 +02:00
Michael Weiss 015c5a2be6
chromium: Drop the libwebp include patch
Chromium 86.0.4240.75 builds fine without this patch. And since
WEBP_MAX_DIMENSION is the same in the system libwebp this patch should
not be required anymore (it was introduced in 06ec2a9f19, apparently to
fix the build).
2020-10-15 14:33:15 +02:00
Martin Weinelt 859d6d93ba
Merge pull request #92053 from dominikh/ipmiview
ipmiview: 2.16.0 -> 2.17.0
2020-10-15 14:21:53 +02:00
Antonio Yang 866ce94402 gitui: 0.9.1 -> 0.10.1
- add python3 for nativeBuildInputs
- add xorg.libxcb for buildInputs

Co-authored-by: Jon <jonringer@users.noreply.github.com>
2020-10-15 14:18:11 +08:00
R. RyanTM af82dfa808 mavproxy: 1.8.19 -> 1.8.22 2020-10-15 05:05:52 +00:00
R. RyanTM 69af0c4c35 tzupdate: 2.0.0 -> 2.1.0 2020-10-15 04:39:41 +00:00
Wilson E. Husin ae34d2e1fd Sonobuoy 0.16.1 -> 0.19.0 2020-10-14 18:13:02 -07:00
Sandro Jäckel a4b405cebd
dnscontrol: 3.3.0 -> 3.4.2 2020-10-14 23:01:17 +02:00
Frederik Rietdijk b3aed163d5
Merge pull request #99709 from NixOS/staging-next
Staging next
2020-10-14 21:10:31 +02:00
Tom Repetti d2529bf58c noaa-apt: 1.2.0 -> 1.3.0 2020-10-14 13:03:27 -04:00
Tom Repetti 2ef3661fdf noaa-apt: make platforms.all explicit 2020-10-14 13:03:13 -04:00
Michele Guerini Rocco b5e44d3d15
Merge pull request #100479 from rnhmjoj/tremc
tremc: 0.9.1 -> 0.9.2
2020-10-14 17:06:24 +02:00
Daniël de Kok 625a48c633
Merge pull request #100117 from samuela/upkeep-bot/vscodium-1.50.0-1602289209
vscodium: 1.49.3 -> 1.50.0
2020-10-14 16:11:48 +02:00
Anderson Torres 09ccd168f0
Merge pull request #100405 from magnetophon/xtuner
xtuner: init at 1.0
2020-10-14 10:11:58 -03:00
leenaars 706fdae286
Sylk: 2.9.0 -> 2.9.1 (#100490) 2020-10-14 14:39:30 +02:00
Rok Garbas 574bfc5410
Merge pull request #100395 from matthiasbeyer/fix-jamin-expression
jamin: Put version into variable, use variable interpolation
2020-10-14 14:16:29 +02:00
Rok Garbas 12fc5bc075
Merge pull request #100401 from evax/vuescan
vuescan: init at 9.7
2020-10-14 14:15:58 +02:00
Rok Garbas a740a0bdd1
Merge pull request #100480 from rnhmjoj/trans-remote
transmission-remote-cli: remove
2020-10-14 14:09:50 +02:00
Rok Garbas ccc4423b30
Merge pull request #78517 from r-ryantm/auto-update/mopidy-musicbox-webclient
mopidy-musicbox-webclient: 2.3.0 -> 2.4.0
2020-10-14 14:06:29 +02:00
Rok Garbas 2d032ef0bd
Merge pull request #100467 from penguwin/glow
glow: 1.0.1 -> 1.0.2
2020-10-14 14:01:58 +02:00
Rok Garbas a149c03df8
Merge pull request #100463 from jonafato/gnucash-4.2
gnucash: 3.10 -> 4.2
2020-10-14 14:00:00 +02:00
Rok Garbas e50c9ceffa
Merge pull request #100461 from samuela/samuela/chmod
vscode: chmod +x update-vscode.sh
2020-10-14 13:59:28 +02:00
Rok Garbas 0545aa6339
Merge pull request #100476 from Chili-Man/minikube-0.14.0-update
minikube: 1.13.1 -> 1.14.0
2020-10-14 13:58:48 +02:00
Bart Brouns b38784b671 wolf-shaper: 0.1.7 -> 0.1.8 2020-10-14 11:55:37 +02:00
Bart Brouns e9bfa9a1a1 spectmorph: 0.5.1 -> 0.5.2 2020-10-14 11:55:14 +02:00
Bart Brouns fcfd2a3d88 qmidinet: 0.6.2 -> 0.6.3 2020-10-14 11:55:00 +02:00
Bart Brouns d9c9889907 padthv1: 0.9.16 -> 0.9.17 2020-10-14 11:54:39 +02:00
Bart Brouns 7980473d7b zam-plugins: 3.12 -> 3.13 2020-10-14 11:54:11 +02:00
Frederik Rietdijk b981eca057 Merge master into staging-next 2020-10-14 11:32:49 +02:00
Bart Brouns e37ee61a68 xtuner: init at 1.0 2020-10-14 11:13:56 +02:00
R. RyanTM ffde8a8e1e
seabios: 1.13.0 -> 1.14.0 (#96616) 2020-10-14 11:09:21 +02:00
Patryk Niedźwiedziński aff9d6fcc7
amfora: Add desktop file
Add .desktop that contains mime type for gemini protocol
2020-10-14 10:58:52 +02:00
rnhmjoj c3e6fbe81e
tremc: set license to GPL 3+ 2020-10-14 09:28:34 +02:00
rnhmjoj b42a421e47
transmission-remote-cli: remove
This finally stopped working after transmission upgraded the API
protocol to v3.0.
2020-10-14 09:26:23 +02:00
rnhmjoj a92c678c3f
tremc: 0.9.1 -> 0.9.2 2020-10-14 09:15:43 +02:00
Lassulus 359ac19b17
Merge pull request #99903 from cab404/super-slicer-2-2-54
super-slicer: 2.2.53.1 -> 2.2.54.0
2020-10-14 08:34:33 +02:00
Diego Rodriguez 9eb0c32118
minikube: 1.13.1 -> 1.14.0 2020-10-14 00:30:40 -06:00
Vincent Laporte c0ab50b741 orpie: 1.5.2 → 1.6.1 2020-10-14 07:33:04 +02:00
Mario Rodas e24a4b950c
Merge pull request #100415 from taku0/flashplayer-32.0.0.445
flashplayer: 32.0.0.433 -> 32.0.0.445 [Critical security fix]
2020-10-13 22:08:54 -05:00
Jon b62f286e3a
Merge pull request #100345 from SeTSeR/foot-1.5.1
foot: 1.4.4 -> 1.5.1
2020-10-13 20:01:52 -07:00
Mario Rodas 25294350d5
Merge pull request #100369 from WolfangAukang/upwork-5.4.7.1
upwork: 5.3.3-883 -> 5.4.7.1
2020-10-13 22:01:18 -05:00
Mario Rodas c213d5a79d
Merge pull request #100349 from jul1u5/update-virt-manager-3.1.0
virt-manager: 2.2.1 -> 3.1.0
2020-10-13 21:59:33 -05:00
Mario Rodas 4c51aa76ca
Merge pull request #100404 from magnetophon/mamba
mamba: 1.5 -> 1.6
2020-10-13 21:56:18 -05:00