head	1.2;
access;
symbols
	pkgsrc-2026Q1:1.2.0.6
	pkgsrc-2026Q1-base:1.2
	pkgsrc-2025Q4:1.2.0.4
	pkgsrc-2025Q4-base:1.2
	pkgsrc-2025Q3:1.2.0.2
	pkgsrc-2025Q3-base:1.2
	pkgsrc-2025Q2:1.1.0.18
	pkgsrc-2025Q2-base:1.1
	pkgsrc-2025Q1:1.1.0.16
	pkgsrc-2025Q1-base:1.1
	pkgsrc-2024Q4:1.1.0.14
	pkgsrc-2024Q4-base:1.1
	pkgsrc-2024Q3:1.1.0.12
	pkgsrc-2024Q3-base:1.1
	pkgsrc-2024Q2:1.1.0.10
	pkgsrc-2024Q2-base:1.1
	pkgsrc-2024Q1:1.1.0.8
	pkgsrc-2024Q1-base:1.1
	pkgsrc-2023Q4:1.1.0.6
	pkgsrc-2023Q4-base:1.1
	pkgsrc-2023Q3:1.1.0.4
	pkgsrc-2023Q3-base:1.1
	pkgsrc-2023Q2:1.1.0.2
	pkgsrc-2023Q2-base:1.1;
locks; strict;
comment	@# @;


1.2
date	2025.08.05.18.46.30;	author schmonz;	state Exp;
branches;
next	1.1;
commitid	BbUfXKHIy1SCyz5G;

1.1
date	2023.04.10.13.59.38;	author schmonz;	state Exp;
branches;
next	;
commitid	odHBLa40Bn2cezkE;


desc
@@


1.2
log
@## What's Changed

* Use POSIX syntax for Bash detection
* Fix typo in README: our -> your
* Update to remove shellcheck warnings
* Check Bash version 3.1+
* Addtional fixes for `shellcheck`
* Try to better handle external modification to `$PROMPT_COMMAND`
* Support the array PROMPT_COMMAND (bash >= 5.1)
* Fix the test for the Bash version for shellcheck
* Don't load if old version already present
* Fix false-negative test case for __bp_install
* Exclude the `bind -x` commands from interactive commands
* Fix indentation and remove trailing semicolons
* Improve prior_trap processing
* Remove dependency on sed(1) for history processing
@
text
@# $NetBSD: Makefile,v 1.1 2023/04/10 13:59:38 schmonz Exp $

DISTNAME=		bash-preexec-0.6.0
CATEGORIES=		shells
MASTER_SITES=		${MASTER_SITE_GITHUB:=rcaloras/}
GITHUB_TAG=		${PKGVERSION_NOREV}

MAINTAINER=		schmonz@@NetBSD.org
HOMEPAGE=		https://github.com/rcaloras/bash-preexec/
COMMENT=		Preexec and precmd hook functions a la zsh
LICENSE=		mit

USE_LANGUAGES=		# none
NO_BUILD=		yes
INSTALLATION_DIRS=	${PREFIX}/share/${PKGBASE}

do-install:
	${INSTALL_DATA} ${WRKSRC}/${PKGBASE}.sh ${DESTDIR}${PREFIX}/share/${PKGBASE}/

.include "../../mk/bsd.pkg.mk"
@


1.1
log
@Add bash-preexec: Preexec and precmd hook functions a la zsh

preexec and precmd hook functions for Bash in the style of Zsh. They aim
to emulate the behavior as described for Zsh.
@
text
@d1 1
a1 1
# $NetBSD$
d3 1
a3 1
DISTNAME=		bash-preexec-0.5.0
@

