{"id":21222228,"url":"https://github.com/lostintime/chef-pythonbrew","last_synced_at":"2025-03-15T01:16:58.414Z","repository":{"id":7420504,"uuid":"8754995","full_name":"lostintime/chef-pythonbrew","owner":"lostintime","description":"Chef Cookbook for pythonbrew installation and managing pythons/virtualenvs","archived":false,"fork":false,"pushed_at":"2013-03-31T19:07:33.000Z","size":198,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-21T17:14:14.868Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lostintime.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-03-13T15:13:40.000Z","updated_at":"2014-05-04T05:11:26.000Z","dependencies_parsed_at":"2022-08-20T07:01:39.156Z","dependency_job_id":null,"html_url":"https://github.com/lostintime/chef-pythonbrew","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostintime%2Fchef-pythonbrew","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostintime%2Fchef-pythonbrew/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostintime%2Fchef-pythonbrew/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostintime%2Fchef-pythonbrew/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lostintime","download_url":"https://codeload.github.com/lostintime/chef-pythonbrew/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243668234,"owners_count":20328042,"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","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":[],"created_at":"2024-11-20T22:42:16.406Z","updated_at":"2025-03-15T01:16:58.350Z","avatar_url":"https://github.com/lostintime.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"pythonbrew Cookbook\n===================\nInstalls pythonbrew for specified user\n\nRequirements\n------------\n`patch`, `curl`, and `sed` utilities required\n\nAttributes\n----------\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003cth\u003eKey\u003c/th\u003e\n    \u003cth\u003eType\u003c/th\u003e\n    \u003cth\u003eDescription\u003c/th\u003e\n    \u003cth\u003eDefault\u003c/th\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ctt\u003e['pythonbrew']['user']\u003c/tt\u003e\u003c/td\u003e\n    \u003ctd\u003eString\u003c/td\u003e\n    \u003ctd\u003eSystem user to install pythonbrew for. If is set to \"root\" (default) - will install system-wide.\u003c/td\u003e\n    \u003ctd\u003e\u003ctt\u003eroot\u003c/tt\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ctt\u003e['pythonbrew']['HOME']\u003c/tt\u003e\u003c/td\u003e\n    \u003ctd\u003eString\u003c/td\u003e\n    \u003ctd\u003eUser home path. For \"root\" user - \"/root\" path is hardcoded.\u003c/td\u003e\n    \u003ctd\u003e\u003ctt\u003e/home/%user%\u003c/tt\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003ctt\u003e['pythonbrew']['setups']\u003c/tt\u003e\u003c/td\u003e\n    \u003ctd\u003eArrau\u003c/td\u003e\n    \u003ctd\u003eArray of python brew installations, check attributes/default.rb for example.\u003c/td\u003e\n    \u003ctd\u003e\u003ctt\u003e[]\u003c/tt\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\nUsage\n-----\nInclude `pythonbrew` in your node's `run_list` and add \"setups\" to configuration:\n\n\t{\n\t\t\"name\":\"my_node\",\n\t\t\"run_list\": [\n\t\t\t\"recipe[pythonbrew]\"\n\t\t],\n\t\t\"pythonbrew\": {\n\t\t\t\"setups\": [\n\t\t\t\t{\n\t\t\t\t\t\"user\": \"vagrant\",\n\t\t\t\t\t\"python_version\": \"2.7.3\",\n\t\t\t\t\t\"python_is_default\": true,\n\t\t\t\t\t\"venv\": \"my_site\",\n\t\t\t\t\t\"packages\": [\"pymongo\", {\"name\": \"django\", \"version\": \"1.1.4\"}]\n\t\t\t\t}\n\t\t\t]\n\t\t}\n\t}\n\nContributing\n------------\n1. Fork the repository on Github\n2. Create a named feature branch (like `add_component_x`)\n3. Write you change\n4. Write tests for your change (if applicable)\n5. Run the tests, ensuring they all pass\n6. Submit a Pull Request using Github\n\nLicense and Authors\n-------------------\nAuthors: \u003clostintime.dev@gmail.com\u003e\n\nLicensed under MIT license\n\n\thttp://opensource.org/licenses/MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flostintime%2Fchef-pythonbrew","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flostintime%2Fchef-pythonbrew","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flostintime%2Fchef-pythonbrew/lists"}