git: cd08d6c7ed39 - main - security/mbedtls: fix LICENSE (dual with GPLv2+)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 11 Dec 2021 23:16:50 UTC
The branch main has been updated by mandree: URL: https://cgit.FreeBSD.org/ports/commit/?id=cd08d6c7ed39147df7ed9beef9536c9c5151ac01 commit cd08d6c7ed39147df7ed9beef9536c9c5151ac01 Author: Matthias Andree <mandree@FreeBSD.org> AuthorDate: 2021-12-11 23:06:22 +0000 Commit: Matthias Andree <mandree@FreeBSD.org> CommitDate: 2021-12-11 23:16:20 +0000 security/mbedtls: fix LICENSE (dual with GPLv2+) "Unless specifically indicated otherwise in a file, Mbed TLS files are provided under the Apache License 2.0, or the GNU General Public License v2.0 or later (SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later)." Approved by: portmgr@ (blanket metadata change approval) --- security/mbedtls/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/security/mbedtls/Makefile b/security/mbedtls/Makefile index f50634a5cbed..a339c83f21ca 100644 --- a/security/mbedtls/Makefile +++ b/security/mbedtls/Makefile @@ -6,8 +6,10 @@ CATEGORIES= security devel MAINTAINER= tijl@FreeBSD.org COMMENT= SSL/TLS and cryptography library -LICENSE= APACHE20 -LICENSE_FILE= ${WRKSRC}/apache-2.0.txt +LICENSE= APACHE20 GPLv2+ +LICENSE_COMB= dual +LICENSE_FILE_APACHE20= ${WRKSRC}/apache-2.0.txt +LICENSE_FILE_GPLv2= ${WRKSRC}/gpl-2.0.txt USE_GITHUB= yes GH_ACCOUNT= ARMmbed