Source-Changes-HG archive

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

[xsrc/trunk]: xsrc/external/mit/libfontenc/dist initial import of libfontenc-...



details:   https://anonhg.NetBSD.org/xsrc/rev/246c4ad4212f
branches:  trunk
changeset: 7146:246c4ad4212f
user:      mrg <mrg%NetBSD.org@localhost>
date:      Fri Sep 09 03:35:55 2022 +0000

description:
initial import of libfontenc-1.1.6

diffstat:

 external/mit/libfontenc/dist/ChangeLog          |     99 +-
 external/mit/libfontenc/dist/Makefile.in        |     57 +-
 external/mit/libfontenc/dist/README.md          |      2 +-
 external/mit/libfontenc/dist/aclocal.m4         |  20857 +++++++++++----------
 external/mit/libfontenc/dist/compile            |     17 +-
 external/mit/libfontenc/dist/config.guess       |   1488 +-
 external/mit/libfontenc/dist/config.h.in        |    105 +-
 external/mit/libfontenc/dist/config.sub         |   2885 +-
 external/mit/libfontenc/dist/configure          |  15729 ++++++++-------
 external/mit/libfontenc/dist/configure.ac       |     16 +-
 external/mit/libfontenc/dist/depcomp            |     10 +-
 external/mit/libfontenc/dist/install-sh         |    172 +-
 external/mit/libfontenc/dist/ltmain.sh          |    881 +-
 external/mit/libfontenc/dist/missing            |     16 +-
 external/mit/libfontenc/dist/src/Makefile.am    |      5 +-
 external/mit/libfontenc/dist/src/Makefile.in    |     59 +-
 external/mit/libfontenc/dist/src/encparse.c     |     21 +-
 external/mit/libfontenc/dist/src/fontenc.c      |      7 +-
 external/mit/libfontenc/dist/src/reallocarray.c |     43 +
 external/mit/libfontenc/dist/src/reallocarray.h |     44 +
 20 files changed, 22293 insertions(+), 20220 deletions(-)

diffs (truncated from 49388 to 300 lines):

diff -r d2438ffb42a7 -r 246c4ad4212f external/mit/libfontenc/dist/ChangeLog
--- a/external/mit/libfontenc/dist/ChangeLog    Fri Sep 09 03:35:52 2022 +0000
+++ b/external/mit/libfontenc/dist/ChangeLog    Fri Sep 09 03:35:55 2022 +0000
@@ -1,3 +1,92 @@
+commit c8f8ce35a5eafe8ca0d1ed3dfdd098fe0943b99c
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Tue Aug 30 16:51:28 2022 -0700
+
+    libfontenc 1.1.6
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit f7f8c9af5773c3c73a635308054872b49c5bbe94
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Tue Aug 30 08:21:01 2022 -0700
+
+    include config.h before system headers
+    
+    Makes sure any defines needed to expose functions like reallocarray()
+    are present on platforms that need them (_GNU_SOURCE, _OPENBSD_SOURCE,
+    __EXTENSIONS__, etc.)
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 26ae989526a2c931d15a4c4ae2e84ab627bc0009
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Aug 26 14:59:03 2022 -0700
+
+    libfontenc 1.1.5
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit be77631bbc5fee12c9028f9ffd577dc1066231b7
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Jul 17 13:00:37 2022 -0700
+
+    configure: Use AC_USE_SYSTEM_EXTENSIONS to set GNU_SOURCE & other defines
+    
+    Ensures reallocarray is visible in system headers if available.
+    (See libxext#4.)
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 1aeb6a2d1673c1ae23763f55f09fb18d8e188fe0
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun May 8 11:24:31 2022 -0700
+
+    Convert code to use Xmallocarray() & Xreallocarray()
+    
+    Provides automatic integer overflow checking in allocation size calculations
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 3ff95c472abe8eb8fe1ccda5cd40d99407f1f9a4
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun May 8 11:14:11 2022 -0700
+
+    Import reallocarray() from libX11 (originally from OpenBSD)
+    
+    Wrapper for realloc() that checks for overflow when multiplying
+    arguments together, so we don't have to add overflow checks to
+    every single call.  For documentation on usage, see:
+    http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/calloc.3
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit a6a3bd1365798783f3fa5552d4ab061d5636d15a
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun May 8 10:18:42 2022 -0700
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 256ff55667e70b4cdb91d0dc10636ec6c1b9d598
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun May 8 10:15:47 2022 -0700
+
+    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 91b7c7d02ddb2ddce39648270f5cb91fac7d978e
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun May 8 10:14:39 2022 -0700
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
 commit 2baea13978759d1a011fc6d739465893b554d30a
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Tue Feb 19 17:31:57 2019 -0800
@@ -727,7 +816,7 @@
     Update INCLUDES to find <X11/fonts/fontenc.h>
 
 commit 85094af610ba990c6bc2377eff1f6f31dffd48e2
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jul 12 21:05:28 2005 +0000
 
     Remove encodings build system from libfontenc
@@ -764,27 +853,27 @@
     Check for zlib
 
 commit 092271385632708fb5dd53dca3dcfc3ead06ef6c
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jun 28 15:40:27 2005 +0000
 
     modularizeapp.sh: initialize LAST to "" symlink.sh: Add bitmaps for oclock,
         and an extra textfile for pclcomp
 
 commit 21e552451c095c5668a57765c2eb941750e00ecd
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jun 28 14:48:02 2005 +0000
 
     Add generation of encodings.dir
 
 commit a18d9ec0c4bfa36460d5e3eba1c5fb8a90086500
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jun 28 14:17:12 2005 +0000
 
     Add encodings to fontenc build system, plus various fixes to make it
         distcheck.
 
 commit bcdcaebcd2127f4e7e1c368f341a781b4cf8af6b
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Mon Jun 27 16:09:14 2005 +0000
 
     - Remove fontenc from Xfont
diff -r d2438ffb42a7 -r 246c4ad4212f external/mit/libfontenc/dist/Makefile.in
--- a/external/mit/libfontenc/dist/Makefile.in  Fri Sep 09 03:35:52 2022 +0000
+++ b/external/mit/libfontenc/dist/Makefile.in  Fri Sep 09 03:35:55 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,
@@ -185,9 +185,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.
@@ -204,13 +204,10 @@
   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 \
-       $(srcdir)/fontenc.pc.in COPYING ChangeLog INSTALL compile \
-       config.guess config.sub install-sh ltmain.sh missing
+       $(srcdir)/fontenc.pc.in COPYING ChangeLog INSTALL README.md \
+       compile config.guess config.sub install-sh ltmain.sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
@@ -246,9 +243,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$$'
@@ -270,8 +269,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@
@@ -286,8 +286,10 @@
 ECHO_T = @ECHO_T@
 EGREP = @EGREP@
 ENCODINGSDIR = @ENCODINGSDIR@
+ETAGS = @ETAGS@
 EXEEXT = @EXEEXT@
 FGREP = @FGREP@
+FILECMD = @FILECMD@
 FILE_MAN_DIR = @FILE_MAN_DIR@
 FILE_MAN_SUFFIX = @FILE_MAN_SUFFIX@
 FONTENC_CFLAGS = @FONTENC_CFLAGS@
@@ -388,6 +390,7 @@
 prefix = @prefix@
 program_transform_name = @program_transform_name@
 psdir = @psdir@
+runstatedir = @runstatedir@
 sbindir = @sbindir@
 sharedstatedir = @sharedstatedir@
 srcdir = @srcdir@
@@ -426,8 +429,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)
@@ -591,8 +594,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'`; \
@@ -660,8 +665,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)
@@ -669,11 +675,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)
 
+dist-zstd: distdir
+       tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
+       $(am__post_remove_distdir)
+
 dist-tarZ: distdir
        @echo WARNING: "Support for distribution archives compressed with" \
                       "legacy program 'compress' is deprecated." >&2
@@ -685,7 +694,7 @@
        @echo WARNING: "Support for shar distribution archives is" \
                       "deprecated." >&2
        @echo WARNING: "It will be removed altogether in Automake 2.0" >&2
-       shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
+       shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
        $(am__post_remove_distdir)
 
 dist-zip: distdir
@@ -703,7 +712,7 @@
 distcheck: dist
        case '$(DIST_ARCHIVES)' in \
        *.tar.gz*) \
-         GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
+         eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
        *.tar.bz2*) \
          bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
        *.tar.lz*) \
@@ -713,9 +722,11 @@
        *.tar.Z*) \
          uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
        *.shar.gz*) \
-         GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
+         eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
        *.zip*) \
          unzip $(distdir).zip ;;\
+       *.tar.zst*) \



Home | Main Index | Thread Index | Old Index