summaryrefslogtreecommitdiff
path: root/.lift
diff options
context:
space:
mode:
authormax.mehl <max.mehl@fsfe.org>2022-05-17 11:16:50 +0200
committerDaniel Stenberg <daniel@haxx.se>2022-06-13 09:13:00 +0200
commitad9bc5976d6661cd5b03ebc379313bf657701c14 (patch)
tree426eda5bab8991572f9e80b11844eb525ce18163 /.lift
parent965119855d74c918372099bdcf81efa76b7a6988 (diff)
downloadcurl-ad9bc5976d6661cd5b03ebc379313bf657701c14.tar.gz
copyright: make repository REUSE compliant
Add licensing and copyright information for all files in this repository. This either happens in the file itself as a comment header or in the file `.reuse/dep5`. This commit also adds a Github workflow to check pull requests and adapts copyright.pl to the changes. Closes #8869
Diffstat (limited to '.lift')
-rw-r--r--.lift/config.toml4
-rwxr-xr-x.lift/setup.sh3
2 files changed, 7 insertions, 0 deletions
diff --git a/.lift/config.toml b/.lift/config.toml
index f54367953..66bcb5ebf 100644
--- a/.lift/config.toml
+++ b/.lift/config.toml
@@ -1,3 +1,7 @@
+# Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
+#
+# SPDX-License-Identifier: curl
+
ignoreRules = [ "DEAD_STORE" ]
build = "make"
setup = ".lift/setup.sh"
diff --git a/.lift/setup.sh b/.lift/setup.sh
index 62f609f5a..226d58501 100755
--- a/.lift/setup.sh
+++ b/.lift/setup.sh
@@ -1,4 +1,7 @@
#!/usr/bin/env bash
+# Copyright (C) 2000 - 2022 Daniel Stenberg, <daniel@haxx.se>, et al.
+#
+# SPDX-License-Identifier: curl
autoreconf -fi
./configure --with-openssl
echo "Ran the setup script for Lift including autoconf and executing ./configure --with-openssl"