{"id":15140908,"url":"https://github.com/afcms/minetest-collection-manager","last_synced_at":"2026-01-24T09:02:05.356Z","repository":{"id":176499897,"uuid":"657559273","full_name":"AFCMS/minetest-collection-manager","owner":"AFCMS","description":"WIP","archived":false,"fork":false,"pushed_at":"2024-10-22T13:00:03.000Z","size":186,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-09T00:34:06.020Z","etag":null,"topics":["minetest","python","python-rich"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AFCMS.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}},"created_at":"2023-06-23T10:27:15.000Z","updated_at":"2024-10-22T13:00:07.000Z","dependencies_parsed_at":"2025-08-17T04:32:59.650Z","dependency_job_id":"13498ea0-32e4-49ca-86cb-787bbaeab1f9","html_url":"https://github.com/AFCMS/minetest-collection-manager","commit_stats":null,"previous_names":["afcms/minetest-collection-manager"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AFCMS/minetest-collection-manager","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AFCMS%2Fminetest-collection-manager","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AFCMS%2Fminetest-collection-manager/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AFCMS%2Fminetest-collection-manager/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AFCMS%2Fminetest-collection-manager/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AFCMS","download_url":"https://codeload.github.com/AFCMS/minetest-collection-manager/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AFCMS%2Fminetest-collection-manager/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28721976,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T08:27:05.734Z","status":"ssl_error","status_checked_at":"2026-01-24T08:27:01.197Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["minetest","python","python-rich"],"created_at":"2024-09-26T08:42:17.242Z","updated_at":"2026-01-24T09:02:05.336Z","avatar_url":"https://github.com/AFCMS.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minetest Collection Manager\n\n![Screenshot](screenshot.png)\n\nThis project aims to help maintaining a collection of Minetest content (mods, games, etc) outside a Minetest user\ndirectory. It allows sharing this collection with multiple Minetest installs.\n\nYou just need to provide a JSON config file containing which ContentDB and Git packages you want and an output folder\nand it will clone and update everything. It will be also able to sync with a specific folder with your own development\nstuff.\n\n**It is done with the idea that all the mods _must_ be updated when possible. It is suitable for personnal collection if\nyou stay updated to latest Minetest versions, not for maintaining servers.**\n\n## Installation\n\nMake sure to have Python3 and PIP installed (tested with version 3.10 and above)\n\nGo to the source code folder:\n\n```shell\npip3 install -r requirements.txt\n```\n\nThen you can run the script:\n\n```shell\npython3 ./main.py --help\n```\n\nUsage exemples:\n\n```shell\n# Create a configuration file\n# schema: the \"$schema\" JSON tag will be filled with the absolute path of the JSON schema (will not be updated if the script is moved around)\n# auto-sort: the entries in the config file are automatically sorted alphabetically when modified from CLI\npython3 ./main.py create-config ./config_file.json --schema --auto-sort\n\n# Add a package to the config file\n# The package is a mod and uses git\n# This only modify the config file, mod isn't downloaded\n# The availlable package categories are: \"mods\", \"client_mods\", \"games\", \"texture_packs\"\npython3 ./main.py add-package ./config_file.json mods git https://notabug.org/tenplus1/bonemeal\n\n# Add a package to the config file and sort the entries (useful when autosort disabled)\npython3 ./main.py add-package ./config_file.json mods git https://github.com/AFCMS/Subway-Miner --sort\n\n# Add a Git package to the config file and pull from specific branch\npython3 ./main.py add-package ./config_file.json mods git https://github.com/AFCMS/Subway-Miner --git-remote-branch=other_branch\n\n# Add a package from CDB (work with any up-to-date instances)\npython3 ./main.py add-package ./config_file.json mods cdb https://content.minetest.net/packages/davidthecreator/rangedweapons\n\n# Remove a package from the config file\npython ./main.py remove-package ./config.json mods git https://notabug.org/tenplus1/bonemeal\n\n# Update the collection folder with the config file\n# Packages that are present will be updated (including submodules for Git repositories)\n# Other packages will be cloned/downloaded\n# If any package has been removed from the config file, it's folder WONT BE REMOVED and should be done by hand\npython3 ./main.py update ./config_file.json ~/minetest_collection\n\n# Sync a collection folder with a Minetest installation\n# Will symlink folders from the collection folder to the Minetest installation\n# Will report folders that cannot be symlinked without removing existing folder\npython3 ./main.py sync ~/minetest_collection ~/.minetest\n\n# Sync a development folder with a collection folder\n# Will symlink folders from the development folder to the collection folder\n# You will need to run the sync command to update your Minetest installs\npython3 ./main.py sync-dev ~/minetest_collection ~/minetest_development\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafcms%2Fminetest-collection-manager","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fafcms%2Fminetest-collection-manager","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafcms%2Fminetest-collection-manager/lists"}