pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   wiz
Date:           Wed Feb  6 14:38:02 UTC 2019

Modified Files:
        pkgsrc/mk: license.mk
        pkgsrc/pkgtools/pkg_install/files/lib: license.c

Log Message:
mk: allow Affero GPL by default

This follows a recent TNF board decision.


To generate a diff of this commit:
cvs rdiff -u -r1.95 -r1.96 pkgsrc/mk/license.mk
cvs rdiff -u -r1.52 -r1.53 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.

Modified files:

Index: pkgsrc/mk/license.mk
diff -u pkgsrc/mk/license.mk:1.95 pkgsrc/mk/license.mk:1.96
--- pkgsrc/mk/license.mk:1.95   Mon Dec 10 15:50:10 2018
+++ pkgsrc/mk/license.mk        Wed Feb  6 14:38:02 2019
@@ -1,11 +1,11 @@
-# $NetBSD: license.mk,v 1.95 2018/12/10 15:50:10 gdt Exp $
+# $NetBSD: license.mk,v 1.96 2019/02/06 14:38:02 wiz Exp $
 #
 # This file handles everything about the LICENSE variable. It is
 # included automatically by bsd.pkg.mk.
 #
 # XXX There should be one place to set the default list and for users
 # to set the ACCEPTABLE_LICENSES list, used by both source builds and
-# binary installs#
+# binary installs.
 #
 # XXX: Some of this content arguably belongs in the pkgsrc guide
 # instead.
@@ -79,17 +79,11 @@
 #      acceptability must be inferred from inclusion in main.
 #
 #      The board of The NetBSD Foundation is the final arbiter of
-#      which licenses may be in DEFAULT_ACCEPTABLE_LICENSES.  As an
-#      exception to the above policy on treating Free, Open Source,
-#      and DFSG licenses as acceptable, the board has decided that
-#      licenses that trigger obligations from use (rather than
-#      redistribution), such as the Affero GPL, should not be in
-#      DEFAULT_ACCEPTABLE_LICENSES.
+#      which licenses may be in DEFAULT_ACCEPTABLE_LICENSES.
 #
 #      Licenses not formally approved as Free or Open Source may be
-#      added if they have terms that would 1) obviously be approved
-#      by FSF or OSI if the effort were made and 2) obviously not
-#      trigger the above issue with AGPL-type licenses.  Such license
+#      added if they have terms that would obviously be approved
+#      by FSF or OSI if the effort were made.  Such license
 #      names will be in an additional section and have a comment near
 #      them in the assignment to DEFAULT_ACCEPTABLE_LICENSES.
 #
@@ -128,6 +122,7 @@ DEFAULT_ACCEPTABLE_LICENSES= \
        epl-v1.0 \
        eupl-v1.1 \
        gfsl \
+       gnu-agpl-v3 \
        gnu-fdl-v1.1 gnu-fdl-v1.2 gnu-fdl-v1.3 \
        gnu-gpl-v1 \
        gnu-gpl-v2 gnu-lgpl-v2 gnu-lgpl-v2.1 \

Index: pkgsrc/pkgtools/pkg_install/files/lib/license.c
diff -u pkgsrc/pkgtools/pkg_install/files/lib/license.c:1.52 pkgsrc/pkgtools/pkg_install/files/lib/license.c:1.53
--- pkgsrc/pkgtools/pkg_install/files/lib/license.c:1.52        Tue Aug 14 13:21:07 2018
+++ pkgsrc/pkgtools/pkg_install/files/lib/license.c     Wed Feb  6 14:38:02 2019
@@ -1,4 +1,4 @@
-/*     $NetBSD: license.c,v 1.52 2018/08/14 13:21:07 leot Exp $        */
+/*     $NetBSD: license.c,v 1.53 2019/02/06 14:38:02 wiz Exp $ */
 
 /*-
  * Copyright (c) 2009 Joerg Sonnenberger <joerg%NetBSD.org@localhost>.
@@ -60,6 +60,7 @@ const char *default_acceptable_licenses 
     "epl-v1.0 "
     "eupl-v1.1 "
     "gfsl "
+    "gnu-agpl-v3 "
     "gnu-fdl-v1.1 gnu-fdl-v1.2 gnu-fdl-v1.3 "
     "gnu-gpl-v1 "
     "gnu-gpl-v2 gnu-lgpl-v2 gnu-lgpl-v2.1 "



Home | Main Index | Thread Index | Old Index