From c4a2701d5fdce9c969886bb3c7d13aed9108fbe9 Mon Sep 17 00:00:00 2001
From: Amlal El Mahrouss
Date: Mon, 2 Mar 2026 15:07:39 +0100
Subject: chore: upstream fixes.
Signed-off-by: Amlal El Mahrouss
---
.github/workflows/nectar-dev.yml | 4 ++--
.github/workflows/nectar.yml | 2 +-
.kdev4/nectar.kdev4 | 10 +++++-----
CITATION.cff | 2 +-
README.md | 6 +++---
include/CompilerKit/AE.h | 2 +-
include/CompilerKit/AST.h | 2 +-
include/CompilerKit/AST.inl | 2 +-
include/CompilerKit/CodeGenerator.h | 2 +-
include/CompilerKit/Detail/32x0.h | 2 +-
include/CompilerKit/Detail/64x0.h | 2 +-
include/CompilerKit/Detail/AMD64.h | 2 +-
include/CompilerKit/Detail/Aarch64.h | 2 +-
include/CompilerKit/Detail/Config.h | 2 +-
include/CompilerKit/Detail/PreConfig.h | 2 +-
include/CompilerKit/ErrorID.h | 2 +-
include/CompilerKit/ErrorOr.h | 2 +-
include/CompilerKit/MachO.h | 2 +-
include/CompilerKit/Macros.h | 2 +-
include/CompilerKit/PEF.h | 2 +-
include/CompilerKit/Ref.h | 2 +-
include/CompilerKit/Utilities/Assembler.h | 2 +-
include/CompilerKit/Utilities/Compiler.h | 2 +-
include/CompilerKit/Utilities/DLL.h | 2 +-
include/DebuggerKit/Common.inl | 2 +-
include/DebuggerKit/DebuggerContract.h | 2 +-
include/DebuggerKit/Detail/Config.h | 2 +-
include/DebuggerKit/MachContract.h | 2 +-
include/DebuggerKit/NeKernelContract.h | 2 +-
include/GenericsLibrary/algorithm.nhh | 2 +-
include/GenericsLibrary/fstream.nhh | 2 +-
include/GenericsLibrary/io.nhh | 2 +-
include/GenericsLibrary/iterator.nhh | 2 +-
include/GenericsLibrary/math.nhh | 2 +-
include/GenericsLibrary/nrt.nc | 2 +-
include/GenericsLibrary/pstd.nhh | 2 +-
include/GenericsLibrary/swap.nhh | 2 +-
src/CommandLine/cppdrv.cpp | 2 +-
src/CommandLine/dbg.cpp | 2 +-
src/CommandLine/kdbg.cpp | 2 +-
src/CommandLine/ld64.cpp | 2 +-
src/CommandLine/mld64.cpp | 2 +-
src/CommandLine/pef-amd64-asm.cpp | 2 +-
src/CommandLine/pef-amd64-drv.cpp | 2 +-
src/CompilerKit/src/Assemblers/Assembler+32x0.cpp | 2 +-
src/CompilerKit/src/Assemblers/Assembler+64x0.cpp | 2 +-
src/CompilerKit/src/Assemblers/Assembler+AMD64.cpp | 2 +-
src/CompilerKit/src/Assemblers/Assembler+ARM64.cpp | 2 +-
src/CompilerKit/src/Assemblers/Assembler+PowerPC.cpp | 2 +-
src/CompilerKit/src/CodeGenerator+AssemblyFactory.cpp | 2 +-
src/CompilerKit/src/Compilers/NectarCompiler+AMD64.cpp | 2 +-
src/CompilerKit/src/Linkers/DynamicLinker64+MachO.cpp | 2 +-
src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cpp | 2 +-
src/CompilerKit/src/Preprocessors/Preprocessor+Generic.cpp | 2 +-
src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cc | 2 +-
src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cc | 2 +-
src/DebuggerKit/src/MachContract.cpp | 2 +-
src/DebuggerKit/src/MachContractCLI.cpp | 2 +-
src/DebuggerKit/src/NeKernelContract.cpp | 2 +-
src/DebuggerKit/src/NeKernelContractCLI.cpp | 2 +-
test/test_01_codegen/codegen.test.cc | 2 +-
test/test_02_linker/linker.test.cc | 2 +-
62 files changed, 69 insertions(+), 69 deletions(-)
diff --git a/.github/workflows/nectar-dev.yml b/.github/workflows/nectar-dev.yml
index 16bbe02..9ddb47e 100644
--- a/.github/workflows/nectar-dev.yml
+++ b/.github/workflows/nectar-dev.yml
@@ -14,9 +14,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Attempt NeBuild
- run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o sanity-test
+ run: sudo curl https://github.com/ne-foss-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o sanity-test
- name: Build CompilerKit and DebuggerKit
- run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install build-essential && sudo apt install libboost-dev &&
+ run: sudo curl https://github.com/ne-foss-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install build-essential && sudo apt install libboost-dev &&
cd src/CompilerKit && nebuild ck-posix.json &&
cd ../DebuggerKit && nebuild dk-posix.json
diff --git a/.github/workflows/nectar.yml b/.github/workflows/nectar.yml
index 2f395f2..a545122 100644
--- a/.github/workflows/nectar.yml
+++ b/.github/workflows/nectar.yml
@@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build CI
- run: sudo curl https://github.com/nekernel-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install build-essential && sudo apt install libboost-dev &&
+ run: sudo curl https://github.com/ne-foss-org/nebuild/releases/download/v0.0.6-apple-m1/nebuild-debian -o /bin/nebuild && sudo chmod +x /bin/nebuild && sudo apt update && sudo apt install build-essential && sudo apt install libboost-dev &&
cd src/CompilerKit && nebuild ck-posix.json &&
cd ../DebuggerKit && nebuild dk-posix.json
diff --git a/.kdev4/nectar.kdev4 b/.kdev4/nectar.kdev4
index 75e74c2..57cb299 100644
--- a/.kdev4/nectar.kdev4
+++ b/.kdev4/nectar.kdev4
@@ -13,10 +13,10 @@ parserArgumentsOpenCL=-ferror-limit=100 -fspell-checking -Wdocumentation -Wunuse
Name=Clang
[CustomDefinesAndIncludes][ProjectPath0][Includes]
-1=/home/amlal/nekernel-org/nectar/include/
-2=/home/amlal/nekernel-org/nectar/include/CompilerKit/
-3=/home/amlal/nekernel-org/nectar/include/DebuggerKit/
-4=/home/amlal/nekernel-org/nectar/include/CompilerKit/Detail/
+1=/home/amlal/ne-foss-org/nectar/include/
+2=/home/amlal/ne-foss-org/nectar/include/CompilerKit/
+3=/home/amlal/ne-foss-org/nectar/include/DebuggerKit/
+4=/home/amlal/ne-foss-org/nectar/include/CompilerKit/Detail/
[Launch]
Launch Configurations=Launch Configuration 0
@@ -37,7 +37,7 @@ External Terminal=konsole --noclose --workdir %workdir -e %exe
Kill Before Executing Again=4194304
Project Target=
Use External Terminal=false
-Working Directory=file:///home/amlal/nekernel-org/nectar/src/CompilerKit
+Working Directory=file:///home/amlal/ne-foss-org/nectar/src/CompilerKit
isExecutable=true
[Project]
diff --git a/CITATION.cff b/CITATION.cff
index 5b4875b..d880544 100644
--- a/CITATION.cff
+++ b/CITATION.cff
@@ -10,7 +10,7 @@ identifiers:
- type: url
value: 'https://nekernel.org'
description: NeKernel.org
-repository-code: 'https://github.com/nekernel-org/nectar'
+repository-code: 'https://github.com/ne-foss-org/nectar'
url: 'https://nekernel.org'
abstract: >-
This is NeKernel.org's Operating System toolchain, authored
diff --git a/README.md b/README.md
index d3fcbe4..31a036c 100644
--- a/README.md
+++ b/README.md
@@ -9,7 +9,7 @@
-
+
## Community:
@@ -31,7 +31,7 @@ Join us in our [Discord](https://discord.gg/uD76Qweght), we're quite active and
- [Clang](https://clang.llvm.org/)
- [Git](https://git-scm.com/)
- [Boost](https://boost.org/) (1.90.0+)
-- [NeBuild](https://github.com/nekernel-org/nebuild)
+- [NeBuild](https://github.com/ne-foss-org/nebuild)
- [Doxygen](https://www.doxygen.nl/)
- GNU CoreUtils
- [Git](https://git-scm.com/)
@@ -61,7 +61,7 @@ And build the source tree using the NeBuild system.
### Authors & Credits
- **Amlal El Mahrouss** — Lead Developer and Compiler Architect.
-- [Full contributor list](https://github.com/nekernel-org/nectar/graphs/contributors)
+- [Full contributor list](https://github.com/ne-foss-org/nectar/graphs/contributors)
---
diff --git a/include/CompilerKit/AE.h b/include/CompilerKit/AE.h
index 38e4dcc..c54c572 100644
--- a/include/CompilerKit/AE.h
+++ b/include/CompilerKit/AE.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_AE_H
#define NECTAR_COMPILERKIT_AE_H
diff --git a/include/CompilerKit/AST.h b/include/CompilerKit/AST.h
index 537d7a5..20389c3 100644
--- a/include/CompilerKit/AST.h
+++ b/include/CompilerKit/AST.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_AST_H
#define NECTAR_COMPILERKIT_AST_H
diff --git a/include/CompilerKit/AST.inl b/include/CompilerKit/AST.inl
index 3d386f6..eaa65b3 100644
--- a/include/CompilerKit/AST.inl
+++ b/include/CompilerKit/AST.inl
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_AST_INL
#define NECTAR_COMPILERKIT_AST_INL
diff --git a/include/CompilerKit/CodeGenerator.h b/include/CompilerKit/CodeGenerator.h
index c19e978..f2cbe9d 100644
--- a/include/CompilerKit/CodeGenerator.h
+++ b/include/CompilerKit/CodeGenerator.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_CODEGENERATOR_H
#define NECTAR_COMPILERKIT_CODEGENERATOR_H
diff --git a/include/CompilerKit/Detail/32x0.h b/include/CompilerKit/Detail/32x0.h
index 2ac0b78..f8851bc 100644
--- a/include/CompilerKit/Detail/32x0.h
+++ b/include/CompilerKit/Detail/32x0.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_DETAIL_32X0_H
#define NECTAR_COMPILERKIT_DETAIL_32X0_H
diff --git a/include/CompilerKit/Detail/64x0.h b/include/CompilerKit/Detail/64x0.h
index 6619983..01d3340 100644
--- a/include/CompilerKit/Detail/64x0.h
+++ b/include/CompilerKit/Detail/64x0.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_DETAIL_64X0_H
#define NECTAR_COMPILERKIT_DETAIL_64X0_H
diff --git a/include/CompilerKit/Detail/AMD64.h b/include/CompilerKit/Detail/AMD64.h
index 449ebd1..5933805 100644
--- a/include/CompilerKit/Detail/AMD64.h
+++ b/include/CompilerKit/Detail/AMD64.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_DETAIL_AMD64_H
#define NECTAR_COMPILERKIT_DETAIL_AMD64_H
diff --git a/include/CompilerKit/Detail/Aarch64.h b/include/CompilerKit/Detail/Aarch64.h
index 3b76b64..2a9586b 100644
--- a/include/CompilerKit/Detail/Aarch64.h
+++ b/include/CompilerKit/Detail/Aarch64.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_DETAIL_AARCH64_H
#define NECTAR_COMPILERKIT_DETAIL_AARCH64_H
diff --git a/include/CompilerKit/Detail/Config.h b/include/CompilerKit/Detail/Config.h
index 3ab2c04..eeb653d 100644
--- a/include/CompilerKit/Detail/Config.h
+++ b/include/CompilerKit/Detail/Config.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef __COMPILERKIT_CONFIG_H__
#define __COMPILERKIT_CONFIG_H__
diff --git a/include/CompilerKit/Detail/PreConfig.h b/include/CompilerKit/Detail/PreConfig.h
index d7ea4c6..9294c01 100644
--- a/include/CompilerKit/Detail/PreConfig.h
+++ b/include/CompilerKit/Detail/PreConfig.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef COMPILERKIT_CONFIG_PRECONFIG_H
#define COMPILERKIT_CONFIG_PRECONFIG_H
diff --git a/include/CompilerKit/ErrorID.h b/include/CompilerKit/ErrorID.h
index 3361c32..67beee7 100644
--- a/include/CompilerKit/ErrorID.h
+++ b/include/CompilerKit/ErrorID.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_ERRORID_H
#define NECTAR_COMPILERKIT_ERRORID_H
diff --git a/include/CompilerKit/ErrorOr.h b/include/CompilerKit/ErrorOr.h
index d71d93e..ddd4a8e 100644
--- a/include/CompilerKit/ErrorOr.h
+++ b/include/CompilerKit/ErrorOr.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_ERROROR_H
#define NECTAR_COMPILERKIT_ERROROR_H
diff --git a/include/CompilerKit/MachO.h b/include/CompilerKit/MachO.h
index fd5b833..8c203e0 100644
--- a/include/CompilerKit/MachO.h
+++ b/include/CompilerKit/MachO.h
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef _NECTAR_MACHO_H_
#define _NECTAR_MACHO_H_
diff --git a/include/CompilerKit/Macros.h b/include/CompilerKit/Macros.h
index bf85c60..53c17e5 100644
--- a/include/CompilerKit/Macros.h
+++ b/include/CompilerKit/Macros.h
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @brief provide support for the CK headers.
diff --git a/include/CompilerKit/PEF.h b/include/CompilerKit/PEF.h
index f7b88b9..875f925 100644
--- a/include/CompilerKit/PEF.h
+++ b/include/CompilerKit/PEF.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_PEF_H
#define NECTAR_COMPILERKIT_PEF_H
diff --git a/include/CompilerKit/Ref.h b/include/CompilerKit/Ref.h
index 7ccf040..8e4afd3 100644
--- a/include/CompilerKit/Ref.h
+++ b/include/CompilerKit/Ref.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_REF_H
#define NECTAR_COMPILERKIT_REF_H
diff --git a/include/CompilerKit/Utilities/Assembler.h b/include/CompilerKit/Utilities/Assembler.h
index 9f81dcf..8e5821a 100644
--- a/include/CompilerKit/Utilities/Assembler.h
+++ b/include/CompilerKit/Utilities/Assembler.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_UTILITIES_ASSEMBLER_H
#define NECTAR_COMPILERKIT_UTILITIES_ASSEMBLER_H
diff --git a/include/CompilerKit/Utilities/Compiler.h b/include/CompilerKit/Utilities/Compiler.h
index 42fc977..5d4c6d9 100644
--- a/include/CompilerKit/Utilities/Compiler.h
+++ b/include/CompilerKit/Utilities/Compiler.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_UTILITIES_COMPILER_H
#define NECTAR_COMPILERKIT_UTILITIES_COMPILER_H
diff --git a/include/CompilerKit/Utilities/DLL.h b/include/CompilerKit/Utilities/DLL.h
index 36c511a..461661a 100644
--- a/include/CompilerKit/Utilities/DLL.h
+++ b/include/CompilerKit/Utilities/DLL.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_COMPILERKIT_UTILITIES_DLL_H
#define NECTAR_COMPILERKIT_UTILITIES_DLL_H
diff --git a/include/DebuggerKit/Common.inl b/include/DebuggerKit/Common.inl
index de83015..7e3ca89 100644
--- a/include/DebuggerKit/Common.inl
+++ b/include/DebuggerKit/Common.inl
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#define kBlank "\e[0;30m"
#define kRed "\e[0;31m"
diff --git a/include/DebuggerKit/DebuggerContract.h b/include/DebuggerKit/DebuggerContract.h
index 971c80a..350fe59 100644
--- a/include/DebuggerKit/DebuggerContract.h
+++ b/include/DebuggerKit/DebuggerContract.h
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_DEBUGGERKIT_DEBUGGERCONTRACT_H
#define NECTAR_DEBUGGERKIT_DEBUGGERCONTRACT_H
diff --git a/include/DebuggerKit/Detail/Config.h b/include/DebuggerKit/Detail/Config.h
index f5c1be8..c39d742 100644
--- a/include/DebuggerKit/Detail/Config.h
+++ b/include/DebuggerKit/Detail/Config.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_DEBUGGERKIT_DETAIL_CONFIG_H
#define NECTAR_DEBUGGERKIT_DETAIL_CONFIG_H
diff --git a/include/DebuggerKit/MachContract.h b/include/DebuggerKit/MachContract.h
index 5ea201f..bd62007 100644
--- a/include/DebuggerKit/MachContract.h
+++ b/include/DebuggerKit/MachContract.h
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_DEBUGGERKIT_POSIXMACHCONTRACT_H
#define NECTAR_DEBUGGERKIT_POSIXMACHCONTRACT_H
diff --git a/include/DebuggerKit/NeKernelContract.h b/include/DebuggerKit/NeKernelContract.h
index 7b8df64..b7bd8d0 100644
--- a/include/DebuggerKit/NeKernelContract.h
+++ b/include/DebuggerKit/NeKernelContract.h
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef DK_NEKERNEL_CONTRACT_H
#define DK_NEKERNEL_CONTRACT_H
diff --git a/include/GenericsLibrary/algorithm.nhh b/include/GenericsLibrary/algorithm.nhh
index b62faa1..6fa528b 100644
--- a/include/GenericsLibrary/algorithm.nhh
+++ b/include/GenericsLibrary/algorithm.nhh
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_GL_ALGORITHM_NHH
#define NECTAR_GL_ALGORITHM_NHH
diff --git a/include/GenericsLibrary/fstream.nhh b/include/GenericsLibrary/fstream.nhh
index 5c6b0d4..ca52b2c 100644
--- a/include/GenericsLibrary/fstream.nhh
+++ b/include/GenericsLibrary/fstream.nhh
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_GL_FSTREAM_NHH
#define NECTAR_GL_FSTREAM_NHH
diff --git a/include/GenericsLibrary/io.nhh b/include/GenericsLibrary/io.nhh
index dba40b1..2471bb0 100644
--- a/include/GenericsLibrary/io.nhh
+++ b/include/GenericsLibrary/io.nhh
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_GL_IO_NHH
#define NECTAR_GL_IO_NHH
diff --git a/include/GenericsLibrary/iterator.nhh b/include/GenericsLibrary/iterator.nhh
index 8ff18ff..c7b09c6 100644
--- a/include/GenericsLibrary/iterator.nhh
+++ b/include/GenericsLibrary/iterator.nhh
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_GL_ITERATOR_NHH
#define NECTAR_GL_ITERATOR_NHH
diff --git a/include/GenericsLibrary/math.nhh b/include/GenericsLibrary/math.nhh
index c9b66a9..a820b9b 100644
--- a/include/GenericsLibrary/math.nhh
+++ b/include/GenericsLibrary/math.nhh
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_GL_FUNCTIONS_NHH
#define NECTAR_GL_FUNCTIONS_NHH
diff --git a/include/GenericsLibrary/nrt.nc b/include/GenericsLibrary/nrt.nc
index 9d0c640..053ce60 100644
--- a/include/GenericsLibrary/nrt.nc
+++ b/include/GenericsLibrary/nrt.nc
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
extern main;
diff --git a/include/GenericsLibrary/pstd.nhh b/include/GenericsLibrary/pstd.nhh
index fd0b196..e089746 100644
--- a/include/GenericsLibrary/pstd.nhh
+++ b/include/GenericsLibrary/pstd.nhh
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#pragma once
diff --git a/include/GenericsLibrary/swap.nhh b/include/GenericsLibrary/swap.nhh
index 7090535..01d24da 100644
--- a/include/GenericsLibrary/swap.nhh
+++ b/include/GenericsLibrary/swap.nhh
@@ -1,7 +1,7 @@
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifndef NECTAR_GL_SWAP_NHH
#define NECTAR_GL_SWAP_NHH
diff --git a/src/CommandLine/cppdrv.cpp b/src/CommandLine/cppdrv.cpp
index 6977923..5ca30a2 100644
--- a/src/CommandLine/cppdrv.cpp
+++ b/src/CommandLine/cppdrv.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @file cppdrv.cc
/// @brief Nectar frontend preprocessor.
diff --git a/src/CommandLine/dbg.cpp b/src/CommandLine/dbg.cpp
index c5e5797..3d6ea05 100644
--- a/src/CommandLine/dbg.cpp
+++ b/src/CommandLine/dbg.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#include
diff --git a/src/CommandLine/kdbg.cpp b/src/CommandLine/kdbg.cpp
index 2456947..c0f7407 100644
--- a/src/CommandLine/kdbg.cpp
+++ b/src/CommandLine/kdbg.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#include
diff --git a/src/CommandLine/ld64.cpp b/src/CommandLine/ld64.cpp
index b438315..a7186c2 100644
--- a/src/CommandLine/ld64.cpp
+++ b/src/CommandLine/ld64.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#include
diff --git a/src/CommandLine/mld64.cpp b/src/CommandLine/mld64.cpp
index 32fc0ba..5ad448b 100644
--- a/src/CommandLine/mld64.cpp
+++ b/src/CommandLine/mld64.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#include
diff --git a/src/CommandLine/pef-amd64-asm.cpp b/src/CommandLine/pef-amd64-asm.cpp
index 77ca000..2564f7c 100644
--- a/src/CommandLine/pef-amd64-asm.cpp
+++ b/src/CommandLine/pef-amd64-asm.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @file pef-amd64-asm.cc
/// @brief Nectar C++ frontend compiler for AMD64.
diff --git a/src/CommandLine/pef-amd64-drv.cpp b/src/CommandLine/pef-amd64-drv.cpp
index 0f919b4..aaec55a 100644
--- a/src/CommandLine/pef-amd64-drv.cpp
+++ b/src/CommandLine/pef-amd64-drv.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @file pef-amd64-cxxdrv.cc
/// @brief Nectar C++ frontend compiler for AMD64.
diff --git a/src/CompilerKit/src/Assemblers/Assembler+32x0.cpp b/src/CompilerKit/src/Assemblers/Assembler+32x0.cpp
index 787c685..a2eb191 100644
--- a/src/CompilerKit/src/Assemblers/Assembler+32x0.cpp
+++ b/src/CompilerKit/src/Assemblers/Assembler+32x0.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// bugs: 0
diff --git a/src/CompilerKit/src/Assemblers/Assembler+64x0.cpp b/src/CompilerKit/src/Assemblers/Assembler+64x0.cpp
index a54d0be..41b123a 100644
--- a/src/CompilerKit/src/Assemblers/Assembler+64x0.cpp
+++ b/src/CompilerKit/src/Assemblers/Assembler+64x0.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// bugs: 0
diff --git a/src/CompilerKit/src/Assemblers/Assembler+AMD64.cpp b/src/CompilerKit/src/Assemblers/Assembler+AMD64.cpp
index 53ceaec..37867ac 100644
--- a/src/CompilerKit/src/Assemblers/Assembler+AMD64.cpp
+++ b/src/CompilerKit/src/Assemblers/Assembler+AMD64.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/CompilerKit/src/Assemblers/Assembler+ARM64.cpp b/src/CompilerKit/src/Assemblers/Assembler+ARM64.cpp
index d4b2904..0017af0 100644
--- a/src/CompilerKit/src/Assemblers/Assembler+ARM64.cpp
+++ b/src/CompilerKit/src/Assemblers/Assembler+ARM64.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cpp b/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cpp
index bf16842..ced2cf2 100644
--- a/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cpp
+++ b/src/CompilerKit/src/Assemblers/Assembler+PowerPC.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/////////////////////////////////////////////////////////////////////////////////////////
diff --git a/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cpp b/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cpp
index 9a54142..2c5fde8 100644
--- a/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cpp
+++ b/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#include
diff --git a/src/CompilerKit/src/Compilers/NectarCompiler+AMD64.cpp b/src/CompilerKit/src/Compilers/NectarCompiler+AMD64.cpp
index 8c62239..a0b03d0 100644
--- a/src/CompilerKit/src/Compilers/NectarCompiler+AMD64.cpp
+++ b/src/CompilerKit/src/Compilers/NectarCompiler+AMD64.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// BUGS: 0
diff --git a/src/CompilerKit/src/Linkers/DynamicLinker64+MachO.cpp b/src/CompilerKit/src/Linkers/DynamicLinker64+MachO.cpp
index 0187924..a80ec40 100644
--- a/src/CompilerKit/src/Linkers/DynamicLinker64+MachO.cpp
+++ b/src/CompilerKit/src/Linkers/DynamicLinker64+MachO.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @author Amlal El Mahrouss (amlal@nekernel.org)
/// @brief NeKernel.org 64-bit Mach-O Linker.
diff --git a/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cpp b/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cpp
index 19ffc97..476c7f7 100644
--- a/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cpp
+++ b/src/CompilerKit/src/Linkers/DynamicLinker64+PEF.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @author Amlal El Mahrouss (amlal@nekernel.org)
/// @brief NeKernel.org 64-bit PEF Linker.
diff --git a/src/CompilerKit/src/Preprocessors/Preprocessor+Generic.cpp b/src/CompilerKit/src/Preprocessors/Preprocessor+Generic.cpp
index fd7cd74..49c2145 100644
--- a/src/CompilerKit/src/Preprocessors/Preprocessor+Generic.cpp
+++ b/src/CompilerKit/src/Preprocessors/Preprocessor+Generic.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// BUGS: 0
diff --git a/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cc b/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cc
index 9626873..f73d6fd 100644
--- a/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cc
+++ b/src/CompilerKit/test/Linkers/DynamicLinker64+MachO.test.cc
@@ -1,7 +1,7 @@
// Copyright 2025-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @author Amlal El Mahrouss
diff --git a/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cc b/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cc
index 3198988..6c4d061 100644
--- a/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cc
+++ b/src/CompilerKit/test/Linkers/DynamicLinker64+PEF.test.cc
@@ -1,7 +1,7 @@
// Copyright 2025-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @author Amlal El Mahrouss
diff --git a/src/DebuggerKit/src/MachContract.cpp b/src/DebuggerKit/src/MachContract.cpp
index 53553ac..b8163a0 100644
--- a/src/DebuggerKit/src/MachContract.cpp
+++ b/src/DebuggerKit/src/MachContract.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifdef DK_MACH_DEBUGGER
diff --git a/src/DebuggerKit/src/MachContractCLI.cpp b/src/DebuggerKit/src/MachContractCLI.cpp
index 63c5470..a13a980 100644
--- a/src/DebuggerKit/src/MachContractCLI.cpp
+++ b/src/DebuggerKit/src/MachContractCLI.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifdef DK_MACH_DEBUGGER
diff --git a/src/DebuggerKit/src/NeKernelContract.cpp b/src/DebuggerKit/src/NeKernelContract.cpp
index f662401..614c043 100644
--- a/src/DebuggerKit/src/NeKernelContract.cpp
+++ b/src/DebuggerKit/src/NeKernelContract.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifdef DK_NEKERNEL_DEBUGGER
diff --git a/src/DebuggerKit/src/NeKernelContractCLI.cpp b/src/DebuggerKit/src/NeKernelContractCLI.cpp
index b5e07a2..c48ee14 100644
--- a/src/DebuggerKit/src/NeKernelContractCLI.cpp
+++ b/src/DebuggerKit/src/NeKernelContractCLI.cpp
@@ -1,7 +1,7 @@
// Copyright 2024-2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
#ifdef DK_NEKERNEL_DEBUGGER
diff --git a/test/test_01_codegen/codegen.test.cc b/test/test_01_codegen/codegen.test.cc
index b347d6d..10d1f95 100644
--- a/test/test_01_codegen/codegen.test.cc
+++ b/test/test_01_codegen/codegen.test.cc
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @brief Codegen Unit test, from the C++ unit to the final executable.
/// @author Amlal El Mahrouss
diff --git a/test/test_02_linker/linker.test.cc b/test/test_02_linker/linker.test.cc
index b105797..bade75b 100644
--- a/test/test_02_linker/linker.test.cc
+++ b/test/test_02_linker/linker.test.cc
@@ -1,7 +1,7 @@
// Copyright 2024-2025, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
-// Official repository: https://github.com/nekernel-org/nectar
+// Official repository: https://github.com/ne-foss-org/nectar
/// @brief Linker Unit test, from the C++ unit to the final executable.
/// @author Amlal El Mahrouss
--
cgit v1.2.3