diff options
author | David Robillard <d@drobilla.net> | 2022-09-08 15:32:59 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-09-08 15:32:59 -0400 |
commit | 82d7a1a87965e6508cf3090337ad2bd097d70f06 (patch) | |
tree | bcf88d30f51ed9aa17980387f9348e2a4d832e3a /doc | |
parent | 27b6d451c77e823d7247171dc98b5c79b8ea912d (diff) | |
download | serd-82d7a1a87965e6508cf3090337ad2bd097d70f06.tar.gz serd-82d7a1a87965e6508cf3090337ad2bd097d70f06.tar.bz2 serd-82d7a1a87965e6508cf3090337ad2bd097d70f06.zip |
Use 0BSD for trivial "public domain intent" things
Fedora takes issue with CC0. Although it doesn't really matter for this
stuff (dual licensed anyway, questionably "software", certainly not patentable,
and so on), this is simpler and more consistent with the ISC license used for
the actual software anyway.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/_static/meson.build | 2 | ||||
-rw-r--r-- | doc/c/Doxyfile.in | 2 | ||||
-rw-r--r-- | doc/c/api/meson.build | 2 | ||||
-rw-r--r-- | doc/c/meson.build | 2 | ||||
-rw-r--r-- | doc/c/xml/meson.build | 2 | ||||
-rw-r--r-- | doc/meson.build | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/doc/_static/meson.build b/doc/_static/meson.build index 1d7d7306..3ddb2100 100644 --- a/doc/_static/meson.build +++ b/doc/_static/meson.build @@ -1,4 +1,4 @@ # Copyright 2020-2022 David Robillard <d@drobilla.net> -# SPDX-License-Identifier: CC0-1.0 OR ISC +# SPDX-License-Identifier: 0BSD OR ISC configure_file(copy: true, input: '../../resources/serd.svg', output: 'serd.svg') diff --git a/doc/c/Doxyfile.in b/doc/c/Doxyfile.in index 6290a224..a33ec7c4 100644 --- a/doc/c/Doxyfile.in +++ b/doc/c/Doxyfile.in @@ -1,5 +1,5 @@ # Copyright 2021-2022 David Robillard <d@drobilla.net> -# SPDX-License-Identifier: CC0-1.0 OR ISC +# SPDX-License-Identifier: 0BSD OR ISC PROJECT_NAME = Serd PROJECT_BRIEF = "A lightweight C library for working with RDF data" diff --git a/doc/c/api/meson.build b/doc/c/api/meson.build index fcf67919..377cb2b4 100644 --- a/doc/c/api/meson.build +++ b/doc/c/api/meson.build @@ -1,5 +1,5 @@ # Copyright 2020-2022 David Robillard <d@drobilla.net> -# SPDX-License-Identifier: CC0-1.0 OR ISC +# SPDX-License-Identifier: 0BSD OR ISC c_serd_rst = custom_target( 'serd.rst', diff --git a/doc/c/meson.build b/doc/c/meson.build index d31733f7..a2f7eaa5 100644 --- a/doc/c/meson.build +++ b/doc/c/meson.build @@ -1,5 +1,5 @@ # Copyright 2020-2022 David Robillard <d@drobilla.net> -# SPDX-License-Identifier: CC0-1.0 OR ISC +# SPDX-License-Identifier: 0BSD OR ISC config = configuration_data() config.set('SERD_VERSION', meson.project_version()) diff --git a/doc/c/xml/meson.build b/doc/c/xml/meson.build index dee40d6c..34852719 100644 --- a/doc/c/xml/meson.build +++ b/doc/c/xml/meson.build @@ -1,5 +1,5 @@ # Copyright 2020-2022 David Robillard <d@drobilla.net> -# SPDX-License-Identifier: CC0-1.0 OR ISC +# SPDX-License-Identifier: 0BSD OR ISC doxygen = find_program('doxygen') diff --git a/doc/meson.build b/doc/meson.build index 85e18a97..b97ba610 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -1,5 +1,5 @@ # Copyright 2020-2022 David Robillard <d@drobilla.net> -# SPDX-License-Identifier: CC0-1.0 OR ISC +# SPDX-License-Identifier: 0BSD OR ISC docdir = get_option('datadir') / 'doc' |