Bin package manager, a package manager based on Github release
Project description
bin package manager
English | 简体中文
Bin package manager (BPM) is a Github release-based package manager that allows users to install and manage binaries from any Github release.
BPM is currently supported on Linux and Windows, python >= 3.9.
[!CAUTION] Risk Warning: Be aware of the potential risk of BPM Linux damaging your computer. By using BPM to install software, you accept this risk and trust third-party Github release packagers.
[TIP] BPM guarantees parity, i.e.,
bpm install
followed immediately bybpm uninstall
will not change the system in any way.
Why use it?
In non-rolling release Linux distributions, the version of softwares in official source are often too low to use some new features.
Rolling distributions, such as Archlinux, are also unable to install software from the AUR as root.
A common way to manage packages on Windows is scoop, but it requires the packager to maintain a "manifest" list.
Installation
BPM needs to be installed to root user.
pip
Linux
sudo pip install bin-package-manager --break-system-packages
sudo bpm
Note the risk of potentially breaking system packages.
Windows
pip install bin-package-manager
bpm
pipx
You can use pipx to install BPM.
sudo pipx install bin-package-manager
pipx will only install for the current user, so sudo
is required. Alternatively, you can track on this issue and use other methods mentioned there.
Source code
If you don't want to use pipx, you can also download and use the source code.
BPM requires these libs, please install them manually.
git clone https://github.com/lxl66566/bpm.git
cd bpm
python3 -m bpm
# or use poetry to install dependencies and run: `poetry install && poetry run python -m bpm`
Usage
- Install:
bpm i <package>
- Run
bpm -h
andbpm i -h
for more help.
❯ bpm i -h
usage: bpm install [-h] [-b [BIN_NAME]] [-l [Archive]] [-q] [--one-bin] [--prefer-gnu] [-n] [-i] [--filter [FILTER ...]] [--sort [SORT]] packages [packages ...]
positional arguments:
packages Package name or github url to install
options:
-h, --help show this help message and exit
-b [BIN_NAME], --bin-name [BIN_NAME]
specify the binary executable filename, otherwise use package name by default.
-l [Archive], --local [Archive]
install from local archive.
-q, --quiet not ask, install the best match repo.
--one-bin install given binary only. Use package name as binary name by default.
--prefer-gnu bpm prefers musl target by default, you can change this default option.
-n, --dry-run print the install position, but not install actually.
-i, --interactive select asset interactively.
--filter [FILTER ...]
filter assets
--sort [SORT] sort param in github api, use `best-match` by default. The value could be `stars`, `forks`, `help-wanted-
issues`, `updated`.
How it works
Linux
BPM automatically determines the file structure in the asset and installs it to the appropriate location on the system. The current installation is like:
- install binary
- merge the
lib
,include
,share
,man
,bin
directories into the system - install completions
- install services (if exists systemd)
BPM automatically adds the .old
suffix to existing files to avoid overwrite. The .old
files will be restored in uninstalling.
Windows
BPM downloads asset into %userprofile%/bpm/app/<name>
and creates shortcuts and cmd runner for the executables to %userprofile%/bpm/bin
, which is added to %path%
.
After v2.2.7, single .exe
will be also installed.
Develop
git clone https://github.com/lxl66566/bpm.git
cd bpm
poetry install
poetry run python -m unittest bpm/**/*.py # run tests
TODO
- no pre release
- try install
- windows support
- offline install
- install from github link
- update from local
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bin_package_manager-2.2.8.tar.gz
.
File metadata
- Download URL: bin_package_manager-2.2.8.tar.gz
- Upload date:
- Size: 21.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.1-arch1-1-lily
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f668fb35bd33ce4a605eaf41125be958703c998af514f19947cc37b3d154d60c |
|
MD5 | 4f62dc48c34ab15de55fc1ba891f17f2 |
|
BLAKE2b-256 | 3db3049024d147cf2f77c9ec64a8c970d8e87f040f01a23cf8afb0529728efa4 |
File details
Details for the file bin_package_manager-2.2.8-py3-none-any.whl
.
File metadata
- Download URL: bin_package_manager-2.2.8-py3-none-any.whl
- Upload date:
- Size: 24.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.2 CPython/3.12.3 Linux/6.8.1-arch1-1-lily
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56a5ccc72b64ad42acc9101cec010ca9ac40274efd17c155d464f06467b48c2e |
|
MD5 | 888ccb0b0e7bbd97b20c7d8d12914d54 |
|
BLAKE2b-256 | 7dac3aacea342be8818b182f83557ebed3de1f10e1740e50e73d7f7896d49510 |