Skip to main content

Python-based build system.

Project description

dan

Do Anything Now

dan is a build system inspired from GNU make, cmake, meson, ... but only in python.

It is mostly designed to be easy to use, it comes with its vscode extension available on the marketplace.

It also provide a packaging system called dan.io, that will fetch and build 3rd party libraries.

Install

dan is available on pip:

pip install dan-build

Features

Generators

Generators are python functions that generates an output:

from dan import generator

@generator(output='hello.txt', dependencies=['source.jinja'])
def hello(self):
    env = jinja2.Environment(loader=jinja2.FileSystemLoader(self.source_path))
    template = env.get_template('source.jinja')
    print(template.render({'data': 'hello'}), file=open(self.output, 'w'))

They can be async:

@generator(output='hello-cpy.txt', dependencies=[hello])
async def hello_cpy(self):
    assert hello.up_to_date
    async with aiofiles.open(hello.output, 'r') as src:
        async with aiofiles.open(self.output, 'w') as dst:
            await dst.write(await src.read())

C/CXX

Libraries/Executables

from dan.cxx import Library, Executable
class MyLib(Library):
    name = 'my-lib'
    sources = ['src/my-lib.cpp']
    public_includes = ['include']

class MyExe(Executable):
    name = 'my-exe'
    sources = ['src/main.cpp']
    dependencies = [MyLib]

Packages

dan.io is the main (default) package source repository (custom repositories are supported by editting ~/.dan/repositories.json), documentation comming soon.

class MyExe(Executable):
    name = 'my-exe'
    sources = ['src/main.cpp']
    dependencies = ['boost:headers@dan.io >= 1.82']

dan cli usage

dan is the main executable to build your project, it can build, test, list targets/test, ...

dan --help
Usage: dan [OPTIONS] COMMAND [ARGS]...

Options:
  --version           Show the version and exit.
  -q, --quiet         Dont print informations (errors only)
  -v, --verbose       Pring debug informations
  -j, --jobs INTEGER  Maximum jobs
  --help              Show this message and exit.

Commands:
  build            Build targets
  clean            Clean generated stuff
  code             VS-Code specific commands
  configure        Configure dan project
  install          Install targets
  ls               Inspect stuff
  run              Run executable(s)
  scan-toolchains  Scan system toolchains
  test             Run tests
  uninstall        Uninstall previous installation

Toolchain scan

dan scan-toolchains [-s <env-script>]

Configuration

dan configure [-B <build_path>] [-S <source_path>] [-t <toolchain>] [-s <setting>=<value>] [-o <option>=<value>]

Build

dan build [-B <build_path>] [-v] [--for-install] [TARGETS]...

Install

Install targets marked with install = True property to the install.destination setting.

dan install [-B <build_path>] [TARGETS]... [user|dev]

Settings:

  • install.destination: The install destination (default: /usr/local).
  • install.runtime_prefix: Executables installation prefix (default: bin).
  • install.libraries_prefix: Libraries installation prefix (default: lib).
  • install.includes_prefix: Includes installation prefix (default: include).
  • install.data_prefix: Data files installation prefix (default: share).
  • install.project_prefix: !!! NOT USED YET !!! Project prefix (default: None).

dan-io cli usage

dan-io is a secondary utility to interract with package management system.

$ dan-io --help 
Usage: dan-io [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  ls      Inspect stuff
  search  Search for NAME in repositories
$ dan-io ls --help
Usage: dan-io ls [OPTIONS] COMMAND [ARGS]...

  Inspect stuff

Options:
  --help  Show this message and exit.

Commands:
  libraries     List available libraries
  repositories  List available repositories
  versions      Get LIBRARY's available versions

Auto completion

bash and zsh completions are currently supported:

  • bash:

    for script in ~/.local/etc/bash_completion.d/*.sh; do
        source ${script}
    done
    
  • ksh:

    for script in ~/.local/etc/ksh_completion.d/*.sh; do
        source ${script}
    done
    

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dan-build-0.2.5.tar.gz (76.9 kB view details)

Uploaded Source

Built Distribution

dan_build-0.2.5-py3-none-any.whl (91.5 kB view details)

Uploaded Python 3

File details

Details for the file dan-build-0.2.5.tar.gz.

File metadata

  • Download URL: dan-build-0.2.5.tar.gz
  • Upload date:
  • Size: 76.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for dan-build-0.2.5.tar.gz
Algorithm Hash digest
SHA256 2df6e0de6b7b58b16ff77f526714568717c812d59761ac5ad670cbec94a2c6ab
MD5 fc76312fe593a0fa2941135f4b1912d7
BLAKE2b-256 a3eb3a7b4f563cff1abe2b13215cfbb640907eb4e8bf1b6dab518fda5d4440e5

See more details on using hashes here.

File details

Details for the file dan_build-0.2.5-py3-none-any.whl.

File metadata

  • Download URL: dan_build-0.2.5-py3-none-any.whl
  • Upload date:
  • Size: 91.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for dan_build-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 ad31a275c1efb4e640128ead89b6cc3abf20aa2ac02b4088c70fb87512e9dca1
MD5 b6ac7bc78d7da3a6d426ae8b5eeec2a7
BLAKE2b-256 f238a9ce8dcd979d4d14f9df42acd101bda6b173f1fbb34e4f22efab009308cc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page