Commit Graph

321 Commits

Author SHA1 Message Date
Enrico Weigelt, metux IT consult
26494d47a3 .github: add CI pipeline
This pipeline builds the driver against the latest Xserver stable
release as well as current master.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
xlibre-xf86-input-mouse-1.9.5.2
2025-07-29 17:33:25 +02:00
b-aaz
762d7650df configure: Automatically detect the default xorg-module-dir.
The module directory has changed to a per ABI folder in the xlibre-xserver.
Now the default value of `xorg-module-dir` will be detected from the `moduledir` variable in xorg-server.pc.

Signed-off-by: b-aaz <b-aazbsd.proton.me>
2025-07-29 17:33:12 +02:00
callmetango
6d84baa9bc .github: Add issue forms
Add the following forms for issue creation:

* Bug report
* Feature request
* Code change
* Documentation update
* Organizational task

* add issue type selection page on "New Issue" call
* mention Github Discussions and the mailing list where appropriate

Part-of: X11Libre/misc#156
Signed-off-by: callmetango <callmetango@users.noreply.github.com>
2025-07-07 17:01:41 +02:00
stefan11111
ba4c235867 bring back linux support
Signed-off-by: stefan11111 <stefan11111@shitposting.expert>
2025-06-30 15:35:06 +02:00
Alan Coopersmith
a0aa387ba7 man page: Replace __xservername__ & __xconfigfile__ with Xorg & xorg.conf
These were originally to allow distros to build using XFree86 & XF86config
names, but we haven't supported that in nearly two decades now.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/24>
xlibre-xf86-input-mouse-1.9.5.1
2025-06-01 13:07:37 -07:00
Alan Coopersmith
196220ed3f man page: fix warnings from mandoc -T lint and groff -rCHECKSTYLE=10
mandoc: mousedrv.4:3:13: WARNING: cannot parse date, using it verbatim: TH xf86-input-mouse 1.9.5
an.tmac:mousedrv.4:51: style: blank line in input
an.tmac:mousedrv.4:187: style: .BR expects at least 2 arguments, got 1
an.tmac:mousedrv.4:190: style: .BR expects at least 2 arguments, got 1
an.tmac:mousedrv.4:215: style: .BI expects at least 2 arguments, got 1
an.tmac:mousedrv.4:217: style: .BI expects at least 2 arguments, got 1
an.tmac:mousedrv.4:258: style: .BR expects at least 2 arguments, got 1
an.tmac:mousedrv.4:344: style: blank line in input

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/24>
2025-06-01 10:25:18 -07:00
Alan Coopersmith
3a296dfeb9 mouse.c: remove useless cast for return from calloc
It wasn't even casting to the right type of pointer.

Clears warning from gcc 14.2.0:

mouse.c: In function ‘MousePreInit’:
mouse.c:971:19: warning: useless cast to type ‘void *’ [-Wuseless-cast]
  971 |     if (!(mPriv = (pointer) calloc(1, sizeof(mousePrivRec))))
      |                   ^

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/23>
2025-05-24 14:43:20 -07:00
Alan Coopersmith
72ed70772c mouse.c: remove breaks after return statements [-Wunreachable-code-break]
Clears warnings from clang 19.1.7 of the form:

mouse.c:717:9: warning: 'break' will never be executed
 [-Wunreachable-code-break]
  717 |         break;
      |         ^~~~~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/23>
2025-05-24 14:43:20 -07:00
Alan Coopersmith
b6d147fb53 Make switch fallthrough markers compatible with clang and C23
Uses _X_FALLTHROUGH from xproto 7.0.34 if available,
local fallback if xproto is older than that.

Clears warnings from clang 19.1.7 of the form:

mouse.c:1219:17: warning: unannotated fall-through between switch labels
 [-Wimplicit-fallthrough]
 1219 |                 default:
      |                 ^
mouse.c:1219:17: note: insert '[[fallthrough]];' to silence this warning
 1219 |                 default:
      |                 ^
      |                 [[fallthrough]];
mouse.c:1219:17: note: insert 'break;' to avoid fall-through
 1219 |                 default:
      |                 ^
      |                 break;

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/23>
2025-05-24 14:43:20 -07:00
Alan Coopersmith
2c481bb020 mouse.c: wrap multi-statement macros in do { ... } while (0)
Clears warnings from clang 19.1.7:

mouse.c:2877:31: warning: empty expression statement has no effect;
 remove unnecessary ';' to silence this warning [-Wextra-semi-stmt]
 2877 |             do_ps2Reset(pInfo);
      |                               ^

mouse.c:3441:29: warning: empty expression statement has no effect;
 remove unnecessary ';' to silence this warning [-Wextra-semi-stmt]
 3441 |             RESET_VALIDATION;
      |                             ^
[repeated for each call]

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/23>
2025-05-24 14:43:20 -07:00
Alan Coopersmith
903ef3f545 mouse.c: Remove stray semicolons after closing brackets
Clears warnings from clang 19.1.7:

mouse.c:364:14: warning: empty expression statement has no effect;
 remove unnecessary ';' to silence this warning [-Wextra-semi-stmt]
  364 |             };
      |              ^
mouse.c:595:13: warning: empty expression statement has no effect;
 remove unnecessary ';' to silence this warning [-Wextra-semi-stmt]
  595 |            };
      |             ^

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/23>
2025-05-24 14:43:20 -07:00
Alan Coopersmith
f15c5702f8 mouse.c: handle -Wanalyzer-null-dereference in createProtoList
Should never happen, but the compiler would need to understand the flow
of our state machine to realize that, and this protects us if that ever
changes.

Clears warning from gcc 14.2.0:
mouse.c: In function ‘createProtoList’:
mouse.c:3226:30: warning: dereference of NULL ‘protoList’ [CWE-476]
 [-Wanalyzer-null-dereference]
 3226 |         for (i = 0; protoList[i] != PROT_UNKNOWN; i++) {
      |                     ~~~~~~~~~^~~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/23>
2025-05-24 14:43:20 -07:00
Alan Coopersmith
f3e246a7fb Improve man page formatting
More closely follow common style as described on
https://man7.org/linux/man-pages/man7/man-pages.7.html

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/22>
2025-04-22 17:49:30 -07:00
Alan Coopersmith
e2f9739bb5 man page: Remove USB & Xqueue from protocol list
I can't find any record of these being supported protocol names in the
git history since this was split out from the core X server.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/22>
2025-04-22 09:23:26 -07:00
Alan Coopersmith
0a52110f76 README: drop more unsupported OS'es
This driver hasn't had support for BSD/OS, Interactive Unix, LynxOS,
SCO, SVR4 (other than Solaris/illumos), nor PANIX since the conversion
to autoconf/automake for X11R7.0 in 2005.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/22>
2025-04-21 14:04:21 -07:00
Enrico Weigelt, metux IT consult
d719d0588c drop Linux support
Since the standard API on Linux is evdev (and we've got evdev and
libinput drivers for that), there's probably no need for using this
driver on Linux anymore. So, we can drop Linux support here.

Making the build fail on Linux, similar to xf86-input-keyboard.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/19>
2025-04-14 11:09:35 +02:00
Enrico Weigelt, metux IT consult
1121f601f7 lnx_mouse: don't hard-crash the whole Xserver on strdup() fail
No need to hard-crash the Xserver if simple strdup() fails, but handle
the situation gracefully instead.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/18>
2025-04-02 00:45:31 +00:00
Enrico Weigelt, metux IT consult
8f38817e8a Use strdup() instead of xstrdup()
No risk of passing NULL here, so using standard strdup() is safe.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/20>
2025-04-02 00:33:28 +00:00
Alan Coopersmith
91ea3050da gitlab CI: fix missing runner tag on FreeBSD jobs after gitlab migration
All jobs utilizing kvm (eg. FreeBSD) need the "kvm" runner tag set.
It used to work w/o it, since all runners did have kvm, but in the
new CI there are non-kvm runners, so we really need to set the tag.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/21>
2025-04-01 17:09:17 -07:00
Alan Coopersmith
9cc5531bf1 Move sizeof to second argument in calloc calls
Clears -Wcalloc-transposed-args warnings from gcc 14.1, such as:

mouse.c: In function ‘MousePreInit’:
mouse.c:900:32: warning: ‘calloc’ sizes specified with ‘sizeof’ in the
 earlier argument and not in the later argument [-Wcalloc-transposed-args]
  900 |     if (!(pMse = calloc(sizeof(MouseDevRec), 1)))
      |                                ^~~~~~~~~~~
mouse.c:900:32: note: earlier argument should specify number of elements,
 later size of each element

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/17>
2024-07-14 13:14:16 -07:00
Enrico Weigelt, metux IT consult
f538ef6461 gitlab CI: FTBS: fix pkg-config path
The pkg-config path isn't correct, so it finds an older version of xorgproto
that's already present in the base image, instead of the newer one we've
just built ourselves.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/15>
2024-05-30 10:27:40 +02:00
Enrico Weigelt, metux IT consult
538c0724f7 gitlab CI: FTBS: fix missing libepoll-shim
Recent Xserver needs libepoll-shim on FreeBSD.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/15>
2024-05-30 10:27:37 +02:00
Enrico Weigelt, metux IT consult
09b60284f0 use XNFrealloc() instead of xnfrealloc
xnfrealloc is just an alias for XNFrealloc() that doesn't seem to serve
any practical purpose, so it can go away once all drivers stopped using it.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/14>
2024-05-18 13:15:38 -07:00
Enrico Weigelt, metux IT consult
4ef48818c8 use XNFstrdup() instead of xnfstrdup
xnfstrdup is just an alias for XNFstrdup() that doesn't seem to serve
any practical purpose, so it can go away once all drivers stopped using it.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/14>
2024-05-18 13:15:38 -07:00
Enrico Weigelt, metux IT consult
832818c4a5 use XNFalloc() instead of xnfalloc
xnfalloc is just an alias for XNFalloc() that doesn't seem to serve
any practical purpose, so it can go away once all drivers stopped using it.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/14>
2024-05-18 13:15:38 -07:00
Alan Coopersmith
d2c6c6380e Raise required xserver version from 1.7 to 1.10 (ABI_XINPUT_VERSION 12.2)
Xserver 1.10.0 was released in Feb. 2011

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/11>
2024-05-12 23:55:10 +00:00
Alan Coopersmith
a2293e851a bsd_mouse: include sys/stat.h directly instead of relying on xf86_OSlib.h
xf86_OSlib.h used to include sys/stat.h but that was recently removed by
xorg/xserver@5057c716eb so we need to do
it here now.

Fixes compiler errors:
bsd_mouse.c: In function 'FindDevice':
bsd_mouse.c:282:17: error: storage size of 'devMouseStat' isn't known
  282 |     struct stat devMouseStat;
      |                 ^~~~~~~~~~~~
bsd_mouse.c:283:17: error: storage size of 'sb' isn't known
  283 |     struct stat sb;
      |                 ^~
bsd_mouse.c:298:21: error: implicit declaration of function 'fstat' [-Werror=implicit-function-declaration]
  298 |                 if (fstat(fd, &devMouseStat) == 0)
      |                     ^~~~~
bsd_mouse.c:298:21: warning: nested extern declaration of 'fstat' [-Wnested-externs]
bsd_mouse.c:283:17: warning: unused variable 'sb' [-Wunused-variable]
  283 |     struct stat sb;
      |                 ^~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/12>
2024-05-12 16:42:51 -07:00
Alan Coopersmith
fbde5bf53c gitlab CI: install xorgproto from git before building the Xserver
Xserver git is now failing to build due to:
Dependency presentproto found: NO found 1.3 but need: '>= 1.4'

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Part-of: <https://gitlab.freedesktop.org/xorg/driver/xf86-input-mouse/-/merge_requests/12>
2024-05-12 16:36:50 -07:00
Enrico Weigelt, metux IT consult
627e12a35c Fix missing #include <errno.h>
Two source files currently relying on xorg headers including errno.h for them.
Even though it practically works, it's not a very robust programming style
to rely on indirect includes. It's better when everybody includes what he need
on its own.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
2024-03-19 11:51:58 +01:00
Alan Coopersmith
93396fdfb2 configure: Use LT_INIT from libtool 2 instead of deprecated AC_PROG_LIBTOOL
AC_PROG_LIBTOOL was replaced by LT_INIT in libtool 2 in 2008,
so it's time to rely on it.

Clears autoconf warnings:

configure.ac:39: warning: The macro 'AC_PROG_LIBTOOL' is obsolete.
configure.ac:39: You should run autoupdate.
aclocal.m4:3465: AC_PROG_LIBTOOL is expanded from...
configure.ac:39: the top level

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-12-02 14:53:50 -08:00
Alan Coopersmith
0cc6b723df gitlab CI: update to latest ci-templates & FreeBSD 14.0
Needed to avoid "Failed to unpack image" errors in the container-prep
job since FreeBSD 13.0 images are no longer available for download

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-12-02 12:02:59 -08:00
Alan Coopersmith
f59e8cb5b4 xf86-input-mouse 1.9.5
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
xf86-input-mouse-1.9.5
2023-05-04 17:17:54 -07:00
Alan Coopersmith
cad360554c Remove "All rights reserved" from Oracle copyright notices
Oracle no longer includes this term in our copyright & license notices.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2023-02-25 09:07:15 -08:00
Alan Coopersmith
52073e2edc sun_mouse: remove entry from vuidMouseList in DEVICE_CLOSE
Originally written by fei.feng@oracle.com to fix Oracle Bug 17429216:
"global vuidMouseList should not keep info for removed mouse device"

"During the testing for bug#17251473, I often see the mouse hang in X.
 By debugging, I get that there seems something wrong in mouse_drv.so -
 when a mouse is disconnected, the global vuidMouseList does not cleanup
 the mouse's recorded info. So if a newly inserted mouse allocates a
 input info pInfo which happens to have the same memory address as
 previous pInfo, the driver would go wrong."

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-11-09 17:05:01 -08:00
Alan Coopersmith
cd5b383c3f sun_mouse: Add RelToAbs option to convert relative events to absolute
Enabled automatically for the Sun ILOM device, to avoid acceleration
that causes the Remote KVMS mouse cursor to become unaligned with the
X mouse cursor.

Code originally written by david.m.marx@oracle.com in 2013 to fix
Oracle bug 15798251 - SUNBT7177072 "actual mouse pointer is off from
the cursor on remote window"

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-11-09 16:27:42 -08:00
Alan Coopersmith
5f63ab0433 sun_mouse: include more required system headers
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-11-02 14:48:21 -07:00
Thomas Klausner
b99e91aafb Rearrange includes to fix build on OmniOS. Include unistd.h for ioctl(2).
Signed-off-by: Thomas Klausner <wiz@gatalith.at>
2022-11-02 09:11:33 +01:00
Alan Coopersmith
ecd043f1de xf86-input-mouse 1.9.4
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
xf86-input-mouse-1.9.4
2022-11-01 19:38:00 -07:00
Alan Coopersmith
426c8e099f sun_mouse.c: #include "config.h"
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-11-01 19:38:00 -07:00
Alan Coopersmith
29456a2ad3 configure: check for timingsafe_memcmp
Not needed by mouse driver, but quiets warnings from xorg server headers:

In file included from /usr/include/xorg/misc.h:117:0,
                 from /usr/include/xorg/xf86str.h:37,
                 from /usr/include/xorg/xf86.h:44,
                 from mouse.c:57:
/usr/include/xorg/os.h:595:1: warning: redundant redeclaration of ‘timingsafe_memcmp’ [-Wredundant-decls]
 timingsafe_memcmp(const void *b1, const void *b2, size_t len);
 ^~~~~~~~~~~~~~~~~
In file included from mouse.c:52:0:
/usr/include/string.h:235:12: note: previous declaration of ‘timingsafe_memcmp’ was here
 extern int timingsafe_memcmp(const void *s1, const void *s2, size_t n);
            ^~~~~~~~~~~~~~~~~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-17 10:09:00 -07:00
Alan Coopersmith
cbb97f4249 autoGood: quiet -Wimplicit-fallthrough warning
mouse.c: In function ‘autoGood’:
mouse.c:3724:12: warning: this statement may fall through [-Wimplicit-fallthrough=]
         if (mPriv->goodCount < PROBE_UNCERTAINTY/2)
            ^
mouse.c:3726:5: note: here
     default:
     ^~~~~~~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-17 10:08:59 -07:00
Alan Coopersmith
b888251a03 InputDriverRec: Fix -Wmissing-field-initializers warning
mouse.c:185:1: warning: missing initializer for field ‘default_options’ of ‘InputDriverRec {aka struct _InputDriverRec}’ [-Wmissing-field-initializers]
 };
 ^
In file included from mouse.c:63:0:
/usr/include/xorg/xf86Xinput.h:83:18: note: ‘default_options’ declared here
     const char **default_options;
                  ^~~~~~~~~~~~~~~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-17 10:08:59 -07:00
Alan Coopersmith
03fb2ae36b SetupMouse: fix -Wsign-compare warning
mouse.c: In function ‘SetupMouse’:
mouse.c:2620:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
             for (i = 0; i < sizeof(pMse->protoPara); i++)
                           ^

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-16 12:17:11 -07:00
Alan Coopersmith
a8ff2170cb checkForErraticMovements: Fix -Wempty-body warnings
mouse.c: In function ‘checkForErraticMovements’:
mouse.c:3759:52: warning: suggest braces around empty body in an ‘else’ statement [-Wempty-body]
                 AP_DBG(("accDx=%i\n",mPriv->accDx));
                                                    ^
mouse.c:3772:52: warning: suggest braces around empty body in an ‘else’ statement [-Wempty-body]
                 AP_DBG(("accDy=%i\n",mPriv->accDy));
                                                    ^

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-16 12:17:02 -07:00
Alan Coopersmith
72323bf07c sun_mouse: Fix -Wnull-dereference warning
sun_mouse.c: In function ‘vuidReadInput’:
sun_mouse.c:291:10: warning: potential null pointer dereference [-Wnull-dereference]
     pBuf = pVuidMse->buffer;
     ~~~~~^~~~~~~~~~~~~~~~~~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-16 11:53:20 -07:00
Alan Coopersmith
f62f35747e sun_mouse: Fix -Wsign-compare warnings
sun_mouse.c: In function ‘vuidReadInput’:
sun_mouse.c:299:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         } else if (n == -1) {
                      ^~
sun_mouse.c: In function ‘vuidMouseProc’:
sun_mouse.c:507:33: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         if (vuidMouseGeneration != serverGeneration) {
                                 ^~

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-16 11:48:22 -07:00
Alan Coopersmith
2d963a9f61 gitlab CI: stop requiring Signed-off-by in commits
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-10-16 11:48:22 -07:00
Alan Coopersmith
3bb98d758b gitlab CI: add a basic build test
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-01-17 16:07:04 -08:00
Alan Coopersmith
84bca281c4 Fix spelling/wording issues
Found by using:
    codespell --builtin clear,rare,usage,informal,code,names

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-01-16 12:36:16 -08:00
Alan Coopersmith
9255be3c68 Build xz tarballs instead of bzip2
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2022-01-16 12:30:22 -08:00