diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-02 01:25:44 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-04-02 01:25:44 +0200 |
commit | d4dff920790b96db87c9b373d42df046d899cc30 (patch) | |
tree | 9e10540a95ccea633e3e2fa70e26df9d2a2777cf /templates/awk | |
parent | fix(templates/c): Make the `makefile` more standards complying (diff) | |
download | flake-templates-d4dff920790b96db87c9b373d42df046d899cc30.tar.gz flake-templates-d4dff920790b96db87c9b373d42df046d899cc30.zip |
feat(treewide): Use new `%INIT_` variables
Diffstat (limited to 'templates/awk')
-rw-r--r-- | templates/awk/.licensure.yml | 4 | ||||
-rw-r--r-- | templates/awk/LICENSE.spdx | 8 | ||||
-rw-r--r-- | templates/awk/README.md | 3 | ||||
-rw-r--r-- | templates/awk/cog.toml | 8 | ||||
-rw-r--r-- | templates/awk/flake.nix | 2 |
5 files changed, 13 insertions, 12 deletions
diff --git a/templates/awk/.licensure.yml b/templates/awk/.licensure.yml index 74efd9a..942a96f 100644 --- a/templates/awk/.licensure.yml +++ b/templates/awk/.licensure.yml @@ -18,8 +18,8 @@ licenses: - files: \.tex ident: CC-BY-SA-4.0 authors: - - name: Benedikt Peetz - email: "benedikt.peetz@b-peetz.de" + - name: "%INIT_AUTHOR_NAME" + email: "%INIT_AUTHOR_EMAIL" template: | TODO 2024 - [year] (C) by [name of author] diff --git a/templates/awk/LICENSE.spdx b/templates/awk/LICENSE.spdx index ecb7d83..72ea9a5 100644 --- a/templates/awk/LICENSE.spdx +++ b/templates/awk/LICENSE.spdx @@ -1,7 +1,7 @@ SPDXVersion: SPDX-2.3 DataLicense: CC0-1.0 -Creator: TODO -PackageName: TODO -PackageOriginator: TODO -PackageHomePage: TODO +Creator: flake template init +PackageName: %INIT_APPLICATION_NAME +PackageOriginator: %INIT_APPLICATION_ORIGINATOR +PackageHomePage: %INIT_APPLICATION_HOME_PAGE PackageLicenseDeclared: GPL-3.0-or-later diff --git a/templates/awk/README.md b/templates/awk/README.md index 5912c16..79f2a41 100644 --- a/templates/awk/README.md +++ b/templates/awk/README.md @@ -1,4 +1,5 @@ -# TODO +# %INIT_APPLICATION_NAME_STYLIZED +> %INIT_DESCRIPTION Some text about the project. diff --git a/templates/awk/cog.toml b/templates/awk/cog.toml index 1157b91..ea1b5e3 100644 --- a/templates/awk/cog.toml +++ b/templates/awk/cog.toml @@ -18,7 +18,7 @@ post_bump_hooks = [ [changelog] path = "NEWS.md" template = "remote" -remote = "TODO" -repository = "TODO" -owner = "TODO" -authors = [{ signature = "Benedikt Peetz", username = "bpeetz" }] +remote = "%INIT_REMOTE" +repository = "%INIT_REPOSITORY" +owner = "%INIT_OWNER" +authors = [{ signature = "%INIT_AUTHOR_NAME", username = "%INIT_OWNER" }] diff --git a/templates/awk/flake.nix b/templates/awk/flake.nix index 144a17e..8dc59bf 100644 --- a/templates/awk/flake.nix +++ b/templates/awk/flake.nix @@ -1,5 +1,5 @@ { - description = "TODO"; + description = "%INIT_DESCRIPTION"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; |