From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 19B7F1581D3 for ; Wed, 15 May 2024 09:56:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45C01E2A4C; Wed, 15 May 2024 09:56:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2DA61E2A33 for ; Wed, 15 May 2024 09:56:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 590F5335DC2 for ; Wed, 15 May 2024 09:56:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B59651ACC for ; Wed, 15 May 2024 09:56:30 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1715766960.d9693ad88495e10541680350421c614089809ffd.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/anki/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/anki/anki-23.12.1.ebuild X-VCS-Directories: app-misc/anki/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: d9693ad88495e10541680350421c614089809ffd X-VCS-Branch: master Date: Wed, 15 May 2024 09:56:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 95c53d74-7fb5-48e1-968f-50528d5f5aab X-Archives-Hash: f1324e760af305cabc374ef10946043a commit: d9693ad88495e10541680350421c614089809ffd Author: Lucio Sauer posteo net> AuthorDate: Mon Mar 25 20:44:42 2024 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Wed May 15 09:56:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9693ad8 app-misc/anki: add missing Unicode-3.0 license for tinystr crate Deduplicate license expression Remove redundant licensing comments Signed-off-by: Lucio Sauer posteo.net> Signed-off-by: Florian Schmaus gentoo.org> app-misc/anki/anki-23.12.1.ebuild | 37 +++++-------------------------------- 1 file changed, 5 insertions(+), 32 deletions(-) diff --git a/app-misc/anki/anki-23.12.1.ebuild b/app-misc/anki/anki-23.12.1.ebuild index 63f7f131ebee..5564846d6d89 100644 --- a/app-misc/anki/anki-23.12.1.ebuild +++ b/app-misc/anki/anki-23.12.1.ebuild @@ -690,43 +690,16 @@ PATCHES=( IUSE="+gui qt6 test" RESTRICT="!gui? ( test ) !test? ( test )" -# The program itself is licensed under AGPL-3+ with contributed portions licensed -# under BSD-3. -# The translation files are licensed under BSD-3 and public-domain. -# - ftl/ -LICENSE="AGPL-3+ BSD public-domain" +# How to get an up-to-date summary of runtime JS libs' licenses: +# ./node_modules/.bin/license-checker-rseidelsohn --production --excludePackages anki --summary +LICENSE="AGPL-3+ BSD public-domain gui? ( 0BSD CC-BY-4.0 GPL-3+ Unlicense )" # Dependent crate licenses LICENSE+=" - Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 BSD CC0-1.0 ISC MIT + Apache-2.0 Apache-2.0-with-LLVM-exceptions BSD-2 CC0-1.0 ISC MIT MPL-2.0 Unicode-DFS-2016 ZLIB " # Manually added crate licenses -LICENSE+=" openssl" -# The supermemo importer is licensed under GPL-3+ and 0BSD. -# - pylib/anki/importing/supermemo_xml.py -# -# Anki bundles 3rd-party code and assets: -# The MathJax files are licensed under Apache-2.0. -# - node_modules/mathjax/es5/ -# -# The fancy deboss pattern is licensed under CC-BY-4.0. -# - pylib/anki/statsbg.py -# -# The patched MPV controls are licensed under MIT. -# - qt/aqt/mpv.py -# -# The Winpath module is licensed under MIT. -# - qt/aqt/winpaths.py -# -# The licenses for the runtime JS libaries are documented in the source code. -# - ts/licenses.json -# How to get an up-to-date summary: -# ./node_modules/.bin/license-checker-rseidelsohn --production --excludePackages anki --summary -# -# The vendored Flot plotting library is licensed under MIT. -# - qt/aqt/data/web/js/vendor/plot.js -LICENSE+=" gui? ( 0BSD CC-BY-4.0 GPL-3+ Unlicense )" - +LICENSE+=" Unicode-3.0 openssl" SLOT="0" KEYWORDS="~amd64 ~x86" REQUIRED_USE="gui? ( ${PYTHON_REQUIRED_USE} )"