summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-06-15gnu: Add erlang-providers.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-providers): New variable.
2022-06-15gnu: Add erlang-eunit-formatters.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-eunit-formatters): New variable.
2022-06-15gnu: Add erlang-getopt.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-getopt): New variable.
2022-06-15gnu: Add erlang-bbmustache.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-bbmustache): New variable.
2022-06-15gnu: Add erlang-cth-readable.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-cth-readable): New variable.
2022-06-15gnu: Add erlang-erlware-commons.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-erlware-commons): New variable.
2022-06-15gnu: Add erlang-certifi.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-certifi): New variable.
2022-06-15gnu: Add erlang-cf.Hartmut Goebel
* gnu/packages/erlang.scm (erlang-cf): New variable.
2022-06-15import: Add hex.pm importer.Hartmut Goebel
hex.pm is a package repository for Erlang and Elixir. * guix/scripts/import.scm (importers): Add "hexpm". * guix/scripts/import/hexpm.scm, guix/import/hexpm.scm, guix/hexpm-download.scm: New files. * guix/import/utils.scm (source-spec->object): Add "hexpm-fetch" to list of fetch methods. * guix/upstream.scm (package-update/hexpm-fetch): New function. (%method-updates) Add it. * Makefile.am: Add them.
2022-06-15build-system: Add 'rebar-build-system'.Hartmut Goebel
* guix/build-system/rebar.scm, guix/build/rebar-build-system.scm: New files. * Makefile.am (MODULES): Add them. * doc/guix.texi (Build Systems): Update rebar-build-system section.
2022-06-15Revert "Add (guix extracting-download)."Hartmut Goebel
This reverts commit f63c79bf7674df012517f8e9148f94c611e35f32, which was missed when reverting the #51061 patch series for now in a1679b74c9aa20bb51bc4add82ebb7ba78926b9c.
2022-06-15gnu: slurm: Update to 22.05.1.Ludovic Courtès
* gnu/packages/parallel.scm (slurm): Update to 22.05.1. (slurm-21.08): New variable.
2022-06-15gnu: Add kismet.Petr Hodina
* gnu/packages/networking.scm (kismet): New variable. * gnu/local.mk: Add patch. * gnu/packages/patches/kismet-unbundle-boost.patch: New file. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15gnu: libwesockets: Update license.Petr Hodina
* gnu/packages/web.scm (libwebsockets)[license]: Change to expat. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15gnu: rtmidi: Add version 5.0.0.Alexandros Theodotou
* gnu/packages/audio.scm (rtmidi): Update to 5.0.0. (rtmidi-4.0): New variable. * gnu/packages/music.scm (milkytracker)[inputs]: Use RTMIDI-4.0 rather than RTMIDI. (zrythm)[inputs]: Likewise. Co-authored-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15gnu: libadwaita: Update to 1.1.0.Alexandros Theodotou
* gnu/packages/gnome.scm (libadwaita): Update to 1.1.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15gnu: lttng-ust: Fix dependencies.Olivier Dion
* gnu/packages/instrumentation.scm (lttng-ust): Fix dependencies. [inputs]: Remove liburcu. [propagated-inputs]: Add liburcu. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15doc: Follow the 'disabled -> *unspecified* configuration refactor.Attila Lendvai
* doc/guix.texi (Networking Services) (Messaging Services) (Telephony Services) (File-Sharing Services) (VPN Services) (Power Management Services) (Complex Configurations) (Desktop Home Services): Remove mentions of the 'disabled symbol or replace them by *unspecified*, depending on context. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15services: configuration: Use *unspecified* instead of 'disabled.Attila Lendvai
Use *unspecified* as a marker for field values that have not been set. Rationale: 'disabled may easily clash with user values for boolean fields, is confusing (i.e. its meaning is *not* boolean false, but unspecified) and it also passes silently through the symbol? predicate of a field of type symbol. * gnu/services/configuration.scm (configuration-missing-default-value): Renamed from configuration-no-default-value. (define-maybe-helper): Use *unspecified* instead of 'disabled, and make the default value optional. * gnu/home/services/desktop.scm (home-redshift-configuration): Change (maybe-xyz 'disabled) to maybe-xyz. * gnu/services/authentication.scm (nslcd-configuration): Likewise. * gnu/services/cgit.scm (repository-cgit-configuration): Likewise. * gnu/services/file-sharing.scm (serialize-maybe-string) (serialize-maybe-file-object): Use 'unspecified?' instead of (eq? val 'disabled). * gnu/services/messaging.scm (raw-content?): Likewise. (ssl-configuration): Change (maybe-xyz 'disabled) to maybe-xyz. (prosody-configuration): Likewise. * gnu/services/file-sharing.scm (transmission-daemon-configuration): Likewise. * gnu/services/messaging.scm (define-all-configurations): Use *unspecified* instead of 'disabled'. * gnu/services/networking.scm (opendht-configuration): Likewise. * gnu/services/pm.scm (tlp-configuration): Likewise. * gnu/services/telephony.scm (jami-account): Likewise. (jami-configuration): Likewise. * gnu/services/vpn.scm (openvpn-client-configuration): Likewise. * tests/services/configuration.scm ("maybe type, no default") ("maybe type, with default"): New tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15services: configuration: Support (field1 maybe-number "") format.Attila Lendvai
As opposed to explicitly using 'disabled as value, or using the (field1 (maybe-number) "") format. It's mostly the work of Maxime Devos shared under #54674, with some modifications by Attila Lendvai. * gnu/services/configuration.scm (normalize-field-type+def): New function. (define-configuration-helper) (define-configuration): Support new field format. * tests/services/configuration.scm (config-with-maybe-number->string): New function. ("maybe value serialization of the instance"): New test. ("maybe value serialization of the instance, unspecified"): New test. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
2022-06-15ssh: Add #:connection-timeout parameter to 'open-ssh-session'.Ludovic Courtès
* guix/ssh.scm (open-ssh-session): Add #:connection-timeout parameter and honor it.
2022-06-15system: <operating-system> compiler truly honors the 'system' argument.Ludovic Courtès
Fixes <https://issues.guix.gnu.org/55951>. * gnu/system.scm (operating-system-compiler): Parameterize '%current-system' and '%current-target-system' before calling 'operating-system-derivation'. * tests/system.scm ("lower-object, %current-system sensitivity"): New test.
2022-06-15pull: Tweak cache directory validation code.Ludovic Courtès
This is a followup to 7c52cad0464175370c44bd4695e4c01a62b8268f. * guix/scripts/pull.scm (guix-pull): Move cache directory validation code to... (validate-cache-directory-ownership): ... here. New procedure. Use SRFI-71 instead of SRFI-11. Use 'formatted-message' for the error message, with ASCII quotation marks, and use Texinfo markup for '&fix-hint'.
2022-06-14gnu: PostgreSQL: Promote version 14 to the default.Marius Bakke
* gnu/packages/databases.scm (postgresql): Alias to POSTGRESQL-14. * gnu/packages/qt.scm (qtbase-5)[inputs]: Stay on POSTGRESQL-13.
2022-06-14gnu: python-asyncpg: Update to 0.25.0.Marius Bakke
* gnu/packages/databases.scm (python-asyncpg): Update to 0.25.0. [native-inputs]: Remove PYTHON-FLAKE8, PYTHON-PYCODESTYLE, PYTHON-SPHINX, PYTHON-SPHINX-RTD-THEME, and PYTHON-SPHINXCONTRIB-ASYNCIO.
2022-06-14gnu: python-tortoise-orm: Update to 0.19.1.Marius Bakke
* gnu/packages/databases.scm (python-tortoise-orm): Update to 0.19.1.
2022-06-14gnu: python-pypika-tortoise: Update to 0.1.5.Marius Bakke
* gnu/packages/databases.scm (python-pypika-tortoise): Update to 0.1.5.
2022-06-14gnu: gplates: Update to 2.3.01-beta.3.Marius Bakke
* gnu/packages/geo.scm (gplates): Update to 2.3.01-beta.3. [source](uri): Adjust for beta releases. [source](file-name): Adjust for zipball. [native-inputs]: Add UNZIP. [inputs]: Simplify.
2022-06-14gnu: perl-dbd-pg: Update to 3.15.1.Marius Bakke
* gnu/packages/databases.scm (perl-dbd-pg): Update to 3.15.1.
2022-06-14gnu: python-acme, certbot: Update to 1.28.0.Marius Bakke
* gnu/packages/tls.scm (python-acme): Update to 1.28.0. [arguments]: Override check phase. (certbot)[source]: Update hash.
2022-06-14gnu: python-josepy: Update to 1.13.0.Marius Bakke
* gnu/packages/python-crypto.scm (python-josepy): Update to 1.13.0. [propagated-inputs]: Remove PYTHON-SIX.
2022-06-14gnu: TimescaleDB: Update to 2.7.0.Marius Bakke
* gnu/packages/databases.scm (timescaledb): Update to 2.7.0. [source](snippet): Remove more files. [source](patches): New field. * gnu/packages/patches/timescaledb-flaky-test.patch: New file. * gnu/local.mk (dist_patch_DATA): Adjust accordingly.
2022-06-14gnu: ruby-pg: Update to 1.3.5.Marius Bakke
* gnu/packages/ruby.scm (ruby-pg): Update to 1.3.5. [home-page]: Change to current. [source]: Switch to GIT-FETCH. [arguments]: Add #:phases.
2022-06-14gnu: PostgreSQL@13: Update replacement to 13.7 [fixes CVE-2022-1552].Marius Bakke
* gnu/packages/databases.scm (postgresql-13/replacement): Update to 13.7.
2022-06-14gnu: PostgreSQL@10: Update to 10.21 [fixes CVE-2022-1552].Marius Bakke
* gnu/packages/databases.scm (postgresql-10): Update to 10.21.
2022-06-14gnu: PostgreSQL@11: Update to 11.16 [fixes CVE-2022-1552].Marius Bakke
* gnu/packages/databases.scm (postgresql-11): Update to 11.16.
2022-06-14gnu: PostgreSQL@14: Update to 14.3 [fixes CVE-2022-1552].Marius Bakke
* gnu/packages/databases.scm (postgresql-14): Update to 14.3.
2022-06-14gnu: PostgreSQL: Permit loading plugins from symlink unions again.Marius Bakke
...this fixes a regression since 49b350fafc2c3 where the patch to disable symlink resolving went missing from versions < 14. * gnu/packages/databases.scm (postgresql-13/replacement): New variable. (postgresql-13)[replacement]: New field. (postgresql-11)[source](patches): Add 'postgresql-disable-resolve_symlinks.patch'.
2022-06-12gnu: dos2unix: Update to 7.4.3.Greg Hogan
* gnu/packages/textutils.scm (dos2unix): Update to 7.4.3. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
2022-06-12gnu: htop: Update to 3.2.1.Greg Hogan
* gnu/packages/admin.scm (htop): Update to 3.2.1. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
2022-06-12gnu: ccache: Update to 4.6.1.Greg Hogan
* gnu/packages/ccache.scm (ccache): Update to 4.6.1. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
2022-06-14doc: Document how to repair Guix System from a chroot.Maxim Cournoyer
* doc/guix.texi (System Troubleshooting Tips): New chapter.
2022-06-14services: dbus: Add a VERBOSE? configuration option.Maxim Cournoyer
* gnu/services/dbus.scm (<dbus-configuration>)[verbose?]: New field. (dbus-shepherd-service): Use it. (dbus-service)[verbose?]: Add argument and update doc. * doc/guix.texi (Desktop Services): Document it.
2022-06-14gnu: Add dbus-verbose.Maxim Cournoyer
* gnu/packages/glib.scm (dbus-verbose): New variable.
2022-06-14gnu: komikku: Update to 0.39.0.Liliana Marie Prikler
* gnu/packages/gnome.scm (komikku): Update to 0.39.0.
2022-06-14gnu: webkitgtk: Update to 2.36.3.Liliana Marie Prikler
* gnu/packages/webkit.scm (webkitgtk): Update to 2.36.3.
2022-06-14gnu: h-client: Fetch source from Savannah again.Maxim Cournoyer
* gnu/packages/hardware.scm (h-client)[source]: Update URL and associated comment.
2022-06-14gnu: cl-fof: Update to 0.2.0-1.522879e.Guillaume Le Vaillant
* gnu/packages/lisp-xyz.scm (sbcl-fof): Update to 0.2.0-1.522879e. [inputs]: Sort inputs. [arguments]: Remove 'fix-build' phase.
2022-06-14gnu: cl-dexador: Remove input labels.Guillaume Le Vaillant
* gnu/packages/lisp-xyz.scm (sbcl-dexador)[inputs, native-inputs]: Remove labels and sort inputs.
2022-06-14gnu: cl-dexador: Update to 0.9.15-1.74a233e.André A. Gomes
* gnu/packages/lisp-xyz.scm (sbcl-dexador): Update to 0.9.15-1.74a233e. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>