head	1.2;
access;
symbols
	pkgsrc-2026Q1:1.2.0.70
	pkgsrc-2026Q1-base:1.2
	pkgsrc-2025Q4:1.2.0.68
	pkgsrc-2025Q4-base:1.2
	pkgsrc-2025Q3:1.2.0.66
	pkgsrc-2025Q3-base:1.2
	pkgsrc-2025Q2:1.2.0.64
	pkgsrc-2025Q2-base:1.2
	pkgsrc-2025Q1:1.2.0.62
	pkgsrc-2025Q1-base:1.2
	pkgsrc-2024Q4:1.2.0.60
	pkgsrc-2024Q4-base:1.2
	pkgsrc-2024Q3:1.2.0.58
	pkgsrc-2024Q3-base:1.2
	pkgsrc-2024Q2:1.2.0.56
	pkgsrc-2024Q2-base:1.2
	pkgsrc-2024Q1:1.2.0.54
	pkgsrc-2024Q1-base:1.2
	pkgsrc-2023Q4:1.2.0.52
	pkgsrc-2023Q4-base:1.2
	pkgsrc-2023Q3:1.2.0.50
	pkgsrc-2023Q3-base:1.2
	pkgsrc-2023Q2:1.2.0.48
	pkgsrc-2023Q2-base:1.2
	pkgsrc-2023Q1:1.2.0.46
	pkgsrc-2023Q1-base:1.2
	pkgsrc-2022Q4:1.2.0.44
	pkgsrc-2022Q4-base:1.2
	pkgsrc-2022Q3:1.2.0.42
	pkgsrc-2022Q3-base:1.2
	pkgsrc-2022Q2:1.2.0.40
	pkgsrc-2022Q2-base:1.2
	pkgsrc-2022Q1:1.2.0.38
	pkgsrc-2022Q1-base:1.2
	pkgsrc-2021Q4:1.2.0.36
	pkgsrc-2021Q4-base:1.2
	pkgsrc-2021Q3:1.2.0.34
	pkgsrc-2021Q3-base:1.2
	pkgsrc-2021Q2:1.2.0.32
	pkgsrc-2021Q2-base:1.2
	pkgsrc-2021Q1:1.2.0.30
	pkgsrc-2021Q1-base:1.2
	pkgsrc-2020Q4:1.2.0.28
	pkgsrc-2020Q4-base:1.2
	pkgsrc-2020Q3:1.2.0.26
	pkgsrc-2020Q3-base:1.2
	pkgsrc-2020Q2:1.2.0.22
	pkgsrc-2020Q2-base:1.2
	pkgsrc-2020Q1:1.2.0.2
	pkgsrc-2020Q1-base:1.2
	pkgsrc-2019Q4:1.2.0.24
	pkgsrc-2019Q4-base:1.2
	pkgsrc-2019Q3:1.2.0.20
	pkgsrc-2019Q3-base:1.2
	pkgsrc-2019Q2:1.2.0.18
	pkgsrc-2019Q2-base:1.2
	pkgsrc-2019Q1:1.2.0.16
	pkgsrc-2019Q1-base:1.2
	pkgsrc-2018Q4:1.2.0.14
	pkgsrc-2018Q4-base:1.2
	pkgsrc-2018Q3:1.2.0.12
	pkgsrc-2018Q3-base:1.2
	pkgsrc-2018Q2:1.2.0.10
	pkgsrc-2018Q2-base:1.2
	pkgsrc-2018Q1:1.2.0.8
	pkgsrc-2018Q1-base:1.2
	pkgsrc-2017Q4:1.2.0.6
	pkgsrc-2017Q4-base:1.2
	pkgsrc-2017Q3:1.2.0.4
	pkgsrc-2017Q3-base:1.2
	pkgsrc-2017Q2:1.1.0.2
	pkgsrc-2017Q2-base:1.1;
locks; strict;
comment	@# @;


1.2
date	2017.08.10.05.41.52;	author jlam;	state Exp;
branches;
next	1.1;
commitid	IFyn5iKDC9VJYC2A;

1.1
date	2017.06.01.02.09.43;	author jlam;	state Exp;
branches;
next	;
commitid	m03sy1g74h2t3CTz;


desc
@@


1.2
log
@mk/pkgtasks: Failures in POST- stages of the scripts are non-fatal.

The return values of the postinstall and postremove meta-tasks are
ignored unless the user-settable variable ${PKG_FATAL_ERRORS} is
"yes".  ${PKG_FATAL_ERRORS} defaults to "no" to preserve the
existing behavior of install scripts by mk/pkginstall.
@
text
@### START: pkgsrc/mk/pkgformat/pkg/templates/deinstall
#
# Copyright (c) 2017 The NetBSD Foundation, Inc.
# All rights reserved.
#
# This code is derived from software contributed to The NetBSD Foundation
# by Johnny C. Lam.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
# $NetBSD: deinstall,v 1.1 2017/06/01 02:09:43 jlam Exp $

case ${STAGE} in
DEINSTALL)
	task_load preremove

	# Use the data in the shell comments appended at the end of
	# the script.
	#
	# Failures during the "DEINSTALL" stage are fatal since the
	# package files likely can't be removed properly if that
	# happens.
	#
	task_preremove "${SELF}" || exit $?
	;;

POST-DEINSTALL)
	task_load postremove
	task_load truthy

	# Use the data in the shell comments appended at the end of
	# the script.
	#
	# Failures during the POST-DEINSTALL stage are non-fatal, so
	# ignore the return value of the "postremove" task unless
	# ${PKG_FATAL_ERRORS} is truthy.
	#
	if task_is_truthy "${PKG_FATAL_ERRORS}"; then
		task_postremove "${SELF}" || exit $?
	else
		task_postremove "${SELF}"
	fi
	;;
esac

### END: pkgsrc/mk/pkgformat/pkg/templates/deinstall
@


1.1
log
@Make creation of +DEINSTALL/+INSTALL scripts pkgformat-specific.

Move the files needed to generate +DEINSTALL and +INSTALL scripts
for the "pkg" format into pkgsrc/mk/pkgformat/pkg.

Create new script templates that make use of "pkgtasks" to perform
the actual tasks.
@
text
@d30 1
a30 1
# $NetBSD$
d39 4
d48 1
d54 2
a55 1
	# ignore the return value of the "postremove" task.
d57 5
a61 1
	task_postremove "${SELF}"
@

