Received: by mail.netbsd.org (Postfix, from userid 605) id 5B84E84EEB; Thu, 25 Jan 2024 14:32:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8CC7584CF2 for ; Thu, 25 Jan 2024 14:32:29 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id dLuejKKeryR8 for ; Thu, 25 Jan 2024 14:32:29 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D4DC984CE2 for ; Thu, 25 Jan 2024 14:32:28 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CD279FA42; Thu, 25 Jan 2024 14:32:28 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1706193148228010" MIME-Version: 1.0 Date: Thu, 25 Jan 2024 14:32:28 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/graphics/jpeg_ls To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20240125143228.CD279FA42@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1706193148228010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Thu Jan 25 14:32:28 UTC 2024 Modified Files: pkgsrc/graphics/jpeg_ls: Makefile Log Message: graphics/jpeg_ls: Remediate no-commercial-use Change to generic-nonlicense. While this has some text and could be added, the text is self contradictory, both granting permission to redistribute and then prohibiting it. The text also intends to restrict running the program, which is not a right reserved to the copyright holder. It seems more reasonable to propose deletion of the package than cause clutter by adding this text. Set NO_*_ON_CDROM. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 pkgsrc/graphics/jpeg_ls/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1706193148228010 Content-Disposition: inline Content-Length: 1036 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/jpeg_ls/Makefile diff -u pkgsrc/graphics/jpeg_ls/Makefile:1.11 pkgsrc/graphics/jpeg_ls/Makefile:1.12 --- pkgsrc/graphics/jpeg_ls/Makefile:1.11 Sat Apr 6 15:46:36 2013 +++ pkgsrc/graphics/jpeg_ls/Makefile Thu Jan 25 14:32:28 2024 @@ -1,15 +1,22 @@ -# $NetBSD: Makefile,v 1.11 2013/04/06 15:46:36 rodent Exp $ +# $NetBSD: Makefile,v 1.12 2024/01/25 14:32:28 gdt Exp $ # DISTNAME= jpeg_ls_v2.2 PKGNAME= jpeg_ls-2.2 +PKGREVISION= 1 CATEGORIES= graphics MASTER_SITES= http://kt.ijs.si/aleks/jpeg-ls/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://kt.ijs.si/aleks/jpeg-ls/mirror.htm COMMENT= JPEG-LS codec (lossless/near-lossless codec) -LICENSE= no-commercial-use +# Boutique license not in pkgsrc: self contradictory and vague, referring to +# "commercial programs". +LICENSE= generic-nonlicense + +RESTRICTED= No commercial use, no distribution fee. +NO_BIN_ON_CDROM= ${RESTRICTED} +NO_SRC_ON_CDROM= ${RESTRICTED} BUILD_DIRS= Decoder Encoder MAKE_FILE= makefile --_----------=_1706193148228010--