From owner-dev-commits-ports-main@freebsd.org Wed Jun 16 22:06:00 2021 Return-Path: Delivered-To: dev-commits-ports-main@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 0E1F3644BA3; Wed, 16 Jun 2021 22:06:00 +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 4G4zlq739Xz3wTL; Wed, 16 Jun 2021 22:05:59 +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 DA53523A08; Wed, 16 Jun 2021 22:05:59 +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 15GM5xo7062937; Wed, 16 Jun 2021 22:05:59 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 15GM5xUG062936; Wed, 16 Jun 2021 22:05:59 GMT (envelope-from git) Date: Wed, 16 Jun 2021 22:05:59 GMT Message-Id: <202106162205.15GM5xUG062936@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Juraj Lutter Subject: git: 3ff8b504f192 - main - devel/rlwrap: Update to 0.45.2 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: otis X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 3ff8b504f192510980184e43f1cbdb9a7514f3e5 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commits to the main branch of the FreeBSD ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jun 2021 22:06:00 -0000 The branch main has been updated by otis: URL: https://cgit.FreeBSD.org/ports/commit/?id=3ff8b504f192510980184e43f1cbdb9a7514f3e5 commit 3ff8b504f192510980184e43f1cbdb9a7514f3e5 Author: Juraj Lutter AuthorDate: 2021-06-16 22:01:40 +0000 Commit: Juraj Lutter CommitDate: 2021-06-16 22:05:43 +0000 devel/rlwrap: Update to 0.45.2 Bug fixes: - rlwrap enables bracketed-paste when instructed to do so by .inputrc, but would then never disable it at exit. - rlwrap -z (i.e. rlwrap when using a filter) would still open /tmp/rlwrap.debug after forking the filter command, preventing other users from running it afterwards PR: 256569 --- devel/rlwrap/Makefile | 7 +++++-- devel/rlwrap/distinfo | 6 +++--- devel/rlwrap/pkg-plist | 6 +++++- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/devel/rlwrap/Makefile b/devel/rlwrap/Makefile index f65048ebfbb5..ebb64be9f625 100644 --- a/devel/rlwrap/Makefile +++ b/devel/rlwrap/Makefile @@ -1,9 +1,9 @@ # Created by: ijliao PORTNAME= rlwrap -DISTVERSION= 0.44 +DISTVERSION= 0.45.2 CATEGORIES= devel -MASTER_SITES= https://github.com/hanslub42/rlwrap/releases/download/${DISTVERSION}/ +MASTER_SITES= https://github.com/hanslub42/rlwrap/releases/download/v${DISTVERSION}/ MAINTAINER= gamato@users.sf.net COMMENT= Readline wrapper @@ -14,6 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= autoreconf python readline shebangfix PYTHON_NO_DEPENDS= yes SHEBANG_GLOB= *.py +SHEBANG_FILES= filters/dissect_prompt \ + filters/handle_sigwinch \ + filters/makefilter python_OLD_CMD= "/usr/bin/env python3" GNU_CONFIGURE= yes diff --git a/devel/rlwrap/distinfo b/devel/rlwrap/distinfo index bff97756f10e..d9f91616fee1 100644 --- a/devel/rlwrap/distinfo +++ b/devel/rlwrap/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1611167981 -SHA256 (rlwrap-0.44.tar.gz) = cd7ff50cde66e443cbea0049b4abf1cca64a74948371fa4f1b5d9a5bbce1e13c -SIZE (rlwrap-0.44.tar.gz) = 321590 +TIMESTAMP = 1623879763 +SHA256 (rlwrap-0.45.2.tar.gz) = 9f8870deb46e473d21b5db89d709b6497f4ef9fa06d44eebc5f821daa00c8eca +SIZE (rlwrap-0.45.2.tar.gz) = 335015 diff --git a/devel/rlwrap/pkg-plist b/devel/rlwrap/pkg-plist index 32ff4c045122..0965ac77b3d9 100644 --- a/devel/rlwrap/pkg-plist +++ b/devel/rlwrap/pkg-plist @@ -11,15 +11,18 @@ man/man3/RlwrapFilter.3pm.gz %%DATADIR%%/filters/count_in_prompt %%DATADIR%%/filters/count_in_prompt.py %%DATADIR%%/filters/debug_null +%%DATADIR%%/filters/dissect_prompt +%%DATADIR%%/filters/edit_history %%DATADIR%%/filters/ftp_filter %%DATADIR%%/filters/ftp_filter.py %%DATADIR%%/filters/handle_hotkeys %%DATADIR%%/filters/handle_hotkeys.py -%%DATADIR%%/filters/handle_sigwinch.py +%%DATADIR%%/filters/handle_sigwinch %%DATADIR%%/filters/history_format %%DATADIR%%/filters/listing %%DATADIR%%/filters/logger %%DATADIR%%/filters/logger.py +%%DATADIR%%/filters/makefilter %%DATADIR%%/filters/null %%DATADIR%%/filters/null.py %%DATADIR%%/filters/outfilter @@ -33,3 +36,4 @@ man/man3/RlwrapFilter.3pm.gz %%DATADIR%%/filters/simple_macro %%DATADIR%%/filters/template %%DATADIR%%/filters/unbackspace +