From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Apr 3 10:00:00 2014 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D5C056B4 for ; Thu, 3 Apr 2014 10:00:00 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id B1B753D7 for ; Thu, 3 Apr 2014 10:00:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.8/8.14.8) with ESMTP id s33A00d2058314 for ; Thu, 3 Apr 2014 10:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s33A00vM058313; Thu, 3 Apr 2014 10:00:00 GMT (envelope-from gnats) Resent-Date: Thu, 3 Apr 2014 10:00:00 GMT Resent-Message-Id: <201404031000.s33A00vM058313@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Makoto Kishimoto Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B18EB40A for ; Thu, 3 Apr 2014 09:55:44 +0000 (UTC) Received: from cgiserv.freebsd.org (cgiserv.freebsd.org [IPv6:2001:1900:2254:206a::50:4]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D22E34B for ; Thu, 3 Apr 2014 09:55:44 +0000 (UTC) Received: from cgiserv.freebsd.org ([127.0.1.6]) by cgiserv.freebsd.org (8.14.8/8.14.8) with ESMTP id s339tid8025965 for ; Thu, 3 Apr 2014 09:55:44 GMT (envelope-from nobody@cgiserv.freebsd.org) Received: (from nobody@localhost) by cgiserv.freebsd.org (8.14.8/8.14.8/Submit) id s339ti9M025964; Thu, 3 Apr 2014 09:55:44 GMT (envelope-from nobody) Message-Id: <201404030955.s339ti9M025964@cgiserv.freebsd.org> Date: Thu, 3 Apr 2014 09:55:44 GMT From: Makoto Kishimoto To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Subject: ports/188221: [patch] In pkg-plist file in shells in ports, @exec entry must locate just after path of executable X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Apr 2014 10:00:01 -0000 >Number: 188221 >Category: ports >Synopsis: [patch] In pkg-plist file in shells in ports, @exec entry must locate just after path of executable >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Apr 03 10:00:00 UTC 2014 >Closed-Date: >Last-Modified: >Originator: Makoto Kishimoto >Release: 10.0-RELEASE >Organization: private >Environment: FreeBSD norikura.localdomain 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260789: Thu Jan 16 22:34:59 UTC 2014 root@snap.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64 >Description: Currently, for some shells in HEAD of ports, after install, /etc/shells has wrong line for "/usr/local/man/man1/ksh.1.gz" or "/usr/local/man/man1/44bsd-csh.1.gz" (etc... may be some others). In pkg-plist file in shells in ports, @exec entry must locate just after path of executable. >How-To-Repeat: install ports >Fix: see patch Patch attached with submission follows: Index: 44bsd-csh/pkg-plist =================================================================== --- 44bsd-csh/pkg-plist (revision 349903) +++ 44bsd-csh/pkg-plist (working copy) @@ -1,4 +1,4 @@ bin/44bsd-csh -man/man1/44bsd-csh.1.gz @exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells @unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells +man/man1/44bsd-csh.1.gz Index: pdksh/pkg-plist =================================================================== --- pdksh/pkg-plist (revision 349903) +++ pdksh/pkg-plist (working copy) @@ -1,4 +1,4 @@ bin/ksh -man/man1/ksh.1.gz @exec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak; echo %D/%F) >/etc/shells @unexec echo "updating /etc/shells"; cp /etc/shells /etc/shells.bak; (grep -v %D/%F /etc/shells.bak) >/etc/shells +man/man1/ksh.1.gz >Release-Note: >Audit-Trail: >Unformatted: