mastodon.uno è uno dei tanti server Mastodon indipendenti che puoi usare per partecipare al fediverso.
Mastodon.Uno è la principale comunità mastodon italiana. Con 77.000 iscritti è il più grande nodo Mastodon italiano: anima ambientalista a supporto della privacy e del mondo Open Source.

Statistiche del server:

6,3K
utenti attivi

#build

7 post6 partecipanti0 post oggi

Announcing the new script-based build system

We began exploring options to improve the build system for all our projects that was first established around 2021, starting from the Nitrocid KS project. We had initialized the Nitrocid PPA packaging in 2020, then improved it quite a bit in 2021 with a new repository, which is archived now as part of our efforts in 2023 to make use of the Makefiles.

Since then, we’ve started increasing the consistency of our build system to the point that the Makefiles and the relevant build scripts have been introduced, with the latest changes being that we’ve finally introduced the tools submodule. This repository allows you to give your projects a build system powered by both the Batch scripts for Windows and the Bash scripts for Unix systems.

This repository is still not finished, yet, as we are trying to address remaining improvements to be put in place and to introduce a more extensive (and hopefully clear) documentation for using this submodule across many projects. Many Aptivi projects will use it to improve their build system and to save time writing long commands.

Using a single make command provided by an extensible standard Makefile template file (can be copied to each project individually) that will debut this August, we’ll be able to make this build system available to the public for every external project to use. For .NET projects, this Makefile will not interfere with the standard Visual Studio build process. As a reminder, Makefiles are not only for native projects written in C, but are also for all projects under all programming languages, even .NET and Node.js!

This build system is currently under development, but we are excited to announce that the final release of this build system will be released in the first half of August.

my #build #container framework:

sudo unshare \
  --fork \
  --mount \
  --uts \
  sh -c "
    mkdir -p $ROOTFS/proc
    mkdir -p $ROOTFS/sys
    mkdir -p $ROOTFS/dev
    mount -t sysfs /sys $ROOTFS/sys
    mount -t proc /proc $ROOTFS/proc
    mount --rbind /dev $ROOTFS/dev
    hostname $MACHINE
    su $USER
    export PUAVO_CACHE_PROXY=$PUAVO_CACHE_PROXY
    sudo unshare --root $ROOTFS $CMDLINE
  "

Nests nicely with #Docker and #Podman :-)