Source-Changes-HG archive

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

[xsrc/xorg]: xsrc/external/mit/xcalc/dist initial import of xcalc-1.0.7



details:   https://anonhg.NetBSD.org/xsrc/rev/50c7e212baae
branches:  xorg
changeset: 10124:50c7e212baae
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Mar 03 08:16:13 2019 +0000

description:
initial import of xcalc-1.0.7

diffstat:

 external/mit/xcalc/dist/ChangeLog       |   122 +
 external/mit/xcalc/dist/Makefile.am     |     1 +
 external/mit/xcalc/dist/Makefile.in     |     7 +-
 external/mit/xcalc/dist/README.md       |    18 +
 external/mit/xcalc/dist/aclocal.m4      |  2549 ++++++++++++++++--------------
 external/mit/xcalc/dist/config.guess    |   679 ++++---
 external/mit/xcalc/dist/config.sub      |   304 +-
 external/mit/xcalc/dist/configure       |    94 +-
 external/mit/xcalc/dist/configure.ac    |     4 +-
 external/mit/xcalc/dist/man/Makefile.in |     2 +
 external/mit/xcalc/dist/math.c          |    22 +-
 11 files changed, 2079 insertions(+), 1723 deletions(-)

diffs (truncated from 5624 to 300 lines):

diff -r 993199e7d71c -r 50c7e212baae external/mit/xcalc/dist/ChangeLog
--- a/external/mit/xcalc/dist/ChangeLog Sun Mar 03 07:03:36 2019 +0000
+++ b/external/mit/xcalc/dist/ChangeLog Sun Mar 03 08:16:13 2019 +0000
@@ -1,3 +1,125 @@
+commit be5114cebfdc29788cf038d349c0ed6cce4bb536
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Feb 17 13:50:58 2019 -0800
+
+    xcalc 1.0.7
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 85c9feb6e10cea1ef017d702151b14717c40b9d5
+Author: Stéphane Aulery <lkppo%free.fr@localhost>
+Date:   Sun Jul 7 22:50:30 2013 +0200
+
+    Reduce scope of i (cppcheck --verbose --enable=all)
+    
+    Signed-off-by: Stéphane Aulery <lkppo%free.fr@localhost>
+    Reviewed-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit aa3d39389bfc752486a83933574d0365c74d4e29
+Author: Stéphane Aulery <lkppo%free.fr@localhost>
+Date:   Sun Jul 7 22:50:29 2013 +0200
+
+    Reduce scope of cell (cppcheck --verbose --enable=all)
+    
+    Signed-off-by: Stéphane Aulery <lkppo%free.fr@localhost>
+    Reviewed-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 8d156f428912aecdd493e075b75e735bfbae7dda
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Wed Nov 21 16:59:17 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit b8f4da1126dd44b4adc5f83ba5c7e06a2de75996
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Nov 16 21:11:40 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 8df4b463f69fc3e7e08ce5de284ed7f318935c1e
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat May 5 12:20:12 2018 -0700
+
+    Reword fall through comments to appease gcc -Wimplicit-fallthrough
+    
+    Gets rid of these warnings:
+    math.c:707:24: warning: this statement may fall through [-Wimplicit-fallthrough=]
+       case kSQR:   flagINV = !flagINV; /* fall through to */
+                    ~~~~~~~~^~~~~~~~~~
+    math.c:708:3: note: here
+       case kSQRT:  if (flagINV) dnum=dnum*dnum;
+       ^~~~
+    math.c:711:24: warning: this statement may fall through [-Wimplicit-fallthrough=]
+       case k10X:   flagINV = !flagINV; /* fall through to */
+                    ~~~~~~~~^~~~~~~~~~
+    math.c:712:3: note: here
+       case kLOG:   if (flagINV) dnum=pow(10.0,dnum);
+       ^~~~
+    math.c:715:24: warning: this statement may fall through [-Wimplicit-fallthrough=]
+       case kEXP:   flagINV = !flagINV; /* fall through to */
+                    ~~~~~~~~^~~~~~~~~~
+    math.c:716:3: note: here
+       case kLN:    if (flagINV) dnum=exp(dnum);
+       ^~~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 7a90211e35841758ff11e79a1633494e2055df88
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat May 5 12:15:19 2018 -0700
+
+    Fix misleading indentation in math.c
+    
+    math.c: In function â??numericâ??:
+    math.c:267:3: warning: this â??ifâ?? clause does not guard... [-Wmisleading-indentat
+    ion]
+       if ((int) strlen(dispstr) >= MAXDISP)
+       ^~
+    math.c:270:5: note: ...this statement, but the latter is misleadingly indented a
+    s if it were guarded by the â??ifâ??
+         switch (keynum){
+         ^~~~~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit d056a3c6843cf5f6c8b392c46bc4f1b637f87d0b
+Author: Mihail Konev <k.mvc%ya.ru@localhost>
+Date:   Thu Jan 26 14:00:20 2017 +1000
+
+    autogen: add default patch prefix
+    
+    Signed-off-by: Mihail Konev <k.mvc%ya.ru@localhost>
+
+commit f5982d0175359f7db28127cba3a42e08352f295b
+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 004ce8287f9afab014a44c8bb8ba476ef5930a57
+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 0fba659f91bebe1f92f4de2660bf806fd049350b
 Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
 Date:   Mon Jan 19 21:26:22 2015 -0800
diff -r 993199e7d71c -r 50c7e212baae external/mit/xcalc/dist/Makefile.am
--- a/external/mit/xcalc/dist/Makefile.am       Sun Mar 03 07:03:36 2019 +0000
+++ b/external/mit/xcalc/dist/Makefile.am       Sun Mar 03 08:16:13 2019 +0000
@@ -53,3 +53,4 @@
 
 dist-hook: ChangeLog INSTALL
 
+EXTRA_DIST = README.md
diff -r 993199e7d71c -r 50c7e212baae external/mit/xcalc/dist/Makefile.in
--- a/external/mit/xcalc/dist/Makefile.in       Sun Mar 03 07:03:36 2019 +0000
+++ b/external/mit/xcalc/dist/Makefile.in       Sun Mar 03 08:16:13 2019 +0000
@@ -233,8 +233,8 @@
 CSCOPE = cscope
 DIST_SUBDIRS = $(SUBDIRS)
 am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in COPYING \
-       ChangeLog INSTALL README compile config.guess config.sub \
-       depcomp install-sh missing
+       ChangeLog INSTALL compile config.guess config.sub depcomp \
+       install-sh missing
 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
 distdir = $(PACKAGE)-$(VERSION)
 top_distdir = $(distdir)
@@ -338,6 +338,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@
 SED = @SED@
 SET_MAKE = @SET_MAKE@
 SHELL = @SHELL@
@@ -415,6 +417,7 @@
         app-defaults/XCalc-color
 
 MAINTAINERCLEANFILES = ChangeLog INSTALL
+EXTRA_DIST = README.md
 all: config.h
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
diff -r 993199e7d71c -r 50c7e212baae external/mit/xcalc/dist/README.md
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/mit/xcalc/dist/README.md Sun Mar 03 08:16:13 2019 +0000
@@ -0,0 +1,18 @@
+xcalc is a scientific calculator X11 client that can emulate a TI-30
+or an HP-10C.
+
+All questions regarding this software should be directed at the
+Xorg mailing list:
+
+  https://lists.x.org/mailman/listinfo/xorg
+
+The master development code repository can be found at:
+
+  https://gitlab.freedesktop.org/xorg/app/xcalc
+
+Please submit bug reports and requests to merge patches there.
+
+For patch submission instructions, see:
+
+  https://www.x.org/wiki/Development/Documentation/SubmittingPatches
+
diff -r 993199e7d71c -r 50c7e212baae external/mit/xcalc/dist/aclocal.m4
--- a/external/mit/xcalc/dist/aclocal.m4        Sun Mar 03 07:03:36 2019 +0000
+++ b/external/mit/xcalc/dist/aclocal.m4        Sun Mar 03 08:16:13 2019 +0000
@@ -20,1165 +20,71 @@
 If you have problems, you may need to regenerate the build system entirely.
 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
 
-# Copyright (C) 2002-2014 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_AUTOMAKE_VERSION(VERSION)
-# ----------------------------
-# Automake X.Y traces this macro to ensure aclocal.m4 has been
-# generated from the m4 files accompanying Automake X.Y.
-# (This private macro should not be called outside this file.)
-AC_DEFUN([AM_AUTOMAKE_VERSION],
-[am__api_version='1.15'
-dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
-dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.15], [],
-      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
-])
-
-# _AM_AUTOCONF_VERSION(VERSION)
-# -----------------------------
-# aclocal traces this macro to find the Autoconf version.
-# This is a private macro too.  Using m4_define simplifies
-# the logic in aclocal, which can simply ignore this definition.
-m4_define([_AM_AUTOCONF_VERSION], [])
-
-# AM_SET_CURRENT_AUTOMAKE_VERSION
-# -------------------------------
-# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
-# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
-AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.15])dnl
-m4_ifndef([AC_AUTOCONF_VERSION],
-  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
-_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
-
-# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
-
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
-# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
-# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
-#
-# Of course, Automake must honor this variable whenever it calls a
-# tool from the auxiliary directory.  The problem is that $srcdir (and
-# therefore $ac_aux_dir as well) can be either absolute or relative,
-# depending on how configure is run.  This is pretty annoying, since
-# it makes $ac_aux_dir quite unusable in subdirectories: in the top
-# source directory, any form will work fine, but in subdirectories a
-# relative path needs to be adjusted first.
-#
-# $ac_aux_dir/missing
-#    fails when called from a subdirectory if $ac_aux_dir is relative
-# $top_srcdir/$ac_aux_dir/missing
-#    fails if $ac_aux_dir is absolute,
-#    fails when called from a subdirectory in a VPATH build with
-#          a relative $ac_aux_dir
-#
-# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
-# are both prefixed by $srcdir.  In an in-source build this is usually
-# harmless because $srcdir is '.', but things will broke when you
-# start a VPATH build or use an absolute $srcdir.
-#
-# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
-#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
-# and then we would define $MISSING as
-#   MISSING="\${SHELL} $am_aux_dir/missing"
-# This will work as long as MISSING is not called from configure, because
-# unfortunately $(top_srcdir) has no meaning in configure.
-# However there are other variables, like CC, which are often used in
-# configure, and could therefore not use this "fixed" $ac_aux_dir.
-#
-# Another solution, used here, is to always expand $ac_aux_dir to an
-# absolute PATH.  The drawback is that using absolute paths prevent a
-# configured tree to be moved without reconfiguration.
-
-AC_DEFUN([AM_AUX_DIR_EXPAND],
-[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
-# Expand $ac_aux_dir to an absolute path.
-am_aux_dir=`cd "$ac_aux_dir" && pwd`
-])
-
-# AM_CONDITIONAL                                            -*- Autoconf -*-
-
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
-#
-# This file is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# AM_CONDITIONAL(NAME, SHELL-CONDITION)
-# -------------------------------------
-# Define a conditional.
-AC_DEFUN([AM_CONDITIONAL],
-[AC_PREREQ([2.52])dnl
- m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
-       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl



Home | Main Index | Thread Index | Old Index