about summary refs log tree commit diff stats
path: root/templates
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-02 14:46:44 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-04-02 14:46:44 +0200
commit62608badf7230afa5e4ebe72da5cb2522bfb33a4 (patch)
tree0031a7058e53c34dfd764d4c1615463d8e3ddf63 /templates
parentfix(templates/latex/flake.nix): Keep the PDF file extensions when building (diff)
downloadflake-templates-62608badf7230afa5e4ebe72da5cb2522bfb33a4.tar.gz
flake-templates-62608badf7230afa5e4ebe72da5cb2522bfb33a4.zip
chore(version): v0.6.1
Diffstat (limited to 'templates')
-rw-r--r--templates/awk/.licensure.yml4
-rw-r--r--templates/awk/docs/%INIT_APPLICATION_NAME.1.md2
-rwxr-xr-xtemplates/awk/init4
-rw-r--r--templates/awk/treefmt.nix1
-rw-r--r--templates/c/.licensure.yml4
-rw-r--r--templates/c/docs/%INIT_APPLICATION_NAME.1.md2
-rwxr-xr-xtemplates/c/init4
-rw-r--r--templates/c/treefmt.nix1
-rw-r--r--templates/latex/.licensure.yml4
-rwxr-xr-xtemplates/latex/init4
-rw-r--r--templates/latex/treefmt.nix1
-rw-r--r--templates/rust/.licensure.yml4
-rw-r--r--templates/rust/docs/%INIT_APPLICATION_NAME.1.md2
-rwxr-xr-xtemplates/rust/init4
-rw-r--r--templates/rust/treefmt.nix1
-rw-r--r--templates/shell/.licensure.yml4
-rw-r--r--templates/shell/docs/%INIT_APPLICATION_NAME.1.md2
-rwxr-xr-xtemplates/shell/init4
-rw-r--r--templates/shell/treefmt.nix1
19 files changed, 24 insertions, 29 deletions
diff --git a/templates/awk/.licensure.yml b/templates/awk/.licensure.yml
index 60ef45c..639d750 100644
--- a/templates/awk/.licensure.yml
+++ b/templates/awk/.licensure.yml
@@ -22,10 +22,10 @@ licenses:
         email: "%INIT_AUTHOR_EMAIL"
 
     template: |
-      %INIT_APPLIACATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
+      %INIT_APPLICATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
       SPDX-License-Identifier: CC-BY-SA-4.0
 
-      %INIT_APPLIACATION_NAME_STYLIZED is licensed under a
+      %INIT_APPLICATION_NAME_STYLIZED is licensed under a
       Creative Commons Attribution-ShareAlike 4.0 International License.
 
       You should have received a copy of the license along with this
diff --git a/templates/awk/docs/%INIT_APPLICATION_NAME.1.md b/templates/awk/docs/%INIT_APPLICATION_NAME.1.md
index 0a7ec9d..e044647 100644
--- a/templates/awk/docs/%INIT_APPLICATION_NAME.1.md
+++ b/templates/awk/docs/%INIT_APPLICATION_NAME.1.md
@@ -38,7 +38,7 @@ Report bugs to <https://%INIT_REMOTE/%INIT_OWNER/%INIT_REPOSITORY/issues>.
 
 # COPYRIGHT
 
-Copyright (C) %INIT_YEAR  %INIT_AUTOHR_NAME
+Copyright (C) %INIT_YEAR  %INIT_AUTHOR_NAME
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/templates/awk/init b/templates/awk/init
index df0b4c5..e7414d6 100755
--- a/templates/awk/init
+++ b/templates/awk/init
@@ -78,11 +78,11 @@ while read -r var; do
     var_value="${var#*=\"}"
     var_value="${var_value%\"}"
 
-    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|"
+    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|g"
 
     # Replace the variable in file paths
     fd "%INIT_$var_name" . --hidden | while read -r file_path; do
-        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|")";
+        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|g")";
         mv "$file_path" "$new_file_path"
     done
 done < "$replacement_file"
diff --git a/templates/awk/treefmt.nix b/templates/awk/treefmt.nix
index 540a6ca..1cbab40 100644
--- a/templates/awk/treefmt.nix
+++ b/templates/awk/treefmt.nix
@@ -59,7 +59,6 @@ treefmt-nix.lib.evalModule pkgs (
       global.excludes = [
         "CHANGELOG.md"
         "NEWS.md"
-        "%INIT_APPLICATION_NAME.1.md"
       ];
       formatter = {
         clang-format = {
diff --git a/templates/c/.licensure.yml b/templates/c/.licensure.yml
index 60ef45c..639d750 100644
--- a/templates/c/.licensure.yml
+++ b/templates/c/.licensure.yml
@@ -22,10 +22,10 @@ licenses:
         email: "%INIT_AUTHOR_EMAIL"
 
     template: |
-      %INIT_APPLIACATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
+      %INIT_APPLICATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
       SPDX-License-Identifier: CC-BY-SA-4.0
 
-      %INIT_APPLIACATION_NAME_STYLIZED is licensed under a
+      %INIT_APPLICATION_NAME_STYLIZED is licensed under a
       Creative Commons Attribution-ShareAlike 4.0 International License.
 
       You should have received a copy of the license along with this
diff --git a/templates/c/docs/%INIT_APPLICATION_NAME.1.md b/templates/c/docs/%INIT_APPLICATION_NAME.1.md
index 0a7ec9d..e044647 100644
--- a/templates/c/docs/%INIT_APPLICATION_NAME.1.md
+++ b/templates/c/docs/%INIT_APPLICATION_NAME.1.md
@@ -38,7 +38,7 @@ Report bugs to <https://%INIT_REMOTE/%INIT_OWNER/%INIT_REPOSITORY/issues>.
 
 # COPYRIGHT
 
-Copyright (C) %INIT_YEAR  %INIT_AUTOHR_NAME
+Copyright (C) %INIT_YEAR  %INIT_AUTHOR_NAME
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/templates/c/init b/templates/c/init
index df0b4c5..e7414d6 100755
--- a/templates/c/init
+++ b/templates/c/init
@@ -78,11 +78,11 @@ while read -r var; do
     var_value="${var#*=\"}"
     var_value="${var_value%\"}"
 
-    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|"
+    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|g"
 
     # Replace the variable in file paths
     fd "%INIT_$var_name" . --hidden | while read -r file_path; do
-        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|")";
+        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|g")";
         mv "$file_path" "$new_file_path"
     done
 done < "$replacement_file"
diff --git a/templates/c/treefmt.nix b/templates/c/treefmt.nix
index 540a6ca..1cbab40 100644
--- a/templates/c/treefmt.nix
+++ b/templates/c/treefmt.nix
@@ -59,7 +59,6 @@ treefmt-nix.lib.evalModule pkgs (
       global.excludes = [
         "CHANGELOG.md"
         "NEWS.md"
-        "%INIT_APPLICATION_NAME.1.md"
       ];
       formatter = {
         clang-format = {
diff --git a/templates/latex/.licensure.yml b/templates/latex/.licensure.yml
index 60ef45c..639d750 100644
--- a/templates/latex/.licensure.yml
+++ b/templates/latex/.licensure.yml
@@ -22,10 +22,10 @@ licenses:
         email: "%INIT_AUTHOR_EMAIL"
 
     template: |
-      %INIT_APPLIACATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
+      %INIT_APPLICATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
       SPDX-License-Identifier: CC-BY-SA-4.0
 
-      %INIT_APPLIACATION_NAME_STYLIZED is licensed under a
+      %INIT_APPLICATION_NAME_STYLIZED is licensed under a
       Creative Commons Attribution-ShareAlike 4.0 International License.
 
       You should have received a copy of the license along with this
diff --git a/templates/latex/init b/templates/latex/init
index df0b4c5..e7414d6 100755
--- a/templates/latex/init
+++ b/templates/latex/init
@@ -78,11 +78,11 @@ while read -r var; do
     var_value="${var#*=\"}"
     var_value="${var_value%\"}"
 
-    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|"
+    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|g"
 
     # Replace the variable in file paths
     fd "%INIT_$var_name" . --hidden | while read -r file_path; do
-        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|")";
+        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|g")";
         mv "$file_path" "$new_file_path"
     done
 done < "$replacement_file"
diff --git a/templates/latex/treefmt.nix b/templates/latex/treefmt.nix
index 540a6ca..1cbab40 100644
--- a/templates/latex/treefmt.nix
+++ b/templates/latex/treefmt.nix
@@ -59,7 +59,6 @@ treefmt-nix.lib.evalModule pkgs (
       global.excludes = [
         "CHANGELOG.md"
         "NEWS.md"
-        "%INIT_APPLICATION_NAME.1.md"
       ];
       formatter = {
         clang-format = {
diff --git a/templates/rust/.licensure.yml b/templates/rust/.licensure.yml
index 60ef45c..639d750 100644
--- a/templates/rust/.licensure.yml
+++ b/templates/rust/.licensure.yml
@@ -22,10 +22,10 @@ licenses:
         email: "%INIT_AUTHOR_EMAIL"
 
     template: |
-      %INIT_APPLIACATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
+      %INIT_APPLICATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
       SPDX-License-Identifier: CC-BY-SA-4.0
 
-      %INIT_APPLIACATION_NAME_STYLIZED is licensed under a
+      %INIT_APPLICATION_NAME_STYLIZED is licensed under a
       Creative Commons Attribution-ShareAlike 4.0 International License.
 
       You should have received a copy of the license along with this
diff --git a/templates/rust/docs/%INIT_APPLICATION_NAME.1.md b/templates/rust/docs/%INIT_APPLICATION_NAME.1.md
index 0a7ec9d..e044647 100644
--- a/templates/rust/docs/%INIT_APPLICATION_NAME.1.md
+++ b/templates/rust/docs/%INIT_APPLICATION_NAME.1.md
@@ -38,7 +38,7 @@ Report bugs to <https://%INIT_REMOTE/%INIT_OWNER/%INIT_REPOSITORY/issues>.
 
 # COPYRIGHT
 
-Copyright (C) %INIT_YEAR  %INIT_AUTOHR_NAME
+Copyright (C) %INIT_YEAR  %INIT_AUTHOR_NAME
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/templates/rust/init b/templates/rust/init
index df0b4c5..e7414d6 100755
--- a/templates/rust/init
+++ b/templates/rust/init
@@ -78,11 +78,11 @@ while read -r var; do
     var_value="${var#*=\"}"
     var_value="${var_value%\"}"
 
-    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|"
+    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|g"
 
     # Replace the variable in file paths
     fd "%INIT_$var_name" . --hidden | while read -r file_path; do
-        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|")";
+        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|g")";
         mv "$file_path" "$new_file_path"
     done
 done < "$replacement_file"
diff --git a/templates/rust/treefmt.nix b/templates/rust/treefmt.nix
index 540a6ca..1cbab40 100644
--- a/templates/rust/treefmt.nix
+++ b/templates/rust/treefmt.nix
@@ -59,7 +59,6 @@ treefmt-nix.lib.evalModule pkgs (
       global.excludes = [
         "CHANGELOG.md"
         "NEWS.md"
-        "%INIT_APPLICATION_NAME.1.md"
       ];
       formatter = {
         clang-format = {
diff --git a/templates/shell/.licensure.yml b/templates/shell/.licensure.yml
index 60ef45c..639d750 100644
--- a/templates/shell/.licensure.yml
+++ b/templates/shell/.licensure.yml
@@ -22,10 +22,10 @@ licenses:
         email: "%INIT_AUTHOR_EMAIL"
 
     template: |
-      %INIT_APPLIACATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
+      %INIT_APPLICATION_NAME_STYLIZED %INIT_YEAR - [year] (C) by [name of author]
       SPDX-License-Identifier: CC-BY-SA-4.0
 
-      %INIT_APPLIACATION_NAME_STYLIZED is licensed under a
+      %INIT_APPLICATION_NAME_STYLIZED is licensed under a
       Creative Commons Attribution-ShareAlike 4.0 International License.
 
       You should have received a copy of the license along with this
diff --git a/templates/shell/docs/%INIT_APPLICATION_NAME.1.md b/templates/shell/docs/%INIT_APPLICATION_NAME.1.md
index 0a7ec9d..e044647 100644
--- a/templates/shell/docs/%INIT_APPLICATION_NAME.1.md
+++ b/templates/shell/docs/%INIT_APPLICATION_NAME.1.md
@@ -38,7 +38,7 @@ Report bugs to <https://%INIT_REMOTE/%INIT_OWNER/%INIT_REPOSITORY/issues>.
 
 # COPYRIGHT
 
-Copyright (C) %INIT_YEAR  %INIT_AUTOHR_NAME
+Copyright (C) %INIT_YEAR  %INIT_AUTHOR_NAME
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/templates/shell/init b/templates/shell/init
index df0b4c5..e7414d6 100755
--- a/templates/shell/init
+++ b/templates/shell/init
@@ -78,11 +78,11 @@ while read -r var; do
     var_value="${var#*=\"}"
     var_value="${var_value%\"}"
 
-    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|"
+    fd . --hidden --type file --exec sed --in-place "s|%\bINIT_$var_name\b|$var_value|g"
 
     # Replace the variable in file paths
     fd "%INIT_$var_name" . --hidden | while read -r file_path; do
-        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|")";
+        new_file_path="$(echo "$file_path" | sed "s|%INIT_$var_name|$var_value|g")";
         mv "$file_path" "$new_file_path"
     done
 done < "$replacement_file"
diff --git a/templates/shell/treefmt.nix b/templates/shell/treefmt.nix
index 540a6ca..1cbab40 100644
--- a/templates/shell/treefmt.nix
+++ b/templates/shell/treefmt.nix
@@ -59,7 +59,6 @@ treefmt-nix.lib.evalModule pkgs (
       global.excludes = [
         "CHANGELOG.md"
         "NEWS.md"
-        "%INIT_APPLICATION_NAME.1.md"
       ];
       formatter = {
         clang-format = {