Commit graph

8207 commits

Author SHA1 Message Date
Jörg Thalheim ca61531750
ccls: init at 0.20181225
- tested with [emacs](https://dl.thalheim.io/kdh-PwxzlwGKTEl1_NpTzg/2019-01-13-190156_1920x1080_scrot.png)
and vim.
- wrapped to pick up our cc wrapper environment -> works perfectly in nix-shell
2019-01-15 17:12:56 +00:00
Francesco Gazzetta ba275b9df0 jl: fix homepage url 2019-01-15 17:20:26 +01:00
Frederik Rietdijk 42d276c6b8 Merge staging-next into staging 2019-01-15 16:59:03 +01:00
Frederik Rietdijk 4af059cd15 gnome-doc-utils: fix native deps 2019-01-15 10:16:11 +01:00
Will Dietz 357db3250a pkgconf: 1.5.4 -> 1.6.0
https://git.dereferenced.org/pkgconf/pkgconf/src/tag/pkgconf-1.6.0/NEWS
2019-01-14 16:50:45 -06:00
Roman Volosatovs 8b925a8f32 mbed-cli: init at 1.8.3 (#53954) 2019-01-14 23:47:12 +01:00
Gabriel Ebner 7f6ca93029
Merge pull request #53900 from dywedir/tokei
tokei: 8.0.0 -> 9.0.0
2019-01-14 11:07:46 +01:00
Francesco Zanini da98284faa
nexus: 3.14.0-04 -> 3.15.0-01 2019-01-14 09:45:50 +01:00
Kévin Rauscher d6fc1163e8 bloop: 1.1.2 -> 1.2.1 (#53093) 2019-01-13 23:17:16 +01:00
Vladyslav Mykhailichenko 2e03f923f7
tokei: 8.0.0 -> 9.0.0 2019-01-14 00:06:21 +02:00
Mario Rodas b1957d6428 detect-secrets: 0.11.0 -> 0.11.4 (#53893) 2019-01-13 22:31:10 +01:00
Frederik Rietdijk bb9581cd88 Merge staging-next into staging 2019-01-13 14:46:43 +01:00
volth a4faf59aa1 ninja: re2c is not for building docs
ninja sources include re2c's output files, so unless we change the sources by applying a patch, re2c is not even launched
anyway, it is not relevant to building docs
2019-01-13 13:42:06 +01:00
R. RyanTM f8d3a0d55c cfr: 0.137 -> 0.138
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cfr/versions
2019-01-13 09:42:37 +01:00
Vladimír Čunát 570d84a01e
Merge branch 'staging-next' 2019-01-13 00:39:38 +01:00
Austin Seipp 8b5e6b7711 icestorm: minor cleanup with pythonPkg.interpreter [NFC]
Suggested cleanup by @dotlambda. See:

  18839e1cc1 (commitcomment-31917295)

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-12 15:51:00 -06:00
Maximilian Bosch f494cffab6
shmig: 2017-07-24 -> 1.0.0
Update to the latest revision, don't replace `which` anymore as all
`which` references are eliminated previously, enable support for at
least one database type (otherwise this scrpit is unusable and needs to
be built manually with support for on of these packages).

Tested functionality with a simple SQLite database.
2019-01-12 21:34:40 +01:00
Mario Rodas 2c48580be1 flow: 0.89.0 -> 0.90.0 2019-01-12 18:16:28 +00:00
Will Dietz 7feee4d81f retdec: remove pycache from install dir 2019-01-12 16:48:40 +01:00
Dmitry Kalinkin 7a6d18cac5
xcbuild: provide migcom in toolchain
This is needed to facilitate build of qt5.qtwebengine on darwin
2019-01-12 09:28:43 -05:00
Vladimír Čunát bde8efe792
Merge branch 'master' into staging-next
A couple thousand rebuilds have accumulated on master.
2019-01-12 12:19:34 +01:00
Michael Weiss 768d876394
scons: Remove version 2.5.1 2019-01-12 10:44:33 +01:00
Austin Seipp 61e57a827b icestorm: enableParallelBuilding = true
With the previous PyPy3 change, this reduces the compile time from
~1m30s to roughly 36s (compared to the original, serial, Python 3 build
time of 2:30s).

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-11 18:03:35 -06:00
Austin Seipp 18839e1cc1 icestorm: improve x86 build/runtime perf with pypy
PyPy3 offers tremendous speedups for IceStorm tools written in Python,
including tools used at compile-time to generate the chip databases, and
runtime tools distributed to users, such as icebox_vlog.

For example, on my ThreadRipper 1950X, build times for IceStorm
consistently go from 2m30s -> 1m30s with this change, a 40% improvement,
simply due to improvements in raw CPU efficiency. (This is also worsened
by the fact the build is currently serial, but that can easily be fixed
anyway.)

On top of that, tools distributed to users are also now run using PyPy.
Utilities such as icebox_vlog are useful for post-bitstream testing, for
instance, and also are improved due to improved CPU efficiency as well.
For example, when "decompiling" an ICE40 bitstream for HX8K devices,
containing a synthesized copy of PicoRV32 (from the NextPNR demos), the
runtime of icebox_vlog is cut from 25 seconds to 9 seconds consistently
with this change alone.

Normally, picking a Python interpreter outright for Python-based code is
a "bad idea", but in the case of IceStorm it should be perfectly safe,
and an excellent improvement for users. There are a few reasons for
this:

  - IceStorm uses pure Python 3 and nothing else. There are no
requirements for any 3rd party packages, which might cause annoying
incompatibilities, and PyPy has historically shown very strong core
Python compatibility.

  - IceStorm is NOT a set of Python libraries, it is a set of tools,
some of which, coincidentally, are written in Python. It is (normally)
bad form to fix libraries to certain interpreters versions if the reason
strictly isn't "it doesn't work/isn't compatible". That is not the case
here. These tools may later be used by other programs, such as NextPNR,
but the Python interpreter is ultimately not that important in quesion
for the user. In this sense, there is almost no downside to picking
PyPy explicitly if it offers far better performance.

(Point 2 is not actually strictly true; there are some distributed .py
files that you can import from but they are basically just static
classes that are imported by tools like nextpnr; this is expected.)

Because of this, users should see very little change except better
performance for IceStorm tools on their machines.

Note that PyPy is not supported on aarch64 -- this only applies to
x86_64 machines.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-11 18:03:35 -06:00
R. RyanTM a8518f976c yarn: 1.12.3 -> 1.13.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/yarn/versions
2019-01-12 00:00:57 +02:00
Jörg Thalheim 831ffbdc96
Merge pull request #53737 from dpetranek/update-leiningen
leiningen: 2.8.1 -> 2.8.3
2019-01-11 12:06:36 +00:00
Andrew Childs 42815ce8de rubocop: 0.59.1 -> 0.62.0 2019-01-11 12:12:03 +09:00
Maximilian Bosch 44a80294f7
Merge pull request #53746 from zaninime/patch-1
nexus: 3.12.1 -> 3.14.0-04
2019-01-10 23:01:26 +01:00
Elmar Athmer 539d62be3a hcloud: 1.9.1 -> 1.11.0 2019-01-10 14:02:47 -05:00
Dmitry Kalinkin 9fac2254b2
Merge pull request #53666 from ThomasMader/dlang-update
dmd: 2.083.1 -> 2.084.0, dub: 1.12.1 -> 1.13.0, dtools: 2.083.1 -> 2.084.0, Literate: 2018-12-23 -> 2019-01-08
2019-01-10 13:54:44 -05:00
Profpatsch 9e9fec640e bazel: 0.20.0 -> 0.21.0
0.21 removed the bundled openjdk-distribution. Instead, tries to fetch
the “right” distribution on-the-fly when building.
So we need to provide our own openjdk.

According to
https://github.com/bazelbuild/bazel/issues/6865#issuecomment-447261288
we should set `--host_javabase="@local_jdk//:jdk` if we want to do
that. This uses the jdk that is currently in the environment, which is
openjdk 8 in our case. 0.21 defaulted to a toolchain for JDK9, which
we don’t package in nixpkgs, so we use the JDK8 toolchain.

This commit also replaces the line-number-based sed invocations with
something more stable.
2019-01-10 18:46:25 +01:00
Will Dietz 7e31406886 bazel: greatly reduce time spent substituting, be smart which files
Files inspected: 2756 -> 40
Total size of inspected files: 20M -> 1016K
2019-01-10 18:46:25 +01:00
Eelco Dolstra 6232df2a1e
Merge branch 'master' of git://github.com/NixOS/nixpkgs 2019-01-10 16:53:34 +01:00
Herwig Hochleitner bd3695090e systemtap: 3.3 -> 4.0 2019-01-10 16:44:51 +01:00
Eelco Dolstra 79229ca863
rustfmt: 0.99.5 -> 1.0.0
Note: there is a 1.0.1, but it doesn't compile with our stable Rust.
2019-01-10 16:43:43 +01:00
Eelco Dolstra ab33df13ac
Merge branch 'rustfmt' of https://github.com/symphorien/nixpkgs 2019-01-10 16:35:11 +01:00
Franz Pletz 237deba4e7
Merge remote-tracking branch 'origin/master' into staging 2019-01-10 16:00:34 +01:00
Vladimír Čunát 287144e342
Merge branch 'master' into staging-next 2019-01-10 13:07:21 +01:00
Francesco Zanini 27132c35df
nexus: 3.12.1 -> 3.14.0-04 2019-01-10 12:56:33 +01:00
Domen Kožar 8fc21a347e
elm2nix: use package from hackage 2019-01-10 09:56:29 +00:00
Michael Weiss 28c63d56a7
Merge pull request #53685 from dtzWill/update/scons-3.0.3
scons: 3.0.2 -> 3.0.3

"This release should be used instead of 3.0.2. This release fixes
several issues. This release supports Python versions 2.7.* as well as
3.5+." [0]

Details can be found in the changelog [1].

"NOTE: 3.0.2 release was dropped because there was a packaging bug. Please
consider all 3.0.2 content."

There where no regressions and no deprecations in this release (at least it does
not break any builds in nixpkgs).

[0]: https://scons.org/scons-303-is-available.html
[1]: https://raw.githubusercontent.com/SConsProject/scons/rel_3.0.3/src/CHANGES.txt
2019-01-10 10:02:41 +01:00
dpetranek 7c19fba9f6 leiningen: 2.8.1 -> 2.8.3 2019-01-10 01:04:21 -06:00
Vincent Laporte a18ac72b4a
ocamlPackages.ocp-indent: 1.6.1 -> 1.7.0 2019-01-09 16:37:39 +00:00
HaoZeke efe4a6d205
conan: 1.6.0 -> 1.11.2 2019-01-09 19:33:29 +05:30
Jörg Thalheim 60703db86c
electron_3: also update arm hashes 2019-01-09 09:33:53 +00:00
Jörg Thalheim 66c1f82631
electron_3: init at 3.1.0
electron 4 had many breaking changes in their API,
breaking rambox. Since the 3.x version is still maintained,
we can add an older variant.
2019-01-09 07:24:17 +00:00
Thomas Mader 205dd437ec Literate: 2018-12-23 -> 2019-01-08 2019-01-09 08:07:34 +01:00
Thomas Mader 08ca4ce27c dtools: 2.083.1 -> 2.084.0 2019-01-09 08:06:37 +01:00
Thomas Mader 5041439421 dub: 1.12.1 -> 1.13.0 2019-01-09 08:05:51 +01:00
Will Dietz e69d494033 scons: 3.0.2 -> 3.0.3
https://scons.org/scons-303-is-available.html

cc e1d9854816
2019-01-08 21:34:55 -06:00
Austin Seipp d67cbe9e53 trellis: 2018.08.01 -> 2018.12.20, update, cleanup
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-08 19:15:24 -06:00
Austin Seipp db136382f8 icestorm: 2018.09.04 -> 2018.12.31
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2019-01-08 19:15:24 -06:00
Timo Kaufmann 8c81099cda
radare2: add propagated build inputs (#53667)
Fixes the cutter build which was broken when radare2 was moved away from
vendored dependencies in #51837.
2019-01-08 21:55:44 +01:00
klntsky c869fc2ac1 pax-rs: init at 0.4.0 (#53660) 2019-01-08 13:16:59 -05:00
markuskowa 0e1f651795
Merge pull request #53457 from markuskowa/upd-uhd
uhd: 3.12.0.0 -> 3.13.0.1
2019-01-08 11:22:38 +01:00
R. RyanTM 59667421a1 pgcli: 2.0.1 -> 2.0.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pgcli/versions
2019-01-07 17:21:12 -05:00
Fritz Otlinghaus 2f0dbb8bda litecli: init at 1.0.0 2019-01-08 01:57:04 +08:00
Michael Weiss e1d9854816
scons: 3.0.1 -> 3.0.2
A few packages broke due to the SCons upgrade (they depended on
deprecated options that got removed), I've kept them on version 3.0.1
for now. The rest of the rebuilds seems fine (the failing ones where
already in a broken state before this change).
2019-01-07 15:07:29 +01:00
Michael Weiss a684ae6e53
scons: Remove version 3.0.0 2019-01-06 20:31:16 +01:00
Michael Weiss d376ffe767
scons: Add version 3.0.2
"SCons release 3.0.2 now available from the download page at
SourceForge. This release should be used instead of 3.0.1. This release
fixes several issues. This release supports Python versions 2.7.* as
well as 3.5+." [0]

Details can be found in the changelog [1].

I'll update the default after running additional tests.

[0]: https://scons.org/scons-302-is-available.html
[1]: https://raw.githubusercontent.com/SConsProject/scons/rel_3.0.2/src/CHANGES.txt
2019-01-06 20:31:16 +01:00
Vladimír Čunát 10a12194e3
Merge #53490: fix treewide linking errors after #51770
Issue #53001.  This might not be all of them, but let's not wait.
2019-01-06 12:14:52 +01:00
Frederik Rietdijk a4250d1478 Merge staging-next into staging 2019-01-06 09:48:31 +01:00
Frederik Rietdijk e5381cdece Merge master into staging-next 2019-01-06 09:36:23 +01:00
Astro f573625ef6 svd2rust: init at 0.14.0 2019-01-05 21:07:11 +01:00
Will Dietz 93a5522a7b
Merge pull request #53459 from dtzWill/update/gllvm-1.2.3
gllvm: 1.2.2 -> 1.2.3
2019-01-05 14:02:25 -06:00
Will Dietz fcfdeedab9
Merge pull request #51339 from dtzWill/feature/minizincide
minizincide: init at 2.2.3
2019-01-05 13:48:52 -06:00
Will Dietz 6f886ca7aa gllvm: 1.2.2 -> 1.2.3
https://github.com/SRI-CSL/gllvm/releases/tag/v1.2.3
2019-01-05 13:39:17 -06:00
Will Dietz 5adde64416 minizincide: minor touchups per reviewer suggestion
(sourceRoot needed a "source/" prefix, FWIW)
2019-01-05 13:35:10 -06:00
Markus Kowalewski 256ae3ab48
uhd: 3.12.0.0 -> 3.13.0.1 2019-01-05 19:52:55 +01:00
Vladimír Čunát d84a33d85b
Merge branch 'master' into staging-next
A few more rebuilds (~1k on x86_64-linux).
2019-01-05 15:02:04 +01:00
Orivej Desh 8dddd6d4a1 clang-tools: override llvm version in all-packages 2019-01-05 11:19:37 +00:00
Frederik Rietdijk 60a3973a55 Merge staging-next into staging 2019-01-05 10:15:00 +01:00
Piotr Bogdan a898c8335d sqlitebrowser: link with libQt5PrintSupport explicitly 2019-01-04 21:44:21 +00:00
Frederik Rietdijk 9618abe87c Merge master into staging-next 2019-01-04 21:13:19 +01:00
Lengyel Balazs f4a53ff3bc treewide/xorg: replace *proto with xorgproto 2019-01-04 14:38:57 +01:00
Jörg Thalheim e3bc81f531
Merge pull request #53351 from Mic92/clang-tools
clang-tools: 5 -> 7
2019-01-04 13:49:06 +01:00
Joachim F f0e28f982f
Merge pull request #52770 from eadwu/electron/4.0.0
electron: 3.0.5 -> 4.0.0
2019-01-04 11:04:59 +00:00
Maximilian Bosch ba1a181a88
Merge pull request #53367 from r-ryantm/auto-update/checkstyle
checkstyle: 8.15 -> 8.16
2019-01-04 03:19:16 +01:00
R. RyanTM cc09a97be7 checkstyle: 8.15 -> 8.16
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/checkstyle/versions
2019-01-03 17:17:42 -08:00
R. RyanTM ca80c4209a jhiccup: 2.0.9 -> 2.0.10
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/jhiccup/versions
2019-01-03 16:48:53 -05:00
Matthew Bauer 8505e710e7 Revert "darwin 10.12 commits"
Reverts commits bumping to macOS stuff to 10.12:

commit ec1f78d1cb.
commit d0dc91d24f.
commit a1d297374d.
commit 425112151d.
commit e6f7f2928f.
2019-01-03 15:20:26 -06:00
Jörg Thalheim 973bc2f2ae
clang-tools: 5 -> 7
Since this not typically used as build dependencies, just use the latest
and greatest.
2019-01-03 21:57:15 +01:00
Frederik Rietdijk 2da31b80bb Merge master into staging-next 2019-01-03 20:07:35 +01:00
Renaud 240d80c490
Merge pull request #52831 from r-ryantm/auto-update/omniorb
omniorb: 4.2.2 -> 4.2.3
2019-01-03 09:52:58 +01:00
Matthew Bauer fd38234dfc swig: find pcre-config correctly 2019-01-02 23:02:50 -06:00
Frederik Rietdijk 092e3b50a8 Merge master into staging-next 2019-01-02 21:08:27 +01:00
Vladimír Čunát 1ec9f8b62f
doxygen: 1.8.14 -> 1.8.15
I thought of filing a PR, but it would seem a useless step,
even though the release seems to bring lots of changes:
http://www.doxygen.nl/manual/changelog.html#log_1_8_15

My relatively simple use case still works (atop 18.09).
2019-01-02 17:21:42 +01:00
Vladimír Čunát 70bff06140
Merge branch 'master' into staging 2019-01-02 17:19:23 +01:00
Vladimír Čunát de96413bbf
doxygen: add sourceforge as mirror
It turns out the upstream URL is very slow (for me at least).
We get caching through nixos.org, but this shouldn't hurt anyway.
2019-01-02 17:08:02 +01:00
Vladimír Čunát f0c41f0bbf
doxygen: change URL
The homepage was 301 Moved Permanently.  Note: https won't work.
2019-01-02 16:59:09 +01:00
Vladimír Čunát cea9a2c9df
cproto: 4.6 -> 4.7o
The package seems rather abandoned (here in nixpkgs).
The bump fixes some problems, but it's probably still not suitable
for my use cases, though let me push the improvements anyway.
2019-01-02 16:27:40 +01:00
Ryan Fitzsimon b66b0c58ca vagrant: Add vagrant-libvirt utility dependencies
When using vagrant-libvirt as provider, the 'vagrant package'
command requires 'qemu-img' and 'virt-sysprep'.
2019-01-02 17:17:14 +10:00
xeji 6056319934
Merge pull request #52964 from ThomasMader/dlang-update
Dlang update 2018-12
2019-01-01 23:49:46 +01:00
Symphorien Gibol 1b5491fc4f rls: init at 1.31.7 2019-01-01 19:24:38 +01:00
Tim Steinbach 711a74c65a
sbt: 1.2.7 -> 1.2.8 2019-01-01 12:38:06 -05:00
Frederik Rietdijk 19905c4c9a Merge staging-next into staging 2018-12-31 14:21:42 +01:00
Frederik Rietdijk 070290bda7 Merge master into staging-next 2018-12-31 12:00:36 +01:00
worldofpeace 39efe3d97d solarus-quest-editor: 1.5.3 -> 1.6.0 2018-12-31 01:54:02 -05:00
Silvan Mosberger 69ef070296
Merge pull request #50341 from corngood/chicken-5
chicken: 4.13.0 -> 5.0.0
2018-12-31 05:09:57 +01:00
Ivan Kozik 45b62b4949 doctl: 1.8.0 -> 1.12.2 2018-12-30 11:56:21 +00:00
Will Dietz dcfabd82e2
Merge pull request #52730 from dtzWill/update/gdb-8.2.1
gdb: 8.2 -> 8.2.1
2018-12-29 15:47:07 -06:00
Will Dietz 55cc88691b lit: 0.7.0 -> 0.7.1 2018-12-29 15:18:35 -06:00
Will Dietz 00ed390fc5
Merge pull request #51231 from dtzWill/update/lit-0.7.0
lit: 0.6.0 -> 0.7.0
2018-12-29 15:16:44 -06:00
Will Dietz b42eab83dc lit: be explicit about python used, as convention 2018-12-29 14:44:03 -06:00
Will Dietz cbd17f5821 bison: 3.2.2 -> 3.2.4
3.2.3: https://lists.gnu.org/archive/html/bison-patches/2018-12/msg00049.html
3.2.4: https://lists.gnu.org/archive/html/bison-patches/2018-12/msg00068.html
2018-12-29 13:44:47 -06:00
R. RyanTM c859f30143 bison: 3.2.2 -> 3.2.3 (#52920)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/bison/versions
2018-12-29 20:24:10 +01:00
Domen Kožar 324f018fb5
add elm2nix 2018-12-29 18:59:55 +00:00
Dmitry Bogatov d77bab14ab tup: 0.7.5 -> 0.7.8 2018-12-29 13:04:54 +01:00
worldofpeace dfc35f1203 strace: change licenses
"The test suite is now provided under the terms of
the GNU General Public License version 2 or later."

"All the rest of strace is now provided under the terms of
the GNU Lesser General Public License version 2.1 or later."

> 27739ebccc/NEWS (L4)
2018-12-28 22:27:32 -05:00
Will Dietz e529cdb3fb strace: 4.25 -> 4.26
https://github.com/strace/strace/releases/tag/v4.26
2018-12-28 13:10:07 -06:00
Frederik Rietdijk 10afccf145 Merge staging-next into staging 2018-12-27 18:11:34 +01:00
Thomas Mader 2cf4b84aff Literate: 2018-08-20 -> 2018-12-23 2018-12-27 13:41:58 +01:00
Thomas Mader 0bee7282c1 dub: 1.10.0 -> 1.12.1 2018-12-27 13:40:51 +01:00
Thomas Mader 42e5ebb9c6 dtools: 2.081.2 -> 2.083.1 2018-12-27 13:23:57 +01:00
Mario Rodas 3258b00009
detect-secrets: init at 0.11.0 2018-12-27 05:23:32 -05:00
Pascal Wittmann 9ddad11c16
Merge pull request #52877 from r-ryantm/auto-update/global
global: 6.6.2 -> 6.6.3
2018-12-27 08:44:36 +01:00
David McFarland 6c063ac076 chicken: 4.13.0 -> 5.0.0 2018-12-26 22:23:01 -04:00
Frederik Rietdijk e45ca47f14 Merge staging-next into staging 2018-12-26 09:30:32 +01:00
Craig Younkins 8b12b17df3
treewide: Fix broken Gmane URLs 2018-12-25 22:34:55 -05:00
R. RyanTM 549bf1354b global: 6.6.2 -> 6.6.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/global/versions
2018-12-25 15:19:03 -08:00
Jan Tojnar c45e9d0fac
Merge branch 'master' into staging 2018-12-25 17:03:57 +01:00
Florian Klink 87d6913ef9
Merge pull request #52763 from bachp/gitlab-runner-11.6.0
gitlab-runner: 11.5.0 -> 11.6.0
2018-12-25 15:33:25 +01:00
R. RyanTM 7dfd2015a1 omniorb: 4.2.2 -> 4.2.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/omniorb/versions
2018-12-25 05:16:10 -08:00
Edmund Wu 6b44841cd6
electron: 3.0.5 -> 4.0.0 2018-12-24 11:00:44 -05:00
Sander van der Burg a27aa247c0
Merge pull request #50596 from svanderburg/mobile-updates
Mobile updates
2018-12-24 15:52:33 +01:00
Jan Tojnar ef935fa101
Merge branch 'master' into staging 2018-12-24 15:02:29 +01:00
Tobias Pflug 1de2527159 skopeo: 0.1.32 -> 0.1.34 2018-12-24 14:01:37 +01:00
Pascal Bach 5b61578924 gitlab-runner: 11.5.0 -> 11.6.0 2018-12-24 11:24:42 +01:00
Will Dietz 617ac0403c gdb: 8.2 -> 8.2.1
https://lists.gnu.org/archive/html/info-gnu/2018-12/msg00013.html
2018-12-23 11:01:08 -06:00
R. RyanTM 848ddac0fe sysbench: 1.0.15 -> 1.0.16
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sysbench/versions
2018-12-23 11:07:10 +01:00
Tim Steinbach 3f9ffdde5a
ammonite: 1.5.0 -> 1.6.0 2018-12-22 22:05:55 -05:00
Jörg Thalheim 1b146a8c6f
treewide: remove paxutils from stdenv
More then one year ago we removed grsecurity kernels from nixpkgs:
https://github.com/NixOS/nixpkgs/pull/25277

This removes now also paxutils from stdenv.
2018-12-22 12:55:05 +01:00
Mario Rodas 485bf85407
pyre: fix watchman references 2018-12-21 16:20:44 +01:00
Mario Rodas 65128f7211
dive: init at 0.5.0 2018-12-21 08:15:17 -05:00
Jörg Thalheim 3d6e86f77e
Merge pull request #52519 from risicle/ris-cf-cli-platforms
cloudfoundry-cli: fix build on multiple platforms, notably darwin. also bump -> 6.41.0
2018-12-21 13:28:45 +01:00
Robert Scott 9046038d6c cloudfoundry-cli: 6.37.0 -> 6.41.0 2018-12-21 09:56:15 +00:00
Robert Scott 8e5c4a4c1d cloudfoundry-cli: output to "bin" output, don't "remove-references-to" 2018-12-21 09:56:15 +00:00
Robert Scott 61fad2cdce cloudfoundry-cli: fix build on multiple platforms, notably darwin, to produce correct binary for target 2018-12-21 09:56:14 +00:00
Maximilian Bosch a2389cc318
Merge pull request #52587 from plapadoo/liquibase-temporary-fix-jars
liquibase: fix missing dependencies
2018-12-21 02:19:26 +01:00
Philipp Middendorf 7d270d993b liquibase: fix missing dependencies 2018-12-20 20:40:34 +01:00
Mathieu Boespflug 53e8258a45 bazel: fix sandbox execution
Bazel runs actions in a sandbox by default on Darwin and Linux.
However, the sandboxing was always and *silently* disabled previously,
because a Bazel feature test was always failing. The feature test
involved running `/bin/true` inside a sandbox. But on NixOS,
`/bin/true` does not exist...
2018-12-20 15:18:34 +01:00
R. RyanTM 29f25b22df pmd: 6.9.0 -> 6.10.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pmd/versions
2018-12-19 17:48:03 -05:00
Tor Hedin Brønner 59e6658381 valgrind: fix build on darwin
We fixed a race condition in #51505 and #51107. This required running
autoreconfHook to pick up the `coregrind-makefile-race.patch` patch.

Unfortunately this broke darwin's postPatch fixes as autoreconfHook would run
afterwards regenerating the fixed makefiles.

Moving the postPatch fixes to preConfigure should resolve the issue.

I left `postPatch = ""` in to avoid a rebuild on linux.

(cherry picked from commit a6d4a0c53c)
2018-12-19 20:39:10 +01:00
Jörg Thalheim da093022a4
Merge pull request #52413 from mat8913/vagrant-libvirt
vagrant: build and install vagrant-libvirt plugin
2018-12-19 12:18:44 +01:00
R. RyanTM 28fdb4eb11 pipenv: 2018.11.14 -> 2018.11.26
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pipenv/versions
2018-12-19 09:26:28 +01:00
Piotr Bogdan c302474077 binutils: remove dtneeded.patch 2018-12-19 09:20:38 +01:00
Frederik Rietdijk 9ab61ab8e2 Merge staging-next into staging 2018-12-19 09:00:36 +01:00
Frederik Rietdijk 911d1853ca Merge master into staging-next 2018-12-19 08:57:41 +01:00
Sander van der Burg 53550c826d Port packages with Android dependencies to new androidenv 2018-12-18 21:16:06 +01:00
Jörg Thalheim e116aa1d4b
Merge pull request #52128 from tilpner/add-mkdocs
mkdocs: 0.17.5 -> 1.0.4
2018-12-18 19:26:03 +00:00
volth fed7914539
Merge branch 'staging' into make-perl-pathd 2018-12-18 17:13:27 +00:00
Matthew Bauer d1dfc92187
Merge pull request #47678 from matthewbauer/landmarks
Update macOS frameworks to 10.12
2018-12-18 09:59:44 -06:00
R. RyanTM 53a7d5ec99 squirrel-sql: 3.8.1 -> 3.9.0
* squirrel-sql: 3.8.1 -> 3.9.0 (#52029)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/squirrel-sql/versions

* squirrel-sql: cleanup

* squirrel-sql: don't pass stdenv as a build input
2018-12-18 12:28:01 +01:00
Frederik Rietdijk 826ab7026e Merge master into staging-next 2018-12-18 09:22:17 +01:00
Matthew Bauer b0ccd8be8e
Merge pull request #52449 from TomSmeets/gamecube-tools
gamecube-tools: init at v1.0.2
2018-12-17 20:26:04 -06:00
Matthew Bauer 5708fd7671
Merge pull request #52450 from TomSmeets/wiiload-1
wiiload: init at v0.5.1
2018-12-17 20:25:22 -06:00
Maximilian Bosch b72dc8c2f2
Merge pull request #52189 from r-ryantm/auto-update/apache-maven
maven: 3.5.4 -> 3.6.0
2018-12-18 00:59:30 +01:00
Fritz Otlinghaus 758f271fba github-changelog-generator: init at v1.14.3
Signed-off-by: Fritz Otlinghaus <fritz@otlinghaus.it>
2018-12-17 23:28:23 +00:00
Tom Smeets f0d3a6e744 wiiload: init at v0.5.1 2018-12-17 21:48:24 +01:00
Tom Smeets 8f25e3d4cd gamecube-tools: init at v1.0.2 2018-12-17 21:37:34 +01:00
R. RyanTM d9b1ae9eab msitools: 0.97 -> 0.98
* msitools: 0.97 -> 0.98 (#52188)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/msitools/versions

* msitools: fetch from Gnome mirrors

+ misc cleanup
2018-12-17 18:49:34 +01:00
Renaud df1ec28ac9
Merge pull request #52076 from r-ryantm/auto-update/qbs
qbs: 1.12.1 -> 1.12.2
2018-12-17 17:59:51 +01:00
R. RyanTM f7ec303289 ammonite: 1.4.2 -> 1.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ammonite/versions
2018-12-17 14:24:36 +00:00
Matthew Harm Bekkema c660f3d419 vagrant: Remove unnecessary buildInputs
libvirt and pkgconfig are now buildInputs to ruby-libvirt instead.
2018-12-17 21:53:23 +11:00
Matthew Harm Bekkema 245ba973d9 vagrant: Install vagrant-libvirt as system plugin 2018-12-17 21:53:23 +11:00
Matthew Harm Bekkema 08488bcf94 vagrant: Support system-installed plugins
Patch taken from Debian
2018-12-17 21:53:23 +11:00
Matthew Bauer e6f7f2928f darwin: 10.11 → 10.12
Lots of stuff has gotten moved around. Many security libraries have been merged
into the Security monorepo. I’ve cleared them out for now, we will
need to modify Security to build them!

This also moves some things around to more clearly separate
bootstrapping the stdenv from everything else. We want the “normal”
mode to be the non-bootstrapped version. When you ask for “Security”,
you want the actual built software, not a crippled one.

- Add TARGET_OS_OSX to darwin.libSystem. Looks like something
  introduced in 10.12. TARGET_OS_MAC is only set when building for
  desktop (iOS will have TARGET_OS_MAC set)
- Bump darwin.dtrace
- Bump darwin.libpthread
- Remove SmartCardServices, libsecurity*, etc.
- Install some more headers for darling.
2018-12-17 00:07:09 -06:00
R. RyanTM 2cbaaa55d5 fswatch: 1.13.0 -> 1.14.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fswatch/versions
2018-12-17 02:20:23 +00:00
Matthew Harm Bekkema 1183ee645d vagrant: Add vagrant-libvirt to the gemset
With this, you can "install" the plugin just by adding the following to
~/vagrant.d/plugins.json:

  {
    "version":"1",
    "installed": {
      "vagrant-libvirt": {
        "ruby_version":"2.5.3",
        "vagrant_version":"2.2.0",
        "gem_version":"",
        "require":"",
        "sources":[]
      }
    }
  }
2018-12-17 10:23:27 +11:00
Jan Tojnar aead6e12f9
Merge remote-tracking branch 'upstream/master' into staging 2018-12-16 22:55:06 +01:00
Ryan Mulligan 5b45208071
Merge pull request #52336 from r-ryantm/auto-update/d-feet
dfeet: 0.3.13 -> 0.3.14
2018-12-16 12:47:48 -08:00
R. RyanTM 42a3276e9a flyway: 5.2.1 -> 5.2.4
* flyway: 5.2.1 -> 5.2.4 (#52325)

Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/flyway/versions

* flyway: makeWrapper is a build-time input

moved it from buildInputs to nativeBuildInputs
2018-12-16 21:15:55 +01:00
Maximilian Bosch 75a476db0a
Merge pull request #52405 from r-ryantm/auto-update/cfr
cfr: 0_134 -> 0.137
2018-12-16 20:47:10 +01:00
R. RyanTM 4027966602 dejagnu: 1.6.1 -> 1.6.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/dejagnu/versions
2018-12-16 20:35:51 +01:00
R. RyanTM 34a24d914e cfr: 0_134 -> 0.137
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cfr/versions
2018-12-16 11:20:14 -08:00
R. RyanTM 51deb8951d kubectx: 0.6.1 -> 0.6.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/kubectx/versions
2018-12-16 20:11:54 +01:00
Christoph Hrdinka b1bd7516a9
Merge pull request #52399 from r-ryantm/auto-update/backblaze-b2
backblaze-b2: 1.3.6 -> 1.3.8
2018-12-16 19:35:56 +01:00
R. RyanTM ce709426ae backblaze-b2: 1.3.6 -> 1.3.8
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/backblaze-b2/versions
2018-12-16 09:52:13 -08:00
Robin Gloster 6ce3887197
Merge pull request #52383 from r-ryantm/auto-update/checkstyle
checkstyle: 8.14 -> 8.15
2018-12-16 17:05:17 +01:00
R. RyanTM e04f56e8cc checkstyle: 8.14 -> 8.15
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/checkstyle/versions
2018-12-16 06:50:39 -08:00
Alexey Shmalko 1aa2c5a8a8
Merge pull request #52341 from r-ryantm/auto-update/cppcheck
cppcheck: 1.85 -> 1.86
2018-12-16 16:33:12 +02:00
Maximilian Bosch 561654d8bb
Merge pull request #52338 from r-ryantm/auto-update/dialog
dialog: 1.3-20180621 -> 1.3-20181107
2018-12-16 14:49:18 +01:00
Alyssa Ross 24e6074a28
Merge pull request #51672 from acowley/vulkan-validation
vulkan-validation-layers: 1.1.82.0 -> 1.1.85.0
2018-12-16 11:28:25 +00:00
R. RyanTM fc5d1f48b4 cppcheck: 1.85 -> 1.86
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/cppcheck/versions
2018-12-16 01:59:44 -08:00
R. RyanTM 14fbddc232 dialog: 1.3-20180621 -> 1.3-20181107
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/dialog/versions
2018-12-16 01:42:33 -08:00
R. RyanTM c50c1da7a2 dfeet: 0.3.13 -> 0.3.14
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/d-feet/versions
2018-12-16 01:34:11 -08:00
Jörg Thalheim ba5cba0b0d
Merge pull request #51893 from Mic92/cross-fixes-2
treewide: cross-fixes (memcached, opendkim, gdb, tcl, xorg*)
2018-12-16 01:28:16 +00:00
Dmitry Kalinkin 468a1d7aba
Merge pull request #49601 from dtzWill/update/gn-20181031
gn: 20180830 -> 20181031
2018-12-15 09:35:10 -05:00
Kevin Rauscher 297535be8e bloop: 1.1.1 -> 1.1.2 2018-12-15 13:11:12 +01:00
R. RyanTM ff294a7162 maven: 3.5.4 -> 3.6.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/apache-maven/versions
2018-12-15 00:51:43 -08:00
volth bb9557eb7c lib.makePerlPath -> perlPackages.makePerlPath 2018-12-15 03:50:31 +00:00
Alexey Shmalko 4fa6455dc8
Merge pull request #52054 from vdemeester/bump-gosec
gosec: 1.1.0 -> 1.2.0
2018-12-15 03:27:59 +02:00
R. RyanTM 221762cc5d ansible-lint: 3.4.23 -> 3.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python2.7-ansible-lint/versions
2018-12-14 17:07:10 -08:00
tilpner 04e2dd4c4f
mkdocs: 0.17.5 -> 1.0.4 2018-12-15 00:48:32 +01:00
Vladyslav M 027b44aa97
Merge pull request #51975 from r-ryantm/auto-update/yq
yq: 2.6.0 -> 2.7.1
2018-12-15 00:29:05 +02:00
Tor Hedin Brønner a6d4a0c53c valgrind: fix build on darwin
We fixed a race condition in #51505 and #51107. This required running
autoreconfHook to pick up the `coregrind-makefile-race.patch` patch.

Unfortunately this broke darwin's postPatch fixes as autoreconfHook would run
afterwards regenerating the fixed makefiles.

Moving the postPatch fixes to preConfigure should resolve the issue.

I left `postPatch = ""` in to avoid a rebuild on linux.
2018-12-14 18:17:44 +01:00
R. RyanTM b98926d55a qbs: 1.12.1 -> 1.12.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qbs/versions
2018-12-14 08:14:10 -08:00
Mario Rodas 81c99bfe63 flow: 0.87.0 -> 0.89.0 2018-12-14 14:43:57 +00:00
Vincent Demeester 9f7fccab09
gosec: 1.1.0 -> 1.2.0
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-12-14 15:25:00 +01:00
Jörg Thalheim 2874bacdec
Merge pull request #52045 from r-ryantm/auto-update/redo
redo: 1.3 -> 1.4
2018-12-14 13:49:56 +00:00
R. RyanTM df42e8a636 redo: 1.3 -> 1.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/redo/versions
2018-12-14 05:24:37 -08:00
Jörg Thalheim 4655478c3d
Merge pull request #52035 from r-ryantm/auto-update/rustup
rustup: 1.15.0 -> 1.16.0
2018-12-14 12:28:09 +00:00
R. RyanTM 51f6839a9a rustup: 1.15.0 -> 1.16.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/rustup/versions
2018-12-14 04:16:23 -08:00
Jörg Thalheim 7309b6adab
Merge pull request #52010 from r-ryantm/auto-update/sysprof
sysprof: 3.30.0 -> 3.31.1
2018-12-14 10:59:37 +00:00
Jörg Thalheim 4d7ff6c04c
sysprof: also provide default icons 2018-12-14 10:58:32 +00:00
Mathieu Boespflug 6f5014e0ae bazel: 0.18.0 -> 0.20.0 2018-12-14 11:02:25 +01:00
Mathieu Boespflug 463498e3fa bazel: Don't perform the checkPhase, since it's redundant with installCheckPhase.
This change is going to be required when upgrading to Bazel 0.20.0,
because in the checkPhase we're not wrapping the Bazel binary yet to
set some necessary default arguments.
2018-12-14 11:02:25 +01:00
R. RyanTM 734cd2c98a sysprof: 3.30.0 -> 3.31.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sysprof/versions
2018-12-14 00:39:32 -08:00
R. RyanTM ecaac75875 yq: 2.6.0 -> 2.7.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/yq/versions
2018-12-13 18:13:10 -08:00
David McKay fbabead264
kind: master -> 0.0.1 2018-12-13 20:32:59 +00:00
Théo Zimmermann 958a6c6dd3 dune: 1.5.1 -> 1.6.2 2018-12-13 17:39:28 +00:00
Aneesh Agrawal 3dbbd9f8c2 pgcli: 2.0.0 -> 2.0.1
Changelog: https://github.com/dbcli/pgcli/blob/master/changelog.rst#201
Major feature of note is Python 3.7 support.

Also default to using Python 3 because this is an application.
2018-12-12 13:56:41 -05:00
Alyssa Ross 812805110b
Merge pull request #51887 from AtnNn/ikos
ikos: init at 2.1
2018-12-12 09:06:36 +00:00
Jörg Thalheim c6d83f297d
valgrind: fix cross-build 2018-12-12 08:02:13 +00:00
Jörg Thalheim e4556c275c
gdb: fix cross-build 2018-12-12 08:00:15 +00:00
Matthew Bauer 465a5e1d97
Merge pull request #51880 from matthewbauer/simavr-mac
simavr: work on macOS
2018-12-11 20:36:58 -06:00
Etienne Laurin 328fbcff60 ikos: init at 2.1 2018-12-12 00:09:24 +00:00
Jan Tojnar 414ea0a10e
meson: 0.48.2 → 0.49.0 2018-12-12 00:22:02 +01:00
Matthew Bauer 79e886a61b simavr: work on macOS 2018-12-11 14:40:48 -06:00
Tim Steinbach 475d653afd
sbt-extras: 2018-09-27 -> 2018-12-04 2018-12-10 12:56:39 -05:00
Alyssa Ross c9ead109ca
Merge pull request #51725 from das-g/geckodriver-0.22.0
geckodriver: unstable-2018-02-24 -> 0.22.0
2018-12-10 15:57:45 +00:00
Raphael Borun Das Gupta 1edf950fa2 geckodriver: unstable-2018-02-24 -> 0.22.0
Motivation: unstable-2018-02-24 (which reports to be
0.19.1, but probably doesn't correspond to any actual
geckodriver release) isn't compatible with the currently
shipped Firefox version 63.0

closes NixOS/nixpkgs#50380
2018-12-10 16:22:11 +01:00
Jörg Thalheim 900a01ad47
radare2: fix cross-build
Only the make-based build support cross-compilation.
Also use less vendored libraries
2018-12-10 14:15:45 +00:00
Vincent Laporte 8c11c9528e frama-c: Chlorine -> Argon 2018-12-09 19:50:38 +00:00
Matthew Bauer a27c51f71f premake3: use premake3 -> premake
premake3 only has the "premake" executable. This is a little confusing
because premake4 and premake5 both have the version suffix.

Fixes #51744
2018-12-08 14:47:13 -06:00
Jörg Thalheim d4aa3cce93
Merge pull request #51629 from Chiiruno/dev/update
Update: quicktemplate, nodePackages: meguca, meguca, hydron
2018-12-08 16:25:00 +00:00
Frederik Rietdijk df304abd27 Merge staging-next into staging 2018-12-08 12:50:38 +01:00
Frederik Rietdijk e0950ae9ad Merge master into staging-next 2018-12-08 12:40:13 +01:00
Anthony Cowley 6492af66e1 vulkan-validation-layers: 1.1.82.0 -> 1.1.85.0
This requires knock-on upgrades for glslang and spirv-tools.

I have also made the validation layers easier to use:
- library files identified by layer definitions now use absolute paths
- the layer definition path is prepended to XDG_DATA_DIRS

Previously, one would have to modify LD_LIBRARY_PATH or install the
derivation in a known location for vulkan-loader to find relevant
files. These changes make using validation layers in a nix-shell work automatically.

Use XDG_DATA_DIRS environment variable rather than VK_LAYER_PATH
2018-12-08 00:51:39 -05:00
Will Dietz 9a9d26fb77 elfinfo: 0.7.4 -> 0.7.5
https://github.com/xyproto/elfinfo/releases/tag/0.7.5
2018-12-07 20:49:13 -06:00
Alyssa Ross 33c66f0e18
Merge pull request #51625 from vdemeester/update-skaffold
skaffold: 0.18.0 -> 0.19.0
2018-12-07 17:42:22 +00:00
Frederik Rietdijk 747aa4cc93 Merge staging-next into staging 2018-12-07 15:31:52 +01:00
Frederik Rietdijk 5f554279ec Merge master into staging-next 2018-12-07 15:22:35 +01:00
Alexey Shmalko dc87b4855f
Merge pull request #51653 from Tomahna/bloop
bloop: 1.1.0 -> 1.1.1
2018-12-07 14:59:03 +02:00
Jörg Thalheim dca1fe7956
Merge pull request #51585 from veprbl/pr/tradcpp_aarch64_support
tradcpp: improved aarch64 support
2018-12-07 10:52:49 +00:00
Kevin Rauscher 0fc90852d9 bloop: 1.1.0 -> 1.1.1 2018-12-07 11:41:42 +01:00
Florian Klink 1915bbfae3
Merge pull request #51565 from alyssais/jenkins
jenkins: 2.138.3 -> 2.150.1 (security!)
2018-12-07 10:41:48 +01:00
Mario Rodas 88b48753ac flow: 0.86.0 -> 0.87.0 2018-12-07 03:48:39 +00:00
隠岐奈 2e53403aae quicktemplate: 2018-09-06 -> 2018-11-26 2018-12-06 11:40:58 -06:00
Vincent Demeester 4a783b8eee
skaffold: 0.18.0 -> 0.19.0
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2018-12-06 17:44:27 +01:00
Jörg Thalheim d74d9c0378
Merge pull request #51619 from Mic92/pyflame
pyflame: also install flame-chart-json
2018-12-06 14:02:30 +00:00
Jörg Thalheim 6b9bcfe6fd
pyflame: also install flame-chart-json
This is useful to use chrome's flamechart viewer.
2018-12-06 14:01:43 +00:00
Sarah Brofeldt 01389f1ad6
Merge pull request #51440 from Tomahna/bloop
bloop: 1.0.0 -> 1.1.0
2018-12-06 12:30:49 +01:00
Benjamin Hipple 72c059fad6 waf: 2.0.10 -> 2.0.13 2018-12-06 00:14:53 +00:00
zimbatm 7faa6723d6
Merge pull request #51524 from zimbatm/vault-1.0.0
vault: 0.11.5 -> 1.0.0
2018-12-05 21:13:07 +01:00
Dmitry Kalinkin 93ba7aa8c5
tradcpp: improved aarch64 support 2018-12-05 13:48:18 -05:00
zimbatm 3064dd1906
gox: 0.4.0 -> 20181025
We need the latest gox to support the latest go releases better.
Unfortunately the author doesn't seem interesting in making new releases
(1y already since the last release).
2018-12-05 14:52:04 +01:00
zimbatm b5360ce722
govers: 20150109 -> 20160623 2018-12-05 14:52:04 +01:00
Alyssa Ross 33e6c84753
jenkins: 2.138.3 -> 2.150.1
Fixes several security issues.

See https://jenkins.io/blog/2018/12/05/security-updates/.
2018-12-05 12:49:37 +00:00
Jörg Thalheim df2e442853
radare2: 3.1.2 -> 3.1.3 2018-12-05 10:44:41 +00:00