Skip to content

Commit

Permalink
treewide: Add SPDX identifier
Browse files Browse the repository at this point in the history
Add the SPDX identifer with the projects default license choice.

Signed-off-by: Daniel Wagner <[email protected]>
  • Loading branch information
igaw committed May 17, 2022
1 parent 41db8f7 commit 2ae2730
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions doc/list-man-pages.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/bash
# SPDX-License-Identifier: LGPL-2.1-or-later

file=$1

Expand Down
1 change: 1 addition & 0 deletions doc/update-docs.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sh
# SPDX-License-Identifier: LGPL-2.1-or-later

DESTDIR=$(pwd)

Expand Down
1 change: 1 addition & 0 deletions examples/discover-loop.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/python3
# SPDX-License-Identifier: Apache-2.0
'''
Example script for nvme discovery
Expand Down
1 change: 1 addition & 0 deletions libnvme/tests/create-ctrl-obj.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/usr/bin/env python3
# SPDX-License-Identifier: LGPL-2.1-or-later
import sys
import pprint
from libnvme import nvme
Expand Down
1 change: 1 addition & 0 deletions meson_options.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# -*- mode: meson -*-
# SPDX-License-Identifier: LGPL-2.1-or-later
option('version-tag', type : 'string', description : 'override the git version string')
option('pkgconfiglibdir', type : 'string', value : '', description : 'directory for standard pkg-config files')
option('htmldir', type : 'string', value : '', description : 'directory for HTML documentation')
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# SPDX-License-Identifier: LGPL-2.1-or-later
[build-system]
requires = ["mesonpep517", "wheel", "meson==0.61.2", "ninja"] # PEP 508 specifications.
build-backend = "mesonpep517.buildapi"
Expand Down
2 changes: 2 additions & 0 deletions src/libnvme.map
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: LGPL-2.1-or-later

LIBNVME_1_1 {
global:
nvme_get_version;
Expand Down
1 change: 1 addition & 0 deletions src/nvme/cleanup.c
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: LGPL-2.1-or-later
#include <stdlib.h>
#include "cleanup.h"

Expand Down
1 change: 1 addition & 0 deletions src/nvme/cleanup.h
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// SPDX-License-Identifier: LGPL-2.1-or-later
#ifndef __CLEANUP_H
#define __CLEANUP_H

Expand Down

0 comments on commit 2ae2730

Please sign in to comment.