Skip to content

Commit 1e0242f

Browse files
committed
chore: Add SPDX identifiers
1 parent 462bd03 commit 1e0242f

File tree

8 files changed

+23
-1
lines changed

8 files changed

+23
-1
lines changed

Dockerfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
#syntax=docker/dockerfile:1.2
1+
# SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
2+
# SPDX-License-Identifier: GPL-3.0-only
3+
4+
# syntax=docker/dockerfile:1.2
25

36
ARG ALPINETAG
47

build-aux/build.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
2+
// SPDX-License-Identifier: GPL-3.0-only
3+
14
#[cfg(feature = "manpage")]
25
use clap_mangen::Man;
36
use {

default.nix

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
2+
# SPDX-License-Identifier: GPL-3.0-only
13
{ lib
24
, libgit2
35
, naersk

flake.nix

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
2+
# SPDX-License-Identifier: GPL-3.0-only
13
{
24
description = "Rust library and CLI utility to reset file timestamps to repo state";
35
inputs = {

hooks/build

+3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env sh
2+
# SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
3+
# SPDX-License-Identifier: GPL-3.0-only
4+
25
set -e
36

47
: "${ALPINETAG:=3.19.1}"

src/bin/git-warp-time.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
2+
// SPDX-License-Identifier: GPL-3.0-only
3+
14
use clap::CommandFactory;
25

36
use git_warp_time::cli::Cli;

src/cli.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
2+
// SPDX-License-Identifier: GPL-3.0-only
3+
14
use clap::Parser;
25

36
/// CLI utility that resets the timestamps of files in a Git repository working directory

src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// SPDX-FileCopyrightText: © 2021 Caleb Maclennan <[email protected]>
2+
// SPDX-License-Identifier: GPL-3.0-only
3+
14
#![doc = include_str!("../README.md")]
25

36
use snafu::prelude::*;

0 commit comments

Comments
 (0)