Skip to content

Commit

Permalink
Introduce Library.uk
Browse files Browse the repository at this point in the history
This new file represents the first step towards proper versioning support of
external microlibrary in Unikraft.  The file itself acts as mechanism for
holding metadata-only values about the microlibrary.  This metadata is designed
to be compatible with GNU Make whilst simultaneously being human-readable and
readable by programs that are not GNU Make (e.g. tools such as KraftKit).

An important feature of this file is the inclusion of microlibrary versions.
In a later step, once relevant integrations have been made to Unikrat's core
build system and to relevant tools such as KraftKit, the user will be able to
see and select from different versions of the microlibrary.

In this initial commit, the relevant metadata is absorbed from both Makefile.uk,
Config.uk, but also includes new information such as SPDX License identifier.

Signed-off-by: Alexander Jung <alex@unikraft.io>
  • Loading branch information
nderjung committed Jul 11, 2023
1 parent 955df29 commit 2cb4c7d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Library.uk
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
name := "libfxdiv"
description := "A library for division via fixed-point multiplication by inverse."
gitrepo := "https://github.com/Maratyszcza/FXdiv.git"
website := "https://github.com/Maratyszcza/FXdiv/"
version := f8c5354 sha256:7d3215bea832fe77091ec5666200b91156df6724da1e348205078346325fc45e https://github.com/Maratyszcza/FXdiv/archive/f8c5354.tar.gz
license := "MIT"

0 comments on commit 2cb4c7d

Please sign in to comment.