Age | Commit message (Expand) | Author |
2020-05-22 | gnu: modem-manager: Update to 1.12.10....* gnu/packages/freedesktop.scm (modem-manager): Update to 1.12.10.
[arguments]: Remove arguments '--disable-more-warnings'.
| Brice Waegeneire |
2020-05-22 | gnu: network-manager: Appease guix lint....* gnu/packages/gnome.scm (network-manager)[home-page]: Use the permenant
redirect URL.
* gnu/packages/patches/nm-plugin-path.patch: Renamed to
'gnu/packages/patches/network-manager-plugin-path.patch'.
| Brice Waegeneire |
2020-05-22 | gnu: network-manager: Switch to meson-build-system. | Brice Waegeneire |
2020-05-22 | gnu: network-manager: Add iwd support. | Brice Waegeneire |
2020-05-22 | gnu: network-manager: Update to 1.24.0....* gnu/packages/gnome.scm (network-manager): Update to 1.24.0.
| Brice Waegeneire |
2020-05-22 | gnu: guile-fibers: Add patch to fix resource leak....guile-fibers@1.0.0 has a resource leak where run-fibers will only destroy one
scheduler, but it creates as many as there are cpu cores by default (see
https://github.com/wingo/fibers/issues/36). This causes the tests to fail on
systems with many cores, and can cause guile to crash under certain
circumstances. This fixes that resource leak. At present neither git master
nor the latest release has fixed this yet.
* gnu/packages/patches/guile-fibers-destroy-peer-schedulers.patch: New patch.
* gnu/local.mk: Add it to the list of patches.
* gnu/packages/guile-xyz.scm (guile-fibers): Use it.
| Caleb Ristvedt |
2020-05-22 | gnu: bash: Do not autoload (gcrypt hash)....Fixes <https://bugs.gnu.org/41457>.
Reported by Matias Jose Seco Baccanelli <matias_jose_seco@autoproduzioni.net>.
* gnu/packages/bash.scm: Avoid #:autoload for (gcrypt hash). On Guile 2.2,
autoloading would bring it not only the 'port-sha256' binding (as on
3.0) but also the 'sha256' binding. As a result, use of 'sha256' in the
'origin' form wouldn't match.
| Ludovic Courtès |
2020-05-22 | gnu: Add glabels....* gnu/packages/gnome.scm (glabels): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
| Vinicius Monego |
2020-05-22 | doc: Update 'Bootstrapping' for further binary seed reduction....* doc/images/gcc-core-mesboot0-graph.dot: New image, replacing
* doc/images/gcc-mesboot0-bag-graph.dot: ... remove file.
* doc/local.mk (DOT_FILES): Update for new image file.
* doc/guix.texi (Reduced Binary Seed Bootstrap): Use it in updated description
of further reduction of the trusted computing base.
| Jan Nieuwenhuizen |
2020-05-22 | gnu: freeipmi: Don't build static libraries....This shrinks the size of the package by about 33%.
* gnu/packages/freeipmi.scm (freeipmi)[arguments]: Add configure-flag to
disable static libraries.
| Efraim Flashner |
2020-05-22 | gnu: freeipmi: Update to 1.6.5....* gnu/packages/freeipmi.scm (freeipmi): Update to 1.6.5.
| Efraim Flashner |
2020-05-22 | gnu: llvm: Remove unused 'package-elisp-from-package' procedure....This private procedure had been unused since
3a3d4d9d545028cda846ae827a60249f7162d34e.
* gnu/packages/llvm.scm (package-elisp-from-package): Remove.
| Ludovic Courtès |
2020-05-22 | upstream: Use 'origin-hash'....* guix/upstream.scm (update-package-source): Use 'origin-hash' instead
of 'origin-sha256'.
| Ludovic Courtès |
2020-05-22 | lint: archival: Use 'origin-hash'....* guix/lint.scm (check-archival): Use 'origin-hash' instead of
'origin-sha256', removing hard-coded "sha256".
| Ludovic Courtès |
2020-05-22 | packages: Introduce <content-hash> and use it in <origin>....* guix/packages.scm (<content-hash>): New record type.
(define-content-hash-constructor, build-content-hash)
(content-hash): New macros.
(print-content-hash): New procedure.
(<origin>): Rename constructor to '%origin'.
[sha256]: Remove field.
[hash]: New field. Adjust users.
(origin-compatibility-helper, origin): New macros.
(origin-sha256): New deprecated procedure.
(origin->derivation): Adjust accordingly.
* tests/packages.scm ("package-source-derivation, origin, sha512"): New
test.
* guix/tests.scm: Hide (gcrypt hash) 'sha256' for proper syntax
matching.
* tests/challenge.scm: Add #:prefix for (gcrypt hash) and adjust users.
* tests/derivations.scm: Likewise.
* tests/store.scm: Likewise.
* tests/graph.scm ("bag DAG, including origins"): Provide 'sha256' field
with the right length.
* gnu/packages/aspell.scm (aspell-dictionary)
(aspell-dict-ca, aspell-dict-it): Use 'hash' and 'content-hash' for
proper syntax matching.
* gnu/packages/bash.scm (bash-patch): Rename 'sha256' to 'sha256-bv'.
* gnu/packages/bootstrap.scm (bootstrap-executable): Rename 'sha256' to 'bv'.
* gnu/packages/readline.scm (readline-patch): Likewise.
* gnu/packages/virtualization.scm (qemu-patch): Rename 'sha256' to
'sha256-bv'.
* guix/import/utils.scm: Hide (gcrypt hash) 'sha256'.
| Ludovic Courtès |
2020-05-22 | packages: Add 'base64' macro....* guix/packages.scm (define-compile-time-decoder): New macro.
(base32): Redefine in terms of it.
(base64): New macro.
| Ludovic Courtès |
2020-05-22 | guix hash, guix download: Support base64 format....* guix/scripts/download.scm (show-help, %options): Support "base64"
format.
* guix/scripts/hash.scm (show-help, %options): Likewise.
* tests/guix-hash.sh: Test it.
* doc/guix.texi (Invoking guix hash): Document it.
| Ludovic Courtès |
2020-05-22 | guix hash, guix download: Add '--hash'....* guix/scripts/download.scm (%default-options): Add 'hash-algorithm'.
(show-help, %options): Add "--hash".
(guix-download): Honor it.
* guix/scripts/hash.scm (%default-options): Add 'hash-algorithm'.
(show-help, %options): Add "--hash".
(guix-hash): Honor it.
* tests/guix-hash.sh: Test '-H sha512'.
* doc/guix.texi (Invoking guix download): Document it.
(Invoking guix hash): Document it.
| Ludovic Courtès |
2020-05-22 | tests: Test fixed-output derivations with several hash algorithms....* tests/derivations.scm ("fixed-output derivation"): Test several hash
algorithms.
| Ludovic Courtès |
2020-05-22 | tests: Test 'add-to-store' with several hash algorithms....* tests/store.scm ("add-to-store"): New test.
| Ludovic Courtès |
2020-05-22 | maint: Add "make check-channel-news"....* build-aux/check-channel-news.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.
(check-channel-news): New phony rule.
* doc/contributing.texi (Commit Access): Mention "make check-channel-news".
| Ludovic Courtès |
2020-05-22 | doc: Use "Alternatively" instead of "Alternately"....These two words have different meanings and we really meant
"alternatively" here.
* doc/guix.texi (System Installation):
(Preparing for Installation):
(Invoking guix refresh):
(Invoking guix challenge):
(Networking Services): "Alternatively", not "Alternately".
| Ludovic Courtès |
2020-05-21 | gnu: font-abattis-cantarell: Update to 0.201....* gnu/packages/fonts.scm (font-abattis-cantarell): Update to 0.201.
[native-inputs]: Remove appstream-glib.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: liblcf: Update to 0.6.2....* gnu/packages/easyrpg.scm (liblcf): Update to 0.6.2.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: opensmtpd: Update to 6.7.1p1....* gnu/packages/mail.scm (opensmtpd): Update to 6.7.1p1.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: edgar: Update to 1.33....* gnu/packages/games.scm (edgar): Update to 1.33.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: kodi: Update to 18.7....* gnu/packages/kodi.scm (kodi): Update to 18.7.
| Efraim Flashner |
2020-05-21 | gnu: cogl: Enable tests....* gnu/packages/gnome.scm (cogl)[native-inputs]: Add XORG-SERVER-FOR-TESTS.
[arguments]: Remove #:tests?. Add #:disallowed-references. Add #:phases to
prepare test environment.
| Marius Bakke |
2020-05-21 | gnu: cogl: Update to 1.22.6....* gnu/packages/gnome.scm (cogl): Update to 1.22.6.
| Marius Bakke |
2020-05-21 | gnu: ruby-fakefs: Fix lonely parens....* gnu/packages/ruby.scm (ruby-fakefs)[arguments]: Move dangling parents up.
| Marius Bakke |
2020-05-21 | gnu: gnuastro: Don't build static libraries....* gnu/packages/astronomy.scm (gnuastro)[arguments]: Add configure-flag
to skip building static libraries.
| Efraim Flashner |
2020-05-21 | gnu: gnuastro: Update to 0.12....* gnu/packages/astronomy.scm (gnuastro): Update to 0.12.
| Efraim Flashner |
2020-05-21 | gnu: http-parser: Fix build [and guix pull!] on i686-linux....This follows up on commit 5c30eb61d74034a1b7c188b8d7be7df0b926025f.
* gnu/packages/web.scm (http-parser)[source]: Apply the armhf patch not
here…
[arguments]: …but in a phase & only on armhf-linux.
[native-inputs]: Add it on armhf-linux.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: mpop: Update to 1.4.9....* gnu/packages/mail.scm (mpop): Update to 1.4.9.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: uhttpmock: Don't use NAME in source URI....* gnu/packages/web.scm (uhttpmock)[source]: Hard-code NAME.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: criu: Download sources over HTTPS....* gnu/packages/virtualization.scm (criu)[source]: Use HTTPS.
| Tobias Geerinckx-Rice |
2020-05-21 | gnu: ikiwiki: Add missing input....* gnu/packages/web.scm (ikiwiki)[inputs]: Add perl-xml-feed.
[arguments]: Add 'pre-check' phase.
| Paul Garlick |
2020-05-21 | gnu: perl-xml-feed: Propagate inputs....* gnu/packages/xml.scm (perl-xml-feed)[inputs]: Move to...
[propagated-inputs]: ...here.
| Paul Garlick |
2020-05-21 | gnu: perl-xml-feed: Enable tests....* gnu/packages/xml.scm (perl-xml-feed)[arguments]: Remove field.
| Paul Garlick |
2020-05-21 | gnu: perl-xml-feed: Add missing inputs....* gnu/packages/xml.scm (perl-xml-feed)[inputs]: Add
perl-datetime-format-flexible, perl-datetime-format-iso8601 and
perl-datetime-format-natural.
| Paul Garlick |
2020-05-21 | gnu: Add perl-datetime-format-iso8601....* gnu/packages/perl.scm (perl-datetime-format-iso8601): New variable.
| Paul Garlick |
2020-05-21 | gnu: Add perl-test-distribution....* gnu/packages/perl-check.scm (perl-test-distribution): New variable.
| Paul Garlick |
2020-05-21 | gnu: Add libfreenect....* gnu/packages/openkinect.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
| Ekaitz Zarraga |
2020-05-21 | news: Add ‘de’ translation....* etc/news.scm: Add a ‘de’ translation.
| Florian Pelz |
2020-05-21 | gnu: cl-cffi-gtk-gobject: Fix build with new sbcl-package->cl-source-package ......* gnu/packages/lisp-xyz.scm (sbcl-cl-cffi-gtk-boot0)[inputs]: Add all inputs.
[arguments]: Patch whole source.
(sbcl-cl-cffi-gtk-glib)[inputs]: Remove glib.
(sbcl-cl-cffi-gtk-glib)[arguments]: Reuse boot0 source.
(sbcl-cl-cffi-gtk-gobject)[inputs]: Remove glib.
(sbcl-cl-cffi-gtk-gobject)[arguments]: Reuse boot0 source.
(sbcl-cl-cffi-gtk-gio)[inputs]: Remove glib.
(sbcl-cl-cffi-gtk-gio)[arguments]: Reuse boot0 source.
(sbcl-cl-cffi-gtk-cairo)[inputs]: Remove cairo.
(sbcl-cl-cffi-gtk-cairo)[arguments]: Reuse boot0 source.
(sbcl-cl-cffi-gtk-pango)[inputs]: Remove pango.
(sbcl-cl-cffi-gtk-pango)[arguments]: Reuse boot0 source.
(sbcl-cl-cffi-gtk-gdk-pixbuf)[inputs]: Remove gdk-pixbuf.
(sbcl-cl-cffi-gtk-gdk-pixbuf)[arguments]: Reuse boot0 source.
(sbcl-cl-cffi-gtk-gdk-gdk)[inputs]: Remove gtk+.
(sbcl-cl-cffi-gtk-gdk-gdk)[arguments]: Reuse boot0 source.
(sbcl-cl-cffi-gtk)[arguments]: Reuse boot0 source.
| Pierre Neidhardt |
2020-05-21 | gnu: cl-iolib: Propagate libfixposix or else it won't compile....* gnu/packages/lisp-xyz.scm (cl-iolib)[propagated-inputs]: Add libfixposix.
| Pierre Neidhardt |
2020-05-21 | gnu: cl-dexador: Fix build with new sbcl-package->cl-source-package function....* gnu/packages/lisp-xyz.scm (cl-dexador)[arguments]: Remove
'reset-gzip-timestamps phase.
| Pierre Neidhardt |
2020-05-21 | build: asdf-build-system: Use SBCL source in CL packages....* guix/build/asdf-build-system.scm (copy-files-to-output): Don't attempt to
reset timestamps on files without write access.
(install): When parent SBCL package is in the inputs, use its source. This
way we get possibly patched sources in CL packages as well (e.g. for FFI).
This is also useful for sources that generate files on load-op, like cl-unicode.
* guix/build-system/asdf.scm (package-with-build-system): Forward the SBCL
parent as a native input so that it can be used in the above install phase.
| Pierre Neidhardt |
2020-05-21 | gnu: boost-for-mysql: Fix building....Co-authored with Jonathan Brielmaier <jonathan.brielmaier@web.de>
* gnu/packages/boost.scm (boost-for-mysql)[arguments]: Replace inherited
'configure, phase remove references to python and update the substitute
regex for boost-1.59. Absorb 'more-bin-sh-patching into 'configure.Adjust
make-flags to always pass '--without-python'.
[native-inputs]: Remove python.
| Efraim Flashner |
2020-05-21 | gnu: ncmpc: Update to 0.38....* gnu/packages/mpd.scm (ncmpc): Update to 0.38.
| Tobias Geerinckx-Rice |