Skip to content

Commit fe771db

Browse files
committed
Refresh REUSE metadata
This runs the Nerves licensing scripts on the files for better accuracy and consistency with other projects.
1 parent 0f77b90 commit fe771db

File tree

10 files changed

+33
-9
lines changed

10 files changed

+33
-9
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# SPDX-FileCopyrightText: 2018 Frank Hunleth
1+
# SPDX-FileCopyrightText: 2014 Frank Hunleth
2+
# SPDX-FileCopyrightText: 2016 Connor Rigby
3+
# SPDX-FileCopyrightText: 2018 Matt Ludwigs
24
#
35
# SPDX-License-Identifier: Apache-2.0
46

NOTICE

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
CircuitsI2C is open-source software licensed under the Apache License, Version
2+
2.0.
3+
4+
Copyright holders include Frank Hunleth, Connor Rigby, Mark Sebald, Matt
5+
Ludwigs, Justin Schneck, Bruce Tate, Masatoshi Nishiguchi and Jon Carstens.
6+
7+
Authoritative REUSE-compliant copyright and license metadata available at
8+
https://hex.pm/packages/circuits_i2c.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Hex version](https://img.shields.io/hexpm/v/circuits_i2c.svg "Hex version")](https://hex.pm/packages/circuits_i2c)
44
[![API docs](https://img.shields.io/hexpm/v/circuits_i2c.svg?label=hexdocs "API docs")](https://hexdocs.pm/circuits_i2c/Circuits.I2C.html)
5-
[![CircleCI](https://circleci.com/gh/elixir-circuits/circuits_i2c.svg?style=svg)](https://circleci.com/gh/elixir-circuits/circuits_i2c)
5+
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/elixir-circuits/circuits_i2c/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/elixir-circuits/circuits_i2c/tree/main)
66
[![REUSE status](https://api.reuse.software/badge/github.com/elixir-circuits/circuits_i2c)](https://api.reuse.software/info/github.com/elixir-circuits/circuits_i2c)
77

88
`Circuits.I2C` lets you communicate with hardware devices using the I2C protocol.

c_src/i2c_nif.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
// SPDX-FileCopyrightText: 2018 Frank Hunleth, Mark Sebald
1+
// SPDX-FileCopyrightText: 2018 Frank Hunleth
2+
// SPDX-FileCopyrightText: 2018 Mark Sebald
3+
// SPDX-FileCopyrightText: 2018 Matt Ludwigs
24
//
35
// SPDX-License-Identifier: Apache-2.0
46

lib/i2c.ex

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
# SPDX-FileCopyrightText: 2018 Frank Hunleth
1+
# SPDX-FileCopyrightText: 2014 Frank Hunleth
2+
# SPDX-FileCopyrightText: 2018 Mark Sebald
3+
# SPDX-FileCopyrightText: 2018 Matt Ludwigs
4+
# SPDX-FileCopyrightText: 2020 Justin Schneck
5+
# SPDX-FileCopyrightText: 2021 Bruce Tate
6+
# SPDX-FileCopyrightText: 2023 Jon Carstens
27
#
38
# SPDX-License-Identifier: Apache-2.0
49

lib/i2c/i2c_nif.ex

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# SPDX-FileCopyrightText: 2023 Frank Hunleth
1+
# SPDX-FileCopyrightText: 2018 Frank Hunleth
2+
# SPDX-FileCopyrightText: 2018 Mark Sebald
23
#
34
# SPDX-License-Identifier: Apache-2.0
45

mix.exs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,17 @@ defmodule Circuits.I2C.MixProject do
5252
"LICENSES",
5353
"Makefile",
5454
"mix.exs",
55+
"NOTICE",
5556
"PORTING.md",
5657
"README.md",
5758
"REUSE.toml"
5859
],
5960
licenses: ["Apache-2.0"],
60-
links: %{"GitHub" => @source_url}
61+
links: %{
62+
"GitHub" => @source_url,
63+
"REUSE Compliance" =>
64+
"https://api.reuse.software/info/github.com/elixir-circuits/circuits_i2c"
65+
}
6166
}
6267
end
6368

test/circuits_i2c_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023 Frank Hunleth
1+
# SPDX-FileCopyrightText: 2018 Frank Hunleth
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

test/i2c/i2c_nif_test.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2023 Frank Hunleth
1+
# SPDX-FileCopyrightText: 2021 Frank Hunleth
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

test/test_helper.exs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# SPDX-FileCopyrightText: 2023 Frank Hunleth
1+
# SPDX-FileCopyrightText: 2014 Frank Hunleth
2+
# SPDX-FileCopyrightText: 2021 Masatoshi Nishiguchi
23
#
34
# SPDX-License-Identifier: Apache-2.0
45

0 commit comments

Comments
 (0)