Source-Changes-HG archive

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

[xsrc/trunk]: xsrc/external/mit/xlsfonts/dist initial import of xlsfonts-1.0.7



details:   https://anonhg.NetBSD.org/xsrc/rev/ad9ffffcbbc3
branches:  trunk
changeset: 7019:ad9ffffcbbc3
user:      mrg <mrg%NetBSD.org@localhost>
date:      Mon Jul 11 08:40:20 2022 +0000

description:
initial import of xlsfonts-1.0.7

diffstat:

 external/mit/xlsfonts/dist/ChangeLog       |   109 +-
 external/mit/xlsfonts/dist/Makefile.am     |     2 +-
 external/mit/xlsfonts/dist/Makefile.in     |   107 +-
 external/mit/xlsfonts/dist/README.md       |    17 +
 external/mit/xlsfonts/dist/aclocal.m4      |  2313 ++++----
 external/mit/xlsfonts/dist/config.guess    |  1488 +++--
 external/mit/xlsfonts/dist/config.h.in     |    10 +-
 external/mit/xlsfonts/dist/config.sub      |  2885 +++++-----
 external/mit/xlsfonts/dist/configure       |  7826 ++++++++++++++-------------
 external/mit/xlsfonts/dist/configure.ac    |     6 +-
 external/mit/xlsfonts/dist/depcomp         |    10 +-
 external/mit/xlsfonts/dist/dsimple.c       |    96 +-
 external/mit/xlsfonts/dist/dsimple.h       |    16 +-
 external/mit/xlsfonts/dist/install-sh      |   172 +-
 external/mit/xlsfonts/dist/man/Makefile.in |    19 +-
 external/mit/xlsfonts/dist/missing         |    16 +-
 16 files changed, 8064 insertions(+), 7028 deletions(-)

diffs (truncated from 21110 to 300 lines):

diff -r e90145b59ca5 -r ad9ffffcbbc3 external/mit/xlsfonts/dist/ChangeLog
--- a/external/mit/xlsfonts/dist/ChangeLog      Mon Jul 11 08:40:19 2022 +0000
+++ b/external/mit/xlsfonts/dist/ChangeLog      Mon Jul 11 08:40:20 2022 +0000
@@ -1,3 +1,110 @@
+commit 8a29554a2edd31bf6f54babad0a13abb5618a155
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Apr 3 16:39:17 2022 -0700
+
+    xlsfonts 1.0.7
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 287e5816a7326b6fe67c60f01f3f2e4cdca3e31d
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 3 10:48:13 2021 -0800
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit a03ab7e51a9f2239c698749df401cedf8386e721
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 13:05:36 2021 -0800
+
+    Clear -Wshadow warning from gcc
+    
+    xlsfonts.c: In function ‘do_query_font’:
+    xlsfonts.c:628:24: warning: declaration of ‘dpy’ shadows a
+     global declaration [-Wshadow]
+     do_query_font(Display *dpy, char *name)
+                            ^~~
+    In file included from xlsfonts.c:37:0:
+    dsimple.h:53:17: note: shadowed declaration is here
+     extern Display *dpy;                    /* The current display */
+                     ^~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 7b84a6ffa8bae2dd9fe8cb1c8bc5b0b198584d8d
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 12:58:35 2021 -0800
+
+    Clear -Wsign-compare warnings from gcc
+    
+    xlsfonts.c:560:16: warning: comparison between signed and
+     unsigned integer expressions [-Wsign-compare]
+                  i <= fs->max_char_or_byte2; i++, cs++) {
+                    ^~
+    xlsfonts.c: In function ‘print_character_metrics’:
+    xlsfonts.c:611:33: warning: comparison between signed and
+     unsigned integer expressions [-Wsign-compare]
+         for (j = info->min_byte1; j <= info->max_byte1; j++) {
+                                     ^~
+    xlsfonts.c:613:45: warning: comparison between signed and
+     unsigned integer expressions [-Wsign-compare]
+             for (i = info->min_char_or_byte2; i <= info->max_char_or_byte2; i++) {
+                                                 ^~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 3ceafc3e134069ecd46df6482e8e7d4b5a7051c3
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 12:49:54 2021 -0800
+
+    PrintProperty: replace sprintf with snprintf
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit ba4fcf04c661dd59ddd4153d442da5fe56381ab2
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 3 10:30:25 2021 -0800
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit d8f7cc9553701f5cc53c22ee2e48041ceb19e78c
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 12:40:28 2021 -0800
+
+    Adapt to X.Org standard coding style
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit fc918002801de4bd7334867365836bd0ba94c654
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 28 12:12:08 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 a1507b66e8e48af8a9612ff51b6d382ef0a4e0d8
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Nov 21 17:14:04 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit c2807f825b73e6b8310b8281245e8ac42d550250
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Nov 16 22:35:18 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
 commit 637ba8863fa94210a7642e9460f314ec41867796
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Fri Mar 9 17:57:46 2018 -0800
@@ -590,7 +697,7 @@
         configure cache, you cache it, and the cached value is probably wrong.
 
 commit 8eab7c1c0df42316eca01fb7038efb2be1667b79
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jul 5 22:51:10 2005 +0000
 
     Add build systems for xlogo, xlsatoms, xlsclients, xmag, xman, xmessage,
diff -r e90145b59ca5 -r ad9ffffcbbc3 external/mit/xlsfonts/dist/Makefile.am
--- a/external/mit/xlsfonts/dist/Makefile.am    Mon Jul 11 08:40:19 2022 +0000
+++ b/external/mit/xlsfonts/dist/Makefile.am    Mon Jul 11 08:40:20 2022 +0000
@@ -30,7 +30,7 @@
         dsimple.h      \
         xlsfonts.c
 
-EXTRA_DIST = xlsfonts.xml
+EXTRA_DIST = xlsfonts.xml README.md
 MAINTAINERCLEANFILES = ChangeLog INSTALL
 
 .PHONY: ChangeLog INSTALL
diff -r e90145b59ca5 -r ad9ffffcbbc3 external/mit/xlsfonts/dist/Makefile.in
--- a/external/mit/xlsfonts/dist/Makefile.in    Mon Jul 11 08:40:19 2022 +0000
+++ b/external/mit/xlsfonts/dist/Makefile.in    Mon Jul 11 08:40:20 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,
@@ -143,7 +143,8 @@
 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)/dsimple.Po ./$(DEPDIR)/xlsfonts.Po
 am__mv = mv -f
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
@@ -179,9 +180,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.
@@ -198,12 +199,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 install-sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
@@ -240,9 +238,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$$'
@@ -263,8 +263,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@
@@ -274,11 +275,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@
@@ -359,6 +359,7 @@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
 psdir = @psdir@
+runstatedir = @runstatedir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 srcdir = @srcdir@
@@ -375,7 +376,7 @@
         dsimple.h      \
         xlsfonts.c
 
-EXTRA_DIST = xlsfonts.xml
+EXTRA_DIST = xlsfonts.xml README.md
 MAINTAINERCLEANFILES = ChangeLog INSTALL
 all: config.h
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
@@ -403,8 +404,8 @@
            echo ' $(SHELL) ./config.status'; \
            $(SHELL) ./config.status;; \
          *) \
-           echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
-           cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
+           echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
+           cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
        esac;
 
 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
@@ -483,8 +484,14 @@
 distclean-compile:
        -rm -f *.tab.c
 
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsimple.Po@am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xlsfonts.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dsimple.Po@am__quote@ # am--include-marker
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xlsfonts.Po@am__quote@ # am--include-marker
+
+$(am__depfiles_remade):
+       @$(MKDIR_P) $(@D)
+       @echo '# dummy' >$@-t && $(am__mv) $@-t $@
+
+am--depfiles: $(am__depfiles_remade)
 
 .c.o:
 @am__fastdepCC_TRUE@   $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@@ -605,8 +612,10 @@
 distclean-tags:
        -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
        -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
+distdir: $(BUILT_SOURCES)
+       $(MAKE) $(AM_MAKEFLAGS) distdir-am
 
-distdir: $(DISTFILES)
+distdir-am: $(DISTFILES)
        $(am__remove_distdir)
        test -d "$(distdir)" || mkdir "$(distdir)"
        @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
@@ -674,8 +683,9 @@
          ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
        || chmod -R a+r "$(distdir)"
 dist-gzip: distdir
-       tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
+       tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
        $(am__post_remove_distdir)
+
 dist-bzip2: distdir
        tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
        $(am__post_remove_distdir)
@@ -683,11 +693,14 @@
 dist-lzip: distdir
        tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
        $(am__post_remove_distdir)
-
 dist-xz: distdir
        tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
        $(am__post_remove_distdir)
 


Home | Main Index | Thread Index | Old Index