Module Name:    src
Committed By:   martin
Date:           Fri Sep 20 11:05:44 UTC 2024

Modified Files:
        src/lib/libpthread [netbsd-10]: Makefile
        src/lib/librumpuser [netbsd-10]: configure.ac rumpuser_port.h
        src/sys/rump/share/man/man3 [netbsd-10]: rumpuser.3
        src/sys/rump/share/man/man7 [netbsd-10]: rumpkernel.7

Log Message:
Pull up following revision(s) (requested by rin in ticket #889):

        lib/librumpuser/configure.ac: revision 1.6
        lib/librumpuser/rumpuser_port.h: revision 1.53
        lib/libpthread/Makefile: revision 1.97
        sys/rump/share/man/man3/rumpuser.3: revision 1.4
        sys/rump/share/man/man7/rumpkernel.7: revision 1.4
        sys/rump/share/man/man7/rumpkernel.7: revision 1.5

fix rump URLs in man pages

Link to https://github.com/rumpkernel/wiki/wiki instead of
a site now taken over by an SEO squatter.
Per discussion on github.com/rumpkernel issues
with pooka.
PR misc/57501

fix rump URLs
Link to https://github.com/rumpkernel/ instead of
a site now taken over by an SEO squatter.
Per discussion on github.com/rumpkernel issues with pooka.
PR misc/57501

use rumpkernel.github.io as the entry point


To generate a diff of this commit:
cvs rdiff -u -r1.96 -r1.96.8.1 src/lib/libpthread/Makefile
cvs rdiff -u -r1.5 -r1.5.26.1 src/lib/librumpuser/configure.ac
cvs rdiff -u -r1.52 -r1.52.2.1 src/lib/librumpuser/rumpuser_port.h
cvs rdiff -u -r1.3 -r1.3.30.1 src/sys/rump/share/man/man3/rumpuser.3
cvs rdiff -u -r1.3 -r1.3.52.1 src/sys/rump/share/man/man7/rumpkernel.7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libpthread/Makefile
diff -u src/lib/libpthread/Makefile:1.96 src/lib/libpthread/Makefile:1.96.8.1
--- src/lib/libpthread/Makefile:1.96	Mon Nov 11 22:45:27 2019
+++ src/lib/libpthread/Makefile	Fri Sep 20 11:05:44 2024
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.96 2019/11/11 22:45:27 joerg Exp $
+#	$NetBSD: Makefile,v 1.96.8.1 2024/09/20 11:05:44 martin Exp $
 #
 
 NOSANITIZER=	# defined
@@ -45,7 +45,7 @@ CPPFLAGS+=-I${NETBSDSRCDIR}/sys -I${.CUR
 
 # providing alternative MI implementations for creating an lwp is
 # possible by setting PTHREAD_MAKELWP.  Currently, alternatives are
-# set by the rumprun software stacks (see repo.rumpkernel.org)
+# set by the rumprun software stacks (see https://github.com/rumpkernel/rumprun )
 PTHREAD_MAKELWP?=	pthread_makelwp_netbsd.c
 
 #

Index: src/lib/librumpuser/configure.ac
diff -u src/lib/librumpuser/configure.ac:1.5 src/lib/librumpuser/configure.ac:1.5.26.1
--- src/lib/librumpuser/configure.ac:1.5	Thu Mar  5 00:25:39 2015
+++ src/lib/librumpuser/configure.ac	Fri Sep 20 11:05:44 2024
@@ -5,11 +5,11 @@
 #   1) autoreconf -iv
 #   2) edit rumpuser_port.h (search for RUMPUSER_CONFIG for instructions)
 #   3) rm -rf autom4te.cache
-#   4) commit to NetBSD, pullup to repo.rumpkernel.org
+#   4) commit to NetBSD, pullup to https://github.com/rumpkernel/
 #
 
 AC_PREREQ([2.66])
-AC_INIT([rumpuser-posix], [999], [http://rumpkernel.org/])
+AC_INIT([rumpuser-posix], [999], [https://github.com/rumpkernel/])
 
 AC_CONFIG_HEADERS([rumpuser_config.h])
 AC_CONFIG_AUX_DIR([build-aux])

Index: src/lib/librumpuser/rumpuser_port.h
diff -u src/lib/librumpuser/rumpuser_port.h:1.52 src/lib/librumpuser/rumpuser_port.h:1.52.2.1
--- src/lib/librumpuser/rumpuser_port.h:1.52	Tue Apr 19 20:32:17 2022
+++ src/lib/librumpuser/rumpuser_port.h	Fri Sep 20 11:05:44 2024
@@ -1,4 +1,4 @@
-/*	$NetBSD: rumpuser_port.h,v 1.52 2022/04/19 20:32:17 rillig Exp $	*/
+/*	$NetBSD: rumpuser_port.h,v 1.52.2.1 2024/09/20 11:05:44 martin Exp $	*/
 
 #ifndef _LIB_LIBRUMPUSER_RUMPUSER_PORT_H_
 #define _LIB_LIBRUMPUSER_RUMPUSER_PORT_H_
@@ -48,7 +48,7 @@
 #define HAVE_UNISTD_H 1
 #define HAVE_UTIMENSAT 1
 #define HAVE___QUOTACTL 1
-#define PACKAGE_BUGREPORT "http://rumpkernel.org/";
+#define PACKAGE_BUGREPORT "https://github.com/rumpkernel/";
 #define PACKAGE_NAME "rumpuser-posix"
 #define PACKAGE_STRING "rumpuser-posix 999"
 #define PACKAGE_TARNAME "rumpuser-posix"

Index: src/sys/rump/share/man/man3/rumpuser.3
diff -u src/sys/rump/share/man/man3/rumpuser.3:1.3 src/sys/rump/share/man/man3/rumpuser.3:1.3.30.1
--- src/sys/rump/share/man/man3/rumpuser.3:1.3	Fri Mar  8 08:24:41 2019
+++ src/sys/rump/share/man/man3/rumpuser.3	Fri Sep 20 11:05:44 2024
@@ -1,4 +1,4 @@
-.\"     $NetBSD: rumpuser.3,v 1.3 2019/03/08 08:24:41 wiz Exp $
+.\"     $NetBSD: rumpuser.3,v 1.3.30.1 2024/09/20 11:05:44 martin Exp $
 .\"
 .\" Copyright (c) 2013 Antti Kantee.  All rights reserved.
 .\"
@@ -23,7 +23,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.Dd August 24, 2014
+.Dd July 15, 2023
 .Dt RUMPUSER 3
 .Os
 .Sh NAME
@@ -769,7 +769,7 @@ Routines which do not return an integer 
 For a list of all known implementations of the
 .Nm
 interface, see
-.Lk http://wiki.rumpkernel.org/Platforms .
+.Lk https://github.com/rumpkernel/wiki/wiki/Platforms .
 .Sh HISTORY
 The rump kernel hypercall API was first introduced in
 .Nx 5.0 .

Index: src/sys/rump/share/man/man7/rumpkernel.7
diff -u src/sys/rump/share/man/man7/rumpkernel.7:1.3 src/sys/rump/share/man/man7/rumpkernel.7:1.3.52.1
--- src/sys/rump/share/man/man7/rumpkernel.7:1.3	Tue Dec 16 15:33:22 2014
+++ src/sys/rump/share/man/man7/rumpkernel.7	Fri Sep 20 11:05:44 2024
@@ -1,4 +1,4 @@
-.\"     $NetBSD: rumpkernel.7,v 1.3 2014/12/16 15:33:22 pooka Exp $
+.\"     $NetBSD: rumpkernel.7,v 1.3.52.1 2024/09/20 11:05:44 martin Exp $
 .\"
 .\" Copyright (c) 2008-2014 Antti Kantee.  All rights reserved.
 .\"
@@ -23,7 +23,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.Dd December 1, 2014
+.Dd July 15, 2023
 .Dt RUMPKERNEL 7
 .Os
 .Sh NAME
@@ -88,7 +88,7 @@ allocation fails, the rump kernel will a
 available by invoking its internal pagedaemon to flush caches.
 .El
 .Sh SEE ALSO
-.Lk http://rumpkernel.org/
+.Lk https://rumpkernel.github.io
 .Rs
 .%A Antti Kantee
 .%A Justin Cormack

Reply via email to