pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

gforth-snapshot: add snapshot package for gforth



Module Name:	pkgsrc-wip
Committed By:	Thomas Klausner <wiz%NetBSD.org@localhost>
Pushed By:	wiz
Date:		Tue Mar 18 11:03:11 2025 +0100
Changeset:	78d5663e6bcbe54e3852b579bda250c304202449

Modified Files:
	Makefile
Added Files:
	gforth-snapshot/DESCR
	gforth-snapshot/Makefile
	gforth-snapshot/PLIST
	gforth-snapshot/TODO
	gforth-snapshot/distinfo
	gforth-snapshot/patches/patch-engine_forth.h
	gforth-snapshot/patches/patch-engine_support.c

Log Message:
gforth-snapshot: add snapshot package for gforth

Doesn't build since it needs an existing gforth binary.

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=78d5663e6bcbe54e3852b579bda250c304202449

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

diffstat:
 Makefile                                       |   1 +
 gforth-snapshot/DESCR                          |   6 +
 gforth-snapshot/Makefile                       |  73 ++++++++
 gforth-snapshot/PLIST                          | 229 +++++++++++++++++++++++++
 gforth-snapshot/TODO                           |   1 +
 gforth-snapshot/distinfo                       |   7 +
 gforth-snapshot/patches/patch-engine_forth.h   |  15 ++
 gforth-snapshot/patches/patch-engine_support.c |  15 ++
 8 files changed, 347 insertions(+)

diffs:
diff --git a/Makefile b/Makefile
index 29a46db037..8e8014fd6c 100644
--- a/Makefile
+++ b/Makefile
@@ -1238,6 +1238,7 @@ SUBDIR+=	gfeedline
 SUBDIR+=	gffread
 SUBDIR+=	gfontview
 SUBDIR+=	gforth-git
+SUBDIR+=	gforth-snapshot
 SUBDIR+=	gfsview-snapshot
 SUBDIR+=	ggobi
 SUBDIR+=	ggz-gtk-client
diff --git a/gforth-snapshot/DESCR b/gforth-snapshot/DESCR
new file mode 100644
index 0000000000..9b9de235e7
--- /dev/null
+++ b/gforth-snapshot/DESCR
@@ -0,0 +1,6 @@
+Gforth is a fast and portable implementation of the ANS Forth
+language. It works nicely with the Emacs editor, offers some nice
+features such as input completion and history and a powerful locals
+facility, and it even has (the beginnings of) a manual. Gforth employs
+traditional implementation techniques: its inner interpreter is
+indirect or direct threaded.
diff --git a/gforth-snapshot/Makefile b/gforth-snapshot/Makefile
new file mode 100644
index 0000000000..8208161245
--- /dev/null
+++ b/gforth-snapshot/Makefile
@@ -0,0 +1,73 @@
+# $NetBSD: Makefile,v 1.50 2022/06/28 11:34:11 wiz Exp $
+
+DISTNAME=		gforth-0.7.9_20250312
+PKGNAME=		${DISTNAME:S/_/pre/}
+CATEGORIES=		lang
+#MASTER_SITES=		${MASTER_SITE_GNU:=gforth/}
+MASTER_SITES+=		https://git.savannah.gnu.org/cgit/gforth.git/snapshot/
+
+MAINTAINER=		simonb%NetBSD.org@localhost
+HOMEPAGE=		https://www.complang.tuwien.ac.at/forth/gforth/
+COMMENT=		Fast interpreter for the Forth language
+LICENSE=		gnu-gpl-v3
+
+# This package claims to specifically support the following arches:
+#    alpha arm hppa i386 ia64 m68k mips powerpc sparc x86_64
+# and it has a generic config that should work for all random other
+# processors as long as they have IEEE floats. So, we'll explicitly
+# exclude vax and allow anything else.
+NOT_FOR_PLATFORM=	*-*-vax
+
+INFO_FILES=		yes
+
+GNU_CONFIGURE=		yes
+USE_LIBTOOL=		yes
+USE_TOOLS+=		autoconf automake aclocal autoreconf m4
+USE_TOOLS+=		gmake makeinfo gzip
+USE_TOOLS+=		perl:build
+
+MAKE_JOBS_SAFE=		no # fresh Gforth is required to build doc
+BUILD_TARGET=		all info # doc
+TEST_TARGET=		check
+
+# Make sure elisp will be installed even if no emacs installed.
+CONFIGURE_ENV+=		EMACS=${PREFIX}/bin/emacs
+CFLAGS+=		-Dunix
+BUILDLINK_TRANSFORM+=	rm:-m486 # let it build with contemporary GCC
+INSTALL_MAKE_FLAGS=	${MAKE_FLAGS}					\
+			infodir=${PREFIX:Q}/${PKGINFODIR:Q}		\
+			mandir=${PREFIX:Q}/${PKGMANDIR:Q}
+
+INSTALLATION_DIRS=	share/emacs/site-lisp
+
+# Kernel image filename is arch dependent
+KERNEL_FI_cmd=								\
+	if ${TEST} ! -f ${WRKSRC}/Makefile; then			\
+		${ECHO} "__nonexistent__";				\
+		exit 0;							\
+	fi;								\
+	cd ${WRKSRC} &&							\
+	{ ${ECHO} 'prkern:';						\
+	  ${ECHO} '	@${ECHO} $$(kernel_fi)';			\
+	  ${ECHO} ;							\
+	  ${CAT} Makefile; } | ${MAKE_PROGRAM} -f - prkern
+PLIST_SUBST+=	KERNEL_FI=${KERNEL_FI_cmd:sh:Q}
+
+# Owing to https://gcc.gnu.org/bugzilla/show_bug.cgi?id=31152,
+# demand at least gcc 4.3 for arm.
+.include "../../mk/bsd.prefs.mk"
+.if ${MACHINE_ARCH:Marm*} || ${MACHINE_ARCH:Mearm*}
+.  if !empty(PKGSRC_COMPILER:Mgcc)
+GCC_REQD+=	4.3
+.  endif
+.endif
+
+pre-configure:
+	cd ${WRKSRC} && autoreconf -fiv
+
+# XXX Need test.
+#.include "../../mk/dlopen.buildlink3.mk"
+.include "../../devel/libltdl/buildlink3.mk"
+.include "../../devel/libffi/buildlink3.mk"
+.include "../../devel/libffcall/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/gforth-snapshot/PLIST b/gforth-snapshot/PLIST
new file mode 100644
index 0000000000..f1abf65195
--- /dev/null
+++ b/gforth-snapshot/PLIST
@@ -0,0 +1,229 @@
+@comment $NetBSD: PLIST,v 1.12 2009/08/14 22:52:20 asau Exp $
+bin/gforth
+bin/${PKGNAME}
+bin/gforth-fast
+bin/gforth-fast-${PKGVERSION}
+bin/gforth-itc
+bin/gforth-itc-${PKGVERSION}
+bin/gforthmi
+bin/gforthmi-${PKGVERSION}
+bin/vmgen
+bin/vmgen-${PKGVERSION}
+include/gforth/${PKGVERSION}/config.h
+include/gforth/${PKGVERSION}/libcc.h
+info/gforth.info
+info/vmgen.info
+lib/gforth/${PKGVERSION}/gforth-ditc
+lib/gforth/${PKGVERSION}/gforth.fi
+lib/gforth/${PKGVERSION}/libcc-named/cstr.la
+lib/gforth/${PKGVERSION}/libcc-named/fflib.la
+lib/gforth/${PKGVERSION}/libcc-named/libffi.la
+lib/gforth/${PKGVERSION}/libcc-named/socket.la
+man/man1/gforth.1
+share/emacs/site-lisp/gforth.el
+share/gforth/${PKGVERSION}/TAGS
+share/gforth/${PKGVERSION}/add.fs
+share/gforth/${PKGVERSION}/ans-report.fs
+share/gforth/${PKGVERSION}/ansi.fs
+share/gforth/${PKGVERSION}/answords.fs
+share/gforth/${PKGVERSION}/arch/386/asm.fs
+share/gforth/${PKGVERSION}/arch/386/disasm.fs
+share/gforth/${PKGVERSION}/arch/alpha/asm.fs
+share/gforth/${PKGVERSION}/arch/alpha/disasm.fs
+share/gforth/${PKGVERSION}/arch/alpha/testasm.fs
+share/gforth/${PKGVERSION}/arch/amd64/asm.fs
+share/gforth/${PKGVERSION}/arch/amd64/disasm.fs
+share/gforth/${PKGVERSION}/arch/mips/asm.fs
+share/gforth/${PKGVERSION}/arch/mips/disasm.fs
+share/gforth/${PKGVERSION}/arch/mips/insts.fs
+share/gforth/${PKGVERSION}/arch/mips/testasm.fs
+share/gforth/${PKGVERSION}/arch/mips/testdisasm.fs
+share/gforth/${PKGVERSION}/arch/power/asm.fs
+share/gforth/${PKGVERSION}/arch/power/disasm.fs
+share/gforth/${PKGVERSION}/arch/power/inst.fs
+share/gforth/${PKGVERSION}/asm/README
+share/gforth/${PKGVERSION}/asm/basic.fs
+share/gforth/${PKGVERSION}/asm/bitmask.fs
+share/gforth/${PKGVERSION}/asm/generic.fs
+share/gforth/${PKGVERSION}/asm/numref.fs
+share/gforth/${PKGVERSION}/asm/target.fs
+share/gforth/${PKGVERSION}/assert.fs
+share/gforth/${PKGVERSION}/backtrac.fs
+share/gforth/${PKGVERSION}/blocked.fb
+share/gforth/${PKGVERSION}/blocks.fs
+share/gforth/${PKGVERSION}/bubble.fs
+share/gforth/${PKGVERSION}/bufio.fs
+share/gforth/${PKGVERSION}/build-ec.in
+share/gforth/${PKGVERSION}/chains.fs
+share/gforth/${PKGVERSION}/code.fs
+share/gforth/${PKGVERSION}/colorize.fs
+share/gforth/${PKGVERSION}/comp-i.fs
+share/gforth/${PKGVERSION}/compat/README
+share/gforth/${PKGVERSION}/compat/anslocal.fs
+share/gforth/${PKGVERSION}/compat/assert.fs
+share/gforth/${PKGVERSION}/compat/control.fs
+share/gforth/${PKGVERSION}/compat/defer.fs
+share/gforth/${PKGVERSION}/compat/exception.fs
+share/gforth/${PKGVERSION}/compat/execute-parsing.fs
+share/gforth/${PKGVERSION}/compat/loops.fs
+share/gforth/${PKGVERSION}/compat/required.fs
+share/gforth/${PKGVERSION}/compat/strcomp.fs
+share/gforth/${PKGVERSION}/compat/struct.fs
+share/gforth/${PKGVERSION}/compat/vocabulary.fs
+share/gforth/${PKGVERSION}/complex.fs
+share/gforth/${PKGVERSION}/cross.fs
+share/gforth/${PKGVERSION}/cstr.fs
+share/gforth/${PKGVERSION}/debug.fs
+share/gforth/${PKGVERSION}/debugs.fs
+share/gforth/${PKGVERSION}/depth-changes.fs
+share/gforth/${PKGVERSION}/dis-gdb.fs
+share/gforth/${PKGVERSION}/doc/makedoc.fs
+share/gforth/${PKGVERSION}/dosekey.fs
+share/gforth/${PKGVERSION}/doskey.fs
+share/gforth/${PKGVERSION}/ds2texi.fs
+share/gforth/${PKGVERSION}/ec/README
+share/gforth/${PKGVERSION}/ec/builttag.fs
+share/gforth/${PKGVERSION}/ec/dotx.fs
+share/gforth/${PKGVERSION}/ec/mirror.fs
+share/gforth/${PKGVERSION}/ec/nesting.fs
+share/gforth/${PKGVERSION}/ec/shex.fs
+share/gforth/${PKGVERSION}/ekey.fs
+share/gforth/${PKGVERSION}/endtry-iferror.fs
+share/gforth/${PKGVERSION}/environ.fs
+share/gforth/${PKGVERSION}/envos.dos
+share/gforth/${PKGVERSION}/envos.fs
+share/gforth/${PKGVERSION}/envos.os2
+share/gforth/${PKGVERSION}/errors.fs
+share/gforth/${PKGVERSION}/etags.fs
+share/gforth/${PKGVERSION}/exboot.fs
+share/gforth/${PKGVERSION}/except.fs
+share/gforth/${PKGVERSION}/extend.fs
+share/gforth/${PKGVERSION}/fflib.fs
+share/gforth/${PKGVERSION}/fft.fs
+share/gforth/${PKGVERSION}/fi2c.fs
+share/gforth/${PKGVERSION}/fib.fs
+share/gforth/${PKGVERSION}/filedump.fs
+share/gforth/${PKGVERSION}/fixpath.fs
+share/gforth/${PKGVERSION}/float.fs
+share/gforth/${PKGVERSION}/fsl-util.4th
+share/gforth/${PKGVERSION}/glocals.fs
+share/gforth/${PKGVERSION}/glosgen.fs
+share/gforth/${PKGVERSION}/gray.fs
+share/gforth/${PKGVERSION}/hash.fs
+share/gforth/${PKGVERSION}/history.fs
+share/gforth/${PKGVERSION}/httpd.fs
+share/gforth/${PKGVERSION}/install-tags.fs
+share/gforth/${PKGVERSION}/intcomp.fs
+share/gforth/${PKGVERSION}/kernel/accept.fs
+share/gforth/${PKGVERSION}/kernel/aliases.fs
+share/gforth/${PKGVERSION}/kernel/aliases0.fs
+share/gforth/${PKGVERSION}/kernel/args.fs
+share/gforth/${PKGVERSION}/kernel/basics.fs
+share/gforth/${PKGVERSION}/kernel/cbr.fs
+share/gforth/${PKGVERSION}/kernel/cloop.fs
+share/gforth/${PKGVERSION}/kernel/comp.fs
+share/gforth/${PKGVERSION}/kernel/cond-old.fs
+share/gforth/${PKGVERSION}/kernel/cond.fs
+share/gforth/${PKGVERSION}/kernel/doers.fs
+share/gforth/${PKGVERSION}/kernel/errore.fs
+share/gforth/${PKGVERSION}/kernel/files.fs
+share/gforth/${PKGVERSION}/kernel/getdoers.fs
+share/gforth/${PKGVERSION}/kernel/input.fs
+share/gforth/${PKGVERSION}/kernel/int.fs
+share/gforth/${PKGVERSION}/kernel/io.fs
+share/gforth/${PKGVERSION}/kernel/kernel.fs
+share/gforth/${PKGVERSION}/kernel/license.fs
+share/gforth/${PKGVERSION}/kernel/main.fs
+share/gforth/${PKGVERSION}/kernel/nio.fs
+share/gforth/${PKGVERSION}/kernel/pass.fs
+share/gforth/${PKGVERSION}/kernel/paths.fs
+share/gforth/${PKGVERSION}/kernel/prim0.fs
+share/gforth/${PKGVERSION}/kernel/quotes.fs
+share/gforth/${PKGVERSION}/kernel/require.fs
+share/gforth/${PKGVERSION}/kernel/saccept.fs
+share/gforth/${PKGVERSION}/kernel/tools.fs
+share/gforth/${PKGVERSION}/kernel/toolsext.fs
+share/gforth/${PKGVERSION}/kernel/vars.fs
+share/gforth/${PKGVERSION}/kernel/xchars.fs
+share/gforth/${PKGVERSION}/${KERNEL_FI}
+share/gforth/${PKGVERSION}/lib.fs
+share/gforth/${PKGVERSION}/libcc.fs
+share/gforth/${PKGVERSION}/libffi.fs
+share/gforth/${PKGVERSION}/locals.fs
+share/gforth/${PKGVERSION}/locate.fs
+share/gforth/${PKGVERSION}/look.fs
+share/gforth/${PKGVERSION}/mach16b.fs
+share/gforth/${PKGVERSION}/mach16l.fs
+share/gforth/${PKGVERSION}/mach32b.fs
+share/gforth/${PKGVERSION}/mach32l.fs
+share/gforth/${PKGVERSION}/mach64b.fs
+share/gforth/${PKGVERSION}/mach64l.fs
+share/gforth/${PKGVERSION}/machpc.fs.in
+share/gforth/${PKGVERSION}/make-app.fs
+share/gforth/${PKGVERSION}/matrix.fs
+share/gforth/${PKGVERSION}/mini-oof.fs
+share/gforth/${PKGVERSION}/mkdir.fs
+share/gforth/${PKGVERSION}/moof-exm.fs
+share/gforth/${PKGVERSION}/moofglos.fs
+share/gforth/${PKGVERSION}/more.fs
+share/gforth/${PKGVERSION}/objects.fs
+share/gforth/${PKGVERSION}/objexamp.fs
+share/gforth/${PKGVERSION}/oldlib.fs
+share/gforth/${PKGVERSION}/onebench.fs
+share/gforth/${PKGVERSION}/oof.fs
+share/gforth/${PKGVERSION}/oofsampl.fs
+share/gforth/${PKGVERSION}/other.fs
+share/gforth/${PKGVERSION}/prim
+share/gforth/${PKGVERSION}/prims2x.fs
+share/gforth/${PKGVERSION}/prims2x0.6.2.fs
+share/gforth/${PKGVERSION}/proxy.fs
+share/gforth/${PKGVERSION}/quotes.fs
+share/gforth/${PKGVERSION}/random.fs
+share/gforth/${PKGVERSION}/recover-endtry.fs
+share/gforth/${PKGVERSION}/regexp.fs
+share/gforth/${PKGVERSION}/savesys.fs
+share/gforth/${PKGVERSION}/search.fs
+share/gforth/${PKGVERSION}/see-ext.fs
+share/gforth/${PKGVERSION}/see.fs
+share/gforth/${PKGVERSION}/siev.fs
+share/gforth/${PKGVERSION}/sieve.fs
+share/gforth/${PKGVERSION}/simp-see.fs
+share/gforth/${PKGVERSION}/sokoban.fs
+share/gforth/${PKGVERSION}/source.fs
+share/gforth/${PKGVERSION}/startup.fs
+share/gforth/${PKGVERSION}/string.fs
+share/gforth/${PKGVERSION}/struct.fs
+share/gforth/${PKGVERSION}/struct0x.fs
+share/gforth/${PKGVERSION}/stuff.fs
+share/gforth/${PKGVERSION}/table.fs
+share/gforth/${PKGVERSION}/tags.fs
+share/gforth/${PKGVERSION}/tasker.fs
+share/gforth/${PKGVERSION}/termsize.fs
+share/gforth/${PKGVERSION}/test/checkans.fs
+share/gforth/${PKGVERSION}/test/coreext.fs
+share/gforth/${PKGVERSION}/test/coremore.fs
+share/gforth/${PKGVERSION}/test/coretest.fs
+share/gforth/${PKGVERSION}/test/dbltest.fs
+share/gforth/${PKGVERSION}/test/deferred.fs
+share/gforth/${PKGVERSION}/test/float.fs
+share/gforth/${PKGVERSION}/test/gforth-nofast.fs
+share/gforth/${PKGVERSION}/test/gforth.fs
+share/gforth/${PKGVERSION}/test/libcc.fs
+share/gforth/${PKGVERSION}/test/other.fs
+share/gforth/${PKGVERSION}/test/postpone.fs
+share/gforth/${PKGVERSION}/test/primtest.fs
+share/gforth/${PKGVERSION}/test/search.fs
+share/gforth/${PKGVERSION}/test/signals.fs
+share/gforth/${PKGVERSION}/test/string.fs
+share/gforth/${PKGVERSION}/test/tester.fs
+share/gforth/${PKGVERSION}/test/ttester.fs
+share/gforth/${PKGVERSION}/tt.fs
+share/gforth/${PKGVERSION}/unbuffer.fs
+share/gforth/${PKGVERSION}/unix/socket.fs
+share/gforth/${PKGVERSION}/utf-8.fs
+share/gforth/${PKGVERSION}/vt100.fs
+share/gforth/${PKGVERSION}/vt100key.fs
+share/gforth/${PKGVERSION}/wordinfo.fs
+share/gforth/${PKGVERSION}/wordsets.fs
+share/gforth/${PKGVERSION}/xwords.fs
+share/gforth/site-forth/siteinit.fs
diff --git a/gforth-snapshot/TODO b/gforth-snapshot/TODO
new file mode 100644
index 0000000000..472800122a
--- /dev/null
+++ b/gforth-snapshot/TODO
@@ -0,0 +1 @@
+Needs a gforth binary in $PATH to build.
diff --git a/gforth-snapshot/distinfo b/gforth-snapshot/distinfo
new file mode 100644
index 0000000000..7b4192ddf5
--- /dev/null
+++ b/gforth-snapshot/distinfo
@@ -0,0 +1,7 @@
+$NetBSD: distinfo,v 1.14 2021/10/26 10:51:36 nia Exp $
+
+BLAKE2s (gforth-0.7.9_20250312.tar.gz) = 3bd1426ff0db5c66aa47ebf7e04c7b90389cca1db17a112816906d600b3ad465
+SHA512 (gforth-0.7.9_20250312.tar.gz) = d1f2fa3b1e6b332ab69d10b593569fefcc165178e9a3020efa7ff289707ce747253f17e23419231545a82e96b2dd807b32e6b17be6ff71579f046aee376692dc
+Size (gforth-0.7.9_20250312.tar.gz) = 2874363 bytes
+SHA1 (patch-engine_forth.h) = 1f2437e79af9d107ba17590b8055e06262f93e57
+SHA1 (patch-engine_support.c) = 7c7ec206f23857705f300e24bfdfb32b8fb0f994
diff --git a/gforth-snapshot/patches/patch-engine_forth.h b/gforth-snapshot/patches/patch-engine_forth.h
new file mode 100644
index 0000000000..e130c0d709
--- /dev/null
+++ b/gforth-snapshot/patches/patch-engine_forth.h
@@ -0,0 +1,15 @@
+$NetBSD$
+
+Avoid problem with macro of the same name on NetBSD.
+
+--- engine/forth.h.orig	2025-03-18 09:57:47.878480530 +0000
++++ engine/forth.h
+@@ -556,7 +556,7 @@ char *cstr(Char *from, UCell size);
+ char *tilde_cstr(Char *from, UCell size);
+ Cell opencreate_file(char *s, Cell wfam, int flags, Cell *wiorp);
+ DCell timeval2us(struct timeval *tvp);
+-DCell timespec2ns(struct timespec *tvp);
++DCell gf_timespec2ns(struct timespec *tvp);
+ void cmove(Char *c_from, Char *c_to, UCell u);
+ void cmove_up(Char *c_from, Char *c_to, UCell u);
+ Cell compare(Char *c_addr1, UCell u1, Char *c_addr2, UCell u2);
diff --git a/gforth-snapshot/patches/patch-engine_support.c b/gforth-snapshot/patches/patch-engine_support.c
new file mode 100644
index 0000000000..e358014755
--- /dev/null
+++ b/gforth-snapshot/patches/patch-engine_support.c
@@ -0,0 +1,15 @@
+$NetBSD$
+
+Avoid problem with macro of the same name on NetBSD.
+
+--- engine/support.c.orig	2025-03-18 09:58:08.894815118 +0000
++++ engine/support.c
+@@ -223,7 +223,7 @@ DCell timeval2us(struct timeval *tvp)
+ #endif
+ }
+ 
+-DCell timespec2ns(struct timespec *tvp)
++DCell gf_timespec2ns(struct timespec *tvp)
+ {
+ #ifndef BUGGY_LONG_LONG
+   return (tvp->tv_sec*(DCell)1000000000LL)+tvp->tv_nsec;


Home | Main Index | Thread Index | Old Index