From owner-svn-ports-all@freebsd.org Sat Aug 8 01:33:28 2020 Return-Path: Delivered-To: svn-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 22BAA379ACD; Sat, 8 Aug 2020 01:33:28 +0000 (UTC) (envelope-from glewis@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 "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BNl9h05p0z495x; Sat, 8 Aug 2020 01:33:28 +0000 (UTC) (envelope-from glewis@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 DB70421119; Sat, 8 Aug 2020 01:33:27 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0781XRq2076488; Sat, 8 Aug 2020 01:33:27 GMT (envelope-from glewis@FreeBSD.org) Received: (from glewis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0781XR4L076486; Sat, 8 Aug 2020 01:33:27 GMT (envelope-from glewis@FreeBSD.org) Message-Id: <202008080133.0781XR4L076486@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glewis set sender to glewis@FreeBSD.org using -f From: Greg Lewis Date: Sat, 8 Aug 2020 01:33:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r544356 - in head/java/icedtea-web: . files X-SVN-Group: ports-head X-SVN-Commit-Author: glewis X-SVN-Commit-Paths: in head/java/icedtea-web: . files X-SVN-Commit-Revision: 544356 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 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: Sat, 08 Aug 2020 01:33:28 -0000 Author: glewis Date: Sat Aug 8 01:33:27 2020 New Revision: 544356 URL: https://svnweb.freebsd.org/changeset/ports/544356 Log: Fix rust launchers and bash completion PR: 244976 Submitted by: Lars Herschke Added: head/java/icedtea-web/files/patch-completion_javaws.bash.in (contents, props changed) head/java/icedtea-web/files/patch-completion_policyeditor.bash.in (contents, props changed) Modified: head/java/icedtea-web/Makefile Modified: head/java/icedtea-web/Makefile ============================================================================== --- head/java/icedtea-web/Makefile Sat Aug 8 00:53:15 2020 (r544355) +++ head/java/icedtea-web/Makefile Sat Aug 8 01:33:27 2020 (r544356) @@ -38,7 +38,7 @@ CONFIGURE_ARGS+= --with-jdk-home="${JAVA_HOME}" CONFIGURE_ARGS+= --with-junit="${JUNIT_JAR}" CONFIGURE_ARGS+= --with-rhino="${RHINO_JAR}" CONFIGURE_ARGS+= --with-tagsoup="${TAGSOUP_JAR}" -CONFIGURE_ARGS+= --with-itw-libs="BUNDLED" +CONFIGURE_ARGS+= --with-itw-libs="DISTRIBUTION" CONFIGURE_ARGS+= --enable-shell-launchers .for opt in asm chrome chromium ecj epiphany firefox jacoco midori opera CONFIGURE_ARGS+= --without-${opt} Added: head/java/icedtea-web/files/patch-completion_javaws.bash.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/icedtea-web/files/patch-completion_javaws.bash.in Sat Aug 8 01:33:27 2020 (r544356) @@ -0,0 +1,8 @@ +--- completion/javaws.bash.in.orig 2020-06-04 13:08:14.000000000 +0200 ++++ completion/javaws.bash.in 2020-07-31 20:16:56.895261000 +0200 +@@ -28,4 +28,4 @@ + return 0 + fi + } +-complete -F _javaws javaws ++complete -F _javaws itweb-javaws Added: head/java/icedtea-web/files/patch-completion_policyeditor.bash.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/java/icedtea-web/files/patch-completion_policyeditor.bash.in Sat Aug 8 01:33:27 2020 (r544356) @@ -0,0 +1,8 @@ +--- completion/policyeditor.bash.in.orig 2020-06-04 13:08:14.000000000 +0200 ++++ completion/policyeditor.bash.in 2020-07-31 20:02:45.694743000 +0200 +@@ -10,4 +10,4 @@ + COMPREPLY=($(compgen -W "${opts}" -- ${cur})) + return 0 + } +-complete -F _policyeditor policyeditor ++complete -F _policyeditor itweb-policyeditor