Source-Changes-HG archive

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

[xsrc/trunk]: xsrc/external/mit/xgc/dist initial import of xgc-1.0.6



details:   https://anonhg.NetBSD.org/xsrc/rev/37ff08e4f12d
branches:  trunk
changeset: 7193:37ff08e4f12d
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Oct 16 22:56:59 2022 +0000

description:
initial import of xgc-1.0.6

diffstat:

 external/mit/xgc/dist/ChangeLog           |   124 +-
 external/mit/xgc/dist/Makefile.am         |     8 +-
 external/mit/xgc/dist/Makefile.in         |   167 +-
 external/mit/xgc/dist/README.md           |    18 +
 external/mit/xgc/dist/Written/FilledRects |     8 +-
 external/mit/xgc/dist/Written/Interface   |     2 +-
 external/mit/xgc/dist/Written/Jim         |    12 +-
 external/mit/xgc/dist/Written/Notes       |     8 +-
 external/mit/xgc/dist/Written/Notes2      |    46 +-
 external/mit/xgc/dist/Written/Outline     |    12 +-
 external/mit/xgc/dist/Written/Widget      |     2 +-
 external/mit/xgc/dist/aclocal.m4          |   546 +-
 external/mit/xgc/dist/choice.c            |    16 +-
 external/mit/xgc/dist/config.guess        |  1685 +++--
 external/mit/xgc/dist/config.h.in         |    10 +-
 external/mit/xgc/dist/config.sub          |  2911 +++++-----
 external/mit/xgc/dist/configure           |  8184 +++++++++++++++-------------
 external/mit/xgc/dist/configure.ac        |    10 +-
 external/mit/xgc/dist/constants.h         |     2 +-
 external/mit/xgc/dist/dashlist.c          |    10 +-
 external/mit/xgc/dist/depcomp             |    10 +-
 external/mit/xgc/dist/getfile.c           |     6 +-
 external/mit/xgc/dist/gram.c              |  1506 ++--
 external/mit/xgc/dist/gram.h              |   118 +-
 external/mit/xgc/dist/gram.y              |    18 +-
 external/mit/xgc/dist/install-sh          |   172 +-
 external/mit/xgc/dist/interpret.c         |    18 +-
 external/mit/xgc/dist/lex.c               |   448 +-
 external/mit/xgc/dist/main.c              |    16 +-
 external/mit/xgc/dist/man/Makefile.in     |    21 +-
 external/mit/xgc/dist/missing             |    16 +-
 external/mit/xgc/dist/planemask.c         |     4 +-
 external/mit/xgc/dist/record.c            |    16 +-
 external/mit/xgc/dist/testfrac.c          |     6 +-
 external/mit/xgc/dist/tests.c             |    18 +-
 external/mit/xgc/dist/text.c              |     6 +-
 external/mit/xgc/dist/xgc.h               |     2 +-
 external/mit/xgc/dist/ylwrap              |    10 +-
 38 files changed, 8775 insertions(+), 7417 deletions(-)

diffs (truncated from 24699 to 300 lines):

diff -r b75d41ee5fdf -r 37ff08e4f12d external/mit/xgc/dist/ChangeLog
--- a/external/mit/xgc/dist/ChangeLog   Sun Oct 16 22:56:57 2022 +0000
+++ b/external/mit/xgc/dist/ChangeLog   Sun Oct 16 22:56:59 2022 +0000
@@ -1,3 +1,123 @@
+commit 7883d1c27a12320b2c3a03aeca573259cb60b3b0
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Oct 15 10:17:34 2022 -0700
+
+    xgc 1.0.6
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit f3424f4c7c7e1aba33d0a117ea90dd5412530f45
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Apr 3 16:08:14 2022 -0700
+
+    Fix -Wformat-truncation warning
+    
+    planemask.c: In function ‘create_planemask_choice’:
+    planemask.c:109:43: warning: ‘%d’ directive output may be truncated writing between 1 and 10 bytes into a region of size 3 [-Wformat-truncation=]
+         snprintf(name, sizeof name, "planemask%d",i);
+                                               ^~
+    planemask.c:109:33: note: directive argument in the range [0, 2147483647]
+         snprintf(name, sizeof name, "planemask%d",i);
+                                     ^~~~~~~~~~~~~
+    planemask.c:109:5: note: ‘snprintf’ output between 11 and 20 bytes into a destination of size 12
+         snprintf(name, sizeof name, "planemask%d",i);
+         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit c3e109f0bb814f2a0e3385bdada58a52473397ac
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Apr 3 16:04:34 2022 -0700
+
+    Use _CONST_X_STRING to make libXt declare String as const char *
+    
+    Clears 57 out of 61 -Wdiscarded-qualifiers warnings from gcc
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 609dfb80abafeea1d4e757403f1cef90c87cde02
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Mon Dec 6 12:45:35 2021 -0800
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 949a0d32c94b54ecfaad80ea90dc8bbf74bb04d7
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Mon Dec 6 12:45:31 2021 -0800
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 684e4321fa7e96a61f45dc133816ab92a173a52d
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 14:40:19 2021 -0800
+
+    Trim trailing whitespace from lines
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 63e7fce72d704036016258b2cb55c5624f571d92
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 14:39:06 2021 -0800
+
+    Fix spelling/wording issues
+    
+    Found by using:
+        codespell --builtin clear,rare,usage,informal,code,names
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 233611e5a2bc11cb0a965040166c2e4787b946a4
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Nov 21 17:06:08 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4786164fba556c753ba8ba2b1ffd98c1f1c70322
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Nov 16 22:14:35 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 4c03e97932752295558f0f64c76bd23d26423e26
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date:   Thu Jan 26 14:00:21 2017 +1000
+
+    autogen: add default patch prefix
+    
+    Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
+commit 0d35119c5015fb47c2ec96e102f5c8dab1ead026
+Author: Emil Velikov <emil.l.velikov%gmail.com@localhost>
+Date:   Mon Mar 9 12:00:52 2015 +0000
+
+    autogen.sh: use quoted string variables
+    
+    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
+    fall-outs, when they contain space.
+    
+    Signed-off-by: Emil Velikov <emil.l.velikov%gmail.com@localhost>
+    Reviewed-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+    Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+
+commit d1757a5d69fbc11121bb84739359599964d13efb
+Author: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+Date:   Tue Jan 24 10:32:07 2017 +1000
+
+    autogen.sh: use exec instead of waiting for configure to finish
+    
+    Syncs the invocation of configure with the one from the server.
+    
+    Signed-off-by: Peter Hutterer <peter.hutterer%who-t.net@localhost>
+    Reviewed-by: Emil Velikov <emil.velikov%collabora.com@localhost>
+
 commit 54f109228e566759799894ff4d6ef4bac74c9aac
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Thu Apr 16 23:25:45 2015 -0700
@@ -582,13 +702,13 @@
         configure cache, you cache it, and the cached value is probably wrong.
 
 commit 23e06fb205c2494dc8c44e976e27ca0a30c30ed2
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Thu Jul 14 22:40:16 2005 +0000
 
     Add _BSD_SOURCE to lots of applications - patch from Stefan Dirsch
 
 commit 07ed043059d5fc7e8d694f6814eb1ba63946d646
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jul 5 21:11:37 2005 +0000
 
     Add build system for xgc
diff -r b75d41ee5fdf -r 37ff08e4f12d external/mit/xgc/dist/Makefile.am
--- a/external/mit/xgc/dist/Makefile.am Sun Oct 16 22:56:57 2022 +0000
+++ b/external/mit/xgc/dist/Makefile.am Sun Oct 16 22:56:59 2022 +0000
@@ -1,6 +1,6 @@
-# 
+#
 #  Copyright 2005  Red Hat, Inc.
-# 
+#
 #  Permission to use, copy, modify, distribute, and sell this software and its
 #  documentation for any purpose is hereby granted without fee, provided that
 #  the above copyright notice appear in all copies and that both that
@@ -10,7 +10,7 @@
 #  specific, written prior permission.  Red Hat makes no
 #  representations about the suitability of this software for any purpose.  It
 #  is provided "as is" without express or implied warranty.
-# 
+#
 #  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 #  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 #  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
@@ -24,6 +24,7 @@
 SUBDIRS = man
 bin_PROGRAMS = xgc
 
+AM_CPPFLAGS = -D_CONST_X_STRING
 AM_CFLAGS = $(CWARNFLAGS) $(XGC_CFLAGS) -D_BSD_SOURCE
 xgc_LDADD = $(XGC_LIBS) -lm
 
@@ -57,6 +58,7 @@
         app-defaults/Xgc-color
 
 EXTRA_DIST = tile Bugs \
+       README.md                                                       \
        Written/FilledRects                                             \
        Written/Interface                                               \
        Written/Jim                                                     \
diff -r b75d41ee5fdf -r 37ff08e4f12d external/mit/xgc/dist/Makefile.in
--- a/external/mit/xgc/dist/Makefile.in Sun Oct 16 22:56:57 2022 +0000
+++ b/external/mit/xgc/dist/Makefile.in Sun Oct 16 22:56:59 2022 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.16.5 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2021 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -14,9 +14,9 @@
 
 @SET_MAKE@
 
-# 
+#
 #  Copyright 2005  Red Hat, Inc.
-# 
+#
 #  Permission to use, copy, modify, distribute, and sell this software and its
 #  documentation for any purpose is hereby granted without fee, provided that
 #  the above copyright notice appear in all copies and that both that
@@ -26,7 +26,7 @@
 #  specific, written prior permission.  Red Hat makes no
 #  representations about the suitability of this software for any purpose.  It
 #  is provided "as is" without express or implied warranty.
-# 
+#
 #  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 #  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
 #  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
@@ -148,7 +148,13 @@
 am__v_at_1 = 
 DEFAULT_INCLUDES = -I.@am__isrc@
 depcomp = $(SHELL) $(top_srcdir)/depcomp
-am__depfiles_maybe = depfiles
+am__maybe_remake_depfiles = depfiles
+am__depfiles_remade = ./$(DEPDIR)/choice.Po ./$(DEPDIR)/dashlist.Po \
+       ./$(DEPDIR)/getfile.Po ./$(DEPDIR)/gram.Po \
+       ./$(DEPDIR)/interpret.Po ./$(DEPDIR)/lex.Po \
+       ./$(DEPDIR)/main.Po ./$(DEPDIR)/planemask.Po \
+       ./$(DEPDIR)/record.Po ./$(DEPDIR)/testfrac.Po \
+       ./$(DEPDIR)/tests.Po ./$(DEPDIR)/text.Po
 am__mv = mv -f
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -225,9 +231,9 @@
   $(RECURSIVE_CLEAN_TARGETS) \
   $(am__extra_recursive_targets)
 AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
-       cscope distdir dist dist-all distcheck
-am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
-       $(LISP)config.h.in
+       cscope distdir distdir-am dist dist-all distcheck
+am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
+       config.h.in
 # Read a list of newline-separated strings from the standard input,
 # and print each of them once, without duplicates.  Input order is
 # *not* preserved.
@@ -244,12 +250,9 @@
   unique=`for i in $$list; do \
     if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
   done | $(am__uniquify_input)`
-ETAGS = etags
-CTAGS = ctags
-CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
-       ChangeLog INSTALL README compile config.guess config.sub \
+       ChangeLog INSTALL README.md compile config.guess config.sub \
        depcomp gram.c gram.h install-sh lex.c missing ylwrap
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
@@ -286,9 +289,11 @@
     dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
   done; \
   reldir="$$dir2"
-DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2
+DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz
 GZIP_ENV = --best
-DIST_TARGETS = dist-bzip2 dist-gzip
+DIST_TARGETS = dist-xz dist-gzip
+# Exists only to be overridden by the user if desired.
+AM_DISTCHECK_DVI_TARGET = dvi
 distuninstallcheck_listfiles = find . -type f -print
 am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
   | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
@@ -309,8 +314,9 @@
 CCDEPMODE = @CCDEPMODE@
 CFLAGS = @CFLAGS@
 CHANGELOG_CMD = @CHANGELOG_CMD@
-CPP = @CPP@
 CPPFLAGS = @CPPFLAGS@
+CSCOPE = @CSCOPE@
+CTAGS = @CTAGS@
 CWARNFLAGS = @CWARNFLAGS@
 CYGPATH_W = @CYGPATH_W@
 DEFS = @DEFS@
@@ -320,11 +326,10 @@
 ECHO_C = @ECHO_C@
 ECHO_N = @ECHO_N@
 ECHO_T = @ECHO_T@
-EGREP = @EGREP@
+ETAGS = @ETAGS@
 EXEEXT = @EXEEXT@
 FILE_MAN_DIR = @FILE_MAN_DIR@
 FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
-GREP = @GREP@
 INSTALL = @INSTALL@
 INSTALL_CMD = @INSTALL_CMD@
 INSTALL_DATA = @INSTALL_DATA@
@@ -355,6 +360,8 @@
 PACKAGE_VERSION = @PACKAGE_VERSION@
 PATH_SEPARATOR = @PATH_SEPARATOR@
 PKG_CONFIG = @PKG_CONFIG@
+PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
+PKG_CONFIG_PATH = @PKG_CONFIG_PATH@


Home | Main Index | Thread Index | Old Index