#pacman #alpm #arch-linux #arch

alpm-utils-ll

Helper functions for working with alpm

1 stable release

2.0.0 Aug 26, 2022

#993 in Unix APIs

GPL-3.0 license

210KB
6K SLoC

alpm.rs - rust bindings for libalpm

Latest version Documentation

alpm.rs provides complete, safe, ergonomic bindings to the libalpm API, the package management library used by pacman and other tools.

Features

  • mtree - enables the alpm_pkg_mtree_* functions
  • generate - generate the raw alpm-sys bindings at build time
  • checkver - check that the version of libalpm installed is compatible with alpm.rs
  • git - target the git master API
  • static - statically link to libalpm

Note: checkver does not work with the git feature. You can instead use the generate feature to ensure alpm.rs builds against a compatible libalpm version.

libalpm compatibility

alpm.rs always targets the latest version of libalpm. It may also support previous versions if the API was not changed.

alpm.rs also supports the pacman git master via the git feature.

Currently alpm.rs supports libalpm v13.x.x.

Note: When using the git feature, alpm.rs is updated against the libalpm git master as commits happen. As the git version is not considered stable software, this is done without bumping the major version.

Documentation

This crate just provides bindings for libalpm and hence does not document libalpm. You can find documentation for libalpm in the libalpm (3) man page or in alpm.h.

There are also examples on how to use the alpm crate in alpm/examples.

alpm-sys

This repo also contains the alpm-sys crate, providing raw bindings for libalpm. Although you probably just want to use the alpm crate instead.

My Changes

I changed this library to be entirely dependent on loading libalpm at runtime through libloading. Allows for this to be utilized as an optional dependency at runtime. This is useful for utilities that may potentially need to use libalpm, but, may not have the ability to due to system constraints.

Signed, Noah Shanaberger.


lib.rs:

alpm-utils

A utility library that provides some common functionality an alpm user may requre.

Dependencies

~0.5–0.8MB
~13K SLoC