Commit Graph

11910 Commits

Author SHA1 Message Date
jeaye
047e8b5e80 Add SSL support to slrn 2016-01-01 11:38:49 +08:00
Reno Reckling
10a87beb7e murmur_git: fix failing build because of changed ice file paths 2015-12-31 20:01:41 +01:00
Aristid Breitkreuz
0c7db6c696 jpegoptim: init at 1.4.3 2015-12-31 16:55:50 +01:00
Michael Raskin
7dc2f1632c qpdfview: 0.4.15 -> 0.4.16 2015-12-31 16:51:13 +01:00
Peter Simons
a174c20de8 Merge pull request #12048 from exi/fix-wireshark-qt
wireshark-qt: make wireshark-qt build and run again
2015-12-31 15:07:21 +01:00
Reno Reckling
28fd7afd02 wireshark-qt: make wireshark-qt build and run again 2015-12-31 13:56:50 +01:00
Luis Pedro Coelho
7a6debc791 zotero: 4.0.26 -> 4.0.28.8
The previous version was too old for the current version of firefox and
syncing failed with an error: "req.sendAsBinary is not a function". This
new version solves this.

See https://forums.zotero.org/discussion/48500/bug-with-firefox-plugin/
2015-12-31 13:13:31 +01:00
Arseniy Seroka
b9bfedd64d Merge pull request #11999 from kamilchm/qtile-0.10.3
qtile: 0.10.2 -> 0.10.3
2015-12-31 14:56:50 +03:00
Arseniy Seroka
640d861d13 Merge pull request #12020 from ehmry/windowlab
WindowLab: initial pkg at 1.40
2015-12-30 18:07:20 +03:00
Vladimír Čunát
468f698f60 rsync: security update 3.1.1 -> 3.1.2
This should fix CVE-2014-9512.
https://download.samba.org/pub/rsync/src/rsync-3.1.2-NEWS
2015-12-30 12:06:00 +01:00
Emery
952563d620 WindowLab: initial pkg at 1.40
http://nickgravgaard.com/windowlab/
2015-12-30 11:10:30 +01:00
Vladimír Čunát
fff938f72a liferea: maintenance update 1.10.16 -> 1.10.17
Also refactor meta.
2015-12-30 10:59:02 +01:00
Reno Reckling
a1e0894cb4 ding: init at 1.8 (close #11989)
vcunat improved meta.
2015-12-29 21:03:19 +01:00
Thomas Tuegel
c919bb82af Merge branch 'emacs-packages' 2015-12-29 13:25:11 -06:00
Thomas Tuegel
c266de63ee melpa-stable-packages: use recipeFile 2015-12-29 13:24:42 -06:00
Thomas Tuegel
1d8e3db9ff melpa-packages: use recipeFile 2015-12-29 13:24:28 -06:00
Domen Kožar
6da327b433 Chromium updates 2015-12-29 19:32:38 +01:00
Arseniy Seroka
9544823b6e Merge pull request #12014 from ehmry/ratox
ratox: fix src hash mismatch
2015-12-29 19:32:10 +03:00
Vladimír Čunát
08dd527cc7 Merge branch 'staging'
http://hydra.nixos.org/eval/1234895
The mass errors on Hydra seem transient; I verified ghc on i686-linux.
Only darwin jobs are queued ATM. There's a libpng security update
included in this merge, so I don't want to wait too long.
2015-12-29 17:14:35 +01:00
Charles Strahan
b6c06e216b ruby: new bundler infrastructure
This improves our Bundler integration (i.e. `bundlerEnv`).

Before describing the implementation differences, I'd like to point a
breaking change: buildRubyGem now expects `gemName` and `version` as
arguments, rather than a `name` attribute in the form of
"<gem-name>-<version>".

Now for the differences in implementation.

The previous implementation installed all gems at once in a single
derivation. This was made possible by using a set of monkey-patches to
prevent Bundler from downloading gems impurely, and to help Bundler
find and activate all required gems prior to installation. This had
several downsides:

* The patches were really hard to understand, and required subtle
  interaction with the rest of the build environment.
* A single install failure would cause the entire derivation to fail.

The new implementation takes a different approach: we install gems into
separate derivations, and then present Bundler with a symlink forest
thereof. This has a couple benefits over the existing approach:

* Fewer patches are required, with less interplay with the rest of the
  build environment.
* Changes to one gem no longer cause a rebuild of the entire dependency
  graph.
* Builds take 20% less time (using gitlab as a reference).

It's unfortunate that we still have to muck with Bundler's internals,
though it's unavoidable with the way that Bundler is currently designed.
There are a number improvements that could be made in Bundler that would
simplify our packaging story:

* Bundler requires all installed gems reside within the same prefix
  (GEM_HOME), unlike RubyGems which allows for multiple prefixes to
  be specified through GEM_PATH. It would be ideal if Bundler allowed
  for packages to be installed and sourced from multiple prefixes.
* Bundler installs git sources very differently from how RubyGems
  installs gem packages, and, unlike RubyGems, it doesn't provide a
  public interface (CLI or programmatic) to guide the installation of a
  single gem. We are presented with the options of either
  reimplementing a considerable portion Bundler, or patch and use parts
  of its internals; I choose the latter. Ideally, there would be a way
  to install gems from git sources in a manner similar to how we drive
  `gem` to install gem packages.
* When a bundled program is executed (via `bundle exec` or a
  binstub that does `require 'bundler/setup'`), the setup process reads
  the Gemfile.lock, activates the dependencies, re-serializes the lock
  file it read earlier, and then attempts to overwrite the Gemfile.lock
  if the contents aren't bit-identical. I think the reasoning is that
  by merely running an application with a newer version of Bundler, you'll
  automatically keep the Gemfile.lock up-to-date with any changes in the
  format. Unfortunately, that doesn't play well with any form of
  packaging, because bundler will immediately cause the application to
  abort when it attempts to write to the read-only Gemfile.lock in the
  store. We work around this by normalizing the Gemfile.lock with the
  version of Bundler that we'll use at runtime before we copy it into
  the store. This feels fragile, but it's the best we can do without
  changes upstream, or resorting to more delicate hacks.

With all of the challenges in using Bundler, one might wonder why we
can't just cut Bundler out of the picture and use RubyGems. After all,
Nix provides most of the isolation that Bundler is used for anyway.

The problem, however, is that almost every Rails application calls
`Bundler::require` at startup (by way of the default project templates).
Because bundler will then, by default, `require` each gem listed in the
Gemfile, Rails applications are almost always written such that none of
the source files explicitly require their dependencies. That leaves us
with two options: support and use Bundler, or maintain massive patches
for every Rails application that we package.

Closes #8612
2015-12-29 09:30:21 -05:00
Arseniy Seroka
729211de7a Merge pull request #11917 from jerith666/subgit
subgit: init at 3.1.0
2015-12-29 14:57:47 +03:00
Emery
b604318ad8 ratox: fix src hash mismatch 2015-12-29 11:44:07 +01:00
Matt McHenry
090efc2907 subgit: init at 3.1.0 2015-12-28 22:59:23 -05:00
Domen Kožar
a27a1f9f8e Merge pull request #12007 from mayflower/spotify-openssl
spotify: Use specific openssl version
2015-12-28 23:15:40 +01:00
Robin Gloster
4f6c12de30 spotify: Use specific openssl version
Spotify needs an ABI compatible libssl as it is a binary.
Only changes things if openssl is aliased to another libssl.
2015-12-28 21:52:29 +00:00
Reno Reckling
bfd77fdbbe amarok: add necessary dependencies to fix failing build 2015-12-28 22:49:36 +01:00
Robin Gloster
729fb7a440 virt-viewer: fix build and clean up 2015-12-28 21:44:12 +00:00
Domen Kožar
af25cc9427 fix virtviewer build 2015-12-28 22:39:22 +01:00
Domen Kožar
4e4931507b fix mesos build, fixes #11638 2015-12-28 22:28:38 +01:00
Stefan Junker
e3630bcf89 rkt: align stage1 information with upstream source
We rely on the upstream tests and hence should not change the
constellation.

See: https://github.com/coreos/rkt/blob/v0.14.0/stage1/usr_from_coreos/coreos-common.mk

Additionally add the "fly" stage1.
2015-12-28 14:20:12 +01:00
Kamil Chmielewski
cb0ddd9d6a qtile: 0.10.2 -> 0.10.3 2015-12-28 11:02:05 +01:00
Peter Simons
71e0a6ae4f Merge pull request #11947 from exi/taglib_extas-fix
taglib-extras: make taglib-extras work with taglib > 1.9
2015-12-27 23:26:46 +01:00
Tobias Geerinckx-Rice
4ef9b7558f saneBackendsGit: 2015-12-20 -> 2015-12-27 2015-12-27 22:56:43 +01:00
Arseniy Seroka
e5057ef8de Merge pull request #11973 from wedens/rtv_1_8_0
rtv: 1.7.0 -> 1.8.0
2015-12-27 23:15:31 +03:00
Thomas Tuegel
00aac09d24 melpaPackages: actually build latest packages 2015-12-27 11:05:53 -06:00
Thomas Tuegel
74a1b20108 melpa-stable-packages 2015-12-27 2015-12-27 10:35:34 -06:00
Thomas Tuegel
9602a20835 melpa-packages 2015-12-27 2015-12-27 10:14:57 -06:00
Thomas Tuegel
3eda86cfea elpa-packages 2015-12-27 2015-12-27 08:33:28 -06:00
Domen Kožar
bd3ef3d1be Merge pull request #11971 from Denommus/master
Adding which and curl as dependencies to playonlinux
2015-12-27 11:04:13 +01:00
wedens
d776afef09 rtv: 1.7.0 -> 1.8.0 2015-12-27 14:02:21 +06:00
Yuri Albuquerque
9c6fecbda0 playonlinux: needs which and curl during runtime 2015-12-27 01:33:06 -04:00
Tobias Geerinckx-Rice
8b4273a65d saneBackends: add generic extraFirmware support
This usurps the model-specific gt68xxFirmware and snapscanFirmware,
which are still supported for backwards compatibility – hopefully
not forever.
2015-12-26 19:50:17 +01:00
Tobias Geerinckx-Rice
c05165ba5c saneBackends: don't add epson2 to dll.conf
It's already in there by default.
2015-12-26 19:50:17 +01:00
Tobias Geerinckx-Rice
cf699caf4d saneBackends: don't add option for 1 udev rule 2015-12-26 19:50:17 +01:00
Reno Reckling
e94139f8c8 Add comments identifying workarounds 2015-12-26 18:42:03 +01:00
Robert Helgesson
69ba5b12d9 gpsprune: add desktop item
Also add platforms to package meta section.
2015-12-26 18:04:58 +01:00
Robert Helgesson
c930e03e60 josm: add desktop item
Also add platforms to package meta section.
2015-12-26 18:03:50 +01:00
Reno Reckling
a25de32033 cantata: fix taglib search 2015-12-26 18:00:32 +01:00
Reno Reckling
4400f01c0b amarok: fix taglib search 2015-12-26 18:00:20 +01:00
Charles Strahan
9e34985430 w3m: use Arch patches
Fix the built-in help (perl.patch)
  https://bugs.archlinux.org/task/45608

Properly link w3mimgdisplay to x11
  https://bbs.archlinux.org/viewtopic.php?id=196093

Fix rendering bug in w3mimgdisplay (w3m_rgba.patch)
  https://github.com/hut/ranger/issues/86

Don't ignore input tags with invalid types (form_unkown.patch)
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=615843

Fix a segfault when using https (https.patch)
  https://bugzilla.redhat.com/show_bug.cgi?id=707994
2015-12-25 15:26:14 -05:00
Arseniy Seroka
93d26d7206 Merge pull request #11935 from taku0/thunderbird-bin-38.5.0
thunderbird-bin: 38.4.0 -> 38.5.0
2015-12-25 17:26:54 +03:00
Arseniy Seroka
0b6f76a1d3 Merge pull request #11934 from makefu/cvs2svn
cvs2svn: 2.0.1 -> 2.4.0
2015-12-25 17:26:43 +03:00
Arseniy Seroka
6a9c0a4010 Merge pull request #11933 from taku0/firefox-bin-43.0.2
firefox-bin: 43.0.1 -> 43.0.2
2015-12-25 17:26:17 +03:00
Arseniy Seroka
97ece3b66b Merge pull request #11932 from leenaars/patch-3
blink: 1.4.1 -> 1.4.2
2015-12-25 17:26:08 +03:00
makefu
47f17939c2 cvs2nix: 2.0.1 -> 2.4.0 2015-12-24 16:58:01 +01:00
taku0
66cddef221 thunderbird-bin: 38.4.0 -> 38.5.0 2015-12-25 00:21:01 +09:00
taku0
fe287dea9b firefox-bin: 43.0.1 -> 43.0.2 2015-12-24 23:08:28 +09:00
Robert Helgesson
d491005da1 josm: init at 9060 2015-12-24 14:50:11 +01:00
Robert Helgesson
8c4bfb747e gpsprune: init at 18.2 2015-12-24 14:48:57 +01:00
leenaars
767f145a60 blink: 1.4.1 -> 1.4.2 2015-12-24 14:41:23 +01:00
Aristid Breitkreuz
6ef92e0d11 Merge pull request #11914 from nckx/update-darktable
darktable: 1.6.8 -> 1.6.9
2015-12-24 13:11:41 +01:00
Charles Strahan
c5497a7608 Merge pull request #11072 from svend/terminal-notifier-args
terminal-notifier: Pass arguments in wrapper script
2015-12-23 21:29:56 -06:00
Tobias Geerinckx-Rice
f5b52aa382 clipgrab: 3.5.5 -> 3.5.6 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
9ecc0612f9 vnstat: add image output (gd) support 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
b8a7875d64 vnstat: 1.14 -> 1.15 & add longDescription
Changes:
- Fix: XML output had extra commas, broken since previous version
- Fix: unintended shared pointer modification in mosecs() sometimes resulted
  in wrong month name to be shown for the current month
- Fix: possible buffer overflow in /proc/net/dev parsing, requires corrupted
  content in /proc/net/dev or use of address sanitizer
- Use ANSI escape codes in -l and -tr modes for cursor location manipulation
  instead of printing backspaces, hide cursor while output is active
- Improve database import robustness
- Improve support for Asian UTF-8 date strings
- Replace hand written Makefiles with Autotools
- Add --alwaysadd parameter to daemon for allowing automatic addition of
  interfaces even if the database directory was populated during startup
2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
fd9e991616 saneBackends: remove udevSupport == hotplugSupport 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
6a76cd1336 saneBackends: drop libusb override; use libusb1 directly 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
eeca8c0441 saneBackends: add translations (gettext) 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
d398926993 saneBackends: simplify buildInputs 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
d91765d2e0 saneBackends: append epson2 to dll.conf if installed 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
61106207cd saneBackends: remove some redundancies (no hash change) 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
58bf694071 saneBackends: factor out common code into generic.nix
The git version was duplicated from the stable one and the two had
begun to diverge significantly. For example, commit
88d731925d fixed a supposedly real
bug — but only in the stable package.

Factor out the shared code to avoid trouble — or worse, subtle
differences or bugs — in future.
2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
ffc04a67e3 sanebackends{,Git}: add avahi support 2015-12-24 04:05:57 +01:00
Tobias Geerinckx-Rice
94dbaa7dbf saneBackends{,Git}: add SNMP support 2015-12-24 04:05:57 +01:00
Robin Gloster
f8ee267576 w3m: do not always link to RAND_egd for openssl
This fixes the build for libressl >= 2.3 as RAND_egd has been removed as
it is insecure.
2015-12-23 22:10:01 +00:00
Tobias Geerinckx-Rice
6ddca8f9b0 darktable: 1.6.8 -> 1.6.9 2015-12-23 23:07:16 +01:00
Arseniy Seroka
afcac3f21f Merge pull request #11907 from ericbmerritt/hub-2.2.2
hub: 2.2.1 -> 2.2.2
2015-12-23 23:09:55 +03:00
Franz Pletz
cbada77b0b clawsMail: 3.13.0 -> 3.13.1 (CVE-2015-8614)
Fixes a remotely triggerable buffer overflow.
http://www.thewildbeast.co.uk/claws-mail/bugzilla/show_bug.cgi?id=3557
Close #11910.
2015-12-23 18:48:38 +01:00
Eric Merritt
6108bb8971 hub: 2.2.1 -> 2.2.2 2015-12-23 08:37:02 -08:00
Thomas Tuegel
077a3102cc dropbox: 3.12.5 -> 3.12.6 2015-12-23 08:36:50 -06:00
Nicole Angel
90e881eece keepass: load plugins from store paths, fixes #11206 2015-12-23 02:12:36 +01:00
Nicole Angel
e99beec0e1 Keefox (keepass plugin): init at 1.5.4 2015-12-23 02:12:15 +01:00
Tim Williams
e2a25433b2 copyq: init at 2.5.0, fixed #11887 2015-12-23 01:58:59 +01:00
Nathan Zadoks
971d580a00 spotify: fix missing ffmpeg_0_10 dependency, fixes #11877
This makes local playback work.
2015-12-23 01:41:01 +01:00
Derek Gonyeo
9671674959 acbuild: 0.1.1 -> 0.2.2 and moved to own default.nix, fixes #11889 2015-12-23 01:33:37 +01:00
Derek Gonyeo
540c520cf6 rkt: bump version 0.13.0 -> 0.14.0, fixes #11885 2015-12-23 01:27:26 +01:00
Thomas Tuegel
a9ca11e82a melpa-stable-packages: fix dependency specification 2015-12-22 06:55:34 -06:00
Thomas Tuegel
f35c3d03d6 melpa-packages: fix dependency specification 2015-12-22 06:55:25 -06:00
Thomas Tuegel
26a7470ce6 elpa-packages: fix dependency specification 2015-12-22 06:55:10 -06:00
Thomas Tuegel
b3949f29cd emacsPackagesNg.ack-menu: broken upstream 2015-12-22 06:50:21 -06:00
koral
3c85ff442d nano: 2.4.2 -> 2.5.0, fixes #11829 2015-12-22 01:24:12 +01:00
John Wiegley
d80aa87b13 coqPackages_8_5.coq: 8.5b2 -> 8.5rc1 2015-12-21 16:12:43 -08:00
obadz
29c676e73d pdfmod: init at 0.9.1 (close #11417)
vcunat did some cosmetic changes, such as joining lines
because we seem to rarely use one-identifier-per-line style,
or fixing hyena description to conform to our rules.
2015-12-21 15:19:36 +01:00
Nathan Zadoks
d5e5a7dbc3 docker: 1.9.0 -> 1.9.1 2015-12-21 12:18:22 +01:00
Pascal Wittmann
074ab57d68 Merge pull request #11849 from bobvanderlinden/lsyncd-2.1.6
lsyncd: 2.1.5 -> 2.1.6
2015-12-21 08:50:35 +01:00
Jascha Geerds
9684726ba6 Merge pull request #11850 from rycee/bump/keepassx
keepassx: 0.4.3 -> 0.4.4
2015-12-21 08:05:35 +01:00
Robert Helgesson
6742104cbe keepassx2: 2.0beta2 -> 2.0
Also switch to official download URL.
2015-12-20 22:51:09 +01:00
Robert Helgesson
1253cd926c keepassx: 0.4.3 -> 0.4.4
Fixes CVE-2015-8359 and CVE-2015-8378. Also switch URL to new download
location.
2015-12-20 22:26:10 +01:00
Bob van der Linden
760ec896ae lsyncd: 2.1.5 -> 2.1.6 2015-12-20 21:56:28 +01:00
Tobias Geerinckx-Rice
56f6be2583 saneBackendsGit 1.0.25-180-g6d8b8d5 -> 2015-12-20 2015-12-20 19:58:50 +01:00
Thomas Tuegel
5ff1c58606 Merge pull request #11839 from ttuegel/qt-5.4
Qt infrastructure update
2015-12-20 08:11:52 -06:00
Thomas Tuegel
85c19f8fb4 smtube: Qt 5 infrastructure update 2015-12-20 07:56:55 -06:00
Thomas Tuegel
d534d5f097 smplayer: Qt 5 infrastructure upgrade 2015-12-20 07:56:55 -06:00
Thomas Tuegel
5810f0e7ed tomahawk: Qt 5 infrastructure upgrade 2015-12-20 07:56:55 -06:00
Thomas Tuegel
54bcdcc0a7 teamspeak_client: Qt 5 infrastructure update 2015-12-20 07:56:54 -06:00
Thomas Tuegel
143d6123dc qutebrowser: Qt 5 infrastructure update 2015-12-20 07:56:54 -06:00
Thomas Tuegel
1cd5505a9f telegram-qml: Qt 5 infrastructure update 2015-12-20 07:56:53 -06:00
Thomas Tuegel
126188be5c cutegram: Qt 5 infrastructure updates 2015-12-20 07:56:52 -06:00
Thomas Tuegel
541b2f20de fritzing: Qt 5 infrastructure update 2015-12-20 07:56:50 -06:00
Thomas Tuegel
fc13f37f2c firestr: Qt 5 infrastructure update 2015-12-20 07:56:50 -06:00
Thomas Tuegel
de5898a495 qtox: Qt 5 infrastructure update 2015-12-20 07:56:49 -06:00
Thomas Tuegel
249e5f732a linssid: Qt 5 infrastructure update 2015-12-20 07:56:49 -06:00
Thomas Tuegel
4e71ebd7c9 dfilemanager: Qt 5 infrastructure update 2015-12-20 07:56:48 -06:00
Thomas Tuegel
88514fdf58 robomongo: Qt 5 infrastructure update 2015-12-20 07:56:48 -06:00
Thomas Tuegel
06f9ac71dc gpsbabel: Qt 5 infrastructure update 2015-12-20 07:56:48 -06:00
Thomas Tuegel
121f944d0d qtpass: Qt 5 infrastructure update 2015-12-20 07:56:47 -06:00
Thomas Tuegel
732de87786 twmn: Qt 5 infrastructure update 2015-12-20 07:56:47 -06:00
Thomas Tuegel
36dea909b7 calibre: Qt 5 infrastructure update 2015-12-20 07:56:47 -06:00
Thomas Tuegel
e292103d46 tiled: Qt 5 infrastructure update 2015-12-20 07:56:46 -06:00
Thomas Tuegel
07a79f2a9b sigil: Qt 5 infrastructure update 2015-12-20 07:56:46 -06:00
Thomas Tuegel
5af2e7b76e rapcad: Qt 5 infrastructure update 2015-12-20 07:56:46 -06:00
Thomas Tuegel
3e6a70d974 phototonic: Qt 5 infrastructure update 2015-12-20 07:56:45 -06:00
Thomas Tuegel
8bbbb31f3f awesomebump: Qt 5 infrastructure update 2015-12-20 07:56:45 -06:00
Thomas Tuegel
1f28d76190 luminance-hdr: Qt 5 infrastructure update 2015-12-20 07:56:45 -06:00
Thomas Tuegel
d086276c1e photoqt: Qt 5 infrastructure update 2015-12-20 07:56:44 -06:00
Thomas Tuegel
b829137151 apitrace: Qt 5 infrastructure update 2015-12-20 07:56:44 -06:00
Thomas Tuegel
a0bae9b571 obs-studio: Qt 5 infrastructure update 2015-12-20 07:56:44 -06:00
Thomas Tuegel
ccdbc22836 shotcut: Qt 5 infrastructure update 2015-12-20 07:56:43 -06:00
Thomas Tuegel
d405316398 bomi: Qt 5 infrastructure update 2015-12-20 07:56:43 -06:00
Thomas Tuegel
7450865827 antimony: Qt 5 infrastructure update 2015-12-20 07:56:36 -06:00
taku0
e24211df8f firefox-bin: 43.0 -> 43.0.1 2015-12-20 22:26:25 +09:00
Peter Simons
e5b15f6b52 Merge pull request #11838 from k0ral/git
git: 2.6.3 -> 2.6.4
2015-12-20 11:55:57 +01:00
Tobias Geerinckx-Rice
1b6128cdc9 clipgrab: 3.5.4 -> 3.5.5 2015-12-20 03:34:43 +01:00
Arseniy Seroka
fa8f15614c Merge pull request #11833 from k0ral/mediainfo
mediainfo: 0.7.79 -> 0.7.80
2015-12-19 22:04:05 +03:00
Thomas Tuegel
3f30fce5d3 Merge branch 'bendlas-update-dropbox-master' 2015-12-19 12:28:45 -06:00
koral
016e88b2d2 git: 2.6.3 -> 2.6.4 2015-12-19 17:37:37 +00:00
Herwig Hochleitner
d3d39376a2 dropbox: 3.12.4 -> 3.12.5 2015-12-19 17:45:59 +01:00
koral
563ea391e9 mediainfo: 0.7.79 -> 0.7.80 2015-12-19 16:33:50 +00:00
Arseniy Seroka
e2d8b134c6 Merge pull request #11827 from k0ral/ncmpcpp
ncmpcpp: 0.6.7 -> 0.7
2015-12-19 19:04:39 +03:00
Thomas Tuegel
274678b38c melpa-stable-packages: fix evaluation error 2015-12-19 09:49:57 -06:00
Thomas Tuegel
3fbd697b24 melpa-packages: fix evaluation error 2015-12-19 09:49:23 -06:00
Thomas Tuegel
752e4095ec melpa-stable-packages: fix evaluation error 2015-12-19 09:44:55 -06:00
Thomas Tuegel
e5b082fc7b melpa-packages: fix evaluation error 2015-12-19 09:44:21 -06:00
Thomas Tuegel
540d028bf5 Merge pull request #11750 from ttuegel/emacs-packages
Emacs packages
2015-12-19 09:33:45 -06:00
Thomas Tuegel
fbc345fd69 melpa-stable-packages: use fetchFromGitLab 2015-12-19 09:32:25 -06:00
Thomas Tuegel
ecc50e9285 melpa-packages: use fetchFromGitLab 2015-12-19 09:32:24 -06:00
Thomas Tuegel
be568d55da melpa-stable-packages: include fetchFromGitHub 2015-12-19 09:32:24 -06:00
Thomas Tuegel
b72161608a melpa-packages: include fetchFromGitHub 2015-12-19 09:32:24 -06:00
Thomas Tuegel
c39058852e elpa-packages 2015-12-18 2015-12-19 09:32:23 -06:00
Thomas Tuegel
df4a984c60 melpa-stable-packages 2015-12-18 2015-12-19 09:32:23 -06:00
Thomas Tuegel
8eabd09087 melpa-packages 2015-12-18 2015-12-19 09:32:23 -06:00
Thomas Tuegel
e86f93eada melpa-stable-packages: add instructions for updating 2015-12-19 09:32:20 -06:00
Thomas Tuegel
c6a5ade24b melpa-packages: add instructions for updating 2015-12-19 09:32:20 -06:00
Thomas Tuegel
8126ae8c7a elpa-packages: add instructions for updating 2015-12-19 09:32:19 -06:00
Edward Tjörnhammar
c42f9f5f01 idea.idea-{community,ultimate}: 15.0.1 -> 15.0.2 2015-12-19 13:35:44 +01:00
koral
e8aee16550 ncmpcpp: 0.6.7 -> 0.7 2015-12-19 11:05:24 +00:00
Pascal Wittmann
76eae695c7 Merge pull request #11319 from taku0/thunderbird-bin-38.4.0
thunderbird-bin: 38.3.0 -> 38.4.0
2015-12-18 08:50:59 +01:00
Domen Kožar
59455da528 Merge pull request #11799 from flosse/zdfmediathk
pkgs.zdfmediathk: 9 -> 10
2015-12-18 01:44:09 +01:00
Markus Kohlhase
61420e7ea9 pkgs.zdfmediathk: 9 -> 10 2015-12-18 00:43:07 +01:00
Tobias Geerinckx-Rice
535b4279c7 ipad_charge, simple-scan: libusb{-compat -> 1} 2015-12-17 23:51:43 +01:00
Rickard Nilsson
c634e5cd24 Merge pull request #11730 from spwhitt/mopidy
Mopidy Improvements
2015-12-17 20:42:13 +01:00
Pascal Wittmann
7dfe60b509 Merge pull request #11763 from DamienCassou/new-recordmydesktop
recordmydesktop: init at 0.3.8-svn602
2015-12-17 16:19:24 +01:00
Pascal Wittmann
128c2bd3e3 Merge pull request #11709 from mcmtroffaes/feature/gosmore-svn-externals
gosmore: fix hash again and disable svn externals
2015-12-17 15:53:31 +01:00
Thomas Tuegel
a338959da6 melpaStablePackages: don't import all of pkgs 2015-12-17 07:23:50 -06:00
Thomas Tuegel
28af093438 melpaPackages: don't import all of pkgs 2015-12-17 07:23:50 -06:00
Thomas Tuegel
a4f4d1717d elpaPackages: don't import all of pkgs 2015-12-17 07:23:50 -06:00
Thomas Tuegel
9f55d3f29f elpaPackages: fix typo in midi-kbd 2015-12-17 07:23:50 -06:00
Thomas Tuegel
ccc8265d44 melpa-stable-packages: 2015-12-16
Fixes Git hashes by using `nix-prefetch-git --fetch-submodules`.
2015-12-17 07:23:50 -06:00
Thomas Tuegel
bf9b4b03d5 elpa-packages: mark broken packages
These packages fail to build on Hydra.
2015-12-17 07:23:50 -06:00
Thomas Tuegel
59f497bc4d melpa-packages: 2015-12-15
Fixes Git hashes by using `nix-prefetch-git --fetch-submodules`.
2015-12-17 07:23:50 -06:00
Thomas Tuegel
f574f1c9c9 melpaPackages: fix cvsRoot attribute name 2015-12-17 07:23:50 -06:00
Thomas Tuegel
8e655250bd emacsPackagesNg: add all of MELPA 2015-12-17 07:23:50 -06:00
Thomas Tuegel
4e99a11653 melpa-packages 2015-12-14 2015-12-17 07:23:50 -06:00
Thomas Tuegel
1210eafb8e melpa-stable-packages 2015-12-14 2015-12-17 07:23:50 -06:00
Thomas Tuegel
3cc7e04502 elpa-packages 2015-12-14 2015-12-17 07:23:50 -06:00
Nikolay Amiantov
8c1770769f flashplayer: fix 32-bit version 2015-12-17 15:09:24 +03:00
Arseniy Seroka
326801e0ac Merge pull request #11758 from taku0/firefox-bin-43.0
firefox-bin: 42.0 -> 43.0
2015-12-17 13:05:57 +03:00
Peter Simons
95dc945759 Merge pull request #11774 from ip1981/ip1981/git-crypt
git-crypt needs GnuPG
2015-12-17 11:03:27 +01:00
Igor Pashev
85375fc5fc git-crypt needs GnuPG 2015-12-17 11:00:50 +03:00
Arseniy Seroka
330afe9f4e Merge pull request #11075 from mogorman/pcb
pcb: new package
2015-12-17 09:13:54 +03:00
Damien Cassou
1bb68f0a5b recordmydesktop: init at 0.3.8-svn602 2015-12-17 06:47:02 +01:00
Thomas Tuegel
0a81a0d8ff kde5: Frameworks 5.17, Plasma 5.5.1, Applications 15.12.0
The stable `kde5` attribute is updated to these versions. The old
versions have been removed.
2015-12-16 19:08:06 -06:00
Matthew O'Gorman
09aff6c104
pcb: init at 20140316 2015-12-16 19:29:17 -05:00
Thomas Tuegel
8cf6b39833 Merge pull request #11769 from Profpatsch/cutegram
cutegram: fix version in name
2015-12-16 17:41:30 -06:00
John Wiegley
59213cc1da emacs25pre: New expression, from emacs-25 pre-release branch 2015-12-16 15:13:16 -08:00
Profpatsch
5f709b8974 cutegram: fix version in name 2015-12-17 00:05:48 +01:00
Eelco Dolstra
b797a67ffb awesomebump: Add 2015-12-16 23:31:41 +01:00
Pascal Wittmann
f45b8176c0 Merge pull request #11074 from mogorman/gerbv
gerbv: new package
2015-12-16 18:13:20 +01:00
Eelco Dolstra
7651680615 firefox: 42.0 -> 43.0 2015-12-16 17:24:58 +01:00
Thomas Tuegel
8ee82c6b00 Merge pull request #11764 from ttuegel/kde-updates
KDE updates
2015-12-16 10:24:11 -06:00
Thomas Tuegel
408c3e5033 kdeApps_15_12.spectacle: init at 15.12.0 2015-12-16 10:22:44 -06:00
Thomas Tuegel
cc058eff70 kde5_latest: merge all package sets
The three KDE package sets now have circular dependencies between them,
so they can only be built if they are merged into a single package set
during evaluation.
2015-12-16 10:22:43 -06:00
Thomas Tuegel
42d19d7e71 kdeApps_15_12: don't inherit kdelibs
The beta versions of KDE Applications 15.12 did not include a kdelibs
release, so that package was borrowed from KDE Applications 15.08. The
final release of KDE Applications 15.12.0 does include kdelibs, however.
2015-12-16 09:48:18 -06:00
Thomas Tuegel
af5015fa80 kdeApps_15_12: 15.11.90 -> 15.12.0 2015-12-16 09:07:59 -06:00
Eelco Dolstra
d8d04c8cf3 firefox-esr: 38.4.0 -> 38.5.0 2015-12-16 16:03:39 +01:00
Eelco Dolstra
e7ae72cfb1 subversion: 1.8.14 -> 1.8.15, 1.9.2 -> 1.9.3
CVE-2015-5343, CVE-2015-5259.
2015-12-16 15:21:58 +01:00
Eelco Dolstra
64792ffdaa subversion: Use callPackages 2015-12-16 15:21:58 +01:00
Pascal Wittmann
63b7648870 Merge pull request #11755 from steveeJ/rkt-v0.13
rkt: bump version 0.12.0 -> 0.13.0
2015-12-16 13:03:57 +01:00
Eelco Dolstra
98151e0691 ratox: Fix broken URL
However, the URL still gives a hash mismatch. @ehmry
2015-12-16 12:07:08 +01:00
Arseniy Seroka
2542e92ca0 Merge pull request #11684 from Profpatsch/cutegram
Cutegram
2015-12-16 10:47:48 +03:00
Spencer Whitt
4446b078fc mopidy-spotify-tunigo: init at 0.2.1 2015-12-15 22:38:15 -05:00
Spencer Whitt
a03b98271a mopidy-musicbox-webclient: init at 2.0.0 2015-12-15 22:38:14 -05:00
Spencer Whitt
7e71068510 mopidy-soundcloud: init at 2.0.1 2015-12-15 22:38:14 -05:00
Spencer Whitt
47cbbc3abe mopidy-youtube: init at 2.0.1 2015-12-15 22:38:14 -05:00
Spencer Whitt
514b7b9328 mopidy-mopify: 1.5.1->1.5.8 2015-12-15 22:38:14 -05:00
Spencer Whitt
95d62e78e3 mopidy: improve gstreamer plugin support 2015-12-15 22:38:09 -05:00
Tobias Geerinckx-Rice
99816323f9 saneBackendsGit 1.0.25.{177-g753d123 -> 180-g6d8b8d5} 2015-12-16 04:22:08 +01:00
Matthew O'Gorman
a76241c6cb
gerbv: init at git-2015-10-07 2015-12-15 21:11:54 -05:00
Profpatsch
9c5cd49903 cutegram: init at 2.7.0-stable 2015-12-16 02:08:49 +01:00
taku0
df02ed5696 firefox-bin: 42.0 -> 43.0 2015-12-16 09:55:39 +09:00
Domen Kožar
caa9c53d6e qemu: enable numa 2015-12-15 23:41:55 +01:00
Stefan Junker
a4cd9f771a rkt: bump version 0.12.0 -> 0.13.0 2015-12-15 23:03:28 +01:00
Rickard Nilsson
46905425cf Merge pull request #11477 from jgillich/mopidy-gmusic
mopidy-gmusic: init at 1.0.0
2015-12-15 10:15:51 +01:00
viric
63eb3395cb Merge pull request #11727 from ericsagnes/praat
praat: 5417 -> 5.4.17
2015-12-15 09:57:37 +01:00
Eric Sagnes
c393711b43 praat: 5417 -> 5.4.17 2015-12-15 11:56:28 +09:00
Tobias Geerinckx-Rice
29ab5c3b9c simple-scan: 3.19.2 -> 3.19.3 2015-12-15 00:20:59 +01:00
Domen Kožar
60df14b4b1 fix eval 2015-12-14 21:12:51 +01:00
Arseniy Seroka
c7b320656f Merge pull request #11714 from ericsagnes/jumanji
jumanji: fixed source
2015-12-14 22:46:41 +03:00
Eric Sagnes
a77569fd97 jumanji: fixed source 2015-12-15 02:46:04 +09:00
Domen Kožar
9688c39709 Merge pull request #11702 from ericsagnes/udevil-patch
udevil: added patch
2015-12-14 16:46:26 +01:00
Matthias C. M. Troffaes
75d292f173 gosmore: once more fix broken hash and disable externals for now to prevent further breakage 2015-12-14 15:33:51 +00:00
Jakob Gillich
d241354dcd mopidy: 1.0.5 -> 1.1.1 2015-12-14 14:38:58 +01:00
Jakob Gillich
872d0be1a0 mopidy-gmusic: init at 1.0.0 2015-12-14 14:38:58 +01:00
Eelco Dolstra
1ae8f0f0f7 Merge pull request #11675 from abbradar/flashplayer-archive
flashplayer: cleanup, use archive as a source
2015-12-14 13:56:20 +01:00
Eric Sagnes
b22725847d udevil: added patch 2015-12-14 20:49:14 +09:00
Jascha Geerds
7b82e5b2e8 Merge pull request #11700 from magnetophon/khal-master
khal: update 0.6.0->0.7.0
2015-12-14 12:30:37 +01:00
Arseniy Seroka
93c24d39b2 Merge pull request #11695 from badi/google-musicmanager
google-musicmanager: beta_1.0.221.5230-r0 -> beta_1.0.243.1116-r0
2015-12-14 13:17:27 +03:00
Pascal Wittmann
84c3b5f71f Merge pull request #11073 from mogorman/geda_fix
geda: refdes_renum called /usr/bin/perl
2015-12-14 07:56:41 +01:00
Pascal Wittmann
88fc08c367 Merge pull request #11693 from sigma/fix/zile-darwin
zile: build on unix
2015-12-14 07:52:47 +01:00
Matthew O'Gorman
f076a0867f
geda: refdes_renum called /usr/bin/perl 2015-12-14 00:04:12 -05:00
Badi' Abdul-Wahid
a8d43d6950 google-musicmanager: beta_1.0.221.5230-r0 -> beta_1.0.243.1116-r0 2015-12-13 20:46:30 -05:00
Badi' Abdul-Wahid
618414ff46 super-user-spark: 0.1.0.0 -> 0.2.0.3 2015-12-13 20:26:09 -05:00
Bart Brouns
7349f406ff khal: update 0.6.0->0.7.0 2015-12-14 02:05:01 +01:00
Yann Hodique
38161e8372 zile: build on unix
zile works fine on non-linux unix systems
2015-12-13 15:06:46 -08:00
Aristid Breitkreuz
f217579ca6 Merge pull request #11680 from mayflower/fix/claws-mail-fancy
claws-mail: Fix fancy plugin
2015-12-13 22:52:23 +01:00
Aristid Breitkreuz
42952942bc Merge pull request #11649 from mayflower/claws-enable-pgp
[RFC] claws-mail: enable PGP plugin by default
2015-12-13 22:51:03 +01:00
Aristid Breitkreuz
f0cdf17ee8 Merge pull request #11682 from ambrop72/chrome-updates
chromium: Updates.
2015-12-13 20:04:32 +01:00
Pascal Wittmann
e4b8defb37 Merge pull request #11676 from devhell/mediainfo
{lib-}mediainfo{-gui}: 0.7.79 -> 0.7.80
2015-12-13 18:26:46 +01:00
goibhniu
e470d15423 zam-plugins: update hash (uses git submodules) 2015-12-13 18:16:49 +01:00
devhell
ab9bf1e4fa {lib-}mediainfo{-gui}: 0.7.79 -> 0.7.80
From the changelog:
```
Version 0.7.80, 2015-11-30

+ Matroska: support of MKVMerge statistics tags (duration frame count,
  stream size, bit rate) per track, thanks to ndjamena
+ FLAC: Channel positions, thanks to ndjamena
+ FLAC: difference between detected bit depth and stored bit depth
+ MPEG-TS: if DTVCC transport stream is present and no DTVCC service
  descriptor, scan also in the middle of the file in order to detect
  more caption services
+ Subtitle frame rate computing if frame count and duration are
  available (hidden by default)
+ Subtitles in Matroska: count of elements
+ Matroska, MXF and MP4/MOV: detection of truncated files
+ DTS: difference between ES Matrix and ES Discrete
+ DTS: display ES Matrix or ES Discrete even if HRA or MA is present
+ DTS: difference between DTS-HRA with 96k option and pure DTS-96/24
+ DTS: detection of DTS:X
+ Samples per frame info
+ AC-3: detection of Atmos inside TrueHD
+ Video frame rate: showing precision of 1/1.001 frame rates (e.g.
  "23.976 (24000/1001) fps" and "23.976 (23976/1000) fps")
+ MPEG-4/MOV: showing the complete list of compatible brands in the
  CodecID field
+ MPEG-4/MOV: Alternate groups
+ MPEG-4/MOV: "Disabled" tag
+ MPEG-4/MOV: "Forced" tag
+ MPEG-4/MOV: showing links between tracks (chapters for, subtitles for,
  fallback for)
+ MXF: handling of more acquisition metadata items
+ MXF: Package name
+ AVC: Store method of interlaced content (Interleaved Fields or
  Separated Fields)
+ EBUCore: acquisition metadata (Proof of concept, for feedback only)
x Matroska: frame rate detection algorithm revisited, less wrong numbers
  are expected
x SDP/Teletext: some pages were sometimes (when present in 2 different
  SDP lines) displayed several times
x MPEG-4/MOV: some hint tracks were not displayed
+ Hongkongese language added
+ Option "Full parsing"
```
2015-12-13 17:16:07 +00:00
Franz Pletz
cabd3effda claws-mail: Remove extra GIO_EXTRA_MODULES wrapping 2015-12-13 17:09:15 +01:00
Franz Pletz
65d8af5af2 claws-mail: Fix fancy plugin, fixes #10421
This fixes the fancy plugin displaying HTML mails as text as suggested
by @wedens.
2015-12-13 17:02:36 +01:00
Ambroz Bizjak
03cf5e6627 chromium: Updates.
- dev: 48.0.2564.22 -> 49.0.2587.3
- beta: 48.0.2564.23 -> 48.0.2564.41
- stable: 47.0.2526.73 -> 47.0.2526.80
2015-12-13 17:00:13 +01:00
Arseniy Seroka
09d9693089 Merge pull request #11662 from jgillich/patch-2
virt-manager: 1.2.1 -> 1.3.1
2015-12-13 17:16:38 +03:00
Nikolay Amiantov
26e738206c flashplayer: cleanup, use archive as a source
Most work done by ericsagnes
2015-12-13 16:28:52 +03:00
Nikolay Amiantov
427d00ee36 doomseeker: cleanup 2015-12-13 15:14:18 +03:00
Nikolay Amiantov
a4e8b8ef06 cdrtools: 3.00 -> 3.02a03 2015-12-13 15:13:43 +03:00
goibhniu
322b6bd60c Merge pull request #11656 from enolan/master
Remove Echo Nolan from maintainers
2015-12-13 11:13:31 +01:00
Echo Nolan
f01c56f109 Remove Echo Nolan from maintainers
I'm not using Nix anymore.
2015-12-12 22:59:11 -08:00
Thomas Tuegel
53979b54a8 Merge branch 'kde-applications-15.12' 2015-12-12 18:26:55 -06:00
Thomas Tuegel
7cdedaaf72 dropbox: use fields from upstream's desktop item 2015-12-12 17:26:41 -06:00
Thomas Tuegel
bce4e95a80 kdeApps_15_12: 15.11.80 -> 15.11.90 2015-12-12 17:21:48 -06:00
Jakob Gillich
8da384edad virt-manager: 1.2.1 -> 1.3.1 2015-12-12 19:36:08 +01:00
Thomas Tuegel
73a9826001 sddm: don't install empty scripts 2015-12-12 11:32:20 -06:00
Thomas Tuegel
f7edf63b23 ipe: use texlive-new 2015-12-12 10:57:38 -06:00
Thomas Tuegel
08d842ea09 Merge branch 'kde-frameworks-5.17' 2015-12-12 10:45:13 -06:00
goibhniu
bb3c2fb246 Merge pull request #11524 from mcmtroffaes/feature/gosmore-fix-and-update
gosmore: r30811 -> r31801, fix sha256
2015-12-12 16:04:35 +01:00
Thomas Tuegel
28b74a05af remove kf516 2015-12-12 08:09:48 -06:00
Robin Gloster
2251af754e claws-mail: enable PGP plugin by default 2015-12-12 12:49:49 +00:00
Profpatsch
7b407414a4 telegram: create explicit folder
Will be used for other tools coming soon™.
2015-12-12 13:27:03 +01:00
Pascal Wittmann
de37086064 potrace: 1.12 -> 1.13 2015-12-12 12:05:19 +01:00
goibhniu
9da978b0e3 Merge pull request #11603 from wedens/rtv_update
rtv: 1.6.1 -> 1.7.0
2015-12-12 12:04:51 +01:00
Pascal Wittmann
a6519d50c0 calibre: 2.45.0 -> 2.46.0 2015-12-11 19:52:20 +01:00
Domen Kožar
fdece0c2a4 atom: 1.2.0 -> 1.3.1 2015-12-11 19:50:45 +01:00
Thomas Tuegel
146784f835 Merge pull request #11635 from LumiGuide/fontmatrix
fontmatrix: init at 0.6.0
2015-12-11 09:54:15 -06:00
Nikolay Amiantov
01a49270a8 playonlinux: attempt to fix Hydra failure 2015-12-11 17:24:31 +03:00
Roel van Dijk
b0bb9cd5fe fontmatrix: init at 0.6.0 2015-12-11 14:50:16 +01:00
Peter Simons
e5e7d1411d Merge pull request #11629 from michelk/R/update
R: 3.2.2 -> 3.2.3
2015-12-11 14:28:38 +01:00
Thomas Tuegel
3960ecb933 Merge branch 'plasma-5.5' 2015-12-11 07:21:50 -06:00
Thomas Tuegel
8f26ac9f47 sddm: add ttuegel as maintainer 2015-12-11 07:09:07 -06:00
Thomas Tuegel
78a6d62b48 sddm: wrap to include themes 2015-12-11 07:09:07 -06:00
Sou Bunnbu
c03b26ee08 Merge pull request #11491 from bjornfor/pitivi-0.95
gstreamer 1.4 -> 1.6 and pitivi 0.94 -> 0.95
2015-12-11 21:00:31 +08:00
Michel Kuhlmann
cebbb18e9e R: 3.2.2 -> 3.2.3 2015-12-11 11:36:30 +01:00
Birger J. Nordølum
1fe89386fd i3blocks: 1.4 (NEW) (WIP) 2015-12-11 08:55:14 +01:00
Arseniy Seroka
0a5d840b64 Merge pull request #11605 from wedens/goldendict_update
goldendict: b4bb1e9 -> ec86516
2015-12-11 08:35:15 +03:00
Bjørn Forsman
b398371e80 Merge pull request #11613 from rycee/bump/eclipse-plugin-testng
eclipse-plugin-testng: 6.9.10.201511281504 -> 6.9.10.201512020421
2015-12-10 22:26:02 +01:00
Robert Helgesson
414a1660f4 eclipse-plugin-testng: 6.9.10.201511281504 -> 6.9.10.201512020421 2015-12-10 21:35:33 +01:00
Pavan Rikhi
bd5ad569aa pencil: v2.0.14 -> v2.0.15 2015-12-10 13:26:08 -05:00
wedens
f8d2af6260 goldendict: b4bb1e9 -> ec86516 2015-12-10 23:51:07 +06:00
wedens
1b05ef86f0 rtv: 1.6.1 -> 1.7.0 2015-12-10 22:07:15 +06:00
Tobias Geerinckx-Rice
34e1b71c62 simple-scan: drop obsolete systemd dependency 2015-12-10 03:42:48 +01:00
Tobias Geerinckx-Rice
120f8eef67 simple-scan: makeWrapper -> wrapGAppsHook 2015-12-10 03:37:38 +01:00
Tobias Geerinckx-Rice
2ce24737c8 redshift: depend on geoclue2 directly 2015-12-10 02:38:42 +01:00
Nikolay Amiantov
a5a481e7ee playonlinux: fix with new wxPython, fix OpenGL check 2015-12-09 23:29:24 +03:00
ts468
c8eaa71cae Merge pull request #11173 from mixis/updates/xen-4.5.2
xen: 4.5.1 -> 4.5.2
2015-12-09 21:17:17 +01:00
Robin Gloster
fe8192536f idea.phpstorm: 9.0 -> 10.0.1 2015-12-09 19:11:15 +00:00
Sou Bunnbu
a190cb7636 Merge pull request #11432 from edanaher/fvwm-gestures
Fvwm: add gestures and create libstroke package
2015-12-09 16:25:51 +08:00
Michael Raskin
0a64071932 flashplayer: 11.2.202.540 -> 11.2.202.554 2015-12-08 23:28:53 +01:00
Bjørn Forsman
c27de52d39 eagle: 6.6.0 -> 7.5.0
* It grew a couple of extra (hard) dependencies:
  libxcb, cups, xkeyboardconfig
* It is also available in native 64-bit version (yay!)
2015-12-08 22:30:10 +01:00
Arseniy Seroka
e298da511f Merge pull request #11555 from rnhmjoj/imv
imv: 1.0.0 -> 1.1.0
2015-12-09 00:17:30 +03:00
Domen Kožar
4b0fcf8ea1 Merge pull request #11553 from FRidh/pil
WIP: remove PIL as dependency
2015-12-08 22:15:05 +01:00
Ricardo M. Correia
c3be340ae0 handbrake: fix compilation due to missing dep 2015-12-08 17:30:25 +01:00
Frederik Rietdijk
9455476f47 tribler: use pillow instead of pil
Program opens. Didn't test any further.
2015-12-08 16:30:25 +01:00
rnhmjoj
e8c55a06e2 imv: 1.0.0 -> 1.1.0 2015-12-08 16:22:16 +01:00
Frederik Rietdijk
d9758cf3b4 calibre: use pillow instead of pil 2015-12-08 15:12:53 +01:00
Frederik Rietdijk
0c57716ab9 impressive: use pillow instead of pil 2015-12-08 15:12:17 +01:00
Frederik Rietdijk
60e2dced1a mirage: use pillow instead of pil 2015-12-08 15:11:00 +01:00
Frederik Rietdijk
a044b590fc mcomix: use pillow instead of pil 2015-12-08 15:10:40 +01:00
Thomas Tuegel
868a813368 kdelibs: disable UPnP
kdelibs' UPnP implementation is unsupported upstream:
https://lists.ubuntu.com/archives/kubuntu-devel/2014-February/007891.html
2015-12-08 06:21:36 -06:00
Herwig Hochleitner
a7aaedebcc dropbox-cli: 2015.02.12 -> 2015.10.28, fixes #11538 2015-12-08 02:13:11 +01:00
Herwig Hochleitner
0c30a14b9d dropbox: 3.10.11 -> 3.12.4 2015-12-08 02:12:47 +01:00
Matthias C. M. Troffaes
b789856ce3 gosmore: r30811 -> r31801, fix sha256 2015-12-07 14:32:54 +00:00
Ambroz Bizjak
067141621e virtualboxGuestAdditions: Add missing library paths to patchelf, fixes #11509 2015-12-07 15:15:03 +01:00
Ambroz Bizjak
b9093f1c64 chromium: Updates, fixes #11492
Built and run Beta and Stable locally. Dev is surrently superseded by Stable so
it doesn't matter much.

- Dev: 47.0.2508.0 -> 48.0.2564.22
- Beta: 46.0.2490.64 -> 48.0.2564.23
- Stable: 45.0.2454.101 -> 47.0.2526.73

Changed the SSL dependencies to the supported configuration on Linux (according
to Torne @Freenode/#chromium-support).

- NSS is a dependency since it is used to access the ceritiface store.
- Dropped system OpenSSL support, the bundled BoringSSL is used.

This probably fixes issue #10555. Note that without this adjustment the build
fails even.

Dropped uneeded old patches.
2015-12-07 14:52:15 +01:00
Thomas Tuegel
916f86745e Merge branch 'elpa-packages' 2015-12-07 06:24:34 -06:00
Thomas Tuegel
4b950d233e ipe: 7.1.8 -> 7.1.10 2015-12-07 05:50:02 -06:00
Matthias C. M. Troffaes
0a9b784acc namecoin: fix sha256 using fetchzip 2015-12-07 10:45:28 +00:00
Domen Kožar
8c65e4e82a Merge pull request #11519 from mcmtroffaes/feature/cbatticon-sha256-fix
cbatticon: fix sha256 mismatch
2015-12-07 11:26:29 +01:00
Matthias C. M. Troffaes
9b2d64f310 cbatticon: use fetchzip to fix sha256 issues 2015-12-07 10:24:38 +00:00
Arseniy Seroka
f6754747bd Merge pull request #11513 from oxij/fix-w3m-on-darwin
w3m: turn off mouseSupport on Darwin
2015-12-07 03:03:08 +03:00
Tobias Geerinckx-Rice
b3635acffb swingsane: init at 0.2 2015-12-06 23:44:13 +01:00
Jan Malakhovski
53f93b0b7e w3m: turn off mouseSupport on Darwin
Fixes an issue reported at https://github.com/NixOS/nixpkgs/pull/11222/files#r46774825
2015-12-06 20:44:29 +00:00
Joachim Schiele
a72ff7f4e7 Merge branch 'master' of github.com:NixOS/nixpkgs 2015-12-06 19:43:53 +01:00
Joachim Schiele
bf0ed5e93a added kgocode 2015-12-06 19:43:25 +01:00
Thomas Tuegel
8498f9d46b elpa-packages 2015-12-06 2015-12-06 11:49:50 -06:00
Thomas Tuegel
0c2259629d add elpa-packages.nix 2015-12-06 11:49:50 -06:00
Herwig Hochleitner
088c3fc9dd virtualbox: 5.0.6 -> 5.0.10, fixes #11115 2015-12-06 13:23:46 +01:00
goibhniu
e83c52258a Merge pull request #11311 from magnetophon/yoshimi-master
yoshimi: 1.3.6 -> 1.3.7.1
2015-12-06 11:46:51 +01:00
Bjørn Forsman
1eaf571d42 pitivi: 0.94 -> 0.95
Notable (hard) dependency changes:
  - gstreamer >= 1.6.0
  - gst-plugins-bad with GTK support (need "gstgtk" plugin)
  - pygobject >= 3.14
  - gst-validate
  - matplotlib (used for drawing the "timeline")

Changes v1 -> v2:
pitivi no longer requires clutter, so I switched clutter-gtk => gtk3.
2015-12-06 10:24:59 +01:00
Tobias Geerinckx-Rice
1d4b4dc8b6 saneBackends{,Git}: add more descriptive descriptions 2015-12-05 23:42:56 +01:00
Tobias Geerinckx-Rice
df4ab4c9cc saneBackendsGit: add myself as maintainer 2015-12-05 23:42:56 +01:00
Tobias Geerinckx-Rice
d3d5c79582 saneBackendsGit 1.0.24.73-g6c4f6bc -> 1.0.25.177-g753d123 2015-12-05 23:42:56 +01:00
Tobias Geerinckx-Rice
5bcd13156c saneBackends: add myself as maintainer 2015-12-05 23:42:56 +01:00
Tobias Geerinckx-Rice
256cec9756 saneBackends 1.0.24 -> 1.0.25
Changes too numerous to list here:

http://anonscm.debian.org/cgit/sane/sane-backends.git/tree/ChangeLog?h=RELEASE_1_0_25
2015-12-05 23:42:56 +01:00
Rok Garbas
9d1bbf7a02 neovim: update 0.1.0 -> 0.1.1 2015-12-05 23:08:22 +01:00
Emery Hemingway
2b6dcdfcd0 Rename 'emery' maintainer handle to 'ehmry', fixes #11493
Communication happens on Github so names should be consistent.
2015-12-05 23:06:20 +01:00
Peter Panaguiton
1b0edf40c3 cwm: init at 5.6, fixes #11458 2015-12-05 20:47:09 +01:00
Jan Malakhovski
74724837d6 cmus: rewrite expression, add more options, fixes #11483 2015-12-05 20:18:13 +01:00
Jan Malakhovski
3ef66919b6 cmus: 2.6.0 -> 2.7.0, add a maintainer 2015-12-05 20:18:02 +01:00
Pascal Wittmann
84b3af19b8 Merge pull request #11365 from nlewo/fix/git-review
git-review: init at 1.25.0
2015-12-05 16:32:12 +01:00
Vladimír Čunát
263fd55d4b Merge recent staging built on Hydra
http://hydra.nixos.org/eval/1231884
Only Darwin jobs seem to be queued now,
but we can't afford to wait for that single build slave.
2015-12-05 11:11:51 +01:00
Carles Pagès
5d9148c9ad kodiPlugins.pvr-hts: init at 2.1.18
Add Tvheadend HTSP PVR client addon for Kodi.
2015-12-05 08:42:45 +01:00
Moritz Ulrich
e9e6d62c59 rofi-pass: 1.2 -> 1.3.1
Also contains fixes so it doesn't depend on anything in PATH.
2015-12-04 17:24:56 +01:00
Arseniy Seroka
d439a4c249 Merge pull request #11422 from burke/urlview-darwin
urlview works fine on darwin
2015-12-04 19:02:06 +03:00
Burke Libbey
4f05c5eb42
urlview: enable on darwin 2015-12-04 11:00:16 -05:00
Arseniy Seroka
0c05f14d53 Merge pull request #10535 from roblabla/feature-updateGitlab8.0.5
gitlab: 7.4.2 -> 8.0.5
2015-12-04 16:30:09 +03:00
roblabla
b7a4231aa2 gitlab: 7.4.2 -> 8.0.5 2015-12-04 01:14:24 +01:00
devhell
c711f4bb11 virt-{manager,inst}: Fix glance dependency
Since 710b350b8e `glance` has been
replaced in favor of `glanceclient`. This commit fixes the resulting
eval error.
2015-12-03 21:56:00 +00:00
Nikolay Amiantov
634c9db4c2 Merge pull request #11431 from abbradar/teamviewer
teamviewer: init at 11.0.52520, remove older versions
2015-12-03 23:59:53 +03:00
Nikolay Amiantov
c3d503d33d teamviewer: init at 11.0.52520, remove older versions 2015-12-03 22:28:36 +03:00
Bart Brouns
b94a2db590 yoshimi: 1.3.6 -> 1.3.7.1 2015-12-03 19:54:19 +01:00
Domen Kožar
a4fc362c54 neutron: patch for iproute 4.x compatibility 2015-12-03 11:09:54 +01:00
Domen Kožar
4abb515c6e glance: propagated MySQL_python 2015-12-03 11:09:50 +01:00
Burke Libbey
eeb2935ac5 Fix notmuch for darwin, fixes #11410
platforms can be unix; this works on darwin at *least*, after we fix the
libtalloc references.
2015-12-03 09:03:29 +01:00
Evan Danaher
523d6846a7 fvwm: add gestures option to use libstroke 2015-12-03 00:31:24 -05:00
Tobias Geerinckx-Rice
f6fa6c26c8 Merge pull request #11413 from hrdinka/update/xca
xca: 1.3.1 -> 1.3.2
2015-12-03 01:15:14 +01:00
Christoph Hrdinka
a2b5aafa61 xca: 1.3.1 -> 1.3.2 2015-12-02 23:01:00 +01:00
Arseniy Seroka
7aa42e1f31 Merge pull request #11402 from robgssp/clfswm-fix
clfswm: fix contrib-dir path
2015-12-02 22:47:11 +03:00
Arseniy Seroka
29a1c7df20 Merge pull request #11403 from FRidh/mendeley
mendeley: 1.15 -> 1.15.2
2015-12-02 22:46:01 +03:00
Vincent Laporte
a4a334bbe0 smtube: 15.9.0 -> 15.11.0 2015-12-02 19:46:23 +01:00