Easy to use, fast, git sourced based, C/C++ package manager.

Overview

Yet Another C/C++ Package Manager

Easy to use, fast, git sourced based, C/C++ package manager.

Features

  • No need to install a program, just include the cmake file
  • Can specify other libraries not in default package remote
  • Package code is in project directory making it easily accessible
  • Only fetches required files (using git sparse-checkout) which takes less time and bandwidth to get packages (unlike git submodules)

Requirements

  • Python >= 3.5
  • Cmake >= 3.12
  • Git >= 2.27

Usage

See example for a full example.

In the project directory create a yacpm.json file and add the required packages in there in the packages field as an object with the key being the library name and value being the version (commit hash/tag/branch of repository) or an object having the version field:

{
    "packages": {
        "glfw": "3.3.4",
        "entt": "master",
        "imgui": {
            "version": "c58fb464113435fdb7d122fde87cef4920b3d2c6"
        }
    }
}

If a branch is specified, it will be automatically converted to a commit hash (to prevent code from suddenly breaking) unless there's a + at the front. For example, master will be converted to 3f786850e387550fdab836ed7e6dc881de23001b but not +master. If no version is specified at all (empty string), it will use the default branch of the repository which will then be converted a commit and saved to yacpm.json. Using + will use the default branch and saved to yacpm.json (unless ++ is used) but it will not convert it to a commit.

Now add this to the top level CMakeLists.txt:

if(NOT EXISTS "${CMAKE_BINARY_DIR}/yacpm.cmake")
    # uses v1 of yacpm, replace the v1 with v2, v3, etc. to use a different version. See https://github.com/Calbabreaker/yacpm#branches
    file(DOWNLOAD "https://github.com/Calbabreaker/yacpm/raw/v1/yacpm.cmake" "${CMAKE_BINARY_DIR}/yacpm.cmake")
endif()

include(${CMAKE_BINARY_DIR}/yacpm.cmake)

Now use the library in the project (all libraries names are snake_case) as a target (include directories are automatically set):

# all of them in yacpm.json
target_link_libraries(${PROJECT_NAME} ${YACPM_PKGS})

# only specific ones
target_link_libraries(${PROJECT_NAME} glfw imgui)

Then run cmake:

mkdir build
cd build
cmake ..

Yacpm will download the yacpkg.json file for the library, the files and directories specified in yacpkg.json and the necessary CMakeLists.txt putting it all into a directory named the package name in the yacpkgs directory.

You can also include or disinclude other folders (array or string) to be fetched (in gitignore syntax):

{
    "packages": {
        "imgui": {
            "version": "docking",
            "include": ["/backends", "!/backends/imgui_impl_dx9.*"]
        }
    }
}

If the library doesn't exist in the remote then specify a repository and a CMakeLists.txt (file relative to yacpm.json or a url) that makes a target with the name matching the package name for that library like so:

{
    "packages": {
        "weird-library": {
            "version": "c8fed00eb2e87f1cee8e90ebbe870c190ac3848c",
            "repository": "https://github.com/RandomUser/weird-library",
            "cmake": "lib/weird-library.cmake",
            "include": ["/src", "/include"]
        }
    }
}

You can also configure the package by setting cmake variables (uses CACHE FORCE) by having a variables object like this (this is how you configure glad):

{
    "packages": {
        "glad": {
            "version": "71b2aa61f1f0ae94be5f2a7674275966aa15f8ad",
            "variables": { "GLAD_PROFILE": "core", "GLAD_API": "gl=3.2" }
        }
    }
}

Setting BUILD_SHARED_LIBS variable to true will link the library dynamically or setting it globally will link all the libraries libraries dynamically. Note you might have to remove build/CMakeCache.txt in order for it to actually work.

There might also be a README.md in the packages remote directory that contains notes on the package.

Additional Options

You can log everything by setting verbose to true in yacpm.json:

{
    "verbose": true
}

You can set a different package repository (default is packages) as either a url or local directory to download from by setting remote in yacpm.json. This can be an array or string (yacpm will try to use first ones first) and DEFAULT_REMOTE can be use as alias to the default remote:

{
    "remote": ["https://example.com/packages", "./packages", "DEFAULT_REMOTE"]
}

There is also a yacpm_extended.cmake file that contains nice cmake utilities that you can use by doing:

include(${CMAKE_BINARY_DIR}/yacpm.cmake)
yacpm_use_extended() # run after including yacpm.cmake

This contains a yacpm_target_warnings(target visibility) function that takes in a target and a visibility (PUBLIC, PRIVATE, INTERFACE) and sets strict warnings for that target. It also enables ccache or sccache, exports compile_commands.json (for language servers), and puts executables into build/bin.

Testing

Run the run_tests.py to run tests in the tests folder (specified by cli args) or all of them by default. Run python3 tests/run_test.py -h for more information. This will also be ran with github-actions. Each tests are like integration tests that tests features in yacpm to make sure nothing breaks for users.

Adding a new package

Create a new directory in packages directory with the name being the package name. This name must be in snake_case. Make a yacpkg.json file with the repository of the package and directories to fetch from the repository. The repository can be any git repository but it has to support sparse-checkout and filter fetches which github does.

{
    "repository": "https://github.com/ocornut/imgui",
    "include": ["/*.cpp", "/*.h"]
}

Now make a CMakeLists.txt in that directory. The file should be versatile as possible (work on as many versions) meaning add_subdirectory should be used (unless it's simple like glm) and all files should be globed. If the library target name is not in snake_case, do add_library(library_name ALIAS LibaryName). It doesn't have to work on very old versions, just at least 2 years. Also use system headers for include directories to avoid compiler warnings from the library header.

Example for GLFW:

set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
set(GLFW_INSTALL OFF CACHE BOOL "" FORCE)

add_subdirectory(repository)

Example for spdlog:

file(GLOB_RECURSE SPDLOG_SOURCES repository/src/*.cpp repository/include/*.h)
add_library(spdlog ${SPDLOG_SOURCES})

# system headers like this
target_include_directories(spdlog SYSTEM PUBLIC repository/include)
target_compile_definitions(spdlog PRIVATE SPDLOG_COMPILED_LIB)

Now add the package to tests/all_packages/yacpm.json to test if the package was configured correctly. Put package the package in tests/all_packages_other/yacpm.json if the package conflicts with other ones in yacpm. Then include the package header file and function call that's statically linked (if not package is not header only) in the corresponding main.cpp file. Make sure the package in yacpm.json and function call is in alphabetical order.

After everything has been tested, submit a pull request to the main branch to have the package be in the default remote.

Branches

The main branch contains the most recent commits where the latest potentially breaking changes come in so it shouldn't be used. The vN (v1, v2, etc.) branches are stable and should be used. Every time there is change that is incompatible with previous yacpm.json specifications the version number will be incremented.

Owner
I am a programmer and stuff.
Cilantropy: a Python Package Manager interface created to provide an "easy-to-use" visual and also a command-line interface for Pythonistas.

Cilantropy Cilantropy is a Python Package Manager interface created to provide an "easy-to-use" visual and also a command-line interface for Pythonist

48 Dec 16, 2022
A Poetry plugin for dynamically extracting the package version.

Poetry Version Plugin A Poetry plugin for dynamically extracting the package version. It can read the version from a file __init__.py with: # __init__

Sebastián Ramírez 264 Dec 22, 2022
Install All Basic Termux Packages To Your Phone

~All-Packages~ The Easiest Way To Install All Termux Packages 🤗 Tool By ⒹⓈ᭄ʜʏᴅʀᴀ✘๛ˢᴸ 👇 Contact Me On 👇 AVAILABLE ON : Termux TESTED ON : Term

ⒹⓈ ʜʏͥᴅᷧʀᷟᴀ✘๛ˢᴸ 7 Nov 12, 2022
OS-agnostic, system-level binary package manager and ecosystem

Conda is a cross-platform, language-agnostic binary package manager. It is the package manager used by Anaconda installations, but it may be used for

Conda 5.1k Dec 30, 2022
The Python Package Index

Warehouse Warehouse is the software that powers PyPI. See our development roadmap, documentation, and architectural overview. Getting Started You can

Python Packaging Authority 3.1k Jan 01, 2023
A set of tools to keep your pinned Python dependencies fresh.

pip-tools = pip-compile + pip-sync A set of command line tools to help you keep your pip-based packages fresh, even when you've pinned them. You do pi

Jazzband 6.5k Dec 29, 2022
Python dependency management and packaging made easy.

Poetry: Dependency Management for Python Poetry helps you declare, manage and install dependencies of Python projects, ensuring you have the right sta

Poetry 23.1k Jan 01, 2023
A flexible package manager that supports multiple versions, configurations, platforms, and compilers.

Spack Spack is a multi-platform package manager that builds and installs multiple versions and configurations of software. It works on Linux, macOS, a

Spack 3.1k Jan 09, 2023
An installation and dependency system for Python

Pyflow Simple is better than complex - The Zen of Python Pyflow streamlines working with Python projects and files. It's an easy-to-use CLI app with a

David O'Connor 1.2k Dec 23, 2022
A tool that updates all your project's Python dependency files through Pull Requests on GitHub/GitLab.

A tool that updates all your project's Python dependency files through Pull Requests on GitHub/GitLab. About This repo contains the bot that is runnin

pyup.io 413 Dec 29, 2022
Library Management System

Library Management Library Management System How to Use run main.py python file. python3 main.py Links Download Source Code: Click Here My Github Aco

Mohammad Dori 3 Jul 15, 2022
Workon - A simple project manager for conda, windows 10 and vscode

WORK ON A simple project manager for conda, windows 10 and vscode Installation p

Jesus Alan Hernandez Galvan 1 Jan 16, 2022
Simple Library Management made with Python

Installation pip install mysql-connector-python NOTE: You must make a database (library) & and table (books, student) to hold all data. Languange and

SonLyte 10 Oct 21, 2021
local pypi server (custom packages and auto-mirroring of pypi)

localshop A PyPI server which automatically proxies and mirrors PyPI packages based upon packages requested. It has support for multiple indexes and t

Michael van Tellingen 383 Sep 23, 2022
The Python package installer

pip - The Python Package Installer pip is the package installer for Python. You can use pip to install packages from the Python Package Index and othe

Python Packaging Authority 8.4k Dec 30, 2022
The delightful package manager for AppImages

⚡️ Zap The delightful package manager for AppImages Report bug · Request feature Looking for the older Zap v1 (Python) implementation? Head over to v1

Srevin Saju 368 Jan 04, 2023
Easy to use, fast, git sourced based, C/C++ package manager.

Yet Another C/C++ Package Manager Easy to use, fast, git sourced based, C/C++ package manager. Features No need to install a program, just include the

31 Dec 21, 2022
pipreqs - Generate pip requirements.txt file based on imports of any project. Looking for maintainers to move this project forward.

pipreqs - Generate requirements.txt file for any project based on imports Installation pip install pipreqs Usage Usage: pipreqs [options] path

Vadim Kravcenko 4.8k Dec 31, 2022
Install and Run Python Applications in Isolated Environments

pipx — Install and Run Python Applications in Isolated Environments Documentation: https://pipxproject.github.io/pipx/ Source Code: https://github.com

5.8k Dec 31, 2022
Dotpkg - Package manager for your dotfiles

Dotpkg A package manager for your dotfiles. Usage First make sure to have Python

FW 4 Mar 18, 2022