Commit Graph

20 Commits

Author SHA1 Message Date
Michael Forney 2eddb78d1b Store dist files in config.distdir
This makes it easy to remove old distfiles with `git clean -f dist`.
2026-03-12 16:40:37 -07:00
hovercats 7e13023282 nasm: 2.16.01 2024-02-07 20:50:18 -08:00
Michael Forney 1ca4fead3a nasm: Update to 2.15.05 2020-09-04 22:42:34 -07:00
Michael Forney 94fc3ab88a nasm: Update to 2.15.04 2020-09-04 00:36:02 -07:00
Michael Forney 637596d7f9 nasm: Add missing version bump 2020-08-13 00:08:12 -07:00
Michael Forney 3fc26fe988 nasm: Update to 2.15.03 2020-08-04 02:29:58 -07:00
Michael Forney 45bed1bd9c nasm: Update to 2.15.02 2020-07-05 16:15:41 -07:00
Michael Forney 954bdd9cc7 nasm: Update to 2.15.01 2020-06-30 15:48:03 -07:00
Michael Forney e617f7bdf2 Use gzipped archives when size difference is negligible 2020-04-15 19:09:56 -07:00
Michael Forney e8de396468 pixman, nasm: Probe for __builtin_clz 2019-07-10 19:06:26 -07:00
Michael Forney 72dda36a33 nasm: Remove date from version info to make build reproducible 2019-06-21 12:52:51 -07:00
Michael Forney c9ae34c136 nasm: Update to 2.14.02 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 d635d9281b nasm: Update to 2.14 2018-12-23 13:40:49 -08:00
Michael Forney ee48c53f3b nasm: Update to 2.13.03 2018-02-16 02:52:34 -08:00
Michael Forney 6792e46d6b nasm: Update to 2.13.02 2017-12-15 18:41:24 -08:00
Michael Forney ba94a8513d Rewrite ninja generation scripts in Lua 2017-09-25 19:23:06 -07:00
Michael Forney 21e431c443 nasm: Update to 2.13.01 2017-05-28 18:02:53 -07:00
Michael Forney 2420bcc6b1 Compress man pages 2016-12-19 00:05:57 -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