{"id":16105008,"url":"https://github.com/j0yu/rez-katana","last_synced_at":"2026-04-20T04:02:05.132Z","repository":{"id":86710996,"uuid":"254692451","full_name":"j0yu/rez-katana","owner":"j0yu","description":"rez package to install Katana.","archived":false,"fork":false,"pushed_at":"2020-09-04T21:52:54.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-04T08:55:07.754Z","etag":null,"topics":["linux","package","rez","windows"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/j0yu.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":"2020-04-10T17:15:29.000Z","updated_at":"2020-09-03T15:54:55.000Z","dependencies_parsed_at":null,"dependency_job_id":"241094e0-b801-497a-93d1-81f589bab21b","html_url":"https://github.com/j0yu/rez-katana","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/j0yu/rez-katana","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j0yu%2Frez-katana","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j0yu%2Frez-katana/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j0yu%2Frez-katana/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j0yu%2Frez-katana/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/j0yu","download_url":"https://codeload.github.com/j0yu/rez-katana/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/j0yu%2Frez-katana/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32032302,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["linux","package","rez","windows"],"created_at":"2024-10-09T19:07:52.675Z","updated_at":"2026-04-20T04:02:05.083Z","avatar_url":"https://github.com/j0yu.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Katana\n\n[![CI](../..//workflows/CI/badge.svg?branch=master)](../../actions?query=workflow%3ACI+branch%3Amaster)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n\n[rez] package to install [Katana].\n\nHere are some beginners instructions on how to use this repository.\n\n## Installation\n\n1. Install [rez] via `python install.py` method\n1. Clone/download this repository\n1. Ensure at least the folder printed by\n   this command `rez config local_packages_path`\n1. Open terminal in (extracted) repository folder,\n   run `rez build --install`\n\nKatana should now be installed as a [rez] package named `katana`.\n\n## Usage\n\nTo run [Katana]: `rez env katana -- katana`\n\n\n## Extra Topics\n\n### Skip downloading installer\n\nIf you already have the **raw** Katana tar/zip downloaded from the Foundry's\nwebsite, place it inside the (extracted) repository folder without renaming it.\n\nThen `rez build --install` should skip re-downloading the Katana tar/zip.\n\n### Licensing\n\nIf you already have a license server setup, e.g. at the port and address \n`1234@licenseserver`, you can run Katana like:\n\n```bash\nrez env katana -- foundry_LICENSE=1234@licenseserver katana\n```\n\nThere are many ways to go about setting up licenses for rez packages e.g.\n\n1. Modify this rez package build to include your own custom `katana`\n   launcher script which sets up your licenses\n1. Have a separate `licenses` rez package to handle licenses used by your \n   studio. \n   \n   This can then be added as a [requirement] e.g. `requires = [\"licenses\"]`\n\nWhich method you go by will depend on your current situation.\n\n\n## Maintenance\n\nWhenever new official release come out, update the `__version__`\nin `package.py` then re-run `rez build --install`.\n\nIf you decide to make another install, e.g. new `commands()` environment\nsetup, you can instead just update the `+local.` version number to indicate\nnew releases/versions of your own. See [PEP 540 local version segments].\n\nAlso, you can rename `+local.` to something more relevant to you \ne.g. `+mystudio.` or  `+mygithubname.`\n\n----\n\nWant more rez packages? Checkout [my GitHub repositories][j0yu-rez-packages]\n\n[rez]: https://github.com/nerdvegas/rez\n[requirement]: https://github.com/nerdvegas/rez/wiki/Package-Definition-Guide#requires\n[j0yu-rez-packages]: https://github.com/j0yu?tab=repositories\u0026q=topic%3Arez+topic%3Apackage\n[Katana]: https://www.foundry.com/products/katana\n[PEP 540 local version segments]: https://www.python.org/dev/peps/pep-0440/#local-version-segments\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj0yu%2Frez-katana","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fj0yu%2Frez-katana","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fj0yu%2Frez-katana/lists"}