Skip to content

Commit

Permalink
all: Tighten SPDX tags
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Grant <[email protected]>
  • Loading branch information
m-grant-prg committed Nov 22, 2021
1 parent a1a8188 commit e3d005c
Show file tree
Hide file tree
Showing 16 changed files with 46 additions and 32 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Author: Copyright (C) 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# Configuration file for GitHub Actions build tests. Perform a standard #
Expand All @@ -21,6 +21,7 @@
# 27/02/2021 MG 1.0.1 Initial release. #
# 11/11/2021 MG 1.0.2 Get tags as needed for git-enhanced #
# AC_INIT. #
# 22/11/2021 MG 1.0.3 Tighten SPDX tag. #
# #
#########################################################################

Expand Down
3 changes: 2 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Author: Copyright (C) 2014-2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# Automake script file to generate agmaint project from source. #
Expand Down Expand Up @@ -48,6 +48,7 @@
# by make distcheck. #
# 21/05/2020 MG 1.0.11 Add sysconfdir and pkgdatadir support. #
# 08/11/2021 MG 1.0.12 Add misc directory to DIST. #
# 22/11/2021 MG 1.0.13 Tighten SPDX tag. #
# #
#########################################################################

Expand Down
5 changes: 3 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Author: Copyright (C) 2014-2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# Autoconfigure script file to configure agmaint project. #
Expand Down Expand Up @@ -83,6 +83,7 @@
# 11/11/2021 MG 1.1.5 If git is available and we are inside a #
# git tree then use git describe to add #
# further package version information. #
# 22/11/2021 MG 1.1.6 Tighten SPDX tag. #
# #
#########################################################################

Expand All @@ -93,7 +94,7 @@
# #
#########################################

AC_REVISION([$Revision: 1.1.5 $])
AC_REVISION([$Revision: 1.1.6 $])

AC_PREREQ([2.69])

Expand Down
3 changes: 2 additions & 1 deletion src/data/pkgdata/trusted.sh.d/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# Automake script file to generate apt key scripts from source. #
Expand All @@ -19,6 +19,7 @@
# #
# 21/05/2020 MG 1.0.1 Created. #
# 13/03/2021 MG 1.0.2 Remove Bintray as it is stopping. #
# 22/11/2021 MG 1.0.3 Tighten SPDX tag. #
# #
#########################################################################

Expand Down
5 changes: 3 additions & 2 deletions src/data/pkgdata/trusted.sh.d/add-hermes.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# To add a hermes apt key to a trusted apt keyring in the apt #
Expand Down Expand Up @@ -61,6 +61,7 @@
# 14/03/2021 MG 1.0.2 Use hermes FQDN otherwise it does not #
# work in Ubuntu containers. #
# 25/04/2021 MG 1.0.3 Prefer curl to wget. #
# 22/11/2021 MG 1.0.4 Tighten SPDX tag. #
# #
#########################################################################

Expand All @@ -71,7 +72,7 @@ set -e
##################
# Init variables #
##################
readonly version=1.0.3 # Script version
readonly version=1.0.4 # Script version
readonly outputprefix="$(basename $0): "
readonly packageversion=@pkgversion@ # Package version

Expand Down
7 changes: 4 additions & 3 deletions src/data/pkgdata/trusted.sh.d/add-mgrant-utils-ppa.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#########################################################################
# #
# Script ID: add-mgrant-utils-ppa.sh #
# Author: Copyright (C) 2020 Mark Grant #
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# To add apt keys for package signer and ppa for the Launchpad #
Expand Down Expand Up @@ -58,6 +58,7 @@
# Date Author Version Description #
# #
# 22/05/2020 MG 1.0.1 Created. #
# 22/11/2021 MG 1.0.2 Tighten SPDX tag. #
# #
#########################################################################

Expand All @@ -68,7 +69,7 @@ set -e
##################
# Init variables #
##################
readonly version=1.0.1 # Script version
readonly version=1.0.2 # Script version
readonly outputprefix="$(basename $0): "
readonly packageversion=@pkgversion@ # Package version

Expand Down
5 changes: 3 additions & 2 deletions src/data/pkgdata/trusted.sh.d/add-obs-debian.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# To add apt keys for supported Debian releases at the openSUSE Build #
Expand Down Expand Up @@ -61,6 +61,7 @@
# 22/05/2020 MG 1.0.1 Created. #
# 25/04/2021 MG 1.0.2 Prefer curl to wget. #
# 18/08/2021 MG 1.0.3 Add bullseye. #
# 22/11/2021 MG 1.0.4 Tighten SPDX tag. #
# #
#########################################################################

Expand All @@ -71,7 +72,7 @@ set -e
##################
# Init variables #
##################
readonly version=1.0.2 # Script version
readonly version=1.0.4 # Script version
readonly outputprefix="$(basename $0): "
readonly packageversion=@pkgversion@ # Package version

Expand Down
5 changes: 3 additions & 2 deletions src/data/pkgdata/trusted.sh.d/add-obs-raspbian.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# To add apt keys for supported Raspbian releases at the openSUSE Build #
Expand Down Expand Up @@ -60,6 +60,7 @@
# #
# 22/05/2020 MG 1.0.1 Created. #
# 25/04/2021 MG 1.0.2 Prefer curl to wget. #
# 22/11/2021 MG 1.0.3 Tighten SPDX tag. #
# #
#########################################################################

Expand All @@ -70,7 +71,7 @@ set -e
##################
# Init variables #
##################
readonly version=1.0.2 # Script version
readonly version=1.0.3 # Script version
readonly outputprefix="$(basename $0): "
readonly packageversion=@pkgversion@ # Package version

Expand Down
5 changes: 3 additions & 2 deletions src/data/pkgdata/trusted.sh.d/add-raspberrypi.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# To add a raspberrypi.org apt key to a trusted apt keyring in the apt #
Expand Down Expand Up @@ -59,6 +59,7 @@
# #
# 22/05/2020 MG 1.0.1 Created. #
# 25/04/2021 MG 1.0.2 Prefer curl to wget. #
# 22/11/2021 MG 1.0.3 Tighten SPDX tag. #
# #
#########################################################################

Expand All @@ -69,7 +70,7 @@ set -e
##################
# Init variables #
##################
readonly version=1.0.2 # Script version
readonly version=1.0.3 # Script version
readonly outputprefix="$(basename $0): "
readonly packageversion=@pkgversion@ # Package version

Expand Down
7 changes: 4 additions & 3 deletions src/data/sysconf/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#########################################################################
# #
# Script ID: src/data/sysconf/Makefile.am #
# Author: Copyright (C) 2020 Mark Grant #
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 or later. #
# SPDX-License-Identifier: GPL-3.0-or-later #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# AutoMake script file for the sysconf directory. #
Expand All @@ -18,6 +18,7 @@
# Date Author Version Description #
# #
# 21/05/2020 MG 1.0.1 Created. #
# 22/11/2021 MG 1.0.2 Tighten SPDX tag. #
# #
#########################################################################

Expand Down
5 changes: 3 additions & 2 deletions src/man/8/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#########################################################################
# #
# Script ID: src/man/8/Makefile.am #
# Author: Copyright (C) 2014-2020 Mark Grant #
# Author: Copyright (C) 2014-2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# Automake script file to generate agmaint manual pages from source. #
Expand Down Expand Up @@ -35,6 +35,7 @@
# 22/09/2019 MG 1.0.8 Remove shebang. #
# 22/05/2020 MG 1.0.9 Rename script to have .sh extension. #
# Add apt-key-scripts.sh man page. #
# 22/11/2021 MG 1.0.10 Tighten SPDX tag. #
# #
#########################################################################

Expand Down
4 changes: 2 additions & 2 deletions src/man/8/agmaint.sh.8.man.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ Written by Mark Grant.
REPORTING BUGS
Report bugs to <[email protected]>
COPYRIGHT
Copyright (C) 2014-2017, 2019, 2020 Mark Grant.
Copyright (C) 2014-2017, 2019-2021 Mark Grant.
.br
License GPLv3+: GNU GPL version 3 or later
License GPLv3: GNU GPL version 3 only
.br
<http://gnu.org/licenses/gpl.html>.
.br
Expand Down
2 changes: 1 addition & 1 deletion src/man/8/apt-key-scripts.sh.8.man.in
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Written by Mark Grant.
COPYRIGHT
Copyright (C) 2020, 2021 Mark Grant.
.br
License GPLv3+: GNU GPL version 3 or later
License GPLv3: GNU GPL version 3 only
.br
<http://gnu.org/licenses/gpl.html>.
.br
Expand Down
5 changes: 3 additions & 2 deletions src/prg/bash/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#########################################################################
# #
# Script ID: src/prg/bash/Makefile.am #
# Author: Copyright (C) 2014-2020 Mark Grant #
# Author: Copyright (C) 2014-2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# Automake script file to generate agmaint script from source. #
Expand All @@ -31,6 +31,7 @@
# 22/09/2019 MG 1.0.8 Remove shebang. #
# 21/05/2020 MG 1.0.9 Change script extension .sh #
# Add apt-key-scripts.sh #
# 22/11/2021 MG 1.0.10 Tighten SPDX tag. #
# #
#########################################################################

Expand Down
7 changes: 4 additions & 3 deletions src/prg/bash/agmaint.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#########################################################################
# #
# Script ID: agmaint.sh #
# Author: Copyright (C) 2014-2017, 2019, 2020 Mark Grant #
# Author: Copyright (C) 2014-2017, 2019-2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# To simplify the running of daily apt-get maintenance commands. #
Expand Down Expand Up @@ -80,14 +80,15 @@
# 21/05/2020 MG 1.1.1 Change script to .sh extension. #
# 03/06/2020 MG 1.1.2 Pass CLA's after a -- straight to the #
# apt-get commands. #
# 22/11/2021 MG 1.1.3 Tighten SPDX tag. #
# #
#########################################################################


##################
# Init variables #
##################
readonly version=1.1.2 # Script version
readonly version=1.1.3 # Script version
readonly outputprefix="$(basename $0): "
readonly packageversion=@pkgversion@ # Package version

Expand Down
7 changes: 4 additions & 3 deletions src/prg/bash/apt-key-scripts.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
#########################################################################
# #
# Script ID: apt-key-scripts.sh #
# Author: Copyright (C) 2020 Mark Grant #
# Author: Copyright (C) 2020, 2021 Mark Grant #
# #
# Released under the GPLv3 only. #
# SPDX-License-Identifier: GPL-3.0 #
# SPDX-License-Identifier: GPL-3.0-only #
# #
# Purpose: #
# To manage and execute scripts for maintaining apt trusted keys and #
Expand Down Expand Up @@ -66,14 +66,15 @@
# 22/05/2020 MG 1.0.1 Created. #
# 14/06/2020 MG 1.0.2 Ensure functions called by others #
# appear first. #
# 22/11/2021 MG 1.0.3 Tighten SPDX tag. #
# #
#########################################################################


##################
# Init variables #
##################
readonly version=1.0.2 # Script version
readonly version=1.0.3 # Script version
readonly outputprefix="$(basename $0): "
readonly packageversion=@pkgversion@ # Package version

Expand Down

0 comments on commit e3d005c

Please sign in to comment.