From owner-freebsd-bugs@FreeBSD.ORG Sun Jul 10 20:40:09 2011 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B57E51065670 for ; Sun, 10 Jul 2011 20:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9384E8FC0C for ; Sun, 10 Jul 2011 20:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p6AKe9FA024676 for ; Sun, 10 Jul 2011 20:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p6AKe9iI024675; Sun, 10 Jul 2011 20:40:09 GMT (envelope-from gnats) Resent-Date: Sun, 10 Jul 2011 20:40:09 GMT Resent-Message-Id: <201107102040.p6AKe9iI024675@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Eitan Adler Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8453A106564A for ; Sun, 10 Jul 2011 20:31:58 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 74C508FC08 for ; Sun, 10 Jul 2011 20:31:58 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p6AKVwBC034548 for ; Sun, 10 Jul 2011 20:31:58 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p6AKVwxM034547; Sun, 10 Jul 2011 20:31:58 GMT (envelope-from nobody) Message-Id: <201107102031.p6AKVwxM034547@red.freebsd.org> Date: Sun, 10 Jul 2011 20:31:58 GMT From: Eitan Adler To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: misc/158776: [patch] [bsd.license.db.mk] add support for the copyfree group of licenses X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jul 2011 20:40:09 -0000 >Number: 158776 >Category: misc >Synopsis: [patch] [bsd.license.db.mk] add support for the copyfree group of licenses >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Jul 10 20:40:09 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Eitan Adler >Release: >Organization: >Environment: >Description: There are some zealots that want to explicitly be asked about any non-copyfree licenses, and some enterprise companies probably don't want copyleft software, but don't mind copyfree software. This patch adds the group to the license database. More information here: http://copyfree.org/ >How-To-Repeat: >Fix: Index: bsd.licenses.db.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.licenses.db.mk,v retrieving revision 1.14 diff -u -r1.14 bsd.licenses.db.mk --- bsd.licenses.db.mk 25 Mar 2011 20:52:48 -0000 1.14 +++ bsd.licenses.db.mk 10 Jul 2011 20:21:42 -0000 @@ -48,6 +48,8 @@ _LICENSE_NAME_OSI= OSI Approved +_LICENSE_NAME_COPYFREE= Comply with Copyfree Standard Definition. + # Default permissions for licenses here, if not defined _LICENSE_PERMS_DEFAULT= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept @@ -70,13 +72,13 @@ _LICENSE_GROUPS_ART20= FSF GPL OSI _LICENSE_NAME_ASL= Apache License -_LICENSE_GROUPS_ASL= FSF OSI +_LICENSE_GROUPS_ASL= FSF OSI COPYFREE _LICENSE_NAME_BSD= BSD license -_LICENSE_GROUPS_BSD= FSF OSI +_LICENSE_GROUPS_BSD= FSF OSI COPYFREE _LICENSE_NAME_BSL= Boost Software License -_LICENSE_GROUPS_BSL= FSF OSI +_LICENSE_GROUPS_BSL= FSF OSI COPYFREE _LICENSE_NAME_CDDL= Common Development and Distribution License _LICENSE_GROUPS_CDDL= FSF OSI @@ -97,7 +99,7 @@ _LICENSE_GROUPS_GPLv3= FSF GPL OSI _LICENSE_NAME_ISCL= Internet Systems Consortium License -_LICENSE_GROUPS_ISCL= FSF GPL OSI +_LICENSE_GROUPS_ISCL= FSF GPL OSI COPYFREE _LICENSE_NAME_LGPL20= GNU Library General Public License version 2.0 _LICENSE_GROUPS_LGPL20= FSF GPL OSI @@ -137,13 +139,13 @@ _LICENSE_PERMS_LPPL13c= dist-mirror dist-sell _LICENSE_NAME_MIT= MIT license / X11 license -_LICENSE_GROUPS_MIT= FSF GPL OSI +_LICENSE_GROUPS_MIT= FSF GPL OSI COPYFREE _LICENSE_NAME_MPL= Mozilla Public License _LICENSE_GROUPS_MPL= FSF OSI _LICENSE_NAME_OWL= Open Works License (owl.apotheon.org) -_LICENSE_GROUPS_OWL= +_LICENSE_GROUPS_OWL= COPYFREE _LICENSE_NAME_PHP202= PHP License version 2.02 _LICENSE_GROUPS_PHP202= FSF OSI >Release-Note: >Audit-Trail: >Unformatted: