Commit Graph

23 Commits

Author SHA1 Message Date
Michael Forney 4be4f24057 expat: Build with warning flags 2024-03-17 00:27:08 -07:00
Michael Forney 427ad79f47 expat: Update to 2.6.2 2024-03-13 21:21:48 -07:00
Michael Forney 860068eeba expat: Update to 2.4.1 2021-05-27 01:25:22 -07:00
Michael Forney d5fe033acf expat: Update to 2.3.0 2021-04-17 14:22:30 -07:00
Michael Forney 0f1fee953d expat: Update to 2.2.10 2020-10-07 14:00:36 -07: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 4241c7b058 expat: Update to 2.2.9 2019-10-03 22:13:45 -07:00
Michael Forney 45079747ad expat: Add missed src update for 2.2.8 2019-10-03 22:11:18 -07:00
Michael Forney 6576830384 expat: Update to 2.2.8 2019-09-20 00:22:23 -07:00
Michael Forney 34d0e44d5e expat: Update to 2.2.7 2019-06-26 22:07:20 -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 e650796725 expat: Use musl 1.1.20 getrandom wrapper 2018-11-06 00:00:25 -08:00
Michael Forney d19e6b823b Use musl 1.1.20 getentropy 2018-11-06 00:00:25 -08:00
Michael Forney f724d54482 libressl: Update to 2.8.2 2018-11-06 00:00:25 -08:00
Michael Forney d4b7fa5138 expat: Update to 2.2.6 2018-08-26 13:20:01 -07:00
Michael Forney eff87d8af8 expat: Update to 2.2.5 2017-11-01 22:15:20 -07:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 9f460429de expat: Update to 2.2.4 2017-09-01 19:07:48 -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 cbde867909 expat: Update to 2.2.3 2017-08-04 00:19:39 -07:00
Michael Forney bd078805e6 expat: Use arc4random_buf 2017-07-15 00:44:53 -07:00
Michael Forney 1b0aa2faa5 expat: Update to 2.2.2 2017-07-15 00:42:37 -07: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