📦 🐳 0-dependency Container-based Package Manager
Go to file
2020-02-11 16:55:00 +01:00
cmd Bump version for upcoming release 2020-02-08 12:08:31 +01:00
contrib/config client/http: Add support for authentication Basic/Token 2020-02-03 00:58:55 +01:00
pkg Respect argument passed to Untar in helpers 2020-02-11 16:55:00 +01:00
tests Adapt integration test to test install and build from cli without explicit versioning 2020-02-04 20:16:35 +01:00
vendor update vendor/ 2020-02-11 15:00:14 +01:00
.gitignore Add integration tests 2019-12-31 15:22:11 +01:00
.travis.yml Add integration tests to run on travis 2019-12-31 15:44:00 +01:00
Dockerfile Add ca cert to scratch image 2019-12-03 16:29:13 +01:00
go.mod Bump gophersat 2020-02-11 14:59:50 +01:00
go.sum Bump gophersat 2020-02-11 14:59:50 +01:00
LICENSE Add copy of LICENSE 2019-11-04 11:01:41 +01:00
main.go Add cmd/ and main.go 2019-10-31 12:38:58 +01:00
Makefile Add integration tests 2019-12-31 15:22:11 +01:00
README.md Update README 2020-02-08 12:06:54 +01:00

luet - Container-based Package manager

Go Report Card Build Status GoDoc codecov

Luet is a multi-platform Package Manager based off from containers - it uses Docker (and other tech) to sandbox your builds and generate packages from them. It has zero dependencies and it is well suitable for "from scratch" environments. It can also version entire rootfs and enables delivery of OTA-alike updates, making it a perfect fit for the Edge computing era and IoT embedded devices.

It offers a simple specfile format in YAML notation to define both packages and rootfs. As it is based on containers, it can be used to build seed stages for Linux From Scratch installations and it can build and track updates for those systems.

It is written entirely in Golang and where used as package manager, it can run in from scratch environment, with zero dependencies.

In a glance

  • Luet can reuse Gentoo's portage tree hierarchy, and it is heavily inspired from it.
  • It builds, installs, uninstalls and perform upgrades on machines
  • Installer doesn't depend on anything ( 0 dep installer !), statically built
  • Support for packages as "layers"
  • It uses SAT solving techniques to solve the deptree ( Inspired by OPIUM )

Install

To install luet, you can grab a release on the Release page or compile it in your machine (requires Golang installed):

$ git clone https://github.com/mudler/luet.git
$ cd luet
$ make build

Status

Luet is not feature-complete yet, it can build, install/uninstall/upgrade packages - but it doesn't support yet all the features you would normally expect from a Package Manager nowadays.

Documentation

Documentation is available, or run luet --help, any subcommand is documented as well, try e.g.: luet build --help.

Authors

Luet is here thanks to our amazing contributors!.

Luet was originally created by Ettore Di Giacinto, mudler@sabayon.org, mudler@gentoo.org.

License

Luet is distributed under the terms of GPLv3, check out the LICENSE file.