{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":1914169,"defaultBranch":"master","name":"build-emacs","ownerLogin":"caldwell","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2011-06-18T01:32:01.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/45445?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1678537991.3498628","currentOid":""},"activityList":{"items":[{"before":"d87225aaac0e35f1cfebc270fae4184cbfc94e88","after":"ed43803daca2ef337b0cc32c278004184e58d118","ref":"refs/heads/master","pushedAt":"2024-02-10T21:14:30.000Z","pushType":"push","commitsCount":6,"pusher":{"login":"caldwell","name":"David Caldwell","path":"/caldwell","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45445?s=80&v=4"},"commit":{"message":"launch-nw: Don't leave a shell running after launching emacs.\n\nProbably fixes some signal stuff, too.\nThanks to Jim Radford for pointing out that I forgot to `exec`.","shortMessageHtmlLink":"launch-nw: Don't leave a shell running after launching emacs."}},{"before":"d806d0c0aee1b51818558a34b5a151326c94f9aa","after":"d87225aaac0e35f1cfebc270fae4184cbfc94e88","ref":"refs/heads/master","pushedAt":"2023-08-17T08:13:04.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"caldwell","name":"David Caldwell","path":"/caldwell","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45445?s=80&v=4"},"commit":{"message":"verbose-shell.rb: Fix Ruby 3\n\nThey deprecated passing positional args as a final Hash.","shortMessageHtmlLink":"verbose-shell.rb: Fix Ruby 3"}},{"before":"9444892cefb33fabc61ead5c4c7b125cb2bb6cf8","after":"d806d0c0aee1b51818558a34b5a151326c94f9aa","ref":"refs/heads/master","pushedAt":"2023-04-04T22:13:16.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"caldwell","name":"David Caldwell","path":"/caldwell","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45445?s=80&v=4"},"commit":{"message":"launch-nw: Fix so it can be used as a symlink target\n\nThis was its intended use--did I even test this??","shortMessageHtmlLink":"launch-nw: Fix so it can be used as a symlink target"}},{"before":"3ecf77b3af0deafb7dfea6be877c8426288ad82b","after":null,"ref":"refs/heads/dependabot/cargo/regex-1.5.5","pushedAt":"2023-03-11T12:33:11.349Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"caldwell","name":"David Caldwell","path":"/caldwell","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45445?s=80&v=4"}},{"before":"b393567d74659d3627370553d65b5d75b376d4a2","after":"9444892cefb33fabc61ead5c4c7b125cb2bb6cf8","ref":"refs/heads/master","pushedAt":"2023-03-11T12:33:07.018Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"caldwell","name":"David Caldwell","path":"/caldwell","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45445?s=80&v=4"},"commit":{"message":"build(deps): bump regex from 1.5.4 to 1.5.5\n\nBumps [regex](https://github.com/rust-lang/regex) from 1.5.4 to 1.5.5.\n- [Release notes](https://github.com/rust-lang/regex/releases)\n- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/regex/compare/1.5.4...1.5.5)\n\n---\nupdated-dependencies:\n- dependency-name: regex\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump regex from 1.5.4 to 1.5.5"}},{"before":null,"after":"3ecf77b3af0deafb7dfea6be877c8426288ad82b","ref":"refs/heads/dependabot/cargo/regex-1.5.5","pushedAt":"2023-03-11T12:31:10.227Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump regex from 1.5.4 to 1.5.5\n\nBumps [regex](https://github.com/rust-lang/regex) from 1.5.4 to 1.5.5.\n- [Release notes](https://github.com/rust-lang/regex/releases)\n- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/regex/compare/1.5.4...1.5.5)\n\n---\nupdated-dependencies:\n- dependency-name: regex\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump regex from 1.5.4 to 1.5.5"}},{"before":"ad18a7e62661dd7506e25255a70ee133a569c73c","after":"b393567d74659d3627370553d65b5d75b376d4a2","ref":"refs/heads/master","pushedAt":"2023-03-11T12:28:32.359Z","pushType":"push","commitsCount":13,"pusher":{"login":"caldwell","name":"David Caldwell","path":"/caldwell","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45445?s=80&v=4"},"commit":{"message":"build-emacs-from-tar: Switch from @executable_path to @loader_path so libs of libs work for things in bin/ and libexec/\n\n@executable_path is from the executable and our libs get called from two places:\n\n .../MacOS/Emacs\n .../MacOS/bin-xxx/emacsclient\n\nThis seems ok, since each binary has entries for either\n\n @executable_path/lib-xxx/libmylib.dylib\nor\n @executable_path/../lib-xxx/libmylib.dylib\n\nbut if a library had a dependency then we were caching that relative path and\nusing @executable_path inside the lib dir:\n\n Emacs's dylib entries: @executable_path/lib-xxx/libmylib.dylib\n lib dependency's entries: @executable_path/lib-xxx/libmylib.dylib\n\nThis worked fine for plain Emacs, at the top level, but once we add in all the\nother binaries they can't find their indirect dependencies:\n\n {bin,libexec}/* entries: @executable_path/../lib-xxx/libmylib.dylib\n\n@loader_path is always from the point of view of the mach-o file that has the\nreference, so if we stop caching the relative path and use @loader_path then\neverything should work great:\n\n Emacs's dylib entries: @loader_path/lib-xxx/libmylib.dylib\n {bin,libexec}/* entries: @loader_path/../lib-xxx/libmylib.dylib\n lib dependency's entries: @loader_path/libmylib.dylib","shortMessageHtmlLink":"build-emacs-from-tar: Switch from @executable_path to @loader_path so…"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAD92uj-AA","startCursor":null,"endCursor":null}},"title":"Activity · caldwell/build-emacs"}