Skip to content

Commit 2ae2730

Browse files
committed
treewide: Add SPDX identifier
Add the SPDX identifer with the projects default license choice. Signed-off-by: Daniel Wagner <[email protected]>
1 parent 41db8f7 commit 2ae2730

9 files changed

Lines changed: 10 additions & 0 deletions

File tree

doc/list-man-pages.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/bash
2+
# SPDX-License-Identifier: LGPL-2.1-or-later
23

34
file=$1
45

doc/update-docs.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/sh
2+
# SPDX-License-Identifier: LGPL-2.1-or-later
23

34
DESTDIR=$(pwd)
45

examples/discover-loop.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/python3
2+
# SPDX-License-Identifier: Apache-2.0
23
'''
34
Example script for nvme discovery
45

libnvme/tests/create-ctrl-obj.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env python3
2+
# SPDX-License-Identifier: LGPL-2.1-or-later
23
import sys
34
import pprint
45
from libnvme import nvme

meson_options.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- mode: meson -*-
2+
# SPDX-License-Identifier: LGPL-2.1-or-later
23
option('version-tag', type : 'string', description : 'override the git version string')
34
option('pkgconfiglibdir', type : 'string', value : '', description : 'directory for standard pkg-config files')
45
option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation')

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# SPDX-License-Identifier: LGPL-2.1-or-later
12
[build-system]
23
requires = ["mesonpep517", "wheel", "meson==0.61.2", "ninja"] # PEP 508 specifications.
34
build-backend = "mesonpep517.buildapi"

src/libnvme.map

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-License-Identifier: LGPL-2.1-or-later
2+
13
LIBNVME_1_1 {
24
global:
35
nvme_get_version;

src/nvme/cleanup.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: LGPL-2.1-or-later
12
#include <stdlib.h>
23
#include "cleanup.h"
34

src/nvme/cleanup.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// SPDX-License-Identifier: LGPL-2.1-or-later
12
#ifndef __CLEANUP_H
23
#define __CLEANUP_H
34

0 commit comments

Comments
 (0)