Commit graph

128186 commits

Author SHA1 Message Date
Robert Schütz 1789ee279e pythonPackages.guessit_2_0: remove 2018-07-10 11:25:18 +02:00
Robert Schütz 3ea10ab2d8 flexget: pin guessit==2.1.4 2018-07-10 11:24:24 +02:00
Robert Schütz ef2ac673a1 home-assistant: 0.73.0 -> 0.73.1 2018-07-09 16:16:43 +02:00
R. RyanTM 90b9bb7ea7 vim-vint: 0.3.18 -> 0.3.19 (#43152)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/vim-vint/versions.

Version release notes (from GitHub):
# Change Log
This is a release before merging #275. After #275 merged, we probably face the many problems, so we should publish it at the next release.

[diff](aa0648cf12...6422c268c1)

## New features
- Initial support for stdin (#240)

## Bugfixes
- Disable ProhibitImplicitScopeVariable (#273)
- Suppress warnings caused by map([], ' "x" ') (#259)
- Fix linting autocmd (#260)
- Fix acceptance tests (#262)

## Documentation
- Link to default config (#270)
- Fix a broken code block for example (#276)

## Performance Improvements
- Optimize ProhibitUnusedVariable (#269)
- Optimize get_asset_path (#268)
- Optimize ConfigProjectSource (#267)

These checks were done:

- built on NixOS
- /nix/store/yaywc2r3anf8r8pkw31si2y5phly68r5-vim-vint-0.3.19/bin/.vint-wrapped passed the binary check.
- /nix/store/yaywc2r3anf8r8pkw31si2y5phly68r5-vim-vint-0.3.19/bin/vint passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 2 of 2 passed binary check by having the new version present in output.
- found 0.3.19 with grep in /nix/store/yaywc2r3anf8r8pkw31si2y5phly68r5-vim-vint-0.3.19
- directory tree listing: https://gist.github.com/9f3ec9fa4587a10f4c05cb1d043d96c6
- du listing: https://gist.github.com/bb1c02d3f65c3b7acb80f77938706b7c
2018-07-09 16:09:22 +02:00
R. RyanTM e49c527bb1 scantailor-advanced: 1.0.14 -> 1.0.15 (#43162)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/scantailor-advanced/versions.

Version release notes (from GitHub)

*Note: x32 version supports Windows XP.*

Changelog:
* Implemented the [guides feature](https://github.com/4lex4/scantailor-advanced#guides).
* Change the way of the adjustment of the despeckle strength.
  Now that's set via the slider. It allows to adjust the despeckle strength more smoothly and exactly. Value 1.0 matches the old cautious mode, 2.0 - normal and 3.0 - aggressive.
* Improve and return [black on white detection feature](https://github.com/4lex4/scantailor-advanced#black-on-white-detection).
* Added native color scheme and made various fixes and improvements on the Dark and Light schemes.
* Improvements on the thumbnails view:
    * Saving selection of pages on filter switch.
    * Separate highlighting for selection leader in thumbnails.
    * Navigating between selected pages. Use **`Shift+PgUp/Q`** and **`Shift+PgDown/W`** to navigate between selected pages.
    * More accurate multi-column list handling *(Author: Alexander Trufanov)*.
    * Scaling thumbnails via **`Alt+Wheel`** *(Author: Alexander Trufanov)*.
* Added options in the settings to manage the quality and size of thumbnails.
* Added order by completeness sort on the output stage.
  Moving incompleted pages to the end allows to process them in batch mode without processing the completed pages.
* Improved the lasso mode on zone creation.
  Also the hotkey is changed to **`Shift+Alt+LMB`** due to the old combination did not work on Linux.
* Added fill offcut option at the output stage.
* Now split layers are removed if the color mode was changed to any except mixed.
* Fixed portability issues and added CPack packaging support. [(More info)](f68c459e69)
* Fixed blink of the image view on Windows.
* Other fixes and improvements.</details>

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/kzpf34q5hwcqg4kkshcy500pza27qmv7-scantailor-advanced-1.0.15/bin/scantailor had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 1.0.15 with grep in /nix/store/kzpf34q5hwcqg4kkshcy500pza27qmv7-scantailor-advanced-1.0.15
- directory tree listing: https://gist.github.com/c96081fbc93cb6843d76a19ec6139c10
- du listing: https://gist.github.com/a04cc534b6883f69c54c23ada5c8df2f
2018-07-09 16:09:01 +02:00
R. RyanTM 34da985941 libsForQt5.mlt: 6.8.0 -> 6.10.0 (#42976)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mlt/versions.

Version release notes (from GitHub):
This version fixes bugs and supports serializing animation keyframes with a
specified time format (previously only frame number).

**Framework**

  * Reverted mlt_pool change in v6.8.0 pending further testing.
    (USE_MLT_POOL compiler define is now a 0/1 boolean, defaults to 1.)
  * Fixed crash regression in v6.8.0 "parsing non-animated string as an animation."
  * Added pointer checks to mlt_animation.
  * Changed producer cache size heuristic in mlt_multitrack to be more liberal.
  * Fixed handling reserved characters in names for YAML in mlt_properties.
  * Added clamping to prevent computing negative in and out points to mlt_producer.
  * Added functions to serialize animation with a time format:
    - mlt_animation_serialize_cut_tf()
    - mlt_animation_serialize_tf()
    - mlt_property_get_string_tf()
    - mlt_property_get_string_l_tf()
    - mlt_properties_get_value_tf()
    - Mlt::Properties::get(int, mlt_time_format)
    - Mlt::Animation::serialize_cut(mlt_time_format, int, int)
  * Added functions to clear a property to mlt_properties:
    - mlt_property_clear()
    - mlt_properties_clear()
    - Mlt::Properties::clear()

**Modules**

  * Fixed enabling sliced pix_fmt conversion in avformat producer.
  * Fixed incorrect seek and sync on audio files with discard packets.
  * Added support for avcodec_send_frame() API to avformat consumer.
  * Fixed compile errors with Libav master.
  * Fixed a crash in affine transition.
  * Fixed a crash in ladspa filters when consumer frame rate is low (e.g. <= 8).
  * Fixed a crash in boxblur filter.
  * Added animation support to boxblur hori and vert properties.
  * Fixed a crash in movit.convert.
  * Fixed incorrect alpha in affine transition blending routine.
  * Converted frei0r from deprecated mlt_geometry to mlt_animation API.
  * Fixed tilde in text string for pango producer.
  * Fixed using more than one channelcopy filter.
  * Fixed the mono filter reducing volume level.
  * Fixed degraded audio scrubbing in sdl2_audio consumer.
  * Converted dynamictext filter to use affine transition for more correct
    alpha compositing and sub-pixel positioning.
  * Added time format support for animation keyframes to the xml consumer.
  * Added animation support to more affine transition properties:
    - fix_rotate_x
    - fix_rotate_y
    - fix_rotate_z
    - fix_shear_x
    - fix_shear_y
    - fix_shear_z
    - ox
    - oy
    - scale_x
    - scale_y
  * Fixed gaps in text when characters overlap in qtext and kdenlive producers.
  * Fixed a crash in pixbuf producer with multiple render threads.
  * Converted the oldfilm vignette filter from mlt_geometry to mlt_animation.

**Other**

  * Numerous updates to mlt-xml.dtd.
  * Categorized many of the encode presets (using meta.preset.name).

These checks were done:

- built on NixOS
- /nix/store/jfzwhslr6ndh2wc4bl3vdm4kdk2xdk7a-mlt-6.10.0/bin/melt passed the binary check.
- /nix/store/jfzwhslr6ndh2wc4bl3vdm4kdk2xdk7a-mlt-6.10.0/bin/.melt-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 6.10.0 with grep in /nix/store/jfzwhslr6ndh2wc4bl3vdm4kdk2xdk7a-mlt-6.10.0
- directory tree listing: https://gist.github.com/5b163c9c1aa200eba8db3bde8c8b09b1
- du listing: https://gist.github.com/ddb0aac5012b87f121601378fca1f0bd
2018-07-09 16:06:47 +02:00
R. RyanTM e5a79eacd6 kcgi: 0.10.6 -> 0.10.7 (#43000)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/kcgi/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/sl5jhxlixmz36c2fqzdhd5az8wnhmx2n-kcgi-0.10.7/bin/kfcgi had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- directory tree listing: https://gist.github.com/06d87d498d359996e0d7b408ba2265d2
- du listing: https://gist.github.com/4636af5ca6c5f9b15b55b27e0705b167
2018-07-09 16:06:00 +02:00
R. RyanTM 99cb9de551 fricas: 1.3.3 -> 1.3.4 (#43023)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/fricas/versions.

These checks were done:

- built on NixOS
- /nix/store/zbmbsjm8mg6i7s6fm3zas1bndg24w91x-fricas-1.3.4/bin/fricas passed the binary check.
- /nix/store/zbmbsjm8mg6i7s6fm3zas1bndg24w91x-fricas-1.3.4/bin/efricas passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 1.3.4 with grep in /nix/store/zbmbsjm8mg6i7s6fm3zas1bndg24w91x-fricas-1.3.4
- directory tree listing: https://gist.github.com/75d751d9733f6b0a7b582ab838a71963
- du listing: https://gist.github.com/4c6fe5f342430a2b36568da3229d3dc4
2018-07-09 16:02:58 +02:00
R. RyanTM 6ec4be7ec5 igv: 2.4.10 -> 2.4.11 (#43003)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/igv/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/yc18a4s9rs8m6wjbsmi1lax5v0kkyl2i-igv-2.4.11/bin/igv had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 2.4.11 with grep in /nix/store/yc18a4s9rs8m6wjbsmi1lax5v0kkyl2i-igv-2.4.11
- directory tree listing: https://gist.github.com/ca4cf484aab1c1590806c47c4fdde1d7
- du listing: https://gist.github.com/f7ff80a2429cf0a942195db4944659b1
2018-07-09 16:02:34 +02:00
Peter Hoeg 476aab54fe
Merge pull request #43220 from peterhoeg/u/qtox
qtox: 1.15.0 -> 1.16.1
2018-07-09 21:52:12 +08:00
Peter Hoeg b4bc6a6399
Merge pull request #43225 from peterhoeg/f/anydesk
anydesk: fix application shortcut
2018-07-09 21:51:57 +08:00
Peter Hoeg f759a0d0a6
Merge pull request #43153 from dotlambda/home-assistant-0.73.0
home-assistant: 0.72.1 -> 0.73.0
2018-07-09 21:46:42 +08:00
Eelco Dolstra 92609ec9ae
pciutils: 3.5.6 -> 3.6.0 2018-07-09 13:12:59 +02:00
Michael Hoang e64b114c3a syncplay: 1.5.3 -> 1.5.5 (#43245)
Leave syncplay to install to the correct directory rather than moving
folders around to make it work.
2018-07-09 13:00:49 +02:00
leenaars 584561bb06 botan: 2.6.0 -> 2.7.0 (#43223) 2018-07-09 12:52:38 +02:00
Eelco Dolstra 6978f710da
Merge branch 'master' of git://github.com/NixOS/nixpkgs 2018-07-09 12:35:36 +02:00
Eelco Dolstra 323fe3a305
rustc: Disable tests for now 2018-07-09 12:35:01 +02:00
adisbladis 8e38f2eac8
Merge pull request #43247 from worldofpeace/solargraph-0.23.3
solargraph: 0.22.0 -> 0.23.3
2018-07-09 18:00:03 +08:00
adisbladis a56ce7ca42
Merge pull request #43246 from worldofpeace/lollypop-0.9.519
lollypop: 0.9.516 -> 0.9.519
2018-07-09 17:59:44 +08:00
worldofpeace 45be130608 solargraph: 0.22.0 -> 0.23.3 2018-07-09 05:12:57 -04:00
Eelco Dolstra 07933800fb
Merge branch 'rustc' of https://github.com/Mic92/nixpkgs 2018-07-09 11:10:12 +02:00
worldofpeace 64b98e3895 lollypop: 0.9.516 -> 0.9.519 2018-07-09 05:00:56 -04:00
adisbladis cac85f6812
Merge pull request #43142 from xtruder/pkgs/super-productivity/init
super-productivity: init at 1.10.45
2018-07-09 13:32:25 +08:00
Silvan Mosberger 8e2c3b93ba
Merge pull request #43096 from jbedo/mosdepth
mosdepth: init 0.2.3
2018-07-09 04:55:24 +02:00
Dan Peebles 1dd7bc7dfc monosat: update build to use handy new environment variable 2018-07-08 22:04:05 -04:00
Dan Peebles 0372c87481 monosat: cbaf79cf -> 2deeadef
Upstream fixed a few things I needed to work around
2018-07-08 21:57:00 -04:00
Justin Bedo 59141de608
mosdepth: init 0.2.3 2018-07-09 08:51:49 +10:00
R. RyanTM 461ab720e5 libivykis: 0.42.1 -> 0.42.2 (#42991)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libivykis/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 0.42.2 with grep in /nix/store/mpzbl2ic44k0zb14i6vh1jnfgjw991fm-libivykis-0.42.2
- directory tree listing: https://gist.github.com/e262298d600bcbe234280fd968536833
- du listing: https://gist.github.com/b1a6d5fe802c7441fc1f194f04f6b1b5
2018-07-09 00:46:17 +02:00
R. RyanTM d655854b8e libsForQt5.libopenshot-audio: 0.1.5 -> 0.1.6 (#42985)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libopenshot-audio/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/vb21d43jjccq86v505dhqhrb7rfaxv6q-libopenshot-audio-0.1.6/bin/openshot-audio-test-sound had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.1.6 with grep in /nix/store/vb21d43jjccq86v505dhqhrb7rfaxv6q-libopenshot-audio-0.1.6
- directory tree listing: https://gist.github.com/4efbc53208f322153ba4881b6b6eefb9
- du listing: https://gist.github.com/e3a2a71be83163ed2ecdc2aaa0800d83
2018-07-09 00:29:36 +02:00
R. RyanTM 5090cd8139 libsmbios: 2.4.1 -> 2.4.2 (#42983)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libsmbios/versions.

Version release notes (from GitHub):
Compatibility changes to fix man page and includes in some installations

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-battery-ctl had a zero exit code or showed the expected version
- /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-get-ut-data passed the binary check.
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-keyboard-ctl had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-lcd-brightness had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-passwd had a zero exit code or showed the expected version
- /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-state-byte-ctl passed the binary check.
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-sys-info had a zero exit code or showed the expected version
- /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-sys-info-lite passed the binary check.
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-thermal-ctl had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-token-ctl had a zero exit code or showed the expected version
- /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-upflag-ctl passed the binary check.
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-wakeup-ctl had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2/bin/smbios-wireless-ctl had a zero exit code or showed the expected version
- 4 of 13 passed binary check by having a zero exit code.
- 4 of 13 passed binary check by having the new version present in output.
- found 2.4.2 with grep in /nix/store/38kz148d7anxsqcchlqmqjcb4mi34158-libsmbios-2.4.2
- directory tree listing: https://gist.github.com/117a562c97fde114f3fc3c00cd8747c4
- du listing: https://gist.github.com/1b95e63032cd1ceb958e443695bd5cd8
2018-07-09 00:19:32 +02:00
R. RyanTM 16000cf8d3 lxqt.lxqt-qtplugin: 0.12.0 -> 0.13.0 (#42984)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/lxqt-qtplugin/versions.

Version release notes (from GitHub):

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- directory tree listing: https://gist.github.com/c6381d7911d526753a3a9f2ef17dc34e
- du listing: https://gist.github.com/bc019cd05de1faa42bc8d394d3390267
2018-07-09 00:09:43 +02:00
R. RyanTM 385fa8bea5 libtomcrypt: 1.18.1 -> 1.18.2 (#42993)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libtomcrypt/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 1.18.2 with grep in /nix/store/gxcivln6s36ljpx9hy1lq5hlpqfgsxnc-libtomcrypt-1.18.2
- directory tree listing: https://gist.github.com/790645636784c7dcaaf758a811a9cde4
- du listing: https://gist.github.com/b4577fa288333b9d817d01858d90947d
2018-07-09 00:05:45 +02:00
R. RyanTM 53ef7f0c81 jackett: 0.8.1138 -> 0.8.1209 (#42999)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/jackett/versions.

These checks were done:

- built on NixOS
- /nix/store/hlpqjm3nia27yrsvss57828qla6a1x5m-jackett-0.8.1209/bin/Jackett passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.8.1209 with grep in /nix/store/hlpqjm3nia27yrsvss57828qla6a1x5m-jackett-0.8.1209
- directory tree listing: https://gist.github.com/73cb9952f51705ba06c4c820c3466ffa
- du listing: https://gist.github.com/c6920225e6de6c9be6afa6799f4b17d6
2018-07-09 00:03:51 +02:00
R. RyanTM bcebd1f8ef libskk: 1.0.3 -> 1.0.4 (#42997)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/libskk/versions.

Version release notes (from GitHub):
 * Don't consume key release events [#52]
 * Improve hankaku katakana conversion [#51]
 * Use the same typing rule in dict-edit mode [#50]
 * Add `abort-to-latin` and `abort-to-latin-unhandled` command [#48]
 * Add more z-* shortcuts from DDSKK
 * Fix memory leak caused by Vala array conversion
 * Bump build requirements (glib >= 2.36, valadoc >= 0.40)

These checks were done:

- built on NixOS
- /nix/store/bdfn6ravpxm5qrgf8j9zfip4w98d76i9-libskk-1.0.4/bin/skk passed the binary check.
- 1 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 1.0.4 with grep in /nix/store/bdfn6ravpxm5qrgf8j9zfip4w98d76i9-libskk-1.0.4
- directory tree listing: https://gist.github.com/5b1ab808d49b2ef79a30b2188305f5e4
- du listing: https://gist.github.com/3dc4ba1b5b8124a3ac41c17b89fb5260
2018-07-09 00:01:52 +02:00
R. RyanTM 70b33f3883 mate.mate-icon-theme: 1.20.1 -> 1.21.0 (#42995)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mate-icon-theme/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 1.21.0 with grep in /nix/store/6l3n1r4zfs999z3hk768r0ir72xqghsc-mate-icon-theme-1.21.0
- directory tree listing: https://gist.github.com/0653508a8f0a6c74d6329c9d19c2072c
- du listing: https://gist.github.com/85fd2cc12b0cb6c3fe4e84a742736952
2018-07-09 00:01:20 +02:00
R. RyanTM c51c1ababa mate.mate-indicator-applet: 1.20.0 -> 1.20.1 (#42992)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mate-indicator-applet/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 1.20.1 with grep in /nix/store/4rwi8vc4kgvyybi0zjhg67mgqcmdibmq-mate-indicator-applet-1.20.1
- directory tree listing: https://gist.github.com/74f8c4b3af8ba029ade3f3d8561f5014
- du listing: https://gist.github.com/912f8a89025d3eed3952f3fb153bbcb4
2018-07-08 23:55:21 +02:00
R. RyanTM 04d115b5c9 musescore: 2.2.1 -> 2.3 (#42978)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/musescore/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/2v80cx15ym38qn868pcqvz0cqs3whw66-musescore-2.3/bin/musescore had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/2v80cx15ym38qn868pcqvz0cqs3whw66-musescore-2.3/bin/mscore had a zero exit code or showed the expected version
- 0 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 2.3 with grep in /nix/store/2v80cx15ym38qn868pcqvz0cqs3whw66-musescore-2.3
- directory tree listing: https://gist.github.com/304584c69aaf2dab752afab6be611a00
- du listing: https://gist.github.com/e865dcb576e0494795fa4676b35a241c
2018-07-08 23:53:24 +02:00
R. RyanTM e5721be7fd lxqt.lximage-qt: 0.6.0 -> 0.7.0 (#42989)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/lximage-qt/versions.

Version release notes (from GitHub):

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/wr81hpk4m9s0pifavbghk1pvsm1sq2k4-lximage-qt-0.7.0/bin/lximage-qt had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.7.0 with grep in /nix/store/wr81hpk4m9s0pifavbghk1pvsm1sq2k4-lximage-qt-0.7.0
- directory tree listing: https://gist.github.com/ddddaf2eec633387ab34637a2853b12a
- du listing: https://gist.github.com/1c221aeb7c136e1c8cdd044093a18e7c
2018-07-08 23:51:15 +02:00
R. RyanTM 10801de6f7 nomacs: 3.8.1 -> 3.10.0 (#42979)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/nomacs/versions.

Version release notes (from GitHub):
- anti-aliasing improved
- printing improved
- print multiple pages from thumbnail preview
- animiated WebP support
- JPG compressed TIFFs supported
- batch cropping added
- PSD lib updated
- new translations: Bosnian, Croation, and Serbian
- Updates (Windows)
	- Qt 5.9.3 -> 5.11.0
	- OpenCV 3.3.1 -> 3.4.1

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/q71m1n5mjk79cas4z1f27hf7z529i3i1-nomacs-3.10.0/bin/nomacs had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/q71m1n5mjk79cas4z1f27hf7z529i3i1-nomacs-3.10.0/bin/.nomacs-wrapped had a zero exit code or showed the expected version
- 0 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 3.10.0 with grep in /nix/store/q71m1n5mjk79cas4z1f27hf7z529i3i1-nomacs-3.10.0
- directory tree listing: https://gist.github.com/14846463d97d16523c214bc8bd8979fe
- du listing: https://gist.github.com/51e595d9a157c9038cf94e72d01952c5
2018-07-08 23:48:38 +02:00
R. RyanTM 033f5d38b8 lxqt.qterminal: 0.8.0 -> 0.9.0 (#42963)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/qterminal/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/9bvz8bq3vsclmvyziswscn8hxkgsyvv4-qterminal-0.9.0/bin/qterminal had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.9.0 with grep in /nix/store/9bvz8bq3vsclmvyziswscn8hxkgsyvv4-qterminal-0.9.0
- directory tree listing: https://gist.github.com/76f97d0d578674b7b80479185f5029e5
- du listing: https://gist.github.com/56dfa13e4cd8c75bf2d88861ccd8fca1
2018-07-08 23:41:46 +02:00
R. RyanTM 3608b026dd mate.mate-netbook: 1.20.0 -> 1.20.1 (#42982)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mate-netbook/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/w9xig0615w28s0nyrbawsfgkcrbk5ms9-mate-netbook-1.20.1/bin/mate-maximus had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/w9xig0615w28s0nyrbawsfgkcrbk5ms9-mate-netbook-1.20.1/bin/.mate-maximus-wrapped had a zero exit code or showed the expected version
- 0 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 1.20.1 with grep in /nix/store/w9xig0615w28s0nyrbawsfgkcrbk5ms9-mate-netbook-1.20.1
- directory tree listing: https://gist.github.com/807a897f629ab3591b06e1d44240a2bb
- du listing: https://gist.github.com/1924abc657411636ba23204706014b19
2018-07-08 23:39:16 +02:00
R. RyanTM 1312f7dad3 mate.mate-user-share: 1.20.0 -> 1.20.1 (#42981)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mate-user-share/versions.

These checks were done:

- built on NixOS
- /nix/store/9g73a9gpa3ddsvkzfzwx1hqv7m94mh2q-mate-user-share-1.20.1/bin/mate-file-share-properties passed the binary check.
- /nix/store/9g73a9gpa3ddsvkzfzwx1hqv7m94mh2q-mate-user-share-1.20.1/bin/.mate-file-share-properties-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 1.20.1 with grep in /nix/store/9g73a9gpa3ddsvkzfzwx1hqv7m94mh2q-mate-user-share-1.20.1
- directory tree listing: https://gist.github.com/51b81abb3d9b6a416984b6ee3ee536e9
- du listing: https://gist.github.com/04b8e2188f0bb4a452b0730f6731d102
2018-07-08 23:38:43 +02:00
R. RyanTM b935479321 xawtv: 3.104 -> 3.105 (#42935)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/xawtv/versions.

These checks were done:

- built on NixOS
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/dump-mixers passed the binary check.
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/record passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/showriff had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/showqt had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/streamer passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/webcam had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/ttv had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/radio passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/fbtv had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/v4l-info had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/v4l-conf had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/ntsc-cc passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/v4lctl had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/propwatch had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/xawtv-remote had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/rootv passed the binary check.
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/xawtv had a zero exit code or showed the expected version
- Warning: no invocation of /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/pia had a zero exit code or showed the expected version
- /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105/bin/subtitles passed the binary check.
- 7 of 19 passed binary check by having a zero exit code.
- 0 of 19 passed binary check by having the new version present in output.
- found 3.105 with grep in /nix/store/838xpckarxg6ran25h7pcvshcpypnlpp-xawtv-3.105
- directory tree listing: https://gist.github.com/7c238e8d1ae9a5f2d37671aec9de9e14
- du listing: https://gist.github.com/0f4cfe62d77dd008d93b8ceff46d9b36
2018-07-08 23:37:09 +02:00
R. RyanTM 6e7bbcabfd mate.eom: 1.20.1 -> 1.21.0 (#43028)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/eom/versions.

These checks were done:

- built on NixOS
- /nix/store/hk60glvzvq8psbzxj585dy6q6dhyl0ig-eom-1.21.0/bin/eom passed the binary check.
- /nix/store/hk60glvzvq8psbzxj585dy6q6dhyl0ig-eom-1.21.0/bin/.eom-wrapped passed the binary check.
- 2 of 2 passed binary check by having a zero exit code.
- 0 of 2 passed binary check by having the new version present in output.
- found 1.21.0 with grep in /nix/store/hk60glvzvq8psbzxj585dy6q6dhyl0ig-eom-1.21.0
- directory tree listing: https://gist.github.com/c4f2ea89bae8c82147f2b52c14253958
- du listing: https://gist.github.com/bd1cfd9e324adb177aa55542d4ac27ac
2018-07-08 23:35:03 +02:00
Silvan Mosberger 4b9985c668
Merge pull request #42861 from Infinisil/fix/idris-forks
Idris packages clean ups and updates
2018-07-08 23:24:11 +02:00
Jeff Ames 5051c68c73 cpdf: add license (#43229) 2018-07-08 22:11:19 +01:00
Pascal Wittmann e9c4179c3f
klaus: fix hash 2018-07-08 21:40:07 +02:00
Tim Steinbach f4a501692e
linux: Remove 4.16 leftovers 2018-07-08 15:17:18 -04:00
Tim Steinbach 0c69a75009
linux: 4.17.4 -> 4.17.5 2018-07-08 15:16:28 -04:00
Tim Steinbach 9c2389a712
linux: 4.14.53 -> 4.14.54 2018-07-08 15:16:28 -04:00