Michael Forney
|
e087141fc0
|
python: Update to 3.9.2
|
2021-03-02 16:20:18 -08:00 |
|
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
|
f480c15a4f
|
python: Update to 3.8.6
|
2020-09-26 16:38:21 -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
|
14a717c2d8
|
python: Update to 3.8.1
|
2019-12-22 16:17:07 -08:00 |
|
Michael Forney
|
fe9c89c185
|
python: Update to 3.8.0
|
2019-10-18 00:17:21 -07:00 |
|
Michael Forney
|
4621c1b490
|
python: Update to 3.7.4
|
2019-07-09 23:13:42 -07:00 |
|
Michael Forney
|
48b309a7bb
|
python: Update to 3.7.3
|
2019-03-29 13:33:58 -07:00 |
|
Michael Forney
|
ebce1723ec
|
python: Update to 3.7.2
|
2019-03-19 00:52:21 -07: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
|
21878c5290
|
python: Update to 3.6.2
|
2017-08-04 00:19:39 -07:00 |
|
Michael Forney
|
d54fcd4057
|
python: Update to 3.6.1
|
2017-03-24 13:40:59 -07: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 |
|