From 69b1907a5274d41653ffb7a5271f7930ab648a50 Mon Sep 17 00:00:00 2001 From: Kohei Morita Date: Thu, 16 Mar 2023 00:07:47 +0900 Subject: [PATCH 1/2] make LICENSE as CC0 --- atcoder/LICENSE => LICENSE | 0 README.md | 3 +-- 2 files changed, 1 insertion(+), 2 deletions(-) rename atcoder/LICENSE => LICENSE (100%) diff --git a/atcoder/LICENSE b/LICENSE similarity index 100% rename from atcoder/LICENSE rename to LICENSE diff --git a/README.md b/README.md index f0a248a..3fe665d 100644 --- a/README.md +++ b/README.md @@ -56,5 +56,4 @@ You can also see all versions in [The Release](https://github.com/atcoder/ac-lib ## License -- The header files in `atcoder` folder are licensed under a [CC0](https://creativecommons.org/publicdomain/zero/1.0/legalcode) license. -- TODO: We haven't determined the license of other files. +This library is released under the [CC0](https://creativecommons.org/publicdomain/zero/1.0/legalcode), except for the third-party libraries that are located under `/document_(en|ja)/lib` directory. Please refer [/document_en/lib/LICENSE.md](./document_en/lib/LICENSE.md) for details. From fd9fd77e3fd9afcbd101e3798f71458984d7e100 Mon Sep 17 00:00:00 2001 From: Kohei Morita Date: Thu, 16 Mar 2023 00:14:03 +0900 Subject: [PATCH 2/2] fix statement of index.md --- document_en/index.md | 2 +- document_ja/index.md | 3 ++- tools/generate_zip.py | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/document_en/index.md b/document_en/index.md index 4477006..537285d 100644 --- a/document_en/index.md +++ b/document_en/index.md @@ -55,4 +55,4 @@ ## License -The header files in `atcoder` folder are licensed under a CC0 license. See `atcoder/LICENSE` for further details. \ No newline at end of file +The files are licensed under a CC0 license, except for the third-party libraries located in the `/document_en/lib`, `/document_ja/lib` directory. diff --git a/document_ja/index.md b/document_ja/index.md index 5d64e7d..9017365 100644 --- a/document_ja/index.md +++ b/document_ja/index.md @@ -54,4 +54,5 @@ ## ライセンス -ヘッダファイル群(同梱の `atcoder` フォルダ以下)はCC0ライセンスで公開しています。詳しくは`atcoder/LICENSE`を参照してください。 +`/document_en/lib`, `/document_ja/lib` 以下で再配布しているライブラリを除きCC0ライセンスで公開しています。 + diff --git a/tools/generate_zip.py b/tools/generate_zip.py index 4f256d5..94c2d6a 100755 --- a/tools/generate_zip.py +++ b/tools/generate_zip.py @@ -28,3 +28,4 @@ zipf.write(f, f.relative_to(Path('..'))) zipf.write('../expander.py', 'expander.py') + zipf.write('../LICENSE', 'LICENSE')