diff options
author | David Robillard <d@drobilla.net> | 2022-09-08 15:34:42 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-09-08 15:34:42 -0400 |
commit | 5abab67cb5901ebaf875b9e113437c63473b15f5 (patch) | |
tree | 8cb77a6de38328afbf9f9784e1da1f21320c202b /doc | |
parent | 0e71d02c73ef5e290abf876bf2b336b61a8fe390 (diff) | |
download | sratom-5abab67cb5901ebaf875b9e113437c63473b15f5.tar.gz sratom-5abab67cb5901ebaf875b9e113437c63473b15f5.tar.bz2 sratom-5abab67cb5901ebaf875b9e113437c63473b15f5.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/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 |
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/c/Doxyfile.in b/doc/c/Doxyfile.in index bf42e8f..5364912 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 = Sratom PROJECT_BRIEF = "A small library for serializing LV2 atoms" diff --git a/doc/c/api/meson.build b/doc/c/api/meson.build index dfdad11..259117d 100644 --- a/doc/c/api/meson.build +++ b/doc/c/api/meson.build @@ -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 c_sratom_rst = custom_target( 'sratom.rst', diff --git a/doc/c/meson.build b/doc/c/meson.build index 1742601..2a7a030 100644 --- a/doc/c/meson.build +++ b/doc/c/meson.build @@ -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 config = configuration_data() config.set('SRATOM_VERSION', meson.project_version()) diff --git a/doc/c/xml/meson.build b/doc/c/xml/meson.build index 7832ff6..cf1b148 100644 --- a/doc/c/xml/meson.build +++ b/doc/c/xml/meson.build @@ -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 doxygen = find_program('doxygen') diff --git a/doc/meson.build b/doc/meson.build index 93bcaf4..7e447d5 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -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 docdir = get_option('datadir') / 'doc' |