{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":474374142,"defaultBranch":"master","name":"dlang","ownerLogin":"the-horo","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2022-03-26T14:37:43.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/91755486?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1723776573.0","currentOid":""},"activityList":{"items":[{"before":"9df552ce0bb8f8a4f656b7b4ff0e3d076b5eacbe","after":"cf03de91f6e8eec83190abbd8e1866940171baf5","ref":"refs/heads/dub","pushedAt":"2024-08-30T07:30:29.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"sys-fs/btdu: new package, add 0.5.1\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"sys-fs/btdu: new package, add 0.5.1"}},{"before":"ed999d202fb9fd80ec760c4f97b4e1c9900aa2c7","after":"9df552ce0bb8f8a4f656b7b4ff0e3d076b5eacbe","ref":"refs/heads/dub","pushedAt":"2024-08-17T05:51:41.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"sys-fs/btdu: new package, add 0.5.1\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"sys-fs/btdu: new package, add 0.5.1"}},{"before":"862e7662722ed485dcb84baf74d74b26e031e4be","after":"ed999d202fb9fd80ec760c4f97b4e1c9900aa2c7","ref":"refs/heads/dub","pushedAt":"2024-08-16T11:52:06.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"sys-fs/btdu: new package, add 0.5.1\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"sys-fs/btdu: new package, add 0.5.1"}},{"before":"af7716aa97d9a23eaa27fda08670747a3ad204ee","after":"862e7662722ed485dcb84baf74d74b26e031e4be","ref":"refs/heads/dub","pushedAt":"2024-08-16T06:13:22.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"sys-fs/btdu: new package, add 0.5.1\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"sys-fs/btdu: new package, add 0.5.1"}},{"before":null,"after":"af7716aa97d9a23eaa27fda08670747a3ad204ee","ref":"refs/heads/dub","pushedAt":"2024-08-16T02:49:33.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"sys-fs/btdu: new package, add 0.5.1\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"sys-fs/btdu: new package, add 0.5.1"}},{"before":null,"after":"834349036a12d3173e42c302dda580362c51279f","ref":"refs/heads/filter-dflags-change","pushedAt":"2024-05-30T18:44:56.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"*/*: change dlang-filter-dflags\n\nChange the dlang-filter-dflags function to:\n1. Take a compiler name instead of an implementation pattern as the\n first argument.\n2. Not modify DMDW_DCFLAGS if it is set.\n3. Fix the check that DCFLAGS is set when deciding if it should\n be updated. The previous check always succeeded.\n\nThe rationale for these changes is, as follows:\n\nThe previous implementation picked three random version of D\nimplementations, one for each compiler, and checked those against the\nsupplied argument. This, at a first glance, already sounds\nweird so the code quality is iffy.\n\nIf that check succeeded then the variable associated with the\nimplementation would be stripped accordingly. Since the picked\nimplementations are unknown to the consumers of the eclass it means that\nthe supplied patterns must include a glob, like `dmd*'. If this is the\ncase it is simpler for the consumer to just supply `dmd' and have the\nsame stripping be carried on without any other checks.\n\nThis would remove the ability to specify `*' as a pattern meaning to\nfilter the flags from every variable. Since the flags are usually\ndifferent across compilers, especially dmd and ldc2 vs gdc, it is an\nacceptable removal, even though `*' is used by dev-util/dub. The ebuild\nneeds to filter some flags that are only problematic with ldc2 so the\npattern can be changed to `ldc' without consequences.\n\nThe second point is related to the ways the eclass provides to access\nuser-provided flags for D compilers. The first such way is the DCFLAGS\nvariable. It is expected, then, that when filter-dflags finishes the\nDCFLAGS variable will contain the filtered flags. This same logic\ndoesn't apply to DMDW_DCFLAGS, however, since ebuilds are expected to\nuse the dlang_get_dmdw_dcflags function. It makes no sense to modify the\ninternal variable used by _dlang_export. Worse, if a user saved\ndlang_get_dmdw_dcflags in a variable called DMDW_DCFLAGS, like what\ndmd-r1.eclass does, then filter-dflags would modify that variable which\ncan be unexpected if one doesn't know the internals of the eclass. For\nthis reason this behavior has been removed.\n\nAdditionally, I want to provide another solution with its pros and cons\nand the reasons why it is not satisfactory.\n\nInstead of the check on the three random implementation the check can be\ncarried against the EDC variable. This way we retain the old behavior of\naccepting globs for the but we also allow specifying specific\nversions. This has practical applicability with the gdc-13 bug\npreventing avx optimizations. Ebuilds could do\n`dlang-filter-dflags gdc-13 -march=native` and have that flag removed\nfor the problematic implementation. The only problem with this comes\nwhen trying to use filter-dflags from a multi-implementation ebuild.\n\nBecause of the requirement that EDC is set (so that can be\nchecked against it) dlang-filter-dflags would be needed to be called\ninside dlang_foreach_impl. This is\n- inefficient\n- unintuitive\n Because someone might think that filter-dflags only modifies the\n temporary variable DCFLAGS. One would also lose the ability to specify\n specific implementation as the affected flags variable is the same.\n\nIt is not possible to change filter-dflags to only modify the DCFLAGS\nvariable as dlang_get_dmdw_dcflags should return the filtered flags and\nthat function always regenerates the value from the user flags.\n\nIn order to maintain feature-parity between filter-dflags across\ndlang-r1.eclass and dlang-single.eclass the first solution is preferred.\nAn ebuild is expected to use dlang-filter-flags function as follows:\n\n```\n # dlang-single\n dlang-filter-dflags gdc --your-flag\n # filter --your-flag from GDCFLAGS.\n # $DCFLAGS and $(dlang_get_dmww_dcflags) no longer contain --your-flag\n```\n\n```\n # dlang-single\n [[ ${EDC} == gdc-13 ]] && dlang-filter-dflags gdc --your-flag\n # Only filter the flag on a specific implementation\n # Required the user to duplicate `gdc'\n```\n\n```\n # dlang-multi\n src_configure() {\n dlang-filter-dflags gdc --your-flag\n dlang-filter-dflags ldc --other\n\n dlang_foreach_impl [...]\n # Inside dlang_foreach_impl DCFLAGS will not contain --your-flag\n # for gdc implementations or --other for ldc implementations.\n # Same thing applies to $(dlang_get_dmdw_dcflags)\n }\n```\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"*/*: change dlang-filter-dflags"}},{"before":"dda1a214ff59af83a8904b28c996b0ced124fd43","after":"b035acebf4f6d8fcd7adffe5cf8d8695c1513296","ref":"refs/heads/dlang-r1","pushedAt":"2024-04-13T22:55:32.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"x11-terms/tilix: port to dlang-single.eclass\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"x11-terms/tilix: port to dlang-single.eclass"}},{"before":"9ef879bbc8387e8d7d6b4f9bd97cd99c4eedd6df","after":"dda1a214ff59af83a8904b28c996b0ced124fd43","ref":"refs/heads/dlang-r1","pushedAt":"2024-04-03T14:15:42.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"x11-terms/tilix: port to dlang-single.eclass\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"x11-terms/tilix: port to dlang-single.eclass"}},{"before":"5e091fa43969ea9b704b2b16ce50257f19dae163","after":"9ef879bbc8387e8d7d6b4f9bd97cd99c4eedd6df","ref":"refs/heads/dlang-r1","pushedAt":"2024-03-21T22:26:08.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"x11-terms/tilix: port to dlang-single.eclass\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"x11-terms/tilix: port to dlang-single.eclass"}},{"before":"6bf60d668fad73ce08d4729648ec04c821f6d85b","after":"5e091fa43969ea9b704b2b16ce50257f19dae163","ref":"refs/heads/dlang-r1","pushedAt":"2024-03-10T10:57:26.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"x11-terms/tilix: port to dlang-single.eclass\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"x11-terms/tilix: port to dlang-single.eclass"}},{"before":"21a8685019e396bfe8ee7e077dbe629a6675d459","after":"6bf60d668fad73ce08d4729648ec04c821f6d85b","ref":"refs/heads/dlang-r1","pushedAt":"2024-03-10T09:18:42.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"x11-terms/tilix: port to dlang-single.eclass\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"x11-terms/tilix: port to dlang-single.eclass"}},{"before":"f76ae18d5916522bb8d37a16b3346f8804033e57","after":"21a8685019e396bfe8ee7e077dbe629a6675d459","ref":"refs/heads/dlang-r1","pushedAt":"2024-03-10T09:15:39.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"x11-terms/tilix: port to dlang-single.eclass\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"x11-terms/tilix: port to dlang-single.eclass"}},{"before":null,"after":"f76ae18d5916522bb8d37a16b3346f8804033e57","ref":"refs/heads/dlang-r1","pushedAt":"2024-03-10T09:12:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"x11-terms/tilix: port to dlang-single.eclass\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"x11-terms/tilix: port to dlang-single.eclass"}},{"before":"f206665b015272cc35ebd291c565235b0b18edfc","after":"6cb9a9949c367d0f23cd3ff6469cf6efac5c3b00","ref":"refs/heads/master","pushedAt":"2024-02-04T11:56:27.000Z","pushType":"push","commitsCount":5,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-util/dscanner: add 0.15.2\n\nAdditional changes:\n- add github upstream remote to metadata.xml\n- keyword for ~arm64\n- bump EAPI 7 -> 8\n\nSigned-off-by: Andrei Horodniceanu ","shortMessageHtmlLink":"dev-util/dscanner: add 0.15.2"}},{"before":"c3a91632926bc7b944c9f3ed000e3208b020c241","after":"f206665b015272cc35ebd291c565235b0b18edfc","ref":"refs/heads/master","pushedAt":"2024-01-23T12:13:21.000Z","pushType":"push","commitsCount":13,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-util/dub: keyword 1.35.1-r1 for ~arm64\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dev-util/dub: keyword 1.35.1-r1 for ~arm64"}},{"before":"89d3a028c7fc73092eeb275eb006ebaa0a5d1846","after":"dab769abf9042df7b3129b9f3da5144c72358fb9","ref":"refs/heads/dmd-bump","pushedAt":"2024-01-07T06:08:53.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dmd.eclass: add optfeature for dev-util/dlang-tools\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dmd.eclass: add optfeature for dev-util/dlang-tools"}},{"before":"7547c15037ade5fe61ceb726173f929bccb91f09","after":"89d3a028c7fc73092eeb275eb006ebaa0a5d1846","ref":"refs/heads/dmd-bump","pushedAt":"2024-01-07T06:06:56.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dmd.eclass: add optfeature for dev-util/dlang-tools\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dmd.eclass: add optfeature for dev-util/dlang-tools"}},{"before":null,"after":"f44e10537eea7821ed2c68682d564269c02c2c0f","ref":"refs/heads/gdmd-call-gcc-config","pushedAt":"2024-01-04T10:19:19.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-util/gdmd: call gcc-config in pkg_post*, update EAPI 7 -> 8\n\nFor the gdmd executable to be available in $PATH gcc-config needs to be\ncalled, only if the currently selected config is the same one as the\nslot of the package. Similarly, the removal of the package should\ntrigger a call to gcc-config to remove the dangling symlink.\n\nLogic has been taken from toolchain.eclass and adapted to treat only the\nbasic cases as this package doesn't have a high importance to the\nsystem.\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dev-util/gdmd: call gcc-config in pkg_post*, update EAPI 7 -> 8"}},{"before":null,"after":"7547c15037ade5fe61ceb726173f929bccb91f09","ref":"refs/heads/dmd-bump","pushedAt":"2024-01-03T20:32:29.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-lang/dmd: drop tools USE flag\n\nThe tools USE flag is only used to pull in dlang-tools as a\ndependency. As dev-lang/dmd doesn't actually require dlang-tools being\npresent to function the dependency, along with the USE flag have been\ndropped.\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dev-lang/dmd: drop tools USE flag"}},{"before":"c4ff5cfc49313068a4591a6e192b50cde40c5f32","after":"c3a91632926bc7b944c9f3ed000e3208b020c241","ref":"refs/heads/master","pushedAt":"2024-01-03T20:31:40.000Z","pushType":"push","commitsCount":18,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"app-eselect/eselect-dlang: add 20240103\n\nAdditional features:\n- symlinks in /usr/include/dlang are properly removed when the last\nversions of compilers are uninstalled\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"app-eselect/eselect-dlang: add 20240103"}},{"before":"6669571945186b497557bfdac1fc69966fc9838a","after":"cd19627d55d107a5a2eb1f3f9cf83b488379e6d8","ref":"refs/heads/stabs","pushedAt":"2023-12-16T14:04:27.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"*/*: Remove old versions\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"*/*: Remove old versions"}},{"before":"cd310e798b4526ac428aaa8ca9160d9c0e0b9cac","after":"6669571945186b497557bfdac1fc69966fc9838a","ref":"refs/heads/stabs","pushedAt":"2023-12-16T09:47:07.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"*/*: Remove old versions\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"*/*: Remove old versions"}},{"before":null,"after":"cd310e798b4526ac428aaa8ca9160d9c0e0b9cac","ref":"refs/heads/stabs","pushedAt":"2023-12-11T15:05:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"stabilization sweep\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"stabilization sweep"}},{"before":"44c01baa1d519e62bb1d3822a9780c5e0143c964","after":"8c977f9dc9d15ebcf73032411eed7acf033782fb","ref":"refs/heads/dlang.eclass-environment-changes","pushedAt":"2023-12-10T21:55:48.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dlang.eclass: Support DLANG_COMPILER_DISABLED_BACKENDS\n\nAdd support for filtering out possible compilers by their backend,\non top of the frontend version filtering already implemented.\nThis allows packages that do not support a particular compiler backend\nnot to advertise USE flags that will fail to build.\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dlang.eclass: Support DLANG_COMPILER_DISABLED_BACKENDS"}},{"before":null,"after":"44c01baa1d519e62bb1d3822a9780c5e0143c964","ref":"refs/heads/dlang.eclass-environment-changes","pushedAt":"2023-11-30T23:36:33.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dlang.eclass: Support DLANG_COMPILER_DISABLED_BACKENDS\n\nAdd support for filtering out possible compilers by their backend,\non top of the frontend version filtering already implemented.\nThis allows packages that do not support a particular compiler backend\nnot to advertise USE flags that will fail to build.\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dlang.eclass: Support DLANG_COMPILER_DISABLED_BACKENDS"}},{"before":"e2f80d6711cba19f5908119ee34a3e6398f743b6","after":"c4ff5cfc49313068a4591a6e192b50cde40c5f32","ref":"refs/heads/master","pushedAt":"2023-11-25T23:09:29.000Z","pushType":"push","commitsCount":8,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-libs/gtkd: upgrade to EAPI 7, replace unzip calls\n\nCloses: https://github.com/gentoo/dlang/pull/125\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dev-libs/gtkd: upgrade to EAPI 7, replace unzip calls"}},{"before":"c7d7f8346410b4772867d43e51dea17cee352d74","after":"30edd1e9f7604f32a309ecfda3c3a55a00a87ff3","ref":"refs/heads/upgrade-eapi","pushedAt":"2023-10-29T12:33:08.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-libs/gtkd: upgrade to EAPI 7, replace unzip calls\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dev-libs/gtkd: upgrade to EAPI 7, replace unzip calls"}},{"before":null,"after":"5f0847aa82ee7fb5557b5a984ea79a3aaf79f618","ref":"refs/heads/gdc-short-use","pushedAt":"2023-10-22T18:01:14.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"scripts: update-gdc-versions.sh support gdc-SLOT USE flags\n\nOther changes:\n- added an usage header\n- option -a can be used to test all relevant gcc ebuilds\n- fixed typoes\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"scripts: update-gdc-versions.sh support gdc-SLOT USE flags"}},{"before":null,"after":"c7d7f8346410b4772867d43e51dea17cee352d74","ref":"refs/heads/upgrade-eapi","pushedAt":"2023-10-16T12:59:03.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-libs/gtkd: upgrade to EAPI 7, replace unzip calls\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dev-libs/gtkd: upgrade to EAPI 7, replace unzip calls"}},{"before":"47c0e8cba96281fa1288583317372a847c5dbcd1","after":"e2f80d6711cba19f5908119ee34a3e6398f743b6","ref":"refs/heads/master","pushedAt":"2023-10-14T11:09:00.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"the-horo","name":"Andrei Horodniceanu","path":"/the-horo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/91755486?s=80&v=4"},"commit":{"message":"dev-lang/ldc2: add 1.33.0\n\nSigned-off-by: Horodniceanu Andrei ","shortMessageHtmlLink":"dev-lang/ldc2: add 1.33.0"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOC0zMFQwNzozMDoyOS4wMDAwMDBazwAAAASoYzEa","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOC0zMFQwNzozMDoyOS4wMDAwMDBazwAAAASoYzEa","endCursor":"Y3Vyc29yOnYyOpK7MjAyMy0xMC0xNFQxMTowOTowMC4wMDAwMDBazwAAAAOW9RKo"}},"title":"Activity ยท the-horo/dlang"}