From c0a84efd1a322592d36b5dc9b38b414f03e487b7 Mon Sep 17 00:00:00 2001 From: Alexander Jung Date: Tue, 11 Jul 2023 21:25:56 +0000 Subject: [PATCH] Introduce `Library.uk` 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 Approved-by: Razvan Deaconescu Reviewed-by: Razvan Deaconescu GitHub-Closes: #37 --- Library.uk | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Library.uk diff --git a/Library.uk b/Library.uk new file mode 100644 index 0000000..507cdbd --- /dev/null +++ b/Library.uk @@ -0,0 +1,7 @@ +name := "lwip" +description := "A Lightweight TCP/IP stack." +homepage := "https://savannah.nongnu.org/projects/lwip/" +license := "BSD-3-Clause" +version := 2.1.x sha256:544d82aa663165dcecb6626b00035f6d7fe0b8d39d3eec63a8635be8aa8f5d62 https://github.com/unikraft/fork-lwip/archive/STABLE-2_1_x.tar.gz +version += 2.1.2 sha256:c6b10d0f5392d507f27a5a79bc43e706cb20df66bba86da56f557a53b68f2da8 https://github.com/unikraft/fork-lwip/archive/STABLE-2_1_2_RELEASE.tar.gz +version += 2.1.x-unikraft sha256:478d5aab535444de2f71debb212b1d1574be69f1f889fcb2becf251db62e87f2 https://github.com/unikraft/fork-lwip/archive/UNIKRAFT-2_1_x.tar.gz -- 2.39.5