{"id":14965938,"url":"https://github.com/raku/z","last_synced_at":"2025-10-19T09:30:19.399Z","repository":{"id":56299426,"uuid":"115323481","full_name":"Raku/z","owner":"Raku","description":"Helper script for Rakudo core development","archived":false,"fork":false,"pushed_at":"2025-01-25T19:31:12.000Z","size":57,"stargazers_count":13,"open_issues_count":4,"forks_count":8,"subscribers_count":81,"default_branch":"master","last_synced_at":"2025-04-14T00:34:45.310Z","etag":null,"topics":["raku"],"latest_commit_sha":null,"homepage":"","language":"Raku","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"artistic-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Raku.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-25T08:59:02.000Z","updated_at":"2025-01-25T19:31:16.000Z","dependencies_parsed_at":"2025-02-04T09:42:13.159Z","dependency_job_id":null,"html_url":"https://github.com/Raku/z","commit_stats":{"total_commits":79,"total_committers":7,"mean_commits":"11.285714285714286","dds":0.189873417721519,"last_synced_commit":"637133cd20c9fe080b5ca230c0e2355341f736cc"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Raku/z","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raku%2Fz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raku%2Fz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raku%2Fz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raku%2Fz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Raku","download_url":"https://codeload.github.com/Raku/z/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raku%2Fz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279765859,"owners_count":26223178,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-19T02:00:07.647Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["raku"],"created_at":"2024-09-24T13:35:35.749Z","updated_at":"2025-10-19T09:30:19.080Z","avatar_url":"https://github.com/Raku.png","language":"Raku","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Z-Script\n\nHelper script for Rakudo core development\n\n# INSTALLATION\n\n```bash\ngit clone https://github.com/zoffixznet/z ~/zscript \u0026\u0026\ncd ~/zscript \u0026\u0026\nzef --depsonly install .\n\necho 'export PATH=\"$HOME/zscript/bin:$PATH\"' \u003e\u003e ~/.bashrc\n. ~/.bashrc\n\nz init ~/R # or some other dir you wanna use for all the repos\n```\n\n**This installs command `z` into your PATH.**\n\nIf you want to call `z` by a different name (for instance, if you use the popular [`z` script](https://github.com/rupa/z) included in several Linux distributions), you should be aware that (this) `z` uses libraries relative to its own directory. So some typical workarounds for this, like creating a _~/bin/p6z_ → _~/zscript/bin/z_ symbolic link, will make `z` run incorrectly.\n\nThe easiest way to deal with this is by using a shell alias (_instead_ of the above):\n\n```bash\necho 'alias p6z=\"$HOME/zscript/bin/z\"' \u003e\u003e ~/.bashrc\n. ~/.bashrc\n\np6z init ~/R\n```\n\n\n# ENV VARS\n\nYou can set `ZSCRIPT_DIR` env var to change which build dir Z-Script uses.\nOtherwise, `dir` config value is used (this is the dir you provided to\n`z init`). This var allows you to have multiple build dirs.\n\n# COMMAND REFERENCE\n\n**BELOW LIST IS NO LONGER KEPT UP-TO-DATE. RUN `z --help` TO SEE ALL THE\nOPTIONS*\n\n```\nz init Some-Dir  # clone all repos and build everything inside Some-Dir\n                 # Some-Dir defaults to `.`; must be empty\n\nz z              # pulls all repos and rebuilds MoarVM, nqp, and Rakudo from scratch\nz f              # pulls updates into all repos\nz                # re-make rakudo\nz --test         # re-make rakudo + run make test\nz n              # re-make nqp and rakudo\nz n --test       # re-make nqp and rakudo + run make test for both\nz m              # re-make MoarVM\nz md             # re-make MoarVM after reconf with DEBUG (with --no-optimize)\nz mnd            # re-make MoarVM after reconf with no DEBUG\n\nz s              # run rakudo's make test + spectest\nz ss             # run rakudo's make test + stresstest\nz bs             # run \"best test\" (have \u003e 10 cores ?? stresstest !! spectest)\nz t some files   # run t/fudgeandrun some files\n\nz bump           # bump MoarVM and nqp + best test + bump push on success\nz bump --no-push # bump MoarVM and nqp + best test, but don't push\nz bump m         # bump MoarVM version\nz bump n         # bump nqp version\nz bump push      # push already-done version bumps for MoarVM and nqp\nz bump push m    # push already-done version bump for MoarVM\nz bump push n    # push already-done version bump for nqp\n\nz mod Some Module         # install modules 'Some' and 'Module', without tests\nz mod Some Module --tests # install modules 'Some' and 'Module', with tests\nz umod Some Module        # uninstall modules 'Some' and 'Module'\nz modi5                   # install Inline::Perl5 module\n\nz conf                     # print all configuration\nz conf dir                 # print value for configuration key \"dir\"\nz conf dir /home/zoffix/R  # set config key \"dir\" to value \"/home/zoffix/R\"\n\nvm 111.222.333.444  # set VM IP to given IP (trims surrounding whitespace)\nvm                  # rsyncs all local changes to VM\nvm s                # sync spec changes\nvm d                # sync doc changes\nvm m                # sync moar changes\nvm n                # sync nqp changes\nvm r                # sync rakudo changes\nvm SCRUB            # run `git reset --hard` in all local repos and pull\n                    # new commits. This *** DELETES ALL LOCAL YOUR CHANGES ***\n                    # Yup. LOCAL, not VM. It's under `vm` because you'd use\n                    # this command to sync local when editing locally and\n                    # committing remotely\n\n\nz q  # opens Grammar/Actions/World/Optimizer in atom editor; assumes we're\n     # in the root of a rakudo checkout\n\nz r Some Command    # run Some Command in all the repos (may have issues with\n                    # named args)\n\n\n                    # full-cycle builds are only needed when you need to\n                    # re-run Configure.pl if, say, core files were added/deleted\nz build moar        # full-cycle build moarvm\nz build nqp         # full-cycle build nqp\nz build rakudo      # full-cycle build rakduo\n```\n\n----\n\n#### REPOSITORY\n\nFork this module on GitHub:\nhttps://github.com/zoffixznet/z\n\n#### BUGS\n\nTo report bugs or request features, please use\nhttps://github.com/zoffixznet/z/issues\n\n#### AUTHOR\n\nZoffix Znet (http://perl6.party/)\n\n#### LICENSE\n\nYou can use and distribute this module under the terms of the\nThe Artistic License 2.0. See the `LICENSE` file included in this\ndistribution for complete details.\n\nThe `META6.json` file of this distribution may be distributed and modified\nwithout restrictions or attribution.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraku%2Fz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraku%2Fz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraku%2Fz/lists"}