{"id":49538338,"url":"https://github.com/seuros/upkg","last_synced_at":"2026-05-24T02:00:55.538Z","repository":{"id":354306059,"uuid":"1222321239","full_name":"seuros/upkg","owner":"seuros","description":"Unified package management CLI. One command surface across apt, dnf, pacman, zypper, opkg, pkg, and a native macOS engine — without inventing a new catalog.","archived":false,"fork":false,"pushed_at":"2026-05-21T01:09:34.000Z","size":478,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-21T07:48:39.123Z","etag":null,"topics":["apt","cli","cross-platform","devops","dnf","freebsd","homebrew","linux","macos","package-manager","pacman","sysadmin","termux"],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/seuros.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2026-04-27T08:50:34.000Z","updated_at":"2026-05-21T01:09:20.000Z","dependencies_parsed_at":"2026-05-03T14:01:06.283Z","dependency_job_id":null,"html_url":"https://github.com/seuros/upkg","commit_stats":null,"previous_names":["seuros/upkg"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/seuros/upkg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seuros%2Fupkg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seuros%2Fupkg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seuros%2Fupkg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seuros%2Fupkg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/seuros","download_url":"https://codeload.github.com/seuros/upkg/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/seuros%2Fupkg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33418550,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T22:14:44.296Z","status":"online","status_checked_at":"2026-05-24T02:00:06.296Z","response_time":57,"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":["apt","cli","cross-platform","devops","dnf","freebsd","homebrew","linux","macos","package-manager","pacman","sysadmin","termux"],"created_at":"2026-05-02T13:04:08.095Z","updated_at":"2026-05-24T02:00:55.527Z","avatar_url":"https://github.com/seuros.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# upkg\n\nEver tried to document how to install your own program?\n\nYou end up writing 47 pages just to say \"install the dev headers for libfoo\" — because on Debian it's `libfoo-dev`, on Fedora it's `libfoo-devel`, on Arch it's `libfoo`, on Alpine it's `libfoo-dev` (different one), on FreeBSD it's `foo`, and on macOS it's *\"fook yu\"* — because the dev didn't pay $199 to sign the package.\n\n**upkg lets you speak civilized. It speaks the dialect of 87 other package managers for you.**\n\n```bash\nupkg install git curl ripgrep\n```\n\nThat's it. Same command on Debian, Fedora, Arch, openSUSE, OpenWrt, Termux, FreeBSD, and macOS.\n\n## What it actually does\n\n- One command surface: `upkg install`, `upkg uninstall`, `upkg upgrade`.\n- Routes to the native package manager underneath.\n- Keeps the names people already know — no new catalog, no parallel universe.\n- Stays out of your way for anything advanced. Use `apt`, `dnf`, `pacman`, `pkg` directly when you need to.\n\n## What it is not\n\n- Not a new global package ecosystem.\n- Not a replacement for native tooling when you need flags, repos, or version pinning.\n- Not a daemon, not a sync service, not a wrapper that \"knows better.\"\n\n## Backends\n\n| Platform | Backend |\n|---|---|\n| Debian/Ubuntu | `apt` |\n| Fedora/RHEL | `dnf` / `yum` |\n| Arch | `pacman` |\n| openSUSE | `zypper` |\n| OpenWrt | `opkg` |\n| Android (Termux) | `pkg` (fallback `apt`) |\n| FreeBSD | `pkg` |\n| macOS | built-in engine (Homebrew-compatible names + prefixes) |\n\n## macOS\n\nNo runtime switch, no shelling out to `brew`. The engine is built in and keeps the prefixes people expect:\n\n- Apple Silicon: `/opt/homebrew`\n- Intel: `/usr/local`\n\nSame formula and cask names. Different engine.\n\nApps are detected automatically when a name exists as a cask but not as a\nformula. Use `--app` when you want to force cask resolution:\n\n```bash\nupkg install ghostty\nupkg install --app ghostty\nupkg uninstall --app ghostty\n```\n\nApp installs are written in the Homebrew-compatible cask layout, so `brew\ninfo --cask \u003cname\u003e` can detect them. Supported cask artifacts currently include\napps, manpages, and bash/fish/zsh completions.\n\n## Usage\n\n```bash\nupkg install git curl\nupkg install ghostty\nupkg install --app ghostty\nupkg install --dry-run ripgrep\nupkg uninstall htop\nupkg uninstall --app ghostty\nupkg upgrade\nupkg list\nupkg --self-upgrade\nupkg help\n```\n\n## Build\n\n```bash\ncargo build -p upkg\njust qq\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseuros%2Fupkg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fseuros%2Fupkg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fseuros%2Fupkg/lists"}