Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=EtMGi2rS; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=BBYs6Mi0 Received: by mail.netbsd.org (Postfix, from userid 605) id 15B0C84F40; Tue, 14 May 2024 20:28:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715718514; bh=6D+Uuwr9z0XroHEkHbJSKlORE63Wd8Mo32yfrRY7p5A=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=EtMGi2rSQaSRFyYqEGT6vj0dMj7mv0PcbVKFYloVcmiUg5J09p/IRj/Isba+feME/ sJtkkqtqNUH46WC01lQ1dAwjbuSmAUXrlkSOpraWauvQzd/5tE17Cd8JxxYJtLoRaG nuxQq63690vBi8xqfWnLiMch1fD15C70NBM82xsc= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E66E184F67 for ; Tue, 14 May 2024 20:28:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id SxdnYLGRspLg for ; Tue, 14 May 2024 20:28:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 3ACC384CC9 for ; Tue, 14 May 2024 20:28:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715718512; bh=6D+Uuwr9z0XroHEkHbJSKlORE63Wd8Mo32yfrRY7p5A=; h=Date:From:Subject:To:Reply-To; b=BBYs6Mi0WGWpPCbWpD10vtUXGxasAOmQuyzMXYDk0DwSigaDe+s6JHzWRVMUWYkKE kT6wnpyfWoy9rRf9FyX6WS5ju2y9pybsgUP7oynZM7XbBQ7NRzs+YKo4OO9DgUaM8i 2fQinq5eYAMN3KoCI/YXb5PXbKQ5on2ZJNrYGfeY= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 314E5FA2C; Tue, 14 May 2024 20:28:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715718512147790" MIME-Version: 1.0 Date: Tue, 14 May 2024 20:28:32 +0000 From: "Jason Bacon" Subject: CVS commit: pkgsrc/mk/pkginstall To: pkgsrc-changes@NetBSD.org Reply-To: bacon@netbsd.org X-Mailer: log_accum Message-Id: <20240514202832.314E5FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715718512147790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bacon Date: Tue May 14 20:28:32 UTC 2024 Modified Files: pkgsrc/mk/pkginstall: bsd.pkginstall.mk Log Message: mk/pkginstall/bsd.pkginstall.mk: Clarify behavior of PKG_RCD_SCRIPTS To generate a diff of this commit: cvs rdiff -u -r1.79 -r1.80 pkgsrc/mk/pkginstall/bsd.pkginstall.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715718512147790 Content-Disposition: inline Content-Length: 1176 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/pkginstall/bsd.pkginstall.mk diff -u pkgsrc/mk/pkginstall/bsd.pkginstall.mk:1.79 pkgsrc/mk/pkginstall/bsd.pkginstall.mk:1.80 --- pkgsrc/mk/pkginstall/bsd.pkginstall.mk:1.79 Tue Jun 27 10:27:21 2023 +++ pkgsrc/mk/pkginstall/bsd.pkginstall.mk Tue May 14 20:28:32 2024 @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkginstall.mk,v 1.79 2023/06/27 10:27:21 riastradh Exp $ +# $NetBSD: bsd.pkginstall.mk,v 1.80 2024/05/14 20:28:32 bacon Exp $ # # This Makefile fragment is included by bsd.pkg.mk and implements the # common INSTALL/DEINSTALL scripts framework. To use the pkginstall @@ -1020,6 +1020,9 @@ ${_INSTALL_ICON_THEMES_FILE}: ../../mk/p # PKG_RCD_SCRIPTS indicates whether to automatically install rc.d scripts # to ${RCD_SCRIPTS_DIR}. It is either YES or NO and defaults to # NO. This variable only takes effect if ${PKG_CONFIG} == "YES". +# Unmodified scripts are removed upon deinstall. Modified scripts +# are left in-place and will not be replaced if the package is +# reinstalled or upgraded. # # PKG_REGISTER_SHELLS indicates whether to automatically register shells # in /etc/shells. It is either YES or NO and defaults to YES. --_----------=_1715718512147790--