#pkgsrc #infrastructure #performance #utility #utilities #fetch #mk

build mktool

General purpose utility to enhance pkgsrc/mk infrastructure

34 releases (13 stable)

new 1.4.1 Oct 21, 2024
1.3.6 Oct 20, 2024
1.2.0 Sep 20, 2024
0.1.21 Sep 10, 2024
0.1.20 Aug 29, 2024

#25 in Build Utils

Download history 493/week @ 2024-07-31 314/week @ 2024-08-07 215/week @ 2024-08-14 834/week @ 2024-08-21 284/week @ 2024-08-28 87/week @ 2024-09-04 454/week @ 2024-09-11 197/week @ 2024-09-18 156/week @ 2024-09-25 398/week @ 2024-10-02 524/week @ 2024-10-09 350/week @ 2024-10-16

1,451 downloads per month

ISC license

95KB
1.5K SLoC

mktool

This is a collection of utilities that provide alternate implementations for parts of the pkgsrc mk infrastructure.

Benchmarks

The main focus is on performance. Here are some real-world numbers showing improvements seen, compared to the baseline shell/awk implementations:

Script / Target Without mktool With mktool Speedup
check-portability 35s 1s 30x
check-shlibs 20s <1s 30x
checksum 10s 2s 5x
ctfconvert 40m 39s 5m 13s 8x
distinfo 3m 30s 2s 100x
fetch 47m 58s 5s 500x
wrapper 1m 41s 9s 11x

User Improvements

As well as superior performance, where possible mktool also aims to provide an improved user experience. For example the fetch replacement features a significantly better progress bar and streamlined output compared to other available fetch backends (see terminal recording).

Installation

The preferred method of installation is using cargo:

$ cargo install mktool

and adding the following to mk.conf:

FETCH_USING=            mktool
TOOLS_PLATFORM.mktool=  ${HOME}/.cargo/bin/mktool

However there is also a pkgtools/mktool package if you prefer to use that.

The necessary changes to pkgsrc were committed on 2024-10-11. If you are running a pkgsrc older than this date and still want to use mktool then you will have to apply this commit yourself manually.

Commands

These are the commands currently implemented:

Command Replaces
check-portability mk/check/check-portability.awk
check-shlibs mk/check/check-shlibs-*.awk
checksum mk/checksum/checksum.awk
ctfconvert mk/install/install.mk:install-ctf
digest pkgtools/digest
distinfo mk/checksum/distinfo.awk
fetch mk/fetch/fetch
symlinks pkgtools/mktools

All of the replacements are activated upon setting TOOLS_PLATFORM.mktool, with the exception of fetch which also requires FETCH_USING=mktool in case the user has specific requirements for their fetch program.

In addition, packages no longer have build dependencies on pkgtools/digest and pkgtools/mktools (unless specifically requested), which provides a reasonable boost to performance in bulk builds.

FAQ

Will This Ever Be Mandatory?

No. pkgsrc supports over 20 operating systems, and on NetBSD alone 16 different CPU architectures. I've spent over a decade as the primary advocate for portability in pkgsrc. Rust will never support all of those systems, so the default will always be the portable shell and awk scripts. I would be the first person to reject any move towards a non-portable pkgsrc.

What Is The Minimum Support Rust Version?

Currently 1.74.0.

The edition is set to 2021, so in theory I'd like to have 1.56.0 as the MSRV, but newer releases are currently required due to clap and tokio dependency requirements.

Dependencies

~17–31MB
~506K SLoC