Commit Graph

31 Commits

Author SHA1 Message Date
Michael Forney cb85e2fea1 qbe: Update to latest git 2026-04-21 11:36:06 -07:00
Michael Forney 0f549e4566 qbe: Update to latest git 2026-03-04 14:19:14 -08:00
Michael Forney 0e0d9e6bbe qbe: Update to latest git
Drop patch for zeroizing registers.
2025-04-29 00:39:22 -07:00
hovercats 0ed95f9ff5 oksh: bump to 7.5 2024-05-06 23:19:24 -07:00
Michael Forney bdcd34d1f1 qbe: Update to latest git 2024-03-22 12:16:41 -07:00
Michael Forney c323a8d150 qbe: Update to latest git 2024-02-08 00:55:32 -08:00
Michael Forney 47c384760c qbe: Update to latest git 2022-04-03 18:43:24 -07:00
Michael Forney bf50bc33b7 qbe: Update to latest git 2022-02-10 15:30:43 -08:00
Michael Forney 066e68c4fe qbe: Update to latest git and tweak some patches 2021-10-26 20:00:12 -07:00
Michael Forney b0461b1f32 qbe: Update to latest git 2021-09-07 13:41:11 -07:00
Michael Forney 18dcc504b5 qbe: Update to latest git 2020-08-13 00:32:40 -07:00
Michael Forney 4cd6a59be4 qbe: Disable some warnings 2020-06-05 03:01:44 -07:00
Michael Forney 3ff8532c91 Use -Wpedantic over -pedantic 2020-02-20 20:15:50 -08:00
Michael Forney 12734139a3 qbe: Update to latest git 2019-11-25 20:48:12 -08:00
Michael Forney 4b4af15f94 qbe: Fix usage of compound literal outside its scope
This popped up after upgrading to gcc 9.2, so is likely caused by
some new optimization.
2019-11-20 00:30:25 -08:00
Michael Forney 2ea9c32933 qbe: Add a few patches to fix various things 2019-07-03 02:43:39 -07:00
Michael Forney 813a846085 qbe: Update to latest git and apply some patches 2019-05-16 23:11:27 -07:00
Michael Forney 07f9cd5187 qbe: Update to latest git 2019-04-23 21:37:12 -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 01b862af3b qbe: Fix an aliasing bug 2019-03-06 21:11:23 -08:00
Michael Forney 753bb3880e qbe: Update to latest git and add a few patches 2019-03-03 22:45:39 -08:00
Michael Forney a29353f16a qbe: Update to latest git 2018-08-27 17:24:58 -07:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 38c3536484 qbe: Update to latest git 2017-08-16 22:08:12 -07:00
Michael Forney b2f16ee981 qbe: Update to latest git 2017-07-03 19:02:09 -07:00
Michael Forney 08a7e6fb23 qbe: Update to latest git 2017-02-17 19:13:23 -08:00
Michael Forney 9277a796ec qbe: Update to latest git 2017-02-09 12:35:27 -08:00
Michael Forney 343d35437c qbe: Update to latest git 2017-01-22 21:16:20 -08:00
Michael Forney 448ac8ed25 qbe: Update to latest git 2017-01-05 23:52:46 -08:00
Michael Forney 780f5a1cad qbe: Update to latest git 2016-12-31 18:38:34 -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