Commit Graph

44 Commits

Author SHA1 Message Date
Michael Forney 99b0bf11c5 lua: Update to 5.5.0 2026-04-08 00:55:27 -07:00
Michael Forney df10aae08a xz: Use github repository
The git.tukaani.org is down.
2024-07-21 13:26:14 -07:00
hovercats eff1ddffc3 vis: bump to 0.9 2024-05-06 23:19:24 -07:00
hovercats 9df4cf3a0b vis: 0.8 2024-01-02 10:38:37 -08:00
hovercats de724b3a6f vis: fix build with lua 5.4.x 2024-01-02 10:38:36 -08:00
Michael Forney 185c5cbf97 vis, libtermkey: Switch to netbsd-curses 2021-06-03 01:04:37 -07:00
Michael Forney 76a11c7bf5 vis: Update to 0.7 2020-12-08 12:01:30 -08:00
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 d4297a13c8 Use -isystem to include library headers
This way, warnings from headers that come from another package (in
particular linux-headers) won't show up when they get included.

To make sure we still track dependencies, use -MD instead of -MMD.
2020-06-05 03:01:44 -07:00
Michael Forney e5e104f5b6 libtermkey: Add header target 2020-06-02 04:22:27 -07:00
Michael Forney d3edcea456 Use lua header target 2020-06-02 04:22:22 -07:00
Michael Forney f0fb0e5177 Start to support configurable prefix 2020-05-25 21:11:21 -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 8ae6625b98 vis: Update to latest git 2020-02-01 01:37:46 -08:00
Michael Forney 2255c43da7 Use $basedir to refer to paths relative to base source tree 2019-12-16 23:48:22 -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 4332740046 Rename rev to ver, and keep track of package versions as well 2019-03-19 00:14:12 -07:00
Michael Forney dce570043e vis: Update to 0.5 2018-04-10 12:09:21 -07:00
Michael Forney dc1fc1f21c vis: Update to latest git 2018-02-19 16:51:36 -08:00
Michael Forney 4c9ef7d8e9 vis: Fix colors with ncurses-6.1 and COLOR_PAIRS > SHORT_MAX
GitHub issue: https://github.com/martanne/vis/pull/672
2018-02-18 14:49:13 -08:00
Michael Forney e5cfa84477 Move $outdir/fetch.stamp -> $dir/fetch 2017-10-23 21:43:33 -07:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 6fa5f88e60 Don't use -isystem
This way we can use -MMD to exclude system header files and still retain
dependency tracking within oasis.
2017-08-19 19:07:18 -07:00
Michael Forney cdeba0529d vis: Update to 0.4 2017-07-23 11:55:19 -07:00
Michael Forney 8ea2f81e4b vis: Update to latest git 2017-07-11 19:54:02 -07:00
Michael Forney 5320c1eca6 vis: Update to latest git 2017-07-10 10:34:19 -07:00
Michael Forney 192963f448 vis: Update to 0.3 2017-03-25 16:16:24 -07:00
Michael Forney cfca6eb311 vis: Update to latest git 2017-03-24 13:43:57 -07:00
Michael Forney 16d8ab7157 vis: Update to latest git 2017-03-09 08:35:59 -08:00
Michael Forney 418a6e806c vis: Update to latest git 2017-02-28 22:53:38 -08:00
Michael Forney 2c41038a82 vis: Move lua files to lua.txt
This adds the missing spin.lua, and makes /share/vis/lexer.lua a symlink
instead of an accidental copy.
2017-02-28 22:53:38 -08:00
Michael Forney ed60b46cc5 vis: Update to latest git 2017-02-25 20:54:33 -08:00
Michael Forney d7810eb977 vis: Update to latest git 2017-02-17 23:18:22 -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 c866030cf0 vis: Update to latest git 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 2420bcc6b1 Compress man pages 2016-12-19 00:05:57 -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