summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2023-02-03 17:41:08 -0700
committerLuke Shumaker <lukeshu@lukeshu.com>2023-02-03 18:15:42 -0700
commit44e1e02bec9abe61b335ec34083955534744a394 (patch)
treedca89e727264160a92f23ab98ec220d41d6da3a7
parent9eef4dd91c36b60a2d5a68141f1d0c07e25be129 (diff)
Rename COPYING.* → LICENSE.*
-rw-r--r--LICENSE.apache-2.0.txt (renamed from COPYING.apache-2.0.txt)0
-rw-r--r--LICENSE.gpl-2.0.txt (renamed from COPYING.gpl-2.0.txt)0
-rw-r--r--LICENSE.gpl-3.0.txt (renamed from COPYING.gpl-3.0.txt)0
-rw-r--r--LICENSE.txt (renamed from COPYING.txt)6
-rw-r--r--Makefile14
5 files changed, 10 insertions, 10 deletions
diff --git a/COPYING.apache-2.0.txt b/LICENSE.apache-2.0.txt
index d645695..d645695 100644
--- a/COPYING.apache-2.0.txt
+++ b/LICENSE.apache-2.0.txt
diff --git a/COPYING.gpl-2.0.txt b/LICENSE.gpl-2.0.txt
index d159169..d159169 100644
--- a/COPYING.gpl-2.0.txt
+++ b/LICENSE.gpl-2.0.txt
diff --git a/COPYING.gpl-3.0.txt b/LICENSE.gpl-3.0.txt
index f288702..f288702 100644
--- a/COPYING.gpl-3.0.txt
+++ b/LICENSE.gpl-3.0.txt
diff --git a/COPYING.txt b/LICENSE.txt
index d8b9862..428d84d 100644
--- a/COPYING.txt
+++ b/LICENSE.txt
@@ -31,8 +31,8 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
Along with this program, you should have received a copy of the GNU
-General Public License (in the COPYING.gpl-2.0.txt and
-COPYING.gpl-3.0.txt files) and the Apache License (in the
-COPYING.apache-2.0.txt file). If not, see
+General Public License (in the LICENSE.gpl-2.0.txt and
+LICENSE.gpl-3.0.txt files) and the Apache License (in the
+LICENSE.apache-2.0.txt file). If not, see
<https://www.gnu.org/licenses/> and
<http://www.apache.org/licenses/LICENSE-2.0>.
diff --git a/Makefile b/Makefile
index c413091..b3bcdd8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# Copyright (C) 2022 Luke Shumaker <lukeshu@lukeshu.com>
+# Copyright (C) 2022-2023 Luke Shumaker <lukeshu@lukeshu.com>
#
# SPDX-License-Identifier: GPL-2.0-or-later
@@ -18,9 +18,9 @@ lint: tools/bin/golangci-lint
# generate
-generate/files = COPYING.gpl-2.0.txt
-generate/files += COPYING.gpl-3.0.txt
-generate/files += COPYING.apache-2.0.txt
+generate/files = LICENSE.gpl-2.0.txt
+generate/files += LICENSE.gpl-3.0.txt
+generate/files += LICENSE.apache-2.0.txt
generate: generate-clean
$(MAKE) -C lib/btrfs
@@ -32,11 +32,11 @@ generate-clean:
rm -f $(generate/files)
.PHONY: generate-clean
-COPYING.gpl-2.0.txt:
+LICENSE.gpl-2.0.txt:
curl https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt > $@
-COPYING.gpl-3.0.txt:
+LICENSE.gpl-3.0.txt:
curl https://www.gnu.org/licenses/gpl-3.0.txt > $@
-COPYING.apache-2.0.txt:
+LICENSE.apache-2.0.txt:
curl https://apache.org/licenses/LICENSE-2.0.txt > $@
# tools