aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/libsigsegv.scm
blob: ebbdd2ad9093fe9697b2f92059aed7883bd4ae58 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2012, 2013, 2018 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2017 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages libsigsegv)
  #:use-module (guix licenses)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public libsigsegv
  (package
   (name "libsigsegv")
   (version "2.14")
   (source (origin
            (method url-fetch)
            (uri (string-append
                  "mirror://gnu/libsigsegv/libsigsegv-"
                  version ".tar.gz"))
            (sha256
             (base32 "15d2r831xz94s7540nvb1gbfl062g7mrnj88m60wyr1kh10kkb6d"))))
   (build-system gnu-build-system)
   (home-page "https://www.gnu.org/software/libsigsegv/")
   (synopsis "Library for handling page faults")
   (arguments
    `(;; The shared library isn't built by default but some packages need it.
      #:configure-flags '("--enable-shared")

      ;; On MIPS, work around this error:
      ;;
      ;; In file included from fault-linux-mips-old.h:18:0,
      ;;    [...]
      ;; linux-libre-headers-cross-mips64el-linux-gnu-3.3.8/include/asm/sigcontext.h:57:8: error: redefinition of 'struct sigcontext'
      ,@(if (string-contains (or (%current-target-system) (%current-system))
                             "mips64el")
            `(#:phases (modify-phases %standard-phases
                         (add-before 'configure 'patch-mips-old-h
                           (lambda _
                             (substitute* "src/fault-linux-mips-old.h"
                               (("#include <asm/sigcontext\\.h>") ""))
                             #t))))
            '())))
   (description
    "GNU libsigsegv is a library to handle page faults, which occur when a
program tries to access an unavailable region of memory, in user mode.  By
catching and handling page faults, the program can implement pageable virtual
memory, stack overflow handlers, and so on.")
   (license gpl2+)))
td>gnu: python-asyncssh: Update to 2.13.1....Includes fix for python-cryptography>=39 disallowing SHA-1 signatures, which caused the testsuite to fail. * gnu/packages/ssh.scm (python-asyncssh): Update to 2.13.1. Lars-Dominik Braun 2023-04-19gnu: python-typing-extensions: Move to (gnu packages python-build)....* gnu/packages/python-xyz.scm (python-typing-extensions): Move to... * gnu/packages/python-build.scm (python-typing-extensions): ... here. Maxim Cournoyer 2023-04-14Merge branch 'master' into core-updates....Conflicts: gnu/local.mk gnu/packages/build-tools.scm gnu/packages/certs.scm gnu/packages/check.scm gnu/packages/compression.scm gnu/packages/cups.scm gnu/packages/fontutils.scm gnu/packages/gnuzilla.scm gnu/packages/guile.scm gnu/packages/ibus.scm gnu/packages/image-processing.scm gnu/packages/linux.scm gnu/packages/music.scm gnu/packages/nss.scm gnu/packages/pdf.scm gnu/packages/python-xyz.scm gnu/packages/qt.scm gnu/packages/ruby.scm gnu/packages/shells.scm gnu/packages/tex.scm gnu/packages/video.scm gnu/packages/vulkan.scm gnu/packages/web.scm gnu/packages/webkit.scm gnu/packages/wm.scm Maxim Cournoyer 2023-03-22gnu: OpenSSH: Update to 9.3p1 [security fixes]....The release announcement contains more information about the security vulnerabilities fixed in this update: https://www.openssh.com/txt/release-9.3 * gnu/packages/ssh.scm (openssh): Update to 9.3p1. Leo Famulari 2023-03-02Merge remote-tracking branch 'savannah/master' into core-updates...Conflicts: gnu/local.mk gnu/packages/autotools.scm gnu/packages/cmake.scm gnu/packages/gnuzilla.scm gnu/packages/haskell.scm gnu/packages/pdf.scm gnu/packages/python-xyz.scm gnu/packages/samba.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/wxwidgets.scm Christopher Baines 2023-02-27gnu: libssh: Fix compilation on GNU/Hurd....* gnu/packages/ssh.scm (libssh)[source]: Add snippet. Ludovic Courtès 2023-02-26gnu: libssh: Update to 0.10.4....* gnu/packages/ssh.scm (libssh): Update to 0.10.4. Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com> Vagrant Cascadian 2023-02-23gnu: Add x11-ssh-askpass....* gnu/packages/ssh.scm (x11-ssh-askpass): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Simon Streit 2023-02-20gnu: sshpass: Update to 1.10....* gnu/packages/ssh.scm (sshpass): Update to 1.10. Nicolas Goaziou 2023-02-04gnu: openssh: Update to 9.2p1 [security fixes]....Here is more information about the security issues fixed in this release: https://www.openssh.com/txt/release-9.2 * gnu/packages/ssh.scm (openssh): Update to 9.2p1. Signed-off-by: Leo Famulari <leo@famulari.name> Jack Hill 2023-01-30Merge remote-tracking branch 'origin/master' into core-updates... Conflicts: doc/guix.texi gnu/local.mk gnu/packages/admin.scm gnu/packages/base.scm gnu/packages/chromium.scm gnu/packages/compression.scm gnu/packages/databases.scm gnu/packages/diffoscope.scm gnu/packages/freedesktop.scm gnu/packages/gnome.scm gnu/packages/gnupg.scm gnu/packages/guile.scm gnu/packages/inkscape.scm gnu/packages/llvm.scm gnu/packages/openldap.scm gnu/packages/pciutils.scm gnu/packages/ruby.scm gnu/packages/samba.scm gnu/packages/sqlite.scm gnu/packages/statistics.scm gnu/packages/syndication.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/version-control.scm gnu/packages/xml.scm guix/build-system/copy.scm guix/scripts/home.scm Efraim Flashner 2023-01-30gnu: guile-ssh: Update to 0.16.3....Fixes <https://issues.guix.gnu.org/58290>. Reported by Aleksandr Vityazev <avityazev@posteo.org>, and Andrew Tropin <andrew@trop.in>. * gnu/packages/ssh.scm (guile-ssh): Update to 0.16.3. Ludovic Courtès 2023-01-08gnu: guile-ssh: Update to 0.16.2....* gnu/packages/ssh.scm (guile-ssh): Update to 0.16.2. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org> Artyom V. Poptsov 2022-12-21gnu: guile-ssh: Update to 0.16.0....* gnu/packages/ssh.scm (guile-ssh): Update to 0.16.0. Vagrant Cascadian