rpm-software-management / libdnf

Licence: LGPL-2.1 license
Package management library.

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language
python
139335 projects - #7 most used programming language
CMake
9771 projects
SWIG
194 projects
shell
77523 projects

Projects that are alternatives of or similar to libdnf

Dnf
Package manager based on libdnf and libsolv. Replaces YUM.
Stars: ✭ 838 (+433.76%)
Mutual labels:  package-manager, rpm
Scarf
An experimental prototype of a package manager and packaging ecosystem. Currently being rebuilt.
Stars: ✭ 108 (-31.21%)
Mutual labels:  package-manager, package-management
Qdd
Download JavaScript Dependencies, really fast
Stars: ✭ 47 (-70.06%)
Mutual labels:  package-manager, package-management
basalt
The rock-solid Bash package manager
Stars: ✭ 16 (-89.81%)
Mutual labels:  package-manager, package-management
Sampctl
The Swiss Army Knife of SA:MP - vital tools for any server owner or library maintainer.
Stars: ✭ 149 (-5.1%)
Mutual labels:  package-manager, package-management
Conan Center Index
Recipes for the ConanCenter repository
Stars: ✭ 310 (+97.45%)
Mutual labels:  package-manager, package-management
Dnfdragora
dnfdragora is a dnf frontend based on libyui abstraction
Stars: ✭ 65 (-58.6%)
Mutual labels:  package-manager, rpm
meta-package-manager
🎁 a wrapper around all package managers
Stars: ✭ 277 (+76.43%)
Mutual labels:  package-manager, dnf
Core Plans
Core Habitat Plan definitions
Stars: ✭ 129 (-17.83%)
Mutual labels:  package-manager, package-management
Bpkg
Lightweight bash package manager
Stars: ✭ 1,601 (+919.75%)
Mutual labels:  package-manager, package-management
cpm
🌵 A wrapper for package managers to make them consistent for those of us who are lazy.
Stars: ✭ 52 (-66.88%)
Mutual labels:  package-manager, package-management
Habitat
Modern applications with built-in automation
Stars: ✭ 2,334 (+1386.62%)
Mutual labels:  package-manager, package-management
awesome-package-manager
☘ Awesome package manager resources
Stars: ✭ 87 (-44.59%)
Mutual labels:  package-manager, package-management
Patch Package
Fix broken node modules instantly 🏃🏽‍♀️💨
Stars: ✭ 6,062 (+3761.15%)
Mutual labels:  package-manager, package-management
jean
Bored from installing tiny shell scripts and .dotfiles manually? Huh! Missing Shell Package Manager For Linux
Stars: ✭ 21 (-86.62%)
Mutual labels:  package-manager, package-management
Mpm
Simple Matlab package management inspired by pip
Stars: ✭ 56 (-64.33%)
Mutual labels:  package-manager, package-management
choco
Chocolatey - the package manager for Windows
Stars: ✭ 8,643 (+5405.1%)
Mutual labels:  package-manager, package-management
nix-portable
Nix - Static, Permissionless, Installation-free, Pre-configured
Stars: ✭ 356 (+126.75%)
Mutual labels:  package-manager, package-management
Alire
Command-line tool from the Alire project and supporting library
Stars: ✭ 108 (-31.21%)
Mutual labels:  package-manager, package-management
Luarocks
LuaRocks is the package manager for the Lua programming language.
Stars: ✭ 2,324 (+1380.25%)
Mutual labels:  package-manager, package-management

libdnf

This library provides a high level package-manager. It's core library of dnf, PackageKit and rpm-ostree. It's replacement for deprecated hawkey library which it contains inside and uses librepo under the hood.

⚠️ ⚠️ ⚠️ Note that libdnf is currently being reworked and is considered unstable. Once major users like PackageKit and DNF are fully ported, a new stable release will be considered. ⚠️ ⚠️ ⚠️

License

LGPLv2+

Building for Fedora

To install build requirements, run following command:

dnf install check-devel cmake cppunit-devel gcc gcc-c++ glib2-devel gpgme-devel gtk-doc json-c-devel libmodulemd-devel librepo-devel libsolv-devel libsolv-tools make python2-devel python3-devel python2-sphinx python3-sphinx python2-breathe python3-breathe rpm-devel sqlite-devel swig libsmartcols-devel

From the checkout dir:

mkdir build
cd build/
cmake .. -DPYTHON_DESIRED=3
make

Building the documentation, from the build/ directory::

make doc

Building RPMs:

tito build --rpm --test

Tests

All unit tests should pass after the build finishes:

cd build
make test

There are two parts of unit tests: unit tests in C and unit tests in Python. To run the C part of the tests manually, from hawkey checkout::

build/tests/test_main tests/repos/

To manually execute the Python tests, from libdnf git checkout directory::

PYTHONPATH=`readlink -f ./build/src/python/` python3 -m unittest discover -bt python/hawkey/tests/ -s python/hawkey/tests/tests/

The PYTHONPATH is unfortunately needed as the Python test suite needs to know where to import the built hawkey modules.

Contribution

Here's the most direct way to get your work merged into the project.

  1. Fork the project

  2. Clone down your fork

  3. Implement your feature or bug fix and commit changes

  4. If the change fixes a bug at Red Hat bugzilla, or if it is important to the end user, add the following block to the commit message:

    = changelog =
    msg:           message to be included in the changelog
    type:          one of: bugfix/enhancement/security (this field is required when message is present)
    resolves:      URLs to bugs or issues resolved by this commit (can be specified multiple times)
    related:       URLs to any related bugs or issues (can be specified multiple times)
    
    • For example::

      = changelog =
      msg: Do not close the database if it wasn't opened
      type: bugfix
      resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1761976
      
    • For your convenience, you can also use git commit template by running the following command in the top-level directory of this project:

      git config commit.template ./.git-commit-template
      
  5. In a separate commit, add your name and email under Libdnf CONTRIBUTORS section in the authors file as a reward for your generosity

  6. Push the branch to your fork

  7. Send a pull request for your branch

Please do not create pull requests with translation (.po) file improvements. Fix the translation on Fedora Weblate <https://translate.fedoraproject.org/projects/dnf/>_ instead.

Documentation

See the hawkey documentation page.

Information internal to the hawkey development is maintained on a github wiki.

Useful links

Bug database:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].