From owner-svn-ports-all@freebsd.org Thu Dec 27 08:51:39 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A898C135203B; Thu, 27 Dec 2018 08:51:39 +0000 (UTC) (envelope-from novel@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) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 496A38EF5A; Thu, 27 Dec 2018 08:51:39 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6468D9067; Thu, 27 Dec 2018 08:51:37 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wBR8pbYh047837; Thu, 27 Dec 2018 08:51:37 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wBR8pbGT047835; Thu, 27 Dec 2018 08:51:37 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201812270851.wBR8pbGT047835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Thu, 27 Dec 2018 08:51:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r488515 - in head/x11/rxvt-unicode: . files X-SVN-Group: ports-head X-SVN-Commit-Author: novel X-SVN-Commit-Paths: in head/x11/rxvt-unicode: . files X-SVN-Commit-Revision: 488515 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 496A38EF5A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Dec 2018 08:51:39 -0000 Author: novel Date: Thu Dec 27 08:51:36 2018 New Revision: 488515 URL: https://svnweb.freebsd.org/changeset/ports/488515 Log: x11/rxvt-unicode: fix perl_parse() usage Perl 5.28 added asserts to perl_parse() to check passed arguments, so rxvt with perl support fails to start with assertion error when DEBUG is enabled. Fix by constructing arguments passed to perl_parse() properly, and bump PORTREVISION. PR: 234294 Approved by: thierry (maintainer) Added: head/x11/rxvt-unicode/files/patch-src_rxvtperl.xs (contents, props changed) Modified: head/x11/rxvt-unicode/Makefile Modified: head/x11/rxvt-unicode/Makefile ============================================================================== --- head/x11/rxvt-unicode/Makefile Thu Dec 27 08:51:32 2018 (r488514) +++ head/x11/rxvt-unicode/Makefile Thu Dec 27 08:51:36 2018 (r488515) @@ -3,6 +3,7 @@ PORTNAME= rxvt-unicode PORTVERSION= 9.22 +PORTREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://dist.schmorp.de/rxvt-unicode/%SUBDIR%/ MASTER_SITE_SUBDIR= . Attic Added: head/x11/rxvt-unicode/files/patch-src_rxvtperl.xs ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/rxvt-unicode/files/patch-src_rxvtperl.xs Thu Dec 27 08:51:36 2018 (r488515) @@ -0,0 +1,15 @@ +--- src/rxvtperl.xs.orig 2018-12-23 11:31:59 UTC ++++ src/rxvtperl.xs +@@ -401,9 +401,10 @@ rxvt_perl_interp::init () + " unshift @INC, '" LIBDIR "';" + "}" + "" +- "use urxvt;" ++ "use urxvt;", ++ 0 + }; +- int argc = ecb_array_length (args); ++ int argc = ecb_array_length (args) - 1; + char **argv = args; + + PERL_SYS_INIT3 (&argc, &argv, &environ);