Blame


1 9035fe5e 2022-07-01 stsp Got-portable Changelog
2 9035fe5e 2022-07-01 stsp ======================
3 9035fe5e 2022-07-01 stsp
4 9035fe5e 2022-07-01 stsp This file details portable-specific changes to make things work on systems
5 9035fe5e 2022-07-01 stsp other than OpenBSD.
6 9035fe5e 2022-07-01 stsp
7 9035fe5e 2022-07-01 stsp All changes are on top of the versioned changes listed in CHANGES.
8 9035fe5e 2022-07-01 stsp
9 165e2b69 2023-08-29 thomas # got-portable 0.92 (2023-08-29)
10 165e2b69 2023-08-29 thomas
11 165e2b69 2023-08-29 thomas * Changes from got-0.92
12 165e2b69 2023-08-29 thomas
13 165e2b69 2023-08-29 thomas This release also introduces 'gotd', which is got's server implementation. By
14 165e2b69 2023-08-29 thomas extension, other tools are also introduced to work with gotd, and they are:
15 165e2b69 2023-08-29 thomas
16 165e2b69 2023-08-29 thomas * gitwrapper
17 165e2b69 2023-08-29 thomas * gotctl
18 165e2b69 2023-08-29 thomas * gotsh
19 165e2b69 2023-08-29 thomas
20 165e2b69 2023-08-29 thomas For more information about gotd, see gotd(8), as well as the above command man
21 165e2b69 2023-08-29 thomas pages where necessary. Note that gotd's portable implementation uses chroot()
22 165e2b69 2023-08-29 thomas to ensure some separation; this still requires the main gotd binary to run as
23 165e2b69 2023-08-29 thomas the root user.
24 165e2b69 2023-08-29 thomas
25 165e2b69 2023-08-29 thomas To enable gotd and the corresponding other tools which work with it, you must
26 165e2b69 2023-08-29 thomas pass the '--enable-gotd' ./configure flag.
27 165e2b69 2023-08-29 thomas
28 165e2b69 2023-08-29 thomas Further installation instructions can be found in the README.portable file in
29 165e2b69 2023-08-29 thomas the root directory of the project.
30 165e2b69 2023-08-29 thomas
31 f3c943a0 2023-07-19 thomas # got-portable 0.91 (2023-07-19)
32 f3c943a0 2023-07-19 thomas
33 f3c943a0 2023-07-19 thomas * Changes from got-0.91
34 f3c943a0 2023-07-19 thomas
35 f3c943a0 2023-07-19 thomas No specific -portable changes worth mentioning.
36 f3c943a0 2023-07-19 thomas
37 4ee1e223 2023-06-26 thomas # got-portable 0.90 (2023-06-26)
38 4ee1e223 2023-06-26 thomas
39 4ee1e223 2023-06-26 thomas * Changes from got-0.90.
40 4ee1e223 2023-06-26 thomas
41 4ee1e223 2023-06-26 thomas No specific -portable changes worth mentioning.
42 4ee1e223 2023-06-26 thomas
43 9785cf4c 2023-06-08 thomas # got-portable 0.89 (2023-06-08)
44 9785cf4c 2023-06-08 thomas
45 9785cf4c 2023-06-08 thomas * Changes from got-0.89.
46 9785cf4c 2023-06-08 thomas
47 9785cf4c 2023-06-08 thomas No specific -portable changes worth mentioning.
48 9785cf4c 2023-06-08 thomas
49 4df2a78c 2023-05-02 thomas # got-portable 0.88 (2023-05-02)
50 4df2a78c 2023-05-02 thomas
51 4df2a78c 2023-05-02 thomas * Changes from got-0.88.
52 4df2a78c 2023-05-02 thomas
53 4df2a78c 2023-05-02 thomas No specific -portable changes worth mentioning.
54 4df2a78c 2023-05-02 thomas
55 b9f5bc2a 2023-04-22 thomas # got-portable 0.87 (2023-04-22)
56 b9f5bc2a 2023-04-22 thomas
57 b9f5bc2a 2023-04-22 thomas * Changes from got-0.87.
58 b9f5bc2a 2023-04-22 thomas
59 b9f5bc2a 2023-04-22 thomas A few -portable changes to tidy up a few things. See the repository history
60 b9f5bc2a 2023-04-22 thomas for more details.
61 b9f5bc2a 2023-04-22 thomas
62 0aa33b90 2023-03-13 thomas # got-portable 0.86 (2023-03-13)
63 0aa33b90 2023-03-13 thomas
64 0aa33b90 2023-03-13 thomas * Changes from got-0.86; no -portable specific changes worth mentioning.
65 0aa33b90 2023-03-13 thomas
66 1bf65ad7 2023-03-08 thomas # got-portable 0.85 (2023-03-08)
67 1bf65ad7 2023-03-08 thomas
68 1bf65ad7 2023-03-08 thomas * Changes from got-0.85.
69 1bf65ad7 2023-03-08 thomas
70 1bf65ad7 2023-03-08 thomas There's been a tonne of -portable-specific changes in this release which aim
71 1bf65ad7 2023-03-08 thomas to make portability easier across the supported systems. In particular,
72 1bf65ad7 2023-03-08 thomas there's been a lot of header cleanups, and now that -portable is using
73 1bf65ad7 2023-03-08 thomas config.h, this has allowed dependencies to be split out, so that ncurses is
74 1bf65ad7 2023-03-08 thomas only linked where required (tog). This should allow for multipacking where
75 1bf65ad7 2023-03-08 thomas needed.
76 1bf65ad7 2023-03-08 thomas
77 1bf65ad7 2023-03-08 thomas There have also been some great improvements to regress (which is the test
78 1bf65ad7 2023-03-08 thomas suite) to remove GNU-specific wrappers for date(1), sed(1), ln(1).
79 1bf65ad7 2023-03-08 thomas
80 1bf65ad7 2023-03-08 thomas There's too many commits to list here, but for the specifics, see the
81 1bf65ad7 2023-03-08 thomas differences between '0.84.1..0.85'.
82 1bf65ad7 2023-03-08 thomas
83 1bf65ad7 2023-03-08 thomas Thanks in particular to Christian "naddy" Weisgerber for his help with this
84 1bf65ad7 2023-03-08 thomas work, and this -portable release.
85 1bf65ad7 2023-03-08 thomas
86 757ad251 2023-02-24 thomas # got-portable 0.84.1 (2023-02-24)
87 757ad251 2023-02-24 thomas
88 757ad251 2023-02-24 thomas This is a bug-fix -portable release to address the following:
89 757ad251 2023-02-24 thomas
90 757ad251 2023-02-24 thomas * Switch to using AC_CHECK_DECL to avoid cross-compilation issues when running
91 757ad251 2023-02-24 thomas on Void Linux.
92 757ad251 2023-02-24 thomas * Add libbsd check to template sub-project.
93 757ad251 2023-02-24 thomas
94 71ba8ec0 2023-02-23 n6tadam # got-portable 0.84 (2023-02-23)
95 71ba8ec0 2023-02-23 n6tadam
96 71ba8ec0 2023-02-23 n6tadam * Changes from got-0.84. Portable change include:
97 71ba8ec0 2023-02-23 n6tadam
98 71ba8ec0 2023-02-23 n6tadam * portable: allow for yacc to be found via setting YACC env var.
99 71ba8ec0 2023-02-23 n6tadam
100 445d2088 2023-01-31 thomas # got-portable 0.83 (2023-01-31)
101 445d2088 2023-01-31 thomas
102 445d2088 2023-01-31 thomas * Changes from got-0.83; no -portable specific changes worth mentioning.
103 445d2088 2023-01-31 thomas
104 50ff878a 2023-01-23 thomas # got-portable 0.82 (2023-01-23)
105 50ff878a 2023-01-23 thomas
106 50ff878a 2023-01-23 thomas * Changes from got-0.82; no -portable specific changes worth mentioning.
107 50ff878a 2023-01-23 thomas
108 6999c85a 2023-01-19 thomas # got-portable 0.81 (2023-01-19)
109 6999c85a 2023-01-19 thomas
110 6999c85a 2023-01-19 thomas * Changes from got-0.80 and got-0.81. Portable changes include:
111 6999c85a 2023-01-19 thomas
112 6999c85a 2023-01-19 thomas * portable: Moving template/ to its own subproject (only used at compile-time)
113 6999c85a 2023-01-19 thomas * portable: configure.ac: fix libpanelw detection
114 6999c85a 2023-01-19 thomas * portable: __xpg_strerror_r: add forward-decl
115 6999c85a 2023-01-19 thomas
116 6999c85a 2023-01-19 thomas # got-portable 0.79 (2022-11-08)
117 6999c85a 2023-01-19 thomas
118 6999c85a 2023-01-19 thomas * Changes from got-0.79; ; no -portable specific changes worth mentioning.
119 6999c85a 2023-01-19 thomas
120 9ed7f438 2022-11-03 thomas # got-portable 0.78 (2022-11-03)
121 9ed7f438 2022-11-03 thomas
122 9ed7f438 2022-11-03 thomas * Changes from got-0.78; ; no -portable specific changes worth mentioning.
123 9ed7f438 2022-11-03 thomas
124 5c47b614 2022-10-24 thomas # got-portable 0.77 (2022-10-24)
125 5c47b614 2022-10-24 thomas
126 5c47b614 2022-10-24 thomas * Changes from got-0.77; ; no -portable specific changes worth mentioning.
127 5c47b614 2022-10-24 thomas
128 a4672bdc 2022-09-23 thomas # got-portable 0.76 (2022-09-23)
129 f6425eea 2022-09-13 thomas
130 a4672bdc 2022-09-23 thomas * Changes from got-0.76; no -portable specific changes worth mentioning.
131 a4672bdc 2022-09-23 thomas
132 a4672bdc 2022-09-23 thomas # got-portable 0.75.1 (2022-09-13)
133 a4672bdc 2022-09-23 thomas
134 f6425eea 2022-09-13 thomas This is a bug-fix -portable release to address the following:
135 f6425eea 2022-09-13 thomas
136 f6425eea 2022-09-13 thomas * portable: macos: look for GNU Bison in more places, based on whether brew or
137 f6425eea 2022-09-13 thomas MacPorts is in use, and failing to find Bison that way, look in a few
138 f6425eea 2022-09-13 thomas hard-coded but likely locations.
139 f6425eea 2022-09-13 thomas * portable: remove compat sys/queue.h -- this now makes libbsd a core
140 f6425eea 2022-09-13 thomas dependency on those systems which require it.
141 f6425eea 2022-09-13 thomas
142 99553567 2022-09-10 thomas # got-portable 0.75 (2022-09-10)
143 99553567 2022-09-10 thomas
144 99553567 2022-09-10 thomas * portable: import gotwebd
145 99553567 2022-09-10 thomas * portable: improve <sys/queue.h> inclusion
146 99553567 2022-09-10 thomas * portable: portably wrap socket functions between BSDs/Linux
147 99553567 2022-09-10 thomas * portable: improve homebrew support for MacOS
148 99553567 2022-09-10 thomas
149 10bae328 2022-07-14 thomas # got-portable 0.74 (2022-07-14)
150 10bae328 2022-07-14 thomas
151 10bae328 2022-07-14 thomas * portable: made the 'date' command more portable in the test suite.
152 10bae328 2022-07-14 thomas * portable: improved error-handling for commands on BSD-systems without
153 10bae328 2022-07-14 thomas coreutils being installed.
154 10bae328 2022-07-14 thomas * portable: reworked how 'sed' is wrapped portably, so that it now doesn't use
155 10bae328 2022-07-14 thomas any bashisms, and will therefore run under strict POSIX-sh (dash on Ubuntu,
156 10bae328 2022-07-14 thomas for instance).
157 10bae328 2022-07-14 thomas
158 10bae328 2022-07-14 thomas # got-portable 0.73 (2022-07-04)
159 10bae328 2022-07-14 thomas
160 10bae328 2022-07-14 thomas * Changes as found in got-0.73.
161 10bae328 2022-07-14 thomas * portable: the libexec helpers now support Capsicum on FreeBSD, which is
162 10bae328 2022-07-14 thomas similar to OpenBSD's pledge() syscall.
163 10bae328 2022-07-14 thomas * Some portable work has taken place, but these have been merged upstream and
164 10bae328 2022-07-14 thomas hence will be in the got-0.73 changes file.
165 10bae328 2022-07-14 thomas
166 9035fe5e 2022-07-01 stsp # got-portable 0.71 (2022-06-23)
167 9035fe5e 2022-07-01 stsp
168 9035fe5e 2022-07-01 stsp * portable: fix cross-compilation, from Leah Neukirchen
169 9035fe5e 2022-07-01 stsp
170 9035fe5e 2022-07-01 stsp # got-portable 0.70 (2022-05-13)
171 9035fe5e 2022-07-01 stsp
172 9035fe5e 2022-07-01 stsp * Changes from got-0.70; no -portable specific changes worth mentioning.
173 9035fe5e 2022-07-01 stsp
174 9035fe5e 2022-07-01 stsp # got-portable 0.69 (2022-04-24)
175 9035fe5e 2022-07-01 stsp
176 9035fe5e 2022-07-01 stsp * portable: added Apline Linux to the core set of OSes when checking CI/CD -
177 9035fe5e 2022-07-01 stsp this therefore implies -portable can build on muscl as well as glibc.
178 9035fe5e 2022-07-01 stsp * portable: fixed compilation of -portable on Alpine Linux with respect to
179 9035fe5e 2022-07-01 stsp Landlock by using the correct header file.
180 9035fe5e 2022-07-01 stsp * portable: added SipHash as a -portable implementation.
181 9035fe5e 2022-07-01 stsp
182 9035fe5e 2022-07-01 stsp # got-portable 0.68.1 (2022-03-22)
183 9035fe5e 2022-07-01 stsp
184 9035fe5e 2022-07-01 stsp * portable: fix up a bad merge whereby a code block that should have been
185 9035fe5e 2022-07-01 stsp removed was left in-situ.
186 9035fe5e 2022-07-01 stsp
187 9035fe5e 2022-07-01 stsp # got-portable 0.68 (2022-03-22)
188 9035fe5e 2022-07-01 stsp
189 9035fe5e 2022-07-01 stsp * Changes from got-0.68
190 9035fe5e 2022-07-01 stsp * portable: support for the following operating systems:
191 9035fe5e 2022-07-01 stsp - FreeBSD
192 9035fe5e 2022-07-01 stsp - NetBSD
193 9035fe5e 2022-07-01 stsp - DragonFlyBSD
194 9035fe5e 2022-07-01 stsp - MacOS
195 9035fe5e 2022-07-01 stsp
196 9035fe5e 2022-07-01 stsp # got-portable 0.67; (2022-02-20)
197 9035fe5e 2022-07-01 stsp
198 9035fe5e 2022-07-01 stsp * Changes from got-0.66
199 9035fe5e 2022-07-01 stsp * Landlock support: portable now has support for the landlock API which
200 9035fe5e 2022-07-01 stsp is similar to unveil(), allowing restrictions to which part of the
201 9035fe5e 2022-07-01 stsp filesystem a process can access.
202 9035fe5e 2022-07-01 stsp
203 9035fe5e 2022-07-01 stsp # got-portable 0.66; (2022-01-12)
204 9035fe5e 2022-07-01 stsp
205 9035fe5e 2022-07-01 stsp * Changes from got-0.65
206 9035fe5e 2022-07-01 stsp
207 9035fe5e 2022-07-01 stsp # got-portable 0.65; (2022-01-06)
208 9035fe5e 2022-07-01 stsp
209 9035fe5e 2022-07-01 stsp * Added timespec*() compat-wrappers for BSD-time functions.
210 9035fe5e 2022-07-01 stsp
211 9035fe5e 2022-07-01 stsp # got-portable 0.64; (2021-11-24)
212 9035fe5e 2022-07-01 stsp
213 9035fe5e 2022-07-01 stsp * regress: make tests POSIX-compliant by making them run under dash (Ubuntu)
214 9035fe5e 2022-07-01 stsp
215 9035fe5e 2022-07-01 stsp # got-portable 0.62; (2021-10-17)
216 9035fe5e 2022-07-01 stsp
217 9035fe5e 2022-07-01 stsp * Changes from got-0.62
218 9035fe5e 2022-07-01 stsp
219 9035fe5e 2022-07-01 stsp # got-portable 0.61; (2021-10-09)
220 9035fe5e 2022-07-01 stsp
221 9035fe5e 2022-07-01 stsp * Port regress tests.
222 9035fe5e 2022-07-01 stsp * Improve FreeBSD compatibility.
223 9035fe5e 2022-07-01 stsp
224 9035fe5e 2022-07-01 stsp # got-portable 0.60; (2021-09-21)
225 9035fe5e 2022-07-01 stsp
226 9035fe5e 2022-07-01 stsp * First portable version released for Linux.