From owner-dev-commits-ports-all@freebsd.org Fri Apr 16 18:07:47 2021 Return-Path: Delivered-To: dev-commits-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BC3DC5DA45A; Fri, 16 Apr 2021 18:07:47 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FMPM752HYz4gN2; Fri, 16 Apr 2021 18:07:47 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9F9111702; Fri, 16 Apr 2021 18:07:47 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13GI7liQ055208; Fri, 16 Apr 2021 18:07:47 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13GI7lxC055207; Fri, 16 Apr 2021 18:07:47 GMT (envelope-from git) Date: Fri, 16 Apr 2021 18:07:47 GMT Message-Id: <202104161807.13GI7lxC055207@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Emanuel Haupt Subject: git: a0fcd3d70750 - main - shells/bash:Prefix '/etc/inputrc' in bundled readline and documentation MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: ehaupt X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: a0fcd3d7075010c6f0e41309a680f2611fa95249 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2021 18:07:47 -0000 The branch main has been updated by ehaupt: URL: https://cgit.FreeBSD.org/ports/commit/?id=a0fcd3d7075010c6f0e41309a680f2611fa95249 commit a0fcd3d7075010c6f0e41309a680f2611fa95249 Author: Emanuel Haupt AuthorDate: 2021-04-16 18:01:43 +0000 Commit: Emanuel Haupt CommitDate: 2021-04-16 18:07:43 +0000 shells/bash:Prefix '/etc/inputrc' in bundled readline and documentation Bundled readline now will use LOCALBASE/etc/inputrc as its ultimate default inputrc file (instead of /etc/inputrc). This puts these ports in line with what devel/readline has been doing recently (since 20210103). PR: 255126 Submitted by: olivier.freebsd@free.fr --- UPDATING | 8 ++++++++ shells/bash/Makefile | 5 ++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/UPDATING b/UPDATING index a4bd84505977..547011970462 100644 --- a/UPDATING +++ b/UPDATING @@ -5,6 +5,14 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20210416: + AFFECTS: Users of shells/bash, shells/bash-static with PORTS_READLINE=off + AUTHOR: olce.freebsd@certner.fr + + Bundled readline now will use LOCALBASE/etc/inputrc as its ultimate default + inputrc file (instead of /etc/inputrc). This puts these ports in line with + what devel/readline has been doing recently (since 20210103). + 20210414: AFFECTS: users of graphics/OpenEXR or graphics/ilmbase AUTHOR: mandree@FreeBSD.org diff --git a/shells/bash/Makefile b/shells/bash/Makefile index af7c1b74a60f..a56d6db9c752 100644 --- a/shells/bash/Makefile +++ b/shells/bash/Makefile @@ -3,7 +3,7 @@ PORTNAME= bash PATCHLEVEL= 4 PORTVERSION= 5.1.${PATCHLEVEL:S/^0//g} -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= shells MASTER_SITES= GNU DISTNAME= ${PORTNAME}-${PORTVERSION:R} @@ -93,6 +93,9 @@ post-patch: .endif @${REINPLACE_CMD} -e "s|\(/etc/profile\)|${LOCALBASE}\1|" \ ${WRKSRC}/pathnames.h.in + @${REINPLACE_CMD} -e "s|/etc/[iI]nputrc|${LOCALBASE}/etc/inputrc|g" \ + ${WRKSRC}/doc/*.info ${WRKSRC}/doc/*.html ${WRKSRC}/doc/*.1 \ + ${WRKSRC}/lib/readline/rlconf.h post-patch-SYSBASHRC-on: @${REINPLACE_CMD} \