Skip to content

Commit ca1eb61

Browse files
authored
ENH: add REUSE compliance
PR #283
1 parent 3668253 commit ca1eb61

File tree

130 files changed

+524
-10
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+524
-10
lines changed

.cirrus.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
test_template: &test
26
test_script:
37
- command -v python3

.github/workflows/docs.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
name: docs
26

37
on:

.github/workflows/tests.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
name: tests
26

37
on:

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
.mesonpy-native-file.ini
26
.mesonpy/
37
docs/_build

.pre-commit-config.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
ci:
26
autofix_prs: false
37
autoupdate_commit_msg: 'MAINT: bump repositories'
@@ -25,3 +29,12 @@ repos:
2529
hooks:
2630
- id: ruff
2731
args: [--fix, --format, grouped]
32+
- repo: https://github.com/fsfe/reuse-tool
33+
rev: v1.1.0
34+
hooks:
35+
- id: reuse
36+
name: add SPDX headers
37+
args: [annotate, --skip-existing, --skip-unrecognised, --copyright=The meson-python developers, --license=MIT]
38+
pass_filenames: true
39+
- id: reuse
40+
name: reuse lint

.readthedocs.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
version: 2
26

37
python:

CHANGELOG.rst

+4

LICENSES/MIT.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright © 2022 the meson-python contributors
2+
Copyright © 2021 Quansight Labs and Filipe Laíns
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a
5+
copy of this software and associated documentation files (the "Software"),
6+
to deal in the Software without restriction, including without limitation
7+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
8+
and/or sell copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice (including the next
12+
paragraph) shall be included in all copies or substantial portions of the
13+
Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21+
DEALINGS IN THE SOFTWARE.

README.md

+6

ci/alpine-3.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221203
26
FROM alpine:3
37
RUN apk add --no-cache python3-dev py3-pip build-base ninja git patchelf

ci/archlinux.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221203
26
FROM archlinux:latest
37
RUN pacman -Sy && pacman -S --noconfirm python python-pip gcc ninja git patchelf

ci/debian-11.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221203
26
FROM debian:bullseye
37
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv && rm -rf /var/lib/apt/lists/*

ci/debian-unstable.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221203
26
FROM debian:unstable
37
RUN apt-get update && apt-get install -y git ninja-build patchelf python3-pip python3-venv && rm -rf /var/lib/apt/lists/*

ci/fedora-37.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221203
26
FROM fedora:37
37
RUN dnf -y update && dnf -y install python3-devel python3-pip gcc ninja-build git patchelf && dnf clean all

ci/manylinux.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221209
26
FROM quay.io/pypa/manylinux_2_28_x86_64
37
RUN dnf -y update && dnf -y install ninja-build && dnf clean all

ci/miniconda.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221203
26
FROM continuumio/miniconda3
37
RUN apt-get update && apt-get install -y gcc ninja-build git patchelf && rm -rf /var/lib/apt/lists/*

ci/opensuse-15.docker

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# 20221203
26
FROM opensuse/leap:latest
37
RUN zypper --non-interactive install python310 python310-pip python310-devel gcc ninja git patchelf && zypper clean --all && ln -s python3.10 /usr/bin/python3

codecov.yml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
comment: false
26
coverage:
37
status:

docs/conf.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
# Configuration file for the Sphinx documentation builder.
26
#
37
# This file only contains a selection of the most common options. For a full

docs/examples/spam/meson.build

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
project(
26
'spam',
37
'c',

docs/examples/spam/pyproject.toml

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
[build-system]
26
requires = [
37
"meson-python",

docs/examples/spam/src/__init__.py

+4
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
from ._spam import add # noqa: F401

docs/examples/spam/src/spammodule.c

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// SPDX-FileCopyrightText: 2022 The meson-python developers
2+
//
3+
// SPDX-License-Identifier: MIT
4+
15
#define PY_SSIZE_T_CLEAN
26
#include <Python.h>
37

docs/index.rst

+4

docs/usage/build-options.rst

+4

docs/usage/specific-behaviors.rst

+4

docs/usage/start.rst

+4

meson.build

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
project('meson-python', version: '0.13.0.dev1')
26

37
py_mod = import('python')

mesonpy/__init__.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# SPDX-License-Identifier: MIT
2-
# SPDX-FileCopyrightText: 2021 Quansight, LLC
31
# SPDX-FileCopyrightText: 2021 Filipe Laíns <[email protected]>
4-
2+
# SPDX-FileCopyrightText: 2021 Quansight, LLC
3+
# SPDX-FileCopyrightText: 2022 The meson-python developers
4+
#
5+
# SPDX-License-Identifier: MIT
56

67
"""Meson Python build backend
78

mesonpy/_compat.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# SPDX-License-Identifier: MIT
2-
# SPDX-FileCopyrightText: 2021 Quansight, LLC
31
# SPDX-FileCopyrightText: 2021 Filipe Laíns <[email protected]>
2+
# SPDX-FileCopyrightText: 2021 Quansight, LLC
3+
# SPDX-FileCopyrightText: 2022 The meson-python developers
4+
#
5+
# SPDX-License-Identifier: MIT
46

57
from __future__ import annotations
68

mesonpy/_editable.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
import functools
26
import importlib.abc
37
import os

mesonpy/_elf.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# SPDX-License-Identifier: MIT
2-
# SPDX-FileCopyrightText: 2021 Quansight, LLC
31
# SPDX-FileCopyrightText: 2021 Filipe Laíns <[email protected]>
2+
# SPDX-FileCopyrightText: 2021 Quansight, LLC
3+
# SPDX-FileCopyrightText: 2022 The meson-python developers
4+
#
5+
# SPDX-License-Identifier: MIT
46

57
from __future__ import annotations
68

mesonpy/_introspection.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
13
# SPDX-License-Identifier: MIT
24

35
from __future__ import annotations

mesonpy/_tags.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
13
# SPDX-License-Identifier: MIT
24

35
from __future__ import annotations

mesonpy/_util.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
# SPDX-License-Identifier: MIT
2-
# SPDX-FileCopyrightText: 2021 Quansight, LLC
31
# SPDX-FileCopyrightText: 2021 Filipe Laíns <[email protected]>
2+
# SPDX-FileCopyrightText: 2021 Quansight, LLC
3+
# SPDX-FileCopyrightText: 2022 The meson-python developers
4+
#
5+
# SPDX-License-Identifier: MIT
46

57
from __future__ import annotations
68

mesonpy/_wheelfile.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
13
# SPDX-License-Identifier: MIT
24

35
from __future__ import annotations

noxfile.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
13
# SPDX-License-Identifier: MIT
24

35
import os

pyproject.toml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
[build-system]
26
build-backend = 'mesonpy'
37
backend-path = ['.']
@@ -12,7 +16,7 @@ name = 'meson-python'
1216
description = 'Meson Python build backend (PEP 517)'
1317
readme = 'README.md'
1418
requires-python = '>=3.7'
15-
license = { file = 'LICENSE' }
19+
license = { file = 'LICENSES/MIT.txt' }
1620
keywords = ['meson', 'build', 'backend', 'pep517', 'package']
1721
authors = [
1822
{ name = 'Filipe Laíns', email = '[email protected]' },

tests/__init__.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT

tests/conftest.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
13
# SPDX-License-Identifier: MIT
24

35
import contextlib
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
def message():
26
return 'meson says: @MSG@'

tests/packages/configure-data/meson.build

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
project(
26
'configure-data',
37
version: '1.0.0',
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2021 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
[build-system]
26
build-backend = 'mesonpy'
37
requires = ['meson-python']

tests/packages/dist-script/meson.build

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
project(
26
'dist-script', 'c',
37
version: '1.0.0',
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# SPDX-FileCopyrightText: 2022 The meson-python developers
2+
#
3+
# SPDX-License-Identifier: MIT
4+
15
[build-system]
26
build-backend = 'mesonpy'
37
requires = ['meson-python']

0 commit comments

Comments
 (0)