Commit Graph

16 Commits

Author SHA1 Message Date
Michael Forney c0495e1b9d pixman: Update to 0.40.0 2020-04-23 00:32:23 -07:00
Michael Forney 51acd63e8e pixman: Add support for aarch64 2020-03-01 19:24:52 -08:00
Michael Forney 051963c7fe Add support for building multiple configurations
Now, you can build in separate directories per configuration:

	mkdir foo
	(cd foo && ../setup.lua)
	samu -C foo
2020-01-29 22:14:33 -08:00
Michael Forney 37adb2ae9c Start to document patch upstream status 2019-11-17 20:09:14 -08:00
Michael Forney 8d172e90b1 pixman: Prevent empty top-level declaration 2019-07-11 00:16:48 -07:00
Michael Forney 1df5c5b234 pixman: Probe for TLS 2019-07-10 19:07:56 -07:00
Michael Forney e8de396468 pixman, nasm: Probe for __builtin_clz 2019-07-10 19:06:26 -07:00
Michael Forney 75791fe6a0 pixman: Update to 0.38.4 2019-04-24 00:23:59 -07:00
Michael Forney 6c11901d5f pixman: Update to 0.38.2 2019-04-09 20:37:55 -07:00
Michael Forney 3f29b7c244 pixman: Update to 0.38.0 2019-03-19 00:52:21 -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 aaabf829f3 pixman: Update to 0.36.0 2018-12-23 13:40:49 -08:00
Michael Forney a668c326a3 pixman: Don't use config-posix.h 2018-08-30 15:15:11 -07:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 36835fdbd9 Declare some missing dependencies 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