Skip to content

Commit

Permalink
Refresh REUSE metadata
Browse files Browse the repository at this point in the history
This runs the Nerves licensing scripts on the files for better accuracy
and consistency with other projects.
  • Loading branch information
fhunleth committed Mar 8, 2025
1 parent 0f77b90 commit fe771db
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 9 deletions.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# SPDX-FileCopyrightText: 2018 Frank Hunleth
# SPDX-FileCopyrightText: 2014 Frank Hunleth
# SPDX-FileCopyrightText: 2016 Connor Rigby
# SPDX-FileCopyrightText: 2018 Matt Ludwigs
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
8 changes: 8 additions & 0 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CircuitsI2C is open-source software licensed under the Apache License, Version
2.0.

Copyright holders include Frank Hunleth, Connor Rigby, Mark Sebald, Matt
Ludwigs, Justin Schneck, Bruce Tate, Masatoshi Nishiguchi and Jon Carstens.

Authoritative REUSE-compliant copyright and license metadata available at
https://hex.pm/packages/circuits_i2c.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Hex version](https://img.shields.io/hexpm/v/circuits_i2c.svg "Hex version")](https://hex.pm/packages/circuits_i2c)
[![API docs](https://img.shields.io/hexpm/v/circuits_i2c.svg?label=hexdocs "API docs")](https://hexdocs.pm/circuits_i2c/Circuits.I2C.html)
[![CircleCI](https://circleci.com/gh/elixir-circuits/circuits_i2c.svg?style=svg)](https://circleci.com/gh/elixir-circuits/circuits_i2c)
[![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)
[![REUSE status](https://api.reuse.software/badge/github.com/elixir-circuits/circuits_i2c)](https://api.reuse.software/info/github.com/elixir-circuits/circuits_i2c)

`Circuits.I2C` lets you communicate with hardware devices using the I2C protocol.
Expand Down
4 changes: 3 additions & 1 deletion c_src/i2c_nif.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
// SPDX-FileCopyrightText: 2018 Frank Hunleth, Mark Sebald
// SPDX-FileCopyrightText: 2018 Frank Hunleth
// SPDX-FileCopyrightText: 2018 Mark Sebald
// SPDX-FileCopyrightText: 2018 Matt Ludwigs
//
// SPDX-License-Identifier: Apache-2.0

Expand Down
7 changes: 6 additions & 1 deletion lib/i2c.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# SPDX-FileCopyrightText: 2018 Frank Hunleth
# SPDX-FileCopyrightText: 2014 Frank Hunleth
# SPDX-FileCopyrightText: 2018 Mark Sebald
# SPDX-FileCopyrightText: 2018 Matt Ludwigs
# SPDX-FileCopyrightText: 2020 Justin Schneck
# SPDX-FileCopyrightText: 2021 Bruce Tate
# SPDX-FileCopyrightText: 2023 Jon Carstens
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
3 changes: 2 additions & 1 deletion lib/i2c/i2c_nif.ex
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-FileCopyrightText: 2023 Frank Hunleth
# SPDX-FileCopyrightText: 2018 Frank Hunleth
# SPDX-FileCopyrightText: 2018 Mark Sebald
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
7 changes: 6 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,17 @@ defmodule Circuits.I2C.MixProject do
"LICENSES",
"Makefile",
"mix.exs",
"NOTICE",
"PORTING.md",
"README.md",
"REUSE.toml"
],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url}
links: %{
"GitHub" => @source_url,
"REUSE Compliance" =>
"https://api.reuse.software/info/github.com/elixir-circuits/circuits_i2c"
}
}
end

Expand Down
2 changes: 1 addition & 1 deletion test/circuits_i2c_test.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023 Frank Hunleth
# SPDX-FileCopyrightText: 2018 Frank Hunleth
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
2 changes: 1 addition & 1 deletion test/i2c/i2c_nif_test.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2023 Frank Hunleth
# SPDX-FileCopyrightText: 2021 Frank Hunleth
#
# SPDX-License-Identifier: Apache-2.0

Expand Down
3 changes: 2 additions & 1 deletion test/test_helper.exs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# SPDX-FileCopyrightText: 2023 Frank Hunleth
# SPDX-FileCopyrightText: 2014 Frank Hunleth
# SPDX-FileCopyrightText: 2021 Masatoshi Nishiguchi
#
# SPDX-License-Identifier: Apache-2.0

Expand Down

0 comments on commit fe771db

Please sign in to comment.