{"id":19031397,"url":"https://github.com/plandes/zenbuild","last_synced_at":"2025-10-08T06:57:26.718Z","repository":{"id":53532341,"uuid":"112849016","full_name":"plandes/zenbuild","owner":"plandes","description":"Tools, configuration files and utilities for building, installing and deploying projects","archived":false,"fork":false,"pushed_at":"2025-09-06T22:35:50.000Z","size":534,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-07T00:20:05.420Z","etag":null,"topics":["build","clojure","gnu-make","make","makefile","python"],"latest_commit_sha":null,"homepage":"","language":"Makefile","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/plandes.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2017-12-02T14:35:55.000Z","updated_at":"2025-09-06T22:35:53.000Z","dependencies_parsed_at":"2023-02-17T20:45:49.455Z","dependency_job_id":"dbc3c03b-ba7f-49d4-bc75-21389ff438f0","html_url":"https://github.com/plandes/zenbuild","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/plandes/zenbuild","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plandes%2Fzenbuild","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plandes%2Fzenbuild/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plandes%2Fzenbuild/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plandes%2Fzenbuild/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plandes","download_url":"https://codeload.github.com/plandes/zenbuild/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plandes%2Fzenbuild/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278903038,"owners_count":26065786,"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-08T02:00:06.501Z","response_time":56,"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":["build","clojure","gnu-make","make","makefile","python"],"created_at":"2024-11-08T21:23:16.501Z","updated_at":"2025-10-08T06:57:26.661Z","avatar_url":"https://github.com/plandes.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build Utilities\n\nThis package has tools, configuration files and utilities for building,\ninstalling and deploying projects.\n\n\n## Usage\n\nThis repo, with its set of make files, is to be used on Clojure and Python\nbuild projects like the [NLP parse project].  Scala/sbt make setup is under\ndevelopment.\n\n## Compiling and Using Build Environment\n\nThis repo use to be used as a dependency, and you can too if you want.\nHowever, I've *flipped* the paradigm and now use this repo as a [git module]\nsince it works well as a tracked version by the parent for each project that\nuses it.  Examples:\n\n* [Python project](https://github.com/plandes/zotsite)\n* [Clojure](https://github.com/plandes/clj-nlp-parse)\n\nSee the [template](https://github.com/plandes/template#usage) project for more\ninformation on use cases and how to use this repo.\n\n\n## Building and Dependencies\n\nBuilding a project using this build setup requires certain software to be\ninstalled:\n\n1. Install [GNU make]:\n\n*MacOS*:\n```bash\nbrew install make\n```\n\n*Linux (CentOS)*:\n```bash\nsudo yum groupinstall \"Development Tools\"\n```\n\n2. Install [Git]:\n\n*MacOS*:\n```bash\nbrew install git\n```\n\n*Linux (CentOS)*:\n```bash\nsudo yum install git\n```\n3. Install [Python 3]:\n\n*MacOS*:\n```bash\nruby -e \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)\"\nbrew install python\n```\n\n*Linux (CentOS)*:\n```bash\nsudo yum -y install https://centos7.iuscommunity.org/ius-release.rpm\nsudo yum -y install python36u\n```\n\n4. Install [gitpython]:\n\n```bash\npip install gitpython\n```\n\n5. For Clojure projects: install [Leiningen] (this is just a script):\n```bash\nwget -O /usr/local/bin/lein https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein \u0026\u0026 chmod 0755 /usr/local/bin/lein\n```\n\n\n## License\n\nCopyright © 2018 Paul Landes\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n\n\u003c!-- links --\u003e\n[NLP parse project]: https://github.com/plandes/clj-nlp-parse\n[mkproj]: https://github.com/plandes/clj-mkproj\n[gitpython]: https://github.com/gitpython-developers/GitPython\n[Git]: https://git-scm.com\n[GNU make]: https://www.gnu.org/software/make/\n[Leiningen]: http://leiningen.org\n[Python 3]: https://www.python.org/download/releases/3.0/\n[git module]: https://git-scm.com/book/en/v2/Git-Tools-Submodules\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplandes%2Fzenbuild","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplandes%2Fzenbuild","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplandes%2Fzenbuild/lists"}