Hi ports --
Attached is a diff to update libsigsegv to its latest version. I don't
see any symbol changes so no crank to SHARED_LIBS.
This doesn't get us much other than the patches were successfully
upstreamed so they go away. Additionally, it appears the library is
licensed GPLv2+ so tweak the license comment.
Its consumers appear happy (and all tests pass on amd64).
Take maintainer.
~Brian
Index: Makefile
===================================================================
RCS file: /cvs/ports/devel/libsigsegv/Makefile,v
retrieving revision 1.23
diff -u -p -u -p -r1.23 Makefile
--- Makefile 11 Mar 2016 19:59:13 -0000 1.23
+++ Makefile 8 Jun 2017 18:20:47 -0000
@@ -2,14 +2,14 @@
COMMENT = library for handling page faults in user mode
-DISTNAME = libsigsegv-2.10
-REVISION = 2
+DISTNAME = libsigsegv-2.11
SHARED_LIBS = sigsegv 1.0
CATEGORIES = devel
HOMEPAGE = https://www.gnu.org/software/libsigsegv/
+MAINTAINER = Brian Callahan <bcal...@devio.us>
-# GPLv2
+# GPLv2+
PERMIT_PACKAGE_CDROM = Yes
MASTER_SITES = ${MASTER_SITE_GNU:=libsigsegv/}
Index: distinfo
===================================================================
RCS file: /cvs/ports/devel/libsigsegv/distinfo,v
retrieving revision 1.5
diff -u -p -u -p -r1.5 distinfo
--- distinfo 25 Sep 2012 21:22:51 -0000 1.5
+++ distinfo 8 Jun 2017 18:20:47 -0000
@@ -1,2 +1,2 @@
-SHA256 (libsigsegv-2.10.tar.gz) = hGCko91JVMPZbXpPXdW8TZt29XVBlqokUodVOybSGZo=
-SIZE (libsigsegv-2.10.tar.gz) = 402279
+SHA256 (libsigsegv-2.11.tar.gz) = 3Xwusu9sRxiUBtViwdwPlvL8gIA2g01ZYHXVg3fjehg=
+SIZE (libsigsegv-2.11.tar.gz) = 448744
Index: patches/patch-src_fault-openbsd-m88k_h
===================================================================
RCS file: patches/patch-src_fault-openbsd-m88k_h
diff -N patches/patch-src_fault-openbsd-m88k_h
--- patches/patch-src_fault-openbsd-m88k_h 25 Sep 2012 21:22:51 -0000 1.3
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
-$OpenBSD: patch-src_fault-openbsd-m88k_h,v 1.3 2012/09/25 21:22:51 brad Exp $
---- src/fault-openbsd-m88k.h.orig Thu Jan 7 13:01:00 2010
-+++ src/fault-openbsd-m88k.h Sun Sep 9 15:18:54 2012
-@@ -17,9 +17,15 @@
-
- #include "fault-openbsd.h"
-
-+#include <sys/param.h> /* defines macro OpenBSD */
-+
- /* See the definition of 'struct sigcontext' in
- openbsd-src/sys/arch/m88k/include/signal.h
- and the definition of 'struct reg' in
- openbsd-src/sys/arch/m88k/include/reg.h. */
-
--#define SIGSEGV_FAULT_STACKPOINTER scp->sc_regs.r[31]
-+#if OpenBSD >= 201211 /* OpenBSD version >= 5.2 */
-+# define SIGSEGV_FAULT_STACKPOINTER scp->sc_regs[31]
-+#else
-+# define SIGSEGV_FAULT_STACKPOINTER scp->sc_regs.r[31]
-+#endif
Index: patches/patch-src_fault-openbsd-sh_h
===================================================================
RCS file: patches/patch-src_fault-openbsd-sh_h
diff -N patches/patch-src_fault-openbsd-sh_h
--- patches/patch-src_fault-openbsd-sh_h 25 Sep 2012 21:27:19 -0000 1.3
+++ /dev/null 1 Jan 1970 00:00:00 -0000
@@ -1,20 +0,0 @@
-$OpenBSD: patch-src_fault-openbsd-sh_h,v 1.3 2012/09/25 21:27:19 brad Exp $
---- src/fault-openbsd-sh.h.orig Sun Sep 9 15:14:29 2012
-+++ src/fault-openbsd-sh.h Sun Sep 9 15:19:41 2012
-@@ -17,9 +17,15 @@
-
- #include "fault-openbsd.h"
-
-+#include <sys/param.h> /* defines macro OpenBSD */
-+
- /* See the definition of 'struct sigcontext' in
- openbsd-src/sys/arch/sh/include/signal.h
- and the definition of 'struct reg' in
- openbsd-src/sys/arch/sh/include/reg.h. */
-
--#define SIGSEGV_FAULT_STACKPOINTER scp->sc_reg.r_r15
-+#if OpenBSD >= 201211 /* OpenBSD version >= 5.2 */
-+# define SIGSEGV_FAULT_STACKPOINTER scp->sc_reg[20-15]
-+#else
-+# define SIGSEGV_FAULT_STACKPOINTER scp->sc_reg.r_r15
-+#endif