hovercats
8d2010b7dd
awk: 20250116
2025-02-07 21:59:23 +01:00
Michael Forney
a394cc0a57
awk: Update to 20240728
2024-08-09 21:51:46 -07:00
hovercats
fb40eb5eee
awk: bump to 20240623
2024-08-09 21:51:46 -07:00
Michael Forney
1e530007f0
awk: Update to 20240422
2024-05-06 23:19:24 -07:00
hovercats
d84d6d2502
awk: bump to 20240311-1-g2bab10b
2024-05-06 23:19:24 -07:00
Michael Forney
7116bc5a10
awk: Build with warning flags
...
Use C11 for noreturn to prevent warning.
2024-03-17 00:27:08 -07:00
hovercats
824e2b0a6a
awk: 20231228
2024-01-01 11:56:14 -08:00
Michael Forney
f4c1fda406
awk: Update to 20220830
2022-09-08 12:13:27 -07:00
Michael Forney
9d9f802de9
awk: Update to 20211208
2022-02-18 02:56:13 -08:00
Michael Forney
61d54ec9c2
awk: Update to 20211103
2021-11-17 13:42:34 -08:00
Michael Forney
6bc79ad049
awk: Update to 20210215
2021-03-02 16:20:18 -08:00
Michael Forney
42df26ba17
awk: Update to 20210106
2021-01-07 23:08:33 -08:00
Michael Forney
9aea29e704
awk: Update to 20201208
2020-12-14 02:40:26 -08:00
Michael Forney
5e8c0f2c09
awk: Update to 20200816
2020-09-04 22:42:34 -07:00
Michael Forney
37fe97f90f
awk: Fix header dependency for renamed gram -> awkgram
...
Reported by Akira Hasegawa.
Fixes #17 .
2020-08-11 16:33:33 -07:00
Michael Forney
c70ab67ca4
awk: Fix for rename of gram -> awkgram
2020-08-04 03:22:31 -07:00
Michael Forney
f81197b3cb
awk: Update to 20200730
2020-08-04 02:29:58 -07:00
Michael Forney
083a7c5578
awk: Update to 20200702
2020-07-09 14:10:49 -07:00
Michael Forney
d1ce3990cc
awk: Update to 20200612
2020-06-23 15:25:48 -07:00
Michael Forney
ebf39d5867
awk: Update to 20200219
2020-02-20 18:00:49 -08:00
Michael Forney
08cca5431f
Move toolchain config into config.lua
2020-01-29 22:14:33 -08:00
Michael Forney
c5f5be10a7
awk: Add patch to avoid VLA
2020-01-29 22:14:33 -08:00
Michael Forney
d941bd302c
awk: Update to 20191208
2019-12-09 01:19:17 -08:00
Michael Forney
f4720910b9
Update ninja requirement to 1.8.0 and don't bother with atomic outputs
...
Since ninja 1.8.0[0] and samurai 0.2[1], output mtime is always
recorded after a job succeeds, and outputs are considered dirty if
the recorded mtime is older than any input. This means that even
if a command partially writes its output then fails (for example,
if run with stdout redirected to a file), it will still get re-run
during the next build.
This means that outputs no longer have to be written atomically
(i.e. renamed into place) in order to ensure a correct build, and
we can drop the idiom `command >$out.tmp && mv $out.tmp $out`.
[0] 04d886b110
[1] 799bc5a471
2019-11-17 15:24:25 -08:00
Michael Forney
5f25894ba2
awk: Update to 20190910
2019-09-20 00:22:23 -07:00
Michael Forney
d7b16acf48
awk: Update to latest git
2019-08-13 15:48:34 -07:00
Michael Forney
4332740046
Rename rev to ver, and keep track of package versions as well
2019-03-19 00:14:12 -07:00
Michael Forney
073fc85a19
awk: Update to latest git
2019-03-03 23:23:08 -08:00
Michael Forney
1961f796b7
Revert accidentally updated submodule in 6673d9ab52
...
I missed one in the last commit.
2018-10-23 13:32:16 -07:00
Michael Forney
6673d9ab52
curl: Probe for size of size_t, time_t and long
...
There are still several more SIZEOF_* constants in curl_config.h,
but they seem to match for architectures we care about.
2018-10-18 15:27:53 -07:00
Michael Forney
bbe4d20a1c
awk: Update to latest git
2018-08-27 13:01:28 -07:00
Michael Forney
f377442fbc
Revert accidentally updated submodules in b99ef6bfc5
...
`git commit -a` with ignored submodules strikes again. I really
should report a bug about this.
2018-03-16 10:16:40 -07:00
Michael Forney
b99ef6bfc5
libdrm: Check if config.video_drivers is set
2018-03-10 19:08:35 -08:00
Michael Forney
ba94a8513d
Rewrite ninja generation scripts in Lua
2017-09-25 19:23:06 -07:00
Michael Forney
2420bcc6b1
Compress man pages
2016-12-19 00:05:57 -08:00
Michael Forney
cdb65e99c7
Move {cc,cxx,ld}flags settings from toolchain to config
2016-12-13 23:10:30 -08:00
Michael Forney
293f5a93b7
Move to flat package hierarchy
...
Note to self: never try to move submodules again
To migrate your existing submodules (more or less):
set -x
set -e
mkdir .git/modules/pkg
for old in */*/src ; do
new="pkg/${old#*/}"
if ! [ -f "$old/.git" ] || [ "${old%%/*}" = pkg ] ; then
continue
fi
git -C ".git/modules/$old" config core.worktree "../../../../../$new"
rmdir "$new"
mv "$old" "$new"
sed -e "s,$old,$new," "$new/.git" > "$new/.git.tmp"
mv "$new/.git.tmp" "$new/.git"
mkdir ".git/modules/${new%/src}"
mv ".git/modules/$old" ".git/modules/$new"
rm "${old%/src}"/*.ninja
mv "${old%/src}"/*.tar.{gz,xz,bz2} "${new%/src}/"
rmdir "${old%/src}" || true
done
sed -e 's,^\[submodule "[^/]*/,[submodule "pkg/,' .git/config > .git/config.tmp
mv .git/config.tmp .git/config
2016-12-13 23:10:30 -08:00