Source-Changes-HG archive

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

[xsrc/XORG]: xsrc/external/mit/xf86-video-suncg14/dist initial import of xf86...



details:   https://anonhg.NetBSD.org/xsrc/rev/c06d720840a6
branches:  XORG
changeset: 7384:c06d720840a6
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sun Jan 08 21:52:44 2023 +0000

description:
initial import of xf86-video-suncg14-1.1.3

diffstat:

 external/mit/xf86-video-suncg14/dist/ChangeLog         |    100 +-
 external/mit/xf86-video-suncg14/dist/Makefile.am       |      2 +
 external/mit/xf86-video-suncg14/dist/Makefile.in       |    295 +-
 external/mit/xf86-video-suncg14/dist/aclocal.m4        |  20003 +++++++-------
 external/mit/xf86-video-suncg14/dist/config.guess      |   1704 +-
 external/mit/xf86-video-suncg14/dist/config.h.in       |     13 +-
 external/mit/xf86-video-suncg14/dist/config.sub        |   2918 +-
 external/mit/xf86-video-suncg14/dist/configure         |  17998 +++++++------
 external/mit/xf86-video-suncg14/dist/configure.ac      |      6 +-
 external/mit/xf86-video-suncg14/dist/depcomp           |    410 +-
 external/mit/xf86-video-suncg14/dist/install-sh        |    416 +-
 external/mit/xf86-video-suncg14/dist/ltmain.sh         |   6292 +++-
 external/mit/xf86-video-suncg14/dist/man/Makefile.in   |    119 +-
 external/mit/xf86-video-suncg14/dist/man/suncg14.man   |      6 +-
 external/mit/xf86-video-suncg14/dist/missing           |    397 +-
 external/mit/xf86-video-suncg14/dist/src/Makefile.in   |    194 +-
 external/mit/xf86-video-suncg14/dist/src/cg14.h        |      1 -
 external/mit/xf86-video-suncg14/dist/src/cg14_driver.c |      1 +
 18 files changed, 27813 insertions(+), 23062 deletions(-)

diffs (truncated from 63491 to 300 lines):

diff -r 900bbd5d067d -r c06d720840a6 external/mit/xf86-video-suncg14/dist/ChangeLog
--- a/external/mit/xf86-video-suncg14/dist/ChangeLog    Fri May 27 18:07:03 2022 +0000
+++ b/external/mit/xf86-video-suncg14/dist/ChangeLog    Sun Jan 08 21:52:44 2023 +0000
@@ -1,3 +1,101 @@
+commit 302c058b4a8193780b06650dcb281083e6765d0e
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 9 14:56:20 2022 -0800
+
+    xf86-video-suncg14 1.1.3
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit e748b42fa65817d8beb744733aef00b6734be148
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 9 11:04:54 2022 -0800
+
+    Add supported hardware info to README and man page
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 5105aedd667f5a338840272a27f433ae692d9e34
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 9 09:44:53 2022 -0800
+
+    Add include of unistd.h for ioctl() definition on Solaris
+    
+    Clears gcc warning:
+    cg14_driver.c: In function ‘CG14InitCplane24’:
+    cg14_driver.c:669:3: warning: implicit declaration of function ‘ioctl’;
+      did you mean ‘iscntrl’? [-Wimplicit-function-declaration]
+       ioctl (pCg14->psdp->fd, CG14_SET_PIXELMODE, &bpp);
+       ^~~~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit de90578cd0bdc69dbd74dbc96bde2ec1cae6d239
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Thu Jul 28 17:30:21 2022 -0700
+
+    gitlab CI: stop requiring Signed-off-by in commits
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 8608e7f4efa2625130a1bbe0ba41a5f9fe55c932
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jan 29 09:58:24 2022 -0800
+
+    Stop including xf86RamDac.h
+    
+    ramdac drivers have been removed from xserver since version 21.0.99.1
+    and xorg/xserver@f0385fb4 resulting in the following build failure:
+    
+    In file included from ../../src/cg14_driver.c:38:
+    ../../src/cg14.h:29:10: fatal error: xf86RamDac.h: No such file or directory
+       29 | #include "xf86RamDac.h"
+          |          ^~~~~~~~~~~~~~
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit d1846852901b42f2e5b1a5baa897dd691ac03e6f
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jan 29 09:50:08 2022 -0800
+
+    gitlab CI: add a basic build test
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 7b994b444327cd8b780269d2c199cf9d940ff7f6
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jan 29 09:48:57 2022 -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 f4fa38688dc01d1b368a649b184f2dcad82850c9
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sat Jan 29 09:48:08 2022 -0800
+
+    Build xz tarballs instead of bzip2
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 5d549c78e21a41803ee1c55a6fff40ca8fea2a59
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Fri Dec 7 19:10:12 2018 -0800
+
+    Update configure.ac bug URL for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
+commit 60ab990f7ed2df6c943d3e307eee641f6ba7701f
+Author: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+Date:   Sun Nov 18 16:20:20 2018 -0800
+
+    Update README for gitlab migration
+    
+    Signed-off-by: Alan Coopersmith <alan.coopersmith%oracle.com@localhost>
+
 commit 997931ea1b6182584566d1cf90a6ac88e627a9fd
 Author: Matt Turner <mattst88%gmail.com@localhost>
 Date:   Mon Jan 21 22:37:01 2013 -0800
@@ -396,7 +494,7 @@
     - Update modular Xorg version
 
 commit 30a6797409b856a32adc00266080cc10f8d89663
-Author: Søren Sandmann Pedersen <sandmann%daimi.au.dk@localhost>
+Author: Søren Sandmann Pedersen  <sandmann%daimi.au.dk@localhost>
 Date:   Tue Jul 26 23:06:30 2005 +0000
 
     Build system for suncg14
diff -r 900bbd5d067d -r c06d720840a6 external/mit/xf86-video-suncg14/dist/Makefile.am
--- a/external/mit/xf86-video-suncg14/dist/Makefile.am  Fri May 27 18:07:03 2022 +0000
+++ b/external/mit/xf86-video-suncg14/dist/Makefile.am  Sun Jan 08 21:52:44 2023 +0000
@@ -30,3 +30,5 @@
        $(CHANGELOG_CMD)
 
 dist-hook: ChangeLog INSTALL
+
+EXTRA_DIST = README.md
diff -r 900bbd5d067d -r c06d720840a6 external/mit/xf86-video-suncg14/dist/Makefile.in
--- a/external/mit/xf86-video-suncg14/dist/Makefile.in  Fri May 27 18:07:03 2022 +0000
+++ b/external/mit/xf86-video-suncg14/dist/Makefile.in  Sun Jan 08 21:52:44 2023 +0000
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.12.6 from Makefile.am.
+# Makefile.in generated by automake 1.16.5 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2012 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,
@@ -34,23 +34,61 @@
 #  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 #  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 VPATH = @srcdir@
-am__make_dryrun = \
-  { \
-    am__dry=no; \
+am__is_gnu_make = { \
+  if test -z '$(MAKELEVEL)'; then \
+    false; \
+  elif test -n '$(MAKE_HOST)'; then \
+    true; \
+  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
+    true; \
+  else \
+    false; \
+  fi; \
+}
+am__make_running_with_option = \
+  case $${target_option-} in \
+      ?) ;; \
+      *) echo "am__make_running_with_option: internal error: invalid" \
+              "target option '$${target_option-}' specified" >&2; \
+         exit 1;; \
+  esac; \
+  has_opt=no; \
+  sane_makeflags=$$MAKEFLAGS; \
+  if $(am__is_gnu_make); then \
+    sane_makeflags=$$MFLAGS; \
+  else \
     case $$MAKEFLAGS in \
       *\\[\ \  ]*) \
-        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
-          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
-      *) \
-        for am__flg in $$MAKEFLAGS; do \
-          case $$am__flg in \
-            *=*|--*) ;; \
-            *n*) am__dry=yes; break;; \
-          esac; \
-        done;; \
+        bs=\\; \
+        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
+          | sed "s/$$bs$$bs[$$bs $$bs  ]*//g"`;; \
     esac; \
-    test $$am__dry = yes; \
-  }
+  fi; \
+  skip_next=no; \
+  strip_trailopt () \
+  { \
+    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
+  }; \
+  for flg in $$sane_makeflags; do \
+    test $$skip_next = yes && { skip_next=no; continue; }; \
+    case $$flg in \
+      *=*|--*) continue;; \
+        -*I) strip_trailopt 'I'; skip_next=yes;; \
+      -*I?*) strip_trailopt 'I';; \
+        -*O) strip_trailopt 'O'; skip_next=yes;; \
+      -*O?*) strip_trailopt 'O';; \
+        -*l) strip_trailopt 'l'; skip_next=yes;; \
+      -*l?*) strip_trailopt 'l';; \
+      -[dEDm]) skip_next=yes;; \
+      -[JT]) skip_next=yes;; \
+    esac; \
+    case $$flg in \
+      *$$target_option*) has_opt=yes; break;; \
+    esac; \
+  done; \
+  test $$has_opt = yes
+am__make_dryrun = (target_option=n; $(am__make_running_with_option))
+am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
 pkgdatadir = $(datadir)/@PACKAGE@
 pkgincludedir = $(includedir)/@PACKAGE@
 pkglibdir = $(libdir)/@PACKAGE@
@@ -70,14 +108,12 @@
 build_triplet = @build@
 host_triplet = @host@
 subdir = .
-DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
-       $(srcdir)/Makefile.in $(srcdir)/config.h.in \
-       $(top_srcdir)/configure COPYING ChangeLog INSTALL config.guess \
-       config.sub install-sh ltmain.sh missing
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
+DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
+       $(am__configure_deps) $(am__DIST_COMMON)
 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
  configure.lineno config.status.lineno
 mkinstalldirs = $(install_sh) -d
@@ -98,13 +134,14 @@
 am__v_at_1 = 
 SOURCES =
 DIST_SOURCES =
-RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
-       html-recursive info-recursive install-data-recursive \
-       install-dvi-recursive install-exec-recursive \
-       install-html-recursive install-info-recursive \
-       install-pdf-recursive install-ps-recursive install-recursive \
-       installcheck-recursive installdirs-recursive pdf-recursive \
-       ps-recursive uninstall-recursive
+RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
+       ctags-recursive dvi-recursive html-recursive info-recursive \
+       install-data-recursive install-dvi-recursive \
+       install-exec-recursive install-html-recursive \
+       install-info-recursive install-pdf-recursive \
+       install-ps-recursive install-recursive installcheck-recursive \
+       installdirs-recursive pdf-recursive ps-recursive \
+       tags-recursive uninstall-recursive
 am__can_run_installinfo = \
   case $$AM_UPDATE_INFO_DIR in \
     n|no|NO) false;; \
@@ -112,13 +149,34 @@
   esac
 RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive        \
   distclean-recursive maintainer-clean-recursive
-AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
-       $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
-       cscope distdir dist dist-all distcheck
-ETAGS = etags
-CTAGS = ctags
-CSCOPE = cscope
+am__recursive_targets = \
+  $(RECURSIVE_TARGETS) \
+  $(RECURSIVE_CLEAN_TARGETS) \
+  $(am__extra_recursive_targets)
+AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
+       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.
+am__uniquify_input = $(AWK) '\
+  BEGIN { nonempty = 0; } \
+  { items[$$0] = 1; nonempty = 1; } \
+  END { if (nonempty) { for (i in items) print i; }; } \
+'
+# Make sure the list of sources is unique.  This is necessary because,
+# e.g., the same source file might be shared among _SOURCES variables
+# for different programs/libraries.
+am__define_uniq_tagged_files = \
+  list='$(am__tagged_files)'; \
+  unique=`for i in $$list; do \
+    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
+  done | $(am__uniquify_input)`
 DIST_SUBDIRS = $(SUBDIRS)
+am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.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)
@@ -154,9 +212,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


Home | Main Index | Thread Index | Old Index