Commit Graph

18 Commits

Author SHA1 Message Date
Michael Forney
4c434148a2 python: Update to 3.9.1 2020-12-08 00:44:04 -08:00
Michael Forney
69b04f3be7 python: Update to 3.9.0 2020-10-06 01:01:42 -07:00
Michael Forney
b5b6dac602 python: Update to 3.8.5 2020-08-04 13:39:35 -07:00
Michael Forney
e7487ef31b python: Update to 3.8.3 2020-05-17 01:12:28 -07:00
Michael Forney
9cf8479b2f python: Update to 3.8.2 2020-03-01 23:28:51 -08:00
Michael Forney
fe9c89c185 python: Update to 3.8.0 2019-10-18 00:17:21 -07:00
Michael Forney
48b309a7bb python: Update to 3.7.3 2019-03-29 13:33:58 -07:00
Michael Forney
1f8d87f3e3 python: Disable gettext
We don't install any translation files, and some toolchains (e.g.
alpine) require linking with libintl.
2019-03-16 19:24:51 -07:00
Michael Forney
259afc323f python: Update config.h for musl 1.1.20 2018-11-06 00:00:25 -08:00
Michael Forney
9207ea2b44 python: Update to 3.7.1 2018-11-05 11:52:19 -08:00
Michael Forney
d91ba51ce9 python: Update to 3.7.0 2018-08-26 13:29:08 -07:00
Michael Forney
fba8f121a2 python: Update to 3.6.5 2018-04-12 14:30:25 -07:00
Michael Forney
577110ae20 python: Update to 3.6.3 2017-10-04 01:08:57 -07:00
Michael Forney
d54fcd4057 python: Update to 3.6.1 2017-03-24 13:40:59 -07:00
Michael Forney
b47f3fc7cb python: Disable PYMALLOC 2017-02-07 14:36:26 -08:00
Michael Forney
1fa2eca8be python: Update to 3.6.0 2017-02-07 14:36:26 -08:00
Michael Forney
6aceb3586b python: Update to 3.5.3 2017-02-07 14:36:26 -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