Commit graph

126372 commits

Author SHA1 Message Date
Anders Sildnes e77a83b808
vim-plugins/vim-niceblock: init 2018-02-01 16:21:33 +01:00
Anders Sildnes d718644baf
vim-plugins/vim-textobj-multiblock: init 2018-02-01 16:21:31 +01:00
Anders Sildnes cee0a1c1a1
vim-plugins/vim-test: init 2018-02-01 16:21:28 +01:00
Anders Sildnes 4b036bb019
vim-plugins/vim-gitbranch: init 2018-02-01 16:21:26 +01:00
Anders Sildnes b39683a4df
vim-plugins/vim-json: init 2018-02-01 16:21:24 +01:00
Anders Sildnes 40f8ccbb3c
vim-plugins/cute-python: init 2018-02-01 16:21:22 +01:00
Anders Sildnes e55ffc0c3e
vim-plugins/concealedyank: init 2018-02-01 16:21:19 +01:00
Anders Sildnes edeeae7b5c
vim-plugins/denite-git: init 2018-02-01 16:21:17 +01:00
Anders Sildnes d12a748955
vim-plugins/denite-extra: init 2018-02-01 16:21:14 +01:00
Anders Sildnes 140ddbd1c5
vim-plugins/mayansmoke: init 2018-02-01 16:21:10 +01:00
Anders Sildnes 6b4c532632
vim-plugins/vim-operator-surround: init 2018-02-01 16:21:08 +01:00
Anders Sildnes f90e3bae4e
vim-plugins/vim-toml: init 2018-02-01 16:21:06 +01:00
Anders Sildnes 3bc1af57c7
vim-plugins/vim-grepper: init 2018-02-01 16:20:58 +01:00
Anders Sildnes 89763446e9
vim-plugins/vim-bazel: init 2018-02-01 16:20:55 +01:00
Anders Sildnes 9096a92a4d
vim-plugins/peskcolor.vim.git init 2018-02-01 16:20:50 +01:00
Tim Steinbach 3391266ee7
linux-copperhead: 4.14.14.a -> 4.14.15.a 2018-01-25 09:12:03 -05:00
adisbladis e401af5f98
Merge pull request #33718 from magnetophon/clipster
clipster: 1.4.1 -> 1.5.0
2018-01-25 18:38:53 +08:00
Orivej Desh 3989b33e74
Merge pull request #34245 from orivej/addPassthru
addPassthru: fix argument order
2018-01-25 10:37:36 +00:00
adisbladis 7a2d35d9db
Merge pull request #34119 from arcadio/master
igv: 2.3.98 -> 2.4.6
2018-01-25 18:33:49 +08:00
Samuel Leathers efdb0983da
Merge pull request #34199 from arcadio/kallisto
kallisto: init at 0.43.1
2018-01-24 20:43:24 -07:00
adisbladis 83d5ce37aa
Merge pull request #34242 from rnhmjoj/citra
citra: 2017-07-26 -> 2018-01-24
2018-01-25 09:47:19 +08:00
adisbladis 52d2d62caa
Merge pull request #34243 from bachp/gitlab-runner-10.4.0
gitlab-runner: 10.3.0 -> 10.4.0
2018-01-25 09:38:44 +08:00
adisbladis 7049885300
Merge pull request #34246 from vdemeester/update-dep
dep: 0.3.1 -> 0.4.0
2018-01-25 09:32:52 +08:00
Vincent Demeester 39676b5b01
dep: 0.3.1 -> 0.4.0
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-01-24 15:48:55 -08:00
Orivej Desh ce1d740fa6 addPassthru: fix argument order
addPassthru became unused in #33057, but its signature was changed at the same
time.  This commit restores the original signature and updates the warning and
the changelog.
2018-01-24 23:06:12 +00:00
Pascal Bach 029e80a90b gitlab-runner: 10.3.0 -> 10.4.0 2018-01-24 22:38:57 +01:00
Graham Christensen 0e7a5207ec
Merge pull request #34206 from dtzWill/fix/moe-libcxx
moe: fix build w/libc++ using touchup from mailing list
2018-01-24 15:55:08 -05:00
rnhmjoj d157794ff9
citra: 2017-07-26 -> 2018-01-24 2018-01-24 21:54:42 +01:00
Frederik Rietdijk 75f8ca8337
Merge pull request #34239 from mimadrid/update/slack-3.0.5
slack: 3.0.0 -> 3.0.5
2018-01-24 20:54:26 +00:00
Graham Christensen 0a66ee1bfe
Merge pull request #34121 from arcadio/parallel
parallel: 20171022 -> 20180122
2018-01-24 15:49:22 -05:00
Graham Christensen b8419d5651
Merge pull request #34191 from dtzWill/fix/brotli-misc
brotli: tests, install man pages
2018-01-24 15:45:16 -05:00
Jan Tojnar 9b245b565e
Merge pull request #34185 from jonafato/gnome-shell-extension-pixel-saver
gnome-shell-extension-pixel-saver: init at 1.10
2018-01-24 20:22:16 +01:00
Benjamin Staffin 2d57426eed
linux-steam-integration: Append "Settings" to settings launcher menu item (#34020) 2018-01-24 13:26:48 -05:00
Will Dietz 0e95bed017 nix-prefetch-git: fix extraction of submodule hashes on latest git
Summary:

According to git-submodule manpage,
"git submodule status" prefixes the hash with a '-' if it is not
initialized, and other chars in other circumstances.
(this is consistent on the various git versions tested)

nix-prefetch-git runs "git submodule init" which does you'd think,
but apparently despite this earlier versions of git before 2.16
would still give the hash the '-' suffix.
In particular this is the behavior when using 2.15 and 2.14.1
from the nixos-17.09 and nixos-17.03 channels respectively.

The script then used awk to drop the first char of the first field
which does the wrong thing when there is no prefix emitted:
while there is a space character before the hash, this is not
part of the field and so we ended up eating the first character
of the hash.

To fix this in a way that also works with the previous behavior,
this commit instead uses awk to grab the hash field
and uses tr to delete any '-' chars should they be present.

This seems to work in my testing, and for example can now
successfully fetch the source for "nginxModules.brotli"
where previously it would generate an error:

fatal: '22564a95d9ab58865a096b8d9f7324ea5f2e03e' is not a commit and a branch 'fetchgit' cannot be created from it

(we dropped a '2' from the beginning of the hash)
2018-01-24 20:18:59 +02:00
Miguel Madrid Mencía 08c63e785c
slack: 3.0.0 -> 3.0.5 2018-01-24 19:18:58 +01:00
Bart Brouns 8f4a7f366d clipster: 1.4.1 -> 1.5.0 2018-01-24 19:05:02 +01:00
Jörg Thalheim bb7e244531
Merge pull request #34144 from mnacamura/cdda-fix-share-dir
cataclysm-dda{,-git}: fix share directory
2018-01-24 17:39:51 +00:00
Jörg Thalheim a3d6f38adf
Merge pull request #34116 from brown131/patch-1
Update hy to latest version
2018-01-24 17:02:14 +00:00
Tuomas Tynkkynen d02c2d694e nixos/sd-image-*.nix: Bring back high consoleLogLevel
3d040f9305 removed it from installation-device.nix, but the default
loglevel is just too low for ARM and the like.
2018-01-24 18:23:32 +02:00
Tuomas Tynkkynen cd2e740dde nixos/sd-image-aarch64.nix: Set avoid_warnings in RPi config.txt
Also add some comments on the existing config settings as well.
2018-01-24 18:23:31 +02:00
Arcadio Rubio García a7333e9ced kallisto: init at 0.43.1 2018-01-24 16:16:46 +00:00
Arcadio Rubio García 51f1460f80 parallel: 20171022 -> 20180122 2018-01-24 16:03:43 +00:00
adisbladis f7dd6951aa
go: 1.9.2 -> 1.9.3 2018-01-24 23:00:26 +08:00
Peter Simons 9ffaa69da4
Merge pull request #34209 from LnL7/darwin-libR
R: fix dylib install_name on darwin
2018-01-24 12:59:07 +01:00
Jörg Thalheim b0dd3a189d
Merge pull request #34219 from bkchr/googlemaps_fix_plugin_dir
googlemaps: Move the .so to the right location
2018-01-24 11:07:46 +00:00
Ioannis Koutras b309103577 skrooge: 2.9.0 -> 2.10.5
fixes #34163
2018-01-24 10:56:54 +00:00
Bastian Köcher bf14737288 googlemaps: Move the .so to the right location
Fixes Subsurface googlemaps plugin detection.
2018-01-24 11:39:02 +01:00
Peter 01941c5155 terminator: 1.0 -> 1.91 (#34218)
* terminator: 1.0 -> 1.91

* terminator: wrapGAppsHook is a native build input
2018-01-24 10:10:42 +00:00
adisbladis a75160e25e
firefox-devedition-bin: 59.0b2 -> 59.0b3 2018-01-24 16:49:41 +08:00
adisbladis cba40384c0
firefox-beta-bin: 58.0b16 -> 59.0b3 2018-01-24 16:49:40 +08:00