summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* gnu: nginx: Update to 1.21.2.•••* gnu/packages/web.scm (nginx): Update to 1.21.2. Tobias Geerinckx-Rice2021-09-031-3/+3
* gnu: mtools: Update to 4.0.35.•••* gnu/packages/mtools.scm (mtools): Update to 4.0.35. Tobias Geerinckx-Rice2021-09-031-2/+2
* gnu: ncdu: Update to 1.16.•••* gnu/packages/ncdu.scm (ncdu): Update to 1.16. Tobias Geerinckx-Rice2021-09-031-3/+3
* gnu: Add fatrace.•••* gnu/packages/monitoring.scm (fatrace): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Raphaël Mélotte2021-09-031-0/+33
* gnu: nheko: Update to 0.8.2.•••* gnu/packages/messaging.scm (nheko): Update to 0.8.2. [source snippet]: Remove third_party folder. [arguments]: Remove -fpermissive flag, remove remove-Werror phase, add phase wrap-program and unbundle-dependencies. [inputs]: Add gst-plugins-base, gst-plugins-bad, libnice, qtkeychain, and unbundle blurhash, cpp-httplib and single-application, remove tweeny. [native-inputs]: Add doxygen, graphviz used to build documentation. [description]: Simplify by removing the long list, add new features. (mtxclient): Update to 0.5.1. [arguments]: Remove set-home phase. * gnu/packages/databases.scm (lmdbxx): Update to 1.0.0. [source]: Change repository to a fork required by nheko. [home-page]: Update accordingly. Signed-off-by: Ludovic Courtès <ludo@gnu.org> nixo2021-09-032-44/+57
* gnu: Add single-application-qt5.•••* gnu/packages/qt.scm (single-application-qt5): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> nixo2021-09-031-0/+56
* gnu: Add blurhash.•••* gnu/packages/image.scm (blurhash): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> nixo2021-09-031-0/+26
* gnu: Add cpp-httplib.•••* gnu/packages/cpp.scm (cpp-httplib): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> nixo2021-09-031-1/+62
* gnu: libssh: Update to 0.9.6 [fixes CVE-2021-3634].•••* gnu/packages/ssh.scm (libssh): Update to 0.9.6. [source]: Use URL-FETCH. Leo Famulari2021-09-031-7/+6
* gnu: dash: Update to 0.5.11.5.•••* gnu/packages/shells.scm (dash): Update to 0.5.11.5. Tobias Geerinckx-Rice2021-09-031-2/+2
* weather: Don't look for exported package replacements twice.•••* guix/scripts/weather.scm (all-packages): Delete duplicates, so that exported replacements aren't included twice. Christopher Baines2021-09-031-10/+12
* publish: Simplify 'narinfo-string'.•••This is a followup to 222f4661ed11b225f458cbe495a296f233129bec, which was intended to improve performance of 'narinfo-string'. * guix/scripts/publish.scm (narinfo-string): Remove 'catch' and 'read-derivation-from-file' call when rendering "Deriver". Ludovic Courtès2021-09-031-12/+2
* gnu: guile-syntax-highlight: Move Gitile variant to guile-xyz.scm.•••Fixes a regression introduced in 5dac09e263d566ccf99776df97c47eed0d30c172 whereby version-control.scm would inherit from GUILE-SYNTAX-HIGHLIGHT, which is in guile-xyz.scm, thereby leading to unbound variable errors. Reported by vivien on #guix. * gnu/packages/version-control.scm (guile-syntax-highlight-for-gitile): Move to... * gnu/packages/guile-xyz.scm (guile-syntax-highlight-for-gitile): ... here. New variable. Add 'properties' field. Ludovic Courtès2021-09-032-22/+23
* gnu: acpi-call-linux-module: Update to 1.2.2.•••* gnu/packages/linux.scm (acpi-call-linux-module): Update to 1.2.2. [arguments]: Stop returning #t from phases. [home-page]: Match source. Tobias Geerinckx-Rice2021-09-031-7/+5
* gnu: version-control: Add gitile service.•••* gnu/services/version-control.scm (gitile-service-type): New variable. * doc/guix.texi (Version Control Services): Document it. * gnu/tests/version-control.scm (%test-gitile): New variable. Julien Lepiller2021-09-023-3/+395
* gnu: gitolite: Add unsafe-pattern configuration option.•••* gnu/services/version-control.scm (gitolite-rc-file): Add unsafe-pattern field. (gitolite-rc-file-compiler): Write it. * doc/guix.texi (Version Control Services): Document it. Julien Lepiller2021-09-022-1/+20
* gnu: Add gitile.•••* gnu/packages/version-control.scm (gitile): New variable. Julien Lepiller2021-09-021-0/+94
* gnu: Add emacs-dictionary.•••* gnu/packages/emacs-xyz.scm (emacs-dictionary): New variable. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> Simon South2021-09-031-0/+22
* gnu: node: Enable cross-compilation.•••Node runs parts of itself on the host for bootstraping therefore for cross-compiling support we need to fidle with the rpath in the build system, as well as duplicating some of the dependencies as native-inputs and inputs. * gnu/pakcages/node.scm (node)[arguments]: Refer to /bin/sh and /bin/env directly instead of using (which). Add new 'set-bootstrap-host-rpath phase to correctly set the rpath for binaries that are meant to run on the host. Pass --cross-compiling and --dest-cpu to configure script if needed. Set the CC_host, CXX_host, CC, CCX and PKG_CONFIG variable for cross-compilation. Refer to the host python. Do not return #t from any phases. [native-inputs]: Add c-ares, http-parser, icu4c, libuv, nghttp2, openssl and zlib. Remove which. [inputs]: Add bash and coreutils. (llhttp-bootstrap)[arguments]: Refer to esbuild via (or native-inputs inputs). (node-lts)[arguments]: Add new 'set-bootstrap-host-rpath phase to correctly set the rpath for host binaries. Pass --cross-compiling and --dest-cpu to configure script if needed. Set the CC_host, CXX_host, CCX and PKG_CONFIG variable for cross-compilation. Refer to the host python. Do not return #t from any phases. Refer to /bin/sh and /bin/env directly instead of using (which). Do not return #t from any phases. [native-inputs]: Hardcode native inputs instead of inheriting them from node. [inputs]: Add bash and coreutils. Pierre Langlois2021-09-021-34/+157
* gnu: esbuild: Disable race detector on 32-bit targets.•••* gnu/packages/web.scm (esbuild)[arguments]: Set the ESBUILD_RACE variable to an empty string to remove the -race option. Pierre Langlois2021-09-021-1/+5
* gnu: Remove python2-selectors2.•••* gnu/packages/python-xyz.scm (python2-selectors2): Remove variable. Pierre Langlois2021-09-021-23/+0
* gnu: Remove python2-rfc6555.•••* gnu/packages/python-xyz.scm (python2-rfc6555): Remove variable. (python-rfc6555)[properties]: Remove field. Pierre Langlois2021-09-021-9/+1
* gnu: offlineimap: Replace with offlineimap3.•••* gnu/packages/mail.scm (offlineimap3): New variable. (offlineimap): Replace with deprecated package. Pierre Langlois2021-09-021-45/+51
* gnu: Add python-imaplib2.•••* gnu/packages/mail.scm (python-imaplib2): New variable. Pierre Langlois2021-09-021-0/+18
* gnu: parallel: Update to 20210822.•••* gnu/packages/parallel.scm (parallel): Update to 20210822. Efraim Flashner2021-09-021-2/+2
* nls: Update translations.•••* po/packages/it.po: New file. * po/packages/LINGUAS: Add `it'. * po/*/*.po: Update translations. Julien Lepiller2021-09-0254-137381/+167545
* import: go: Improve error handling.•••* guix/import/go.scm (go-module->guix-package*): Handle errors, remove memoize. (go-module-recursive-import): Remove 'guard', add memoize. * guix/scripts/import/go.scm (guix-import-go): Adjust. * tests/go.scm: Adjust. Signed-off-by: Ludovic Courtès <ludo@gnu.org> zimoun2021-09-013-23/+35
* import: utils: Skip not found packages.•••* guix/import/utils.scm (recursive-import): Skip packages when the package returned by 'repo->guix-package' is false. * tests/import-utils.scm: New tests. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sarah Morgensen2021-09-012-12/+42
* import: go: Return false for package not found.•••* guix/import/go.scm (go-module-recursive-import): Explicitly return false when packages are not found. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Sarah Morgensen2021-09-011-1/+1
* gnu: python-pycryptodomex: Unbundle libtomcrypt.•••* gnu/packages/python-crypto.scm (python-pycryptodomex)[source]{snippet}: Unbundle libtomcrypt. (python-pycryptodomex)[source]{modules}: Add (guix build utils). Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxime Devos2021-09-011-1/+3
* gnu: python-pycryptodome: Unbundle libtomcrypt.•••* gnu/packages/python-crypto.scm (pycryptodome-unbundle-tomcrypt-snippet): New variable. (python-pycryptodome)[source]{snippet}: Unbundle libtomcrypt. (python-pycryptodome)[source]{modules}: Add (guix build utils). Signed-off-by: Ludovic Courtès <ludo@gnu.org> Maxime Devos2021-09-011-1/+24
* gnu: Add date2name.•••* gnu/packages/python-xyz.scm (date2name): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org> phodina2021-09-011-0/+37
* gnu: mailutils: Look up Scheme variables in the right module.•••Fixes <https://issues.guix.gnu.org/49295>. Reported by Maxime Devos <maximedevos@telenet.be>. * gnu/packages/patches/mailutils-variable-lookup.patch: New file. * gnu/packages/mail.scm (mailutils)[source]: Use it. * gnu/local.mk (dist_patch_DATA): Add it. Ludovic Courtès2021-09-013-2/+30
* gnu: electron-cash: Update to 4.2.5.•••* gnu/packages/finance.scm (electron-cash): Update to 4.2.5. Guillaume Le Vaillant2021-09-011-2/+2
* gnu: txr: Update to 270.•••* gnu/packages/lisp.scm (txr): Update to 270. Guillaume Le Vaillant2021-09-011-2/+2
* gnu: monero-gui: Update to 0.17.2.3.•••* gnu/packages/finance.scm (monero-gui): Update to 0.17.2.3. [arguments]: Update 'fix-build' phase. Remove 'generate-zxcvbn-c' phase. Guillaume Le Vaillant2021-09-011-7/+2
* gnu: monero: Update to 0.17.2.3.•••* gnu/packages/finance.scm (monero): Update to 0.17.2.3. Guillaume Le Vaillant2021-09-011-2/+2
* gnu: Add r-catch.•••* gnu/packages/bioinformatics.scm (r-catch): New variable. Ricardo Wurmus2021-09-011-0/+28
* gnu: artanis: Update to 0.5.•••* gnu/packages/guile-xyz.scm (artanis): Update to 0.5. [inputs]: Replace guile-2.2 with guile-3.0. Add nspr. [propagated-inputs]: Replace guile-json-1 with guile-json-3, guile2.2-readline with guile-readline, and guile2.2-redis with guile-redis. [arguments]: Do not return #t from custom phases. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> Léo Le Bouter2021-09-011-12/+13
* gnu: artanis: Remove hard-coded guile effective version.•••* gnu/packages/guile-xyz.scm (artanis)[arguments]: Import target-guile-effective-version from (guix build guile-build-system). Use target-guile-effective-version to determine the guile effective version. Arun Isaac2021-09-011-7/+20
* gnu: cataclysm-dda: Update to 0.F-2.•••* gnu/packages/games.scm (cataclysm-dda): Update to 0.F-2. Nicolas Goaziou2021-09-011-2/+2
* gnu: emacs-boon: Update to 1.2.•••* gnu/packages/emacs-xyz.scm (emacs-boon): Update to 1.2. Nicolas Goaziou2021-09-011-2/+2
* gnu: emacs-tramp: Update to 2.5.1.2.•••* gnu/packages/emacs-xyz.scm (emacs-tramp): Update to 2.5.1.2. Nicolas Goaziou2021-09-011-2/+2
* gnu: emacs-org-mime: Update to 0.2.3.•••* gnu/packages/emacs-xyz.scm (emacs-org-mime): Update to 0.2.3. Nicolas Goaziou2021-09-011-2/+2
* gnu: emacs-olivetti: Update hash•••* gnu/packages/emacs-xyz.scm (emacs-olivetti): Update hash. This is a follow-up to last commit (8e6bac249276f1a17d073220ba59a07c8b071642). Nicolas Goaziou2021-09-011-1/+1
* gnu: emacs-olivetti: Update to 2.0.3.•••* gnu/packages/emacs-xyz.scm (emacs-olivetti): Update to 2.0.3. Nicolas Goaziou2021-09-011-1/+1
* gnu: emacs-elfeed-score: Update to 0.8.6.•••* gnu/packages/emacs-xyz.scm (emacs-elfeed-score): Update to 0.8.6. Nicolas Goaziou2021-09-011-2/+2
* gnu: emacs-crdt: Update to 0.1.3.•••* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.1.3. Nicolas Goaziou2021-09-011-21/+18
* gnu: emacs-crdt: Update to 0.1.1.•••* gnu/packages/emacs-xyz.scm (emacs-crdt): Update to 0.1.1. Nicolas Goaziou2021-09-011-4/+5
* gnu: Remove harmonist-tk.•••harmonist-tk has been superseded by harmonist-sdl. Current harmonist-tk package fails to build due to upgrade of harmonist to 0.4.1. * gnu/packages/games.scm (harmonist-tk): Remove variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu> jgart2021-09-011-20/+0