David Craven
5eb1b33b6b
gnu: attica: Update to 5.27.0.
...
* gnu/packages/kde-frameworks.scm (attica): Update to 5.27.0.
2016-10-29 23:51:43 +02:00
David Craven
84dee85291
gnu: phonon: Fix indentation.
...
* gnu/packages/kde-frameworks.scm (phonon): Fix indentation.
2016-10-29 23:51:43 +02:00
David Craven
bd0fc238f8
gnu: kpmcore: Fix indentation.
...
* gnu/packages/kde-frameworks.scm (kpmcore): Fix indentation.
2016-10-29 23:51:43 +02:00
David Craven
443a60aaae
gnu: gpgmepp: Update to 16.08.2.
...
* gnu/packages/kde-frameworks (gpgmepp): Update to 16.08.2.
2016-10-29 23:51:43 +02:00
David Craven
1c484e980f
gnu: extra-cmake-modules: Update to 5.27.0.
...
* gnu/packages/kde-frameworks.scm (extra-cmake-modules): Update to
5.27.0.
2016-10-29 23:51:43 +02:00
David Craven
b68bf48af9
gnu: Add flex-2.6.1.
...
* gnu/packages/flex.scm (flex-2.6.1): New variable.
2016-10-29 23:51:43 +02:00
Alex Vong
ee5fb7ee50
gnu: Add python2-rpython.
...
* gnu/packages/python.scm (python2-rpython): New variable.
2016-10-29 23:49:05 +02:00
Efraim Flashner
8f210c0e0e
gnu: ccache: Update to 3.3.3.
...
* gnu/packages/ccache.scm (ccache): Update to 3.3.3.
2016-10-30 00:05:26 +03:00
Efraim Flashner
7dd55dfeca
gnu: python-waf: Update to 1.9.5.
...
* gnu/packages/python.scm (python-waf): Update to 1.9.5.
[arguments]: Shorten custom build phase.
[source]: Use http.
[home-page]: Use http.
2016-10-30 00:05:13 +03:00
Efraim Flashner
603d55de4a
gnu: ffmpeg: Update to 3.2.
...
* gnu/packages/video.scm (ffmpeg): Update to 3.2.
2016-10-29 22:16:44 +03:00
Efraim Flashner
0b37c4cda7
gnu: vapoursynth: Update to 35.
...
* gnu/packages/video.scm (vapoursynth): Update to 35.
2016-10-29 22:16:44 +03:00
Efraim Flashner
812de5bf1e
gnu: offlineimap: Update to 7.0.9.
...
* gnu/packages/mail.scm (offlineimap): Update to 7.0.9.
2016-10-29 22:16:43 +03:00
Efraim Flashner
4d73cb5441
gnu: chess: Update to 6.2.4.
...
* gnu/packages/games.scm (chess): Update to 6.2.4.
[home-page]: Use https.
2016-10-29 22:16:42 +03:00
Marius Bakke
a7e75125c8
gnu: vim: Update to 8.0.0054.
...
* gnu/packages/vim.scm (vim): Update to 8.0.0054.
2016-10-29 20:04:57 +01:00
Tobias Geerinckx-Rice
dadf6622e9
gnu: borg: Update to 1.0.8.
...
* gnu/packages/backup.scm (borg): Update to 1.0.8.
2016-10-29 14:24:51 +02:00
Tobias Geerinckx-Rice
58c4f11e43
gnu: Add radeontop.
...
* gnu/packages/linux.scm (radeontop): New variable.
2016-10-29 14:19:01 +02:00
Mark H Weaver
b8df914f37
gnu: linux-libre: Update to 4.8.5.
...
* gnu/packages/linux.scm (%linux-libre-version, %linux-libre-hash)
(linux-libre): Update to 4.8.5.
2016-10-28 20:11:20 -04:00
Mark H Weaver
a56b3229f4
gnu: linux-libre@4.4: Update to 4.4.28.
...
* gnu/packages/linux.scm (linux-libre-4.4): Update to 4.4.28.
2016-10-28 20:09:02 -04:00
Eric Bavier
fba78d18c2
gnu: mumps: Upgrade to 5.0.2.
...
* gnu/packages/maths.scm (mumps): Upgrade to 5.0.2.
[arguments]: Properly return boolean from install phase.
2016-10-28 15:53:32 -05:00
Ludovic Courtès
343dc11702
guix hash: Interpret '-' as standard input.
...
* guix/scripts/hash.scm (guix-hash)[file-hash]: Special-case "-".
* tests/guix-hash.sh: Add test.
* doc/guix.texi (Invoking guix hash): Document it.
2016-10-28 22:30:17 +02:00
Ludovic Courtès
12b6c951cf
daemon: Do not error out when deduplication fails due to ENOSPC.
...
This solves a problem whereby if /gnu/store/.links had enough entries,
ext4's directory index would be full, leading to link(2) returning
ENOSPC.
* nix/libstore/optimise-store.cc (LocalStore::optimisePath_): Upon
ENOSPC from link(2), print a message and return instead of throwing a
'SysError'.
2016-10-28 22:30:17 +02:00
Eelco Dolstra
b1fd0ab734
daemon: Improve the SQLite wrapper API.
...
In particular, this eliminates a bunch of boilerplate code.
Also integrates these Nix commits:
80da7a6 Probably fix SQLITE_BUSY errors
37a337b throwSQLiteError(): Check for SIGINT so we don't loop forever
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2016-10-28 22:30:17 +02:00
Eelco Dolstra
7bed5d91de
daemon: Factor out SQLite handling.
...
* nix/libstore/local-store.cc: Move SQLite code to...
* nix/libstore/sqlite.cc, nix/libstore/sqlite.hh: ... here. New files.
* nix/local.mk (libstore_a_SOURCES): Add sqlite.cc.
(libstore_headers): Add sqlite.hh.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2016-10-28 22:30:17 +02:00
Eelco Dolstra
517ce0c15b
daemon: Turn retrying SQLite transactions into a higher-order function.
...
* nix/libstore/local-store.cc (retry_sqlite, end_retry_sqlite): Remove.
(retrySQLite): New template.
(LocalStore::registerFailedPath, LocalStore::hasPathFailed)
(LocalStore::queryFailedPaths, LocalStore::clearFailedPaths)
(LocalStore::queryPathInfo, LocalStore::isValidPath_)
(LocalStore::queryValidPaths, LocalStore::queryAllValidPaths)
(LocalStore::queryReferrers, LocalStore::queryValidDerivers)
(LocalStore::queryDerivationOutputs)
(LocalStore::queryDerivationOutputNames)
(LocalStore::queryPathFromHashPart, LocalStore::registerValidPaths)
(LocalStore::invalidatePathChecked): Use it.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2016-10-28 22:30:17 +02:00
Marius Bakke
a9afb956b3
gnu: vim: Update to 8.0.0051.
...
* gnu/packages/vim.scm (vim): Update to 8.0.0051.
[source]: Change to github release archive.
2016-10-28 20:55:09 +01:00
Leo Famulari
0df955401f
Merge branch 'master' into core-updates
2016-10-28 13:59:32 -04:00
Leo Famulari
044ac8d294
gnu: python-twobitreader: Update to 3.1.4.
...
* gnu/packages/bioinformatics.scm (python-twobitreader, python2-twobitreader):
Update to 3.1.4.
2016-10-28 13:59:11 -04:00
Leo Famulari
900fb8d005
gnu: python-twobitreader: Disable the test suite.
...
The tests were silently skipped with Python 3.4. With Python 3.5, this caused
the build of python-twobitreader to fail.
* gnu/packages/bioinformatics.scm (python-twobitreader,
python2-twobitreader)[arguments]: Disable the tests.
2016-10-28 13:59:11 -04:00
Roel Janssen
ed8bc028f7
gnu: Add emacs-org-trello.
...
* gnu/packages/emacs.scm (emacs-org-trello): New variable.
2016-10-28 19:50:32 +02:00
Leo Famulari
a6447e7fb6
Merge branch 'master' into core-updates
2016-10-28 13:40:17 -04:00
Leo Famulari
e359b31a60
gnu: python-wsgiproxy2: Disable the test suite.
...
* gnu/packages/python.scm (python-wsgiproxy2, python2-wsgiproxy2)[arguments]:
Disable the tests.
2016-10-28 13:39:38 -04:00
Leo Famulari
67fd4a12cb
gnu: python-beautifulsoup4: Update to 4.5.1.
...
* gnu/packages/python.scm (python-beautifulsoup4, python2-beautifulsoup4):
Update to 4.5.1.
2016-10-28 13:39:38 -04:00
Leo Famulari
5f37f0b66e
gnu: python-beautifulsoup4: Run the test suite.
...
* gnu/packages/python.scm (python-beautifulsoup4)[arguments]: Add field
run python-2 -> python-3 conversion script and test suite.
(python2-beautifulsoup4)[arguments]: Specify use of python-2.
2016-10-28 13:39:37 -04:00
Leo Famulari
92c3ef2cf3
gnu: python-feedparser: Disable the test suite.
...
The tests were silently skipped with Python 3.4. With Python 3.5, this caused
the build of python-feedparser to fail.
* gnu/packages/python.scm (python-feedparser, python2-feedparser)[arguments]:
Disable the tests.
2016-10-28 13:39:37 -04:00
Leo Famulari
95bff4f697
gnu: libwebp: Fix CVE-2016-9085.
...
* gnu/packages/patches/libwebp-CVE-2016-9085.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
* gnu/packages/image.scm (libwebp)[source]: Use it.
2016-10-28 13:39:37 -04:00
Leo Famulari
b2ed5ca7aa
gnu: libwebp: Update to 0.5.1.
...
* gnu/packages/image.scm (libwebp): Update to 0.5.1.
2016-10-28 13:39:33 -04:00
Roel Janssen
36e5d10387
gnu: Add emacs-request.
...
* gnu/packages/emacs.scm (emacs-request): New variable.
2016-10-28 19:29:35 +02:00
Thomas Danckaert
fc381a3325
gnu: Add qwt.
...
* gnu/packages/qt.scm (qwt): New variable.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
2016-10-28 14:47:36 +01:00
宋文武
aa98b3b273
gnu: gxmessage: Don't install 'icon-theme.cache'.
...
* gnu/packages/gxmessage.scm (gxmessage)[arguments]: Add
'skip-gtk-update-icon-cache' phase.
[native-inputs]: Remove gtk+:bin.
2016-10-28 21:04:11 +08:00
Mark H Weaver
3b6f8b579b
gnu: python-parse: Fix patch file name in gnu/local.mk.
...
This is a followup to commit aa6c09ed71
.
* gnu/local.mk (dist_patch_DATA):
"python-python-parse-too-many-fields.patch" =>
"python-parse-too-many-fields.patch".
2016-10-27 20:31:19 -04:00
Mark H Weaver
3d82676919
Merge branch 'master' into core-updates
2016-10-27 20:21:26 -04:00
Efraim Flashner
f9a65318dd
gnu: python-parse: Use 'modify-phases' syntax.
...
* gnu/packages/python.scm (python-parse)[arguments]: Use 'modify-phases'
syntax.
2016-10-27 23:29:56 +03:00
Efraim Flashner
aa6c09ed71
gnu: python-parse: Fix failing test.
...
* gnu/packages/python.scm (python-parse)[origin]: Add patch.
* gnu/packages/patches/python-parse-too-many-fields.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
2016-10-27 23:28:07 +03:00
Efraim Flashner
d18c69aa2a
gnu: python-pytest-django: Add missing test input.
...
* gnu/packages/django.scm (python-pytest-django)[native-inputs]: Add
python-django.
2016-10-27 22:27:31 +03:00
Efraim Flashner
fa7cd33378
gnu: python-django-filter: Add inputs for tests.
...
* gnu/packages/django.scm (python-django-filter)[native-inputs]: Add
python-django, python-mock.
2016-10-27 22:18:30 +03:00
Efraim Flashner
13c4d8746b
gnu: python-wtforms: Skip optional tests.
...
* gnu/packages/python.scm (python-wtforms)[arguments]: Add a phase
preventing tests from failing when optional tests aren't run.
2016-10-27 22:13:22 +03:00
Efraim Flashner
b6e0804953
gnu: lightning: Add missing input.
...
* gnu/packages/assembly.scm (lightning)[native-inputs]: Add zlib.
2016-10-27 21:13:05 +03:00
Roel Janssen
7500e42b3e
gnu: Add r-mutationalpatterns.
...
* gnu/packages/bioinformatics.scm (r-mutationalpatterns): New variable.
2016-10-27 20:07:05 +02:00
Efraim Flashner
377bfbc1f8
gnu: gxmessage: Add missing input.
...
* gnu/packages/gxmessage.scm (gxmessage)[native-inputs]: Add gtk+3-bin.
2016-10-27 21:03:08 +03:00
Efraim Flashner
327be74720
gnu: jasper: Updat eto 1.900.16.
...
* gnu/packages/image.scm (japer): Update to 1.900.16.
2016-10-27 20:14:17 +03:00