| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-03-19 | Rename rev to ver, and keep track of package versions as well | Michael Forney | |
| 2019-01-28 | tz: Update to 2018i | Michael Forney | |
| 2018-12-27 | tz: Update to 2018h | Michael Forney | |
| 2018-11-01 | tz: Update to 2018g | Michael Forney | |
| 2018-03-23 | tz: Update to 2018d | Michael Forney | |
| 2018-01-25 | tz: Update to 2018c | Michael Forney | |
| 2018-01-18 | tz: Update to 2018b | Michael Forney | |
| 2018-01-17 | tz: Update to 2018a | Michael Forney | |
| 2017-10-20 | tz: Update to 2017c | Michael Forney | |
| 2017-03-24 | tz: Update to 2017b | Michael Forney | |
| 2017-03-02 | tz: Apply fix from upstream | Michael Forney | |
| tz 2017a included a timezone string that is too long. This was fixed shortly upstream, so just fastforward a couple commits past 2017a to pick it up. | |||
| 2017-03-01 | tz: Update to 2017a | Michael Forney | |
| 2016-12-13 | Move to flat package hierarchy | Michael Forney | |
| 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 | |||
