summaryrefslogtreecommitdiff
path: root/pkg/plan9port
AgeCommit message (Collapse)Author
2019-11-04Remove plan9port (at least for now)Michael Forney
We are now using Federico G. Benavento's UNIX rc port, and set the default editor to ed. Maybe in the future, plan9port will be re-added for the plumber, acme, or something else.
2019-11-04Add standalone rc shellMichael Forney
2019-06-20plan9port: Remove some duplicate definitionsMichael Forney
2019-03-19Rename rev to ver, and keep track of package versions as wellMichael Forney
2018-10-23Revert accidentally updated submodules in 6673d9ab52Michael Forney
No one responded to my bug report[0] to the git mailing list. Maybe I should ping it. [0] https://public-inbox.org/git/CAGw6cBvLDNtYT6vfHcxmX0S_SS1vmYVCEkSD_ixah6cGKJ4H9w@mail.gmail.com/
2018-10-18curl: Probe for size of size_t, time_t and longMichael Forney
There are still several more SIZEOF_* constants in curl_config.h, but they seem to match for architectures we care about.
2018-03-16Revert accidentally updated submodules in ↵Michael Forney
b99ef6bfc544b340d6ea0d07b82f764539cc62e9 `git commit -a` with ignored submodules strikes again. I really should report a bug about this.
2018-03-10libdrm: Check if config.video_drivers is setMichael Forney
2017-09-25Rewrite ninja generation scripts in LuaMichael Forney
2016-12-19Compress man pagesMichael Forney
2016-12-13Move to flat package hierarchyMichael 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