13 Commits

Author SHA1 Message Date
Michael Forney
150a7855e4 vis: Update to 0.6 2020-06-10 17:25:39 -07:00
Michael Forney
88ec033ced vis: Fix terminal UI on serial console 2020-06-06 13:29:37 -07:00
Michael Forney
8faead3f09 vis: Update to latest git 2020-04-28 23:37:43 -07:00
Michael Forney
c9df00005a vis: Avoid VLAs and wide string literals for now 2020-02-01 01:37:46 -08:00
Michael Forney
2dd8108580 vis: Update to latest git 2019-11-17 20:09:13 -08:00
Michael Forney
e5fadf759e vis: Fix filetype detection for fixed filenames 2019-06-26 17:37:17 -07:00
Michael Forney
16d8ab7157 vis: Update to latest git 2017-03-09 08:35:59 -08:00
Michael Forney
dfdca6ea53 vis: Update to latest git 2017-02-07 14:36:25 -08:00
Michael Forney
b54485316f vis: Add rc script detection 2016-12-30 20:38:28 -08:00
Michael Forney
91b2a0770e vis: Use symlinks instead of patch to change default theme 2016-12-21 20:09:51 -08:00
Michael Forney
376f8374c7 vis: Update to latest git 2016-12-20 01:55:33 -08:00
Michael Forney
bce83aec75 vis: Update to latest git 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