pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc rump, fs-utils: remove
details: https://anonhg.NetBSD.org/pkgsrc/rev/e74aefa773f6
branches: trunk
changeset: 385676:e74aefa773f6
user: wiz <wiz%pkgsrc.org@localhost>
date: Sat Sep 24 06:37:45 2022 +0000
description:
rump, fs-utils: remove
rump does not build in any bulk builds I could find; upstream development
stopped in 2017; fs-utils needs rump; its development stopped in 2013.
diffstat:
doc/CHANGES-2022 | 4 +-
doc/TODO | 3 +-
filesystems/Makefile | 3 +-
filesystems/fs-utils/DESCR | 14 -
filesystems/fs-utils/Makefile | 27 -
filesystems/fs-utils/PLIST | 54 ---
filesystems/fs-utils/distinfo | 6 -
filesystems/fs-utils/patches/patch-lib_getbsize.c | 15 -
misc/Makefile | 3 +-
misc/rump/DESCR | 8 -
misc/rump/Makefile | 35 -
misc/rump/PLIST.Linux | 11 -
misc/rump/PLIST.SunOS | 6 -
misc/rump/PLIST.common | 391 ----------------------
misc/rump/buildlink3.mk | 12 -
misc/rump/distinfo | 5 -
16 files changed, 6 insertions(+), 591 deletions(-)
diffs (truncated from 697 to 300 lines):
diff -r df45f832f1ed -r e74aefa773f6 doc/CHANGES-2022
--- a/doc/CHANGES-2022 Sat Sep 24 06:34:04 2022 +0000
+++ b/doc/CHANGES-2022 Sat Sep 24 06:37:45 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: CHANGES-2022,v 1.4657 2022/09/24 06:34:04 wiz Exp $
+$NetBSD: CHANGES-2022,v 1.4658 2022/09/24 06:37:46 wiz Exp $
Changes to the packages collection and infrastructure in 2022:
@@ -6851,3 +6851,5 @@
Removed devel/adacurses [wiz 2022-09-24]
Updated misc/gelemental to 2.0.1 [wiz 2022-09-24]
Removed misc/root [wiz 2022-09-24]
+ Removed misc/rump [wiz 2022-09-24]
+ Removed filesystems/fs-utils [wiz 2022-09-24]
diff -r df45f832f1ed -r e74aefa773f6 doc/TODO
--- a/doc/TODO Sat Sep 24 06:34:04 2022 +0000
+++ b/doc/TODO Sat Sep 24 06:37:45 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: TODO,v 1.22225 2022/09/24 06:34:04 wiz Exp $
+$NetBSD: TODO,v 1.22226 2022/09/24 06:37:46 wiz Exp $
Suggested new packages
======================
@@ -1398,7 +1398,6 @@
o rtty-4.0 [at ftp://ftp.isc.org/isc/rtty/]
o rubber-1.5.1
o rudiments-1.4.2
- o rump-20131213
o rust-1.63.0
o rust-analyzer-0.0.20220912 [requires rust 1.63.0]
o rvault-0.4
diff -r df45f832f1ed -r e74aefa773f6 filesystems/Makefile
--- a/filesystems/Makefile Sat Sep 24 06:34:04 2022 +0000
+++ b/filesystems/Makefile Sat Sep 24 06:37:45 2022 +0000
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.53 2022/07/09 18:38:59 thorpej Exp $
+# $NetBSD: Makefile,v 1.54 2022/09/24 06:37:45 wiz Exp $
#
COMMENT= File systems, and file system related packages
SUBDIR+= cloudfuse
SUBDIR+= cocofs
-SUBDIR+= fs-utils
SUBDIR+= fsx
SUBDIR+= fuse
SUBDIR+= fuse-afpfs-ng
diff -r df45f832f1ed -r e74aefa773f6 filesystems/fs-utils/DESCR
--- a/filesystems/fs-utils/DESCR Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-Tools to access and modify a file system image without having to
-mount it.
-
-Classic commands included (prefixed with fsu_):
-
-* cat, diff, du, find, ls, stat
-* chflags, chmod, chown, mv, rm, rmdir
-* cp, ln, mkdir, mkfifo, mknod, touch
-
-New commands:
-
-* fsu_ecp (cp-like which allows the user to get/put files from/to the image)
-* fsu_exec (executes a local command like text editor on a file from the image)
-* fsu_write (writes its input in a file on the image)
diff -r df45f832f1ed -r e74aefa773f6 filesystems/fs-utils/Makefile
--- a/filesystems/fs-utils/Makefile Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-# $NetBSD: Makefile,v 1.19 2014/01/27 18:41:12 wiz Exp $
-
-GIT_COMMIT= v1.00
-DISTNAME= ${GIT_COMMIT}
-PKGNAME= fs-utils-20130701
-CATEGORIES= filesystems
-MASTER_SITES= https://github.com/stacktic/fs-utils/archive/
-
-MAINTAINER= stacktic%NetBSD.org@localhost
-HOMEPAGE= https://github.com/stacktic/fs-utils
-COMMENT= Tools to access/modify a file system image through RUMP
-LICENSE= 2-clause-bsd
-DEPENDS+= rump>=20130101:../../misc/rump
-
-ONLY_FOR_PLATFORM= Linux-*-* SunOS-*-* NetBSD-*-*
-
-INSTALLATION_DIRS= bin lib include ${PKGMANDIR}/man1 ${PKGMANDIR}/man3
-
-USE_TOOLS+= gmake
-
-WRKSRC= ${WRKDIR}/fs-utils-1.00
-
-GNU_CONFIGURE= yes
-USE_LIBTOOL= yes
-
-.include "../../misc/rump/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r df45f832f1ed -r e74aefa773f6 filesystems/fs-utils/PLIST
--- a/filesystems/fs-utils/PLIST Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,54 +0,0 @@
-@comment $NetBSD: PLIST,v 1.7 2013/06/01 15:43:47 stacktic Exp $
-bin/fsu_cat
-bin/fsu_chflags
-bin/fsu_chmod
-bin/fsu_chown
-bin/fsu_cp
-bin/fsu_df
-bin/fsu_diff
-bin/fsu_du
-bin/fsu_ecp
-bin/fsu_emv
-bin/fsu_exec
-bin/fsu_find
-bin/fsu_get
-bin/fsu_ln
-bin/fsu_ls
-bin/fsu_mkdir
-bin/fsu_mkfifo
-bin/fsu_mknod
-bin/fsu_mv
-bin/fsu_put
-bin/fsu_rm
-bin/fsu_rmdir
-bin/fsu_stat
-bin/fsu_touch
-bin/fsu_write
-lib/libfsu.la
-man/man1/fsu_cat.1
-man/man1/fsu_chflags.1
-man/man1/fsu_chgrp.1
-man/man1/fsu_chmod.1
-man/man1/fsu_chown.1
-man/man1/fsu_cp.1
-man/man1/fsu_du.1
-man/man1/fsu_ln.1
-man/man1/fsu_ls.1
-man/man1/fsu_mkdir.1
-man/man1/fsu_mkfifo.1
-man/man1/fsu_mknod.1
-man/man1/fsu_mv.1
-man/man1/fsu_rm.1
-man/man1/fsu_rmdir.1
-man/man1/fsu_touch.1
-man/man3/fsu_fclose.3
-man/man3/fsu_ferror.3
-man/man3/fsu_fflush.3
-man/man3/fsu_fgetc.3
-man/man3/fsu_fopen.3
-man/man3/fsu_fputc.3
-man/man3/fsu_fread.3
-man/man3/fsu_fseek.3
-man/man3/fsu_fts.3
-man/man3/fsu_mount.3
-man/man3/fsu_utils.3
diff -r df45f832f1ed -r e74aefa773f6 filesystems/fs-utils/distinfo
--- a/filesystems/fs-utils/distinfo Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.18 2021/10/26 10:25:26 nia Exp $
-
-BLAKE2s (v1.00.tar.gz) = 34a0bbbf30f35c823f5355a9b9e2a66b0f77d15586520906b1947cfe0e659f7b
-SHA512 (v1.00.tar.gz) = 59f8d40052aab4e1292e9af730284b9cb53742dba54bcc44ce50da1adc3101345b770575b4aa276d58d35a4e0e53a8b36a3b2d2cae6d0702604da5f10323f820
-Size (v1.00.tar.gz) = 493827 bytes
-SHA1 (patch-lib_getbsize.c) = 9321fcc65f918a825de697bba3c69f53b1e71871
diff -r df45f832f1ed -r e74aefa773f6 filesystems/fs-utils/patches/patch-lib_getbsize.c
--- a/filesystems/fs-utils/patches/patch-lib_getbsize.c Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-$NetBSD: patch-lib_getbsize.c,v 1.1 2013/06/26 21:24:23 joerg Exp $
-
---- lib/getbsize.c.orig 2013-06-26 20:19:49.000000000 +0000
-+++ lib/getbsize.c
-@@ -46,10 +46,6 @@ __RCSID("$NetBSD: getbsize.c,v 1.2 2009/
-
- #include "fsu_compat.h"
-
--#ifdef __weak_alias
--__weak_alias(getbsize,_getbsize)
--#endif
--
- char *
- getbsize(headerlenp, blocksizep)
- int *headerlenp;
diff -r df45f832f1ed -r e74aefa773f6 misc/Makefile
--- a/misc/Makefile Sat Sep 24 06:34:04 2022 +0000
+++ b/misc/Makefile Sat Sep 24 06:37:45 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.570 2022/09/24 06:34:04 wiz Exp $
+# $NetBSD: Makefile,v 1.571 2022/09/24 06:37:45 wiz Exp $
#
COMMENT= Miscellaneous utilities
@@ -341,7 +341,6 @@
SUBDIR+= ruby-transaction-simple
SUBDIR+= ruby-typed-array
SUBDIR+= ruby-windows_error
-SUBDIR+= rump
SUBDIR+= s6-portable-utils
SUBDIR+= sch
SUBDIR+= sci
diff -r df45f832f1ed -r e74aefa773f6 misc/rump/DESCR
--- a/misc/rump/DESCR Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,8 +0,0 @@
-Rump (Runnable Userspace Meta Program) is a mechanism for running kernel code
-as part of a user program's address space. As opposed to executing system calls
-for requesting kernel services, rump programs do a library call into the kernel
-code for equivalent functionality. Kernel code is simply recompiled as a
-userspace shared library from the kernel sources instead of being rewritten,
-so services imitate the same services being provided by the kernel. Select
-architectures such as i386 and amd64 also support directly linking binary
-kernel modules against rump programs.
diff -r df45f832f1ed -r e74aefa773f6 misc/rump/Makefile
--- a/misc/rump/Makefile Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,35 +0,0 @@
-# $NetBSD: Makefile,v 1.25 2019/08/04 14:41:27 ryoon Exp $
-#
-
-VERSION= 20130705
-PKGNAME= rump-${VERSION}
-DISTNAME= buildrump-${VERSION}
-
-CATEGORIES= misc
-MASTER_SITES= ftp://ftp.NetBSD.org/pub/NetBSD/misc/stacktic/
-
-MAINTAINER= stacktic%NetBSD.org@localhost
-HOMEPAGE= https://github.com/anttikantee/buildrump.sh
-COMMENT= Virtualized NetBSD kernel components in userspace
-LICENSE= 2-clause-bsd
-USE_TOOLS+= pax
-
-ONLY_FOR_PLATFORM= Linux-*-* SunOS-*-* NetBSD-*-* DragonFly-*-*
-
-INSTALLATION_DIRS= lib include/rump ${PKGMANDIR}/man3
-
-WRKSRC= ${WRKDIR}/buildrump
-
-CHECK_SHLIBS_SUPPORTED= no
-
-do-build:
- cd ${WRKSRC} && ./buildrump.sh -r tools build install
-
-pre-install:
- rm -rf ${WRKSRC}/rump/share/man/cat*
- rmdir ${WRKSRC}/rump/share/man/man* || ${TRUE}
-
-do-install:
- cd ${WRKSRC}/rump && ${PAX} -wr lib include share ${DESTDIR}${PREFIX}/
-
-.include "../../mk/bsd.pkg.mk"
diff -r df45f832f1ed -r e74aefa773f6 misc/rump/PLIST.Linux
--- a/misc/rump/PLIST.Linux Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
-@comment $NetBSD: PLIST.Linux,v 1.5 2019/08/04 14:41:27 ryoon Exp $
-lib/librumphijack.so
-lib/librumphijack.so.0
-lib/librumphijack.so.0.0
-lib/librumphijack_pic.a
-lib/librumpkern_sys_linux.a
-lib/librumpkern_sys_linux.so
-lib/librumpkern_sys_linux.so.0
-lib/librumpkern_sys_linux.so.0.0
-lib/librumpkern_sys_linux_pic.a
-share/man/man3/rumphijack.3
diff -r df45f832f1ed -r e74aefa773f6 misc/rump/PLIST.SunOS
--- a/misc/rump/PLIST.SunOS Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-@comment $NetBSD: PLIST.SunOS,v 1.3 2018/01/01 22:29:44 rillig Exp $
-lib/librumpkern_sys_sunos.a
-lib/librumpkern_sys_sunos.so
-lib/librumpkern_sys_sunos.so.0
-lib/librumpkern_sys_sunos.so.0.0
-lib/librumpkern_sys_sunos_pic.a
diff -r df45f832f1ed -r e74aefa773f6 misc/rump/PLIST.common
--- a/misc/rump/PLIST.common Sat Sep 24 06:34:04 2022 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,391 +0,0 @@
-@comment $NetBSD: PLIST.common,v 1.3 2015/12/29 06:24:31 dholland Exp $
-include/rump/netconfig.h
-include/rump/rump.h
-include/rump/rump_namei.h
-include/rump/rump_syscalls.h
-include/rump/rump_syscalls_compat.h
-include/rump/rumpclient.h
-include/rump/rumpdefs.h
-include/rump/rumpkern_if_pub.h
-include/rump/rumpnet_if_pub.h
-include/rump/rumpuser.h
-include/rump/rumpuser_component.h
-include/rump/rumpvfs_if_pub.h
-include/rump/rumpvnode_if.h
-include/rump/scsitest.h
-lib/librump.a
-lib/librump.so
-lib/librump.so.0
-lib/librump.so.0.0
Home |
Main Index |
Thread Index |
Old Index