Received: by mail.netbsd.org (Postfix, from userid 605) id 6E97385016; Tue, 14 Aug 2018 13:21:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 740CA84F42 for ; Tue, 14 Aug 2018 13:21:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Q1_ghbfCJDnu for ; Tue, 14 Aug 2018 13:21:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9B9A084D39 for ; Tue, 14 Aug 2018 13:21:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 93D99FBEC; Tue, 14 Aug 2018 13:21:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1534252867249640" MIME-Version: 1.0 Date: Tue, 14 Aug 2018 13:21:07 +0000 From: "Leonardo Taccari" Subject: CVS commit: pkgsrc/pkgtools/pkg_install/files/lib To: pkgsrc-changes@NetBSD.org Reply-To: leot@netbsd.org X-Mailer: log_accum Message-Id: <20180814132107.93D99FBEC@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1534252867249640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: leot Date: Tue Aug 14 13:21:07 UTC 2018 Modified Files: pkgsrc/pkgtools/pkg_install/files/lib: license.c Log Message: pkg_install: Sync with DEFAULT_ACCEPTABLE_LICENSES in mk/license.mk Add `cc-by-sa-v4.0', `cc-by-v4.0' and `osl' to *default_acceptable_licenses to sync it with DEFAULT_ACCEPTABLE_LICENSES of mk/license.mk. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/pkgtools/pkg_install/files/lib/license.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1534252867249640 Content-Disposition: inline Content-Length: 1005 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pkg_install/files/lib/license.c diff -u pkgsrc/pkgtools/pkg_install/files/lib/license.c:1.51 pkgsrc/pkgtools/pkg_install/files/lib/license.c:1.52 --- pkgsrc/pkgtools/pkg_install/files/lib/license.c:1.51 Mon Feb 5 00:07:56 2018 +++ pkgsrc/pkgtools/pkg_install/files/lib/license.c Tue Aug 14 13:21:07 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: license.c,v 1.51 2018/02/05 00:07:56 kamil Exp $ */ +/* $NetBSD: license.c,v 1.52 2018/08/14 13:21:07 leot Exp $ */ /*- * Copyright (c) 2009 Joerg Sonnenberger . @@ -51,6 +51,8 @@ const char *default_acceptable_licenses "artistic artistic-2.0 " "boost-license " "cc-by-sa-v3.0 " + "cc-by-sa-v4.0 " + "cc-by-v4.0 " "cc0-1.0-universal " "cddl-1.0 " "cecill-2.1 " @@ -77,6 +79,7 @@ const char *default_acceptable_licenses "ofl-v1.0 ofl-v1.1 " "openssl " "original-bsd modified-bsd 2-clause-bsd " + "osl " "paratype " "php " "png-license " --_----------=_1534252867249640--