diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-05 08:49:51 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-05 08:49:51 -0500 |
| commit | ea17c58930816a309b3bd664def58fec1be239c5 (patch) | |
| tree | b917183458dfff605e848557d81936cfc9a2e801 | |
| parent | 9e399b5128e9464e4e8303eab8f8dad5886066d8 (diff) | |
chore: wip: python tooling to build PDFs out of Tex files.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | CITATION.cff | 7 | ||||
| -rw-r--r-- | draft/INDEX.md | 4 | ||||
| -rw-r--r-- | tools/build.py | 7 | ||||
| -rw-r--r-- | tools/build.sh | 2 |
4 files changed, 15 insertions, 5 deletions
diff --git a/CITATION.cff b/CITATION.cff index ef6a2f4..16539d6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,6 +1,6 @@ cff-version: 1.2.0 -title: C++ for Kernel Development -message: The NeKernel Paper. (WG01) +title: NeKernel Papers. (Kernel C++) +message: The NeKernel Papers. (WG01, and WG02) type: software authors: - given-names: Amlal @@ -13,8 +13,9 @@ identifiers: repository-code: 'https://github.com/nekernel-org/draft' url: 'https://nekernel.org' abstract: >- - This is The NeKernel Paper, from NeKernel.org WG01, authored by Amlal El Mahrouss. + This is The NeKernel Papers, from NeKernel.org Working Groups, authored by Amlal El Mahrouss. keywords: - kernel - cpp + - modern_cpp license: Apache-2.0 diff --git a/draft/INDEX.md b/draft/INDEX.md index 8f56772..e79a0b8 100644 --- a/draft/INDEX.md +++ b/draft/INDEX.md @@ -1,3 +1,7 @@ +# Introduction + +This file indexes the different working groups and their purpose. + ## Working Groups - WG01: Kernel Architecture Group. diff --git a/tools/build.py b/tools/build.py new file mode 100644 index 0000000..c80c695 --- /dev/null +++ b/tools/build.py @@ -0,0 +1,7 @@ +#! /usr/bin/env python3 +# -*- coding: utf-8 -*- + +import os, sys + +if __name__ == '__main__': + sys.exit(None)
\ No newline at end of file diff --git a/tools/build.sh b/tools/build.sh deleted file mode 100644 index 13f4793..0000000 --- a/tools/build.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh - |
