From b6334bb54909f7db42f18a6642af8463e9cbf6c1 Mon Sep 17 00:00:00 2001 From: Nathan Gill Date: Mon, 1 Jun 2026 23:58:27 +0100 Subject: [PATCH] chore: add license headers to source files --- build.rs | 3 +++ src/auth_sys.rs | 3 +++ src/comm.rs | 3 +++ src/event_loop.rs | 3 +++ src/font.rs | 3 +++ 5 files changed, 15 insertions(+) diff --git a/build.rs b/build.rs index e4d8088..6c30782 100644 --- a/build.rs +++ b/build.rs @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (C) 2026, Nathan Gill + use time::{OffsetDateTime, format_description::well_known::Iso8601}; /// build helper for generating version strings from environment diff --git a/src/auth_sys.rs b/src/auth_sys.rs index 6509e0f..24d2df4 100644 --- a/src/auth_sys.rs +++ b/src/auth_sys.rs @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (C) 2026, Nathan Gill + #[cfg(not(target_os = "openbsd"))] mod pam_backend { use std::{ diff --git a/src/comm.rs b/src/comm.rs index 4ae4afb..3db60a1 100644 --- a/src/comm.rs +++ b/src/comm.rs @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (C) 2026, Nathan Gill + use std::{ marker::PhantomData, os::fd::{AsFd, OwnedFd}, diff --git a/src/event_loop.rs b/src/event_loop.rs index 6c37a9b..7d0e7a2 100644 --- a/src/event_loop.rs +++ b/src/event_loop.rs @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (C) 2026, Nathan Gill + use std::{ os::fd::RawFd, time::{Duration, Instant}, diff --git a/src/font.rs b/src/font.rs index 1349356..a923b94 100644 --- a/src/font.rs +++ b/src/font.rs @@ -1,3 +1,6 @@ +// SPDX-License-Identifier: GPL-3.0-or-later +// Copyright (C) 2026, Nathan Gill + pub trait FontInfo { fn font_height(&self) -> f64; }