aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/databases.scm
blob: 505d5c2753931605aefe9c2fc8efc7ad8062e7c8 (about) (plain)
blob size (162KB) exceeds display size limit (100KB).
Rice * gnu/packages/web.scm (stunnel)[arguments]: Add a 'prune-documentation phase. 2021-10-04gnu: stunnel: Update to 5.60.Tobias Geerinckx-Rice * gnu/packages/web.scm (stunnel): Update to 5.60. [arguments]: Don't explicitly return #t from phases. 2021-09-17Merge branch 'master' into core-updates-frozenMarius Bakke Conflicts: gnu/packages/bioinformatics.scm gnu/packages/chez.scm gnu/packages/docbook.scm gnu/packages/ebook.scm gnu/packages/gnome.scm gnu/packages/linux.scm gnu/packages/networking.scm gnu/packages/python-web.scm gnu/packages/python-xyz.scm gnu/packages/tex.scm gnu/packages/version-control.scm gnu/packages/xml.scm guix/build-system/dune.scm guix/build-system/go.scm guix/build-system/linux-module.scm guix/packages.scm 2021-09-16gnu: varnish-modules: Update to 0.19.0.Marius Bakke * gnu/packages/web.scm (varnish-modules): Update to 0.19.0. 2021-09-16gnu: varnish: Update to 7.0.0.Marius Bakke * gnu/packages/web.scm (varnish): Update to 7.0.0. [arguments]: Set CC in #:configure-flags. Rewrite use-absolute-file-names phase to use named inputs instead of WHICH and patch one more file. Remove trailing #t's. [inputs]: Add BASH-MINIMAL and COREUTILS. Replace PCRE with PCRE2, and PYTHON-WRAPPER with PYTHON. 2021-09-11gnu: castor: Update to 0.8.18.Nicolas Goaziou * gnu/packages/web.scm (castor): Update to 0.8.18. 2021-09-07Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-09-03gnu: nginx-documentation: Update to 1.21.2-2764-bc9c5d11b67c.Tobias Geerinckx-Rice * gnu/packages/web.scm (nginx-documentation): Update to 1.21.2-2764-bc9c5d11b67c. 2021-09-03gnu: nginx: Update to 1.21.2.Tobias Geerinckx-Rice * gnu/packages/web.scm (nginx): Update to 1.21.2. 2021-09-02gnu: esbuild: Disable race detector on 32-bit targets.Pierre Langlois * gnu/packages/web.scm (esbuild)[arguments]: Set the ESBUILD_RACE variable to an empty string to remove the -race option. 2021-08-25gnu: uhttpmock: Fix tests.Guillaume Le Vaillant * gnu/packages/web.scm (uhttpmock)[arguments]: Add 'set-home-for-tests' phase. 2021-08-14gnu: python-feedparser: Update to 6.0.8.Mathieu Othacehe * gnu/packages/web.scm (python-feedparser): Update to 6.0.8. [propagated-inputs]: Add python-sgmllib3k. 2021-08-12Merge branch 'master' into core-updates-frozenMarius Bakke Conflicts: gnu/packages/algebra.scm gnu/packages/games.scm gnu/packages/golang.scm gnu/packages/kerberos.scm gnu/packages/mail.scm gnu/packages/python.scm gnu/packages/ruby.scm gnu/packages/scheme.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/version-control.scm 2021-08-11gnu: rapidjson: Remove unused configure flag.Marius Bakke * gnu/packages/web.scm (rapidjson)[arguments]: Remove #:configure-flags, as the entry is not honored by the build system and would only affect tests and examples, which are not installed. [source](snippet): Remove trailing #t. 2021-08-08gnu: libcss: Fix building with gcc-10.Efraim Flashner * gnu/packages/web.scm (libcss)[source]: Add snippet to initialize the value of a variable. 2021-08-01Merge branch 'master' into core-updates-frozenMarius Bakke 2021-07-29Merge branch 'master' into core-updates-frozenMarius Bakke Conflicts: gnu/packages/bioinformatics.scm gnu/packages/cmake.scm gnu/packages/curl.scm gnu/packages/emacs-xyz.scm gnu/packages/gpodder.scm gnu/packages/music.scm gnu/packages/patches/glibc-bootstrap-system.patch gnu/packages/python-xyz.scm gnu/packages/shells.scm gnu/packages/statistics.scm 2021-07-29gnu: web: Move libyaml and libcyaml to (gnu packages serialization).Maxim Cournoyer Files to be adjusted were searched with the following command: $ git ls-files | xargs grep -l -E ',libc?yaml' | \ xargs grep -L '(gnu packages serialization)' * gnu/packages/web.scm (libyaml, libyaml+static, libcyaml): Move to... * gnu/packages/serialization.scm: ... here. 2021-07-29gnu: Add nginx-rtmp-module.Jack Hill * gnu/packages/web.scm (nginx-rtmp-module): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2021-07-27gnu: Remove cadaver.Leo Famulari As discussed in <https://bugs.gnu.org/46602>, cadaver does not support a current release of OpenSSL. * gnu/packages/web.scm (cadaver): Remove variable. 2021-07-27gnu: gmnisrv: Fix configuration search path.Sarah Morgensen Look in /etc for configuration files rather than /gnu/store/...-gmnisrv-.../etc. gnu/packages/web.scm (gmnisrv)[arguments]<#:configure-flags>: Set --sysconfdir. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> 2021-07-27gnu: gmnisrv: Remove dependency on /etc/mime.types.Sarah Morgensen Remove the dependency on /etc/mime.types (fixes #49233). gnu/packages/web.scm (gmnisrv)[arguments]<#:configure-flags>: Set --with-mimedb to directly use mime.types from mailcap. [propagated-inputs]: Move mailcap to... [inputs]: ...here (/etc/mime.types no longer need in profiles). Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> 2021-07-27gnu: gmnisrv: Use #:make-flags, and cross-compile.Sarah Morgensen gnu/packages/web.scm (gmnisrv)[arguments]<#:phases>{set-variables}: Move 'CC=' to... <#:make-flags>: ...here, and support cross-compilation with (cc-for-target). Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> 2021-07-27gnu: gmnisrv: Disable tests using #:tests?.Sarah Morgensen gnu/packages/web.scm (gmnisrv)[arguments]<#:phases>: Undelete check phase, and... <#:tests?>: ...disable tests here instead. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> 2021-07-25gnu: gmnisrv: Update to 0-2.32854b7.Sarah Morgensen Update to latest commit. gmnisrv uses v3 X509 certificates now, and so "requires fresh certificates, which could break clients with strict trust-on-first-use policies." gnu/packages/web.scm (gmnisrv): Update to 0-2.32854b7. Signed-off-by: Arun Isaac <arunisaac@systemreboot.net> 2021-07-25gnu: perl-http-cookiejar: Update to 0.012.Tobias Geerinckx-Rice This fixes its build which had started to fail due to a time-bomb: Expires=Wed, 09 Jun 2021 10:18:14 GMT in an examples.t test cookie. * gnu/packages/web.scm (perl-http-cookiejar): Update to 0.012. 2021-07-24gnu: Use 'search-input-directory' and 'search-input-file' where appropriate.Ludovic Courtès This changes some of the remaining uses of this idiom: (string-append (assoc-ref inputs "LABEL") "FILE") to one of: (search-input-file inputs "FILE") (search-input-directory inputs "FILE") * gnu/packages/axoloti.scm (axoloti-patcher): Use 'search-input-directory'. (axoloti-patcher-next): Likewise. * gnu/packages/bioinformatics.scm (java-picard): Likewise. * gnu/packages/bootloaders.scm (grub-hybrid): Likewise. (u-boot-puma-rk3399): Likewise. (u-boot-rock64-rk3328): Likewise. (u-boot-firefly-rk3399): Likewise. (u-boot-rockpro64-rk3399): Likewise. (u-boot-pinebook-pro-rk3399): Likewise. * gnu/packages/cran.scm (r-shiny): Likewise. (r-shinytree): Likewise. * gnu/packages/education.scm (anki): Likewise. * gnu/packages/emacs-xyz.scm (emacs-flycheck-grammalecte): Likewise. (emacs-rime): Likewise. * gnu/packages/emulators.scm (dolphin-emu): Likewise. * gnu/packages/games.scm (bsd-games): Likewise. (seahorse-adventures): Likewise. (einstein): Likewise. * gnu/packages/gimp.scm (gimp-fourier): Likewise. * gnu/packages/gnome.scm (gspell): Likewise. * gnu/packages/guile-xyz.scm (guile-libyaml): Likewise. * gnu/packages/java.scm (icedtea-7): Likewise. * gnu/packages/language.scm (nimf): Likewise. * gnu/packages/lxde.scm (spacefm): Likewise. * gnu/packages/mail.scm (claws-mail): Likewise. * gnu/packages/netpbm.scm (netpbm): Likewise. * gnu/packages/networking.scm (blueman): Likewise. * gnu/packages/scheme.scm (scm): Likewise. * gnu/packages/security-token.scm (python-fido2): Likewise. * gnu/packages/syndication.scm (rtv): Likewise. * gnu/packages/tls.scm (acme-client): Likewise. * gnu/packages/web.scm (netsurf): Likewise. * gnu/packages/wine.scm (wine-staging): Likewise. * gnu/packages/wxwidgets.scm (wxwidgets): Likewise. 2021-07-23gnu: nghttp2: Update to 1.44.0.Marius Bakke * gnu/packages/web.scm (nghttp2): Update to 1.44.0. 2021-07-23gnu: hpcguix-web: Update to 0.1.0.Ludovic Courtès * gnu/packages/web.scm (hpcguix-web): Update to 0.1.0. [arguments]: In 'wrap-program' phase, change "/bin/run" to "/bin/hpcguix-web". [inputs]: Add BASH-MINIMAL. * gnu/services/web.scm (hpcguix-web-shepherd-service): Run "/bin/hpcguix-web". 2021-07-18Merge branch 'master' into core-updatesLudovic Courtès 2021-07-05gnu: monolith: Update to 2.6.1.Nicolas Goaziou * gnu/packages/web.scm (monolith): Update to 2.6.1. 2021-07-04gnu: perl-libwww: Update to 6.55.Matthew James Kraai * gnu/packages/web.scm (perl-libwww): Update to 6.55. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> 2021-06-30gnu: goaccess: Update to 1.5.1.Tobias Geerinckx-Rice * gnu/packages/web.scm (goaccess): Update to 1.5.1. 2021-06-25gnu: libzim: Update to 6.3.2.Tobias Geerinckx-Rice * gnu/packages/web.scm (libzim): Update to 6.3.2. 2021-06-23Merge branch 'master' into core-updatesTobias Geerinckx-Rice Conflicts: gnu/packages/cups.scm gnu/packages/python-web.scm gnu/packages/web.scm guix/build/maven/pom.scm 2021-06-19gnu: esbuild: Update to 0.12.9.Ryan Prior * gnu/packages/web.scm (esbuild): Update to 0.12.9. Signed-off-by: Brice Waegeneire <brice@waegenei.re> 2021-06-20gnu: linkchecker: Update to 10.0.1.Arun Isaac * gnu/packages/web.scm (linkchecker): Update to 10.0.1. [source]: Remove patches. [inputs]: Add python-beautifulsoup4. Replace python2-dnspython-1.16, python2-pyxdg and python2-requests with python-dnspython, python-pyxdg and python-requests respectively. [native-inputs]: Replace python2-pytest, python2-miniboa and python2-parameterized with python-pytest, python-miniboa and python-parameterized respectively. [arguments]: Use python 3. Replace check phase instead of deleting the standard phase and adding a custom one. Use add-installed-pythonpath instead of setting PYTHONPATH directly. Support disabling of tests with tests?. [home-page]: Update URI. * gnu/packages/patches/linkchecker-tests-require-network.patch: Delete file. * gnu/local.mk (dist_patch_DATA): Unregister it. 2021-06-19Merge branch 'master' into core-updatesMarius Bakke Note: this merge actually changes the 'curl' and 'python-attrs' derivations, as part of solving caf4a7a2770ef4d05a6e18f40d602e51da749ddc and 12964df69a99de6190422c752fef65ef813f3b6b respectively. 4604d43c0e (gnu: gnutls@3.6.16: Fix cross-compilation.) was ignored because it cannot currently be tested. Conflicts: gnu/local.mk gnu/packages/aidc.scm gnu/packages/boost.scm gnu/packages/curl.scm gnu/packages/nettle.scm gnu/packages/networking.scm gnu/packages/python-xyz.scm gnu/packages/tls.scm 2021-06-14gnu: Rename qtbase to qtbase-5.Maxim Cournoyer This change was automated via the following command: $ git ls-files | xargs sed -i 's/,qtbase)/,qtbase-5)/g' $ git ls-files | xargs sed -i 's/inherit qtbase)/inherit qtbase-5)/g' $ git ls-files | xargs sed -i 's/package-version qtbase)/package-version qtbase-5)/g' $ git checkout etc # to clear some spurious changes This is done so the qtbase package can be upgraded to version 6 in the following commit. 2021-06-13gnu: goaccess: Update to 1.5.Solene Rapenne works fine for me, tested with a huge log file and many parameters. * gnu/packages/web.scm (goaccess): Update to 1.5. Signed-off-by: Ludovic Courtès <ludo@gnu.org> 2021-06-12gnu: monolith: Update to 2.6.0.Nicolas Goaziou * gnu/packages/web.scm (monolith): Update to 2.6.0.