yep: yet another package manager for local cli commands

[THIS IS AN IDEA, written down to see if it has any merits and looks sane... Comments welcome!]

Install and update command line apps in your $HOME folder.

Good for maintaining local cli commands, which you want to update regularly to the latest version available in the upstream release page/repo. Gives you the flexibility to install whatever you want. Minimizes the hassle of keeping them updated.

Overview

Installing a package is a three-step process:

  1. Expanding the given "recipe" with some defaults. Depends on the given --type=xx (Default: downloading from a github release page and installing as a static binary). This basically makes a minimal example yep install cli/cli do the right thing without removing flexibility.
  2. Getting the content of the package to the local disk, e.g., downloading and extracting a release zip or cloning a repository into a "package" folder or installing via rust/cargo.
  3. Doing something with content, e.g., renaming a file in the package folder or symlinking a binary into $PATH or executing a Makefile in the folder to install the package

The "recipe" how to install a package is persisted and updates are basically reinstalls.

Features in the happy path

Invocation

Arguments / commands:

TODO: think about how to overwrite/extend stuff from the template/default type: I can see both "overwrite it" (e.g. the rust case below installs a different executable) and extend it (e.g. installs two executables").

Before actually doing the actions specified by the arguments, some string replacements are done:

Extending

Three cases:

Installation by a special argument/type (e.g. yep --type=extension ... which will ln all files in the root folder which fit the required file patterns into the extension folder (see --install-yep-extensions).

Use cases

install yep

Download the appropriate file for your arch/os, make it executable and run yep setup. This will do:

  1. Read a config file, if it already exists
  2. Write an example config file, if it doesn't exist, which just lists (but not configures) options
  3. Setup the base folder(s): $HOME/.local/yep/{...}
  4. Put yep into its own "package" together with the right persisted commands file
  5. Put a symlink to yep into $HOME/.local/bin/ (=installs it)

TODO: how to persist this steps so update runs this again? probably nothing special, if really needed, add appropriate arguments/ commands in the persisted file. Or put that into the "update" command as a special post-update step.

(The command is idempotent, so can be rerun again without harming your installation or fixing it if something is broken)

Install ripgrep via yep BurntSushi/ripgrep

  1. Downloads the appropriate os+arch file from the latest release from github
  2. Extract the file and makes ripgrep executable
  3. Creates a symlink to the ripgrep binary as $HOME/.local/bin/ripgrep

    License

This project is proudly licensed under the MIT license (LICENSE or http://opensource.org/licenses/MIT).

yep can be distributed according to the MIT license. Contributions will be accepted under the same license.