Skip to content

Commit 149ea28

Browse files
committed
license: add SPDX tag to all files
Add the SPDX tag to all files to make the project more CRA compliant. Signed-off-by: Daniel Wagner <wagi@kernel.org>
1 parent cd3c0b3 commit 149ea28

26 files changed

Lines changed: 130 additions & 0 deletions

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
---
2+
# SPDX-License-Identifier: GPL-2.0-only
3+
#
4+
# Copyright (C) 2026 SUSE LLC
5+
#
6+
# Author: Daniel Wagner <dwagner@suse.de>
7+
28
version: 2
39
updates:
410
- package-ecosystem: "github-actions"

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
---
2+
# SPDX-License-Identifier: GPL-2.0-only
3+
#
4+
# Copyright (C) 2026 SUSE LLC
5+
#
6+
# Author: Daniel Wagner <dwagner@suse.de>
7+
28
name: "Build"
39

410
on:

.github/workflows/registry.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
---
2+
# SPDX-License-Identifier: GPL-2.0-only
3+
#
4+
# Copyright (C) 2026 SUSE LLC
5+
#
6+
# Author: Daniel Wagner <dwagner@suse.de>
7+
28
name: "♻ Cleanup GHCR"
39

410
on:
File renamed without changes.

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# SPDX-License-Identifier: GPL-2.0-only
2+
#
3+
# Copyright (C) Red Hat, Inc. 2026
4+
#
5+
# Author: Michal Rábek <mrabek@redhat.com>
6+
17
DISTROS := debian fedora tumbleweed alpine
28
DOCKERFILES := $(addprefix main/Dockerfile.,$(DISTROS))
39
STAGING_DOCKERFILES := $(addprefix staging/Dockerfile.,$(DISTROS))

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
<!-- SPDX-License-Identifier: GPL-2.0-only -->
2+
<!-- Copyright (C) 2026 Daniel Wagner, SUSE LLC -->
3+
<!-- Author: Daniel Wagner <dwagner@suse.de> -->
4+
15
# ci-containers
26
The Linux NVMe tooling pre-build containers for continuous integration

build-all.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/bin/bash
2+
# SPDX-License-Identifier: GPL-2.0-only
3+
#
4+
# Copyright (C) 2026 Daniel Wagner, SUSE LLC
5+
#
6+
# Author: Daniel Wagner <dwagner@suse.de>
27

38
for dockerfile in main/Dockerfile.*; do
49
docker buildx build --platform linux/amd64 . -f "${dockerfile}"

ci-containers.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
---
2+
# SPDX-License-Identifier: GPL-2.0-only
3+
#
4+
# Copyright (C) 2026 Daniel Wagner, SUSE LLC
5+
#
6+
# Author: Daniel Wagner <dwagner@suse.de>
7+
18
base_images:
29
debian: "debian:trixie-slim"
310
fedora: "fedora:43"

generate.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: GPL-2.0-only
3+
#
4+
# Copyright (C) 2026 Daniel Wagner, SUSE LLC
5+
#
6+
# Author: Daniel Wagner <dwagner@suse.de>
27

38
import argparse
49
import sys

main/Dockerfile.alpine

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# SPDX-License-Identifier: GPL-2.0-only
2+
#
3+
# Copyright (C) 2026 Daniel Wagner, SUSE LLC
4+
#
5+
# Author: Daniel Wagner <dwagner@suse.de>
16
FROM alpine:latest
27

38
ARG TARGETPLATFORM

0 commit comments

Comments
 (0)