From owner-freebsd-office@freebsd.org Sat Mar 5 12:58:16 2016 Return-Path: Delivered-To: freebsd-office@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23C059DBF22 for ; Sat, 5 Mar 2016 12:58:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 08A75B02 for ; Sat, 5 Mar 2016 12:58:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 041559DBF20; Sat, 5 Mar 2016 12:58:16 +0000 (UTC) Delivered-To: office@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DDED49DBF1B for ; Sat, 5 Mar 2016 12:58:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 C448CB00 for ; Sat, 5 Mar 2016 12:58:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u25CwFth015655 for ; Sat, 5 Mar 2016 12:58:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: office@FreeBSD.org Subject: [Bug 202685] [textproc/en-hunspell] upgrade port to version 2015.08.24 Date: Sat, 05 Mar 2016 12:58:15 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: marino@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: mi@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Mar 2016 12:58:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D202685 John Marino changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |marino@FreeBSD.org --- Comment #11 from John Marino --- I just realized that the commit that broke en-hunspell came from this PR. = THis is what I just posted: =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D On 2/19/2016 6:14 AM, Mikhail Teterin wrote: > Author: mi > Date: Fri Feb 19 05:14:17 2016 > New Revision: 409151 > URL: https://svnweb.freebsd.org/changeset/ports/409151 > > Log: > Make fetchable by upgrading. Add options for vocabularies and provide > help-file for the user. >=20=20=20 > PR: 202685 > Submitted by: Joseph Mingrone > Approved by: maintainer timeout > > Added: > head/textproc/en-hunspell/pkg-help (contents, props changed) > Modified: > head/textproc/en-hunspell/Makefile > head/textproc/en-hunspell/distinfo > head/textproc/en-hunspell/pkg-descr > > Modified: head/textproc/en-hunspell/Makefile > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D > --- head/textproc/en-hunspell/Makefile Fri Feb 19 04:58:21 2016 (r409150) > +++ head/textproc/en-hunspell/Makefile Fri Feb 19 05:14:17 2016 (r409151) [snip] > + > +COPY=3D -lh # Use hardlinks rather than copies under stage/ This line might be wrong. intent: I'm not aware of anyway trying to install by stage via hardlinks. What is trying to be accomplished here? # make -V INSTALL_DATA install -lh -m 0644 So the -lh does indeed create hardlinks but this only works on FreeBSD. This command is not supported on DragonFly. This is the only port in the tree that uses this method to populate the stage directory (that I am aware of) so that's why I'd like to know what problem this is addressing and why standard installation command cannot (or maybe should not) be used. Thanks, John =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Can somebody explain why hardlinks are being used for installation? It's t= he only port in the tree doing that. --=20 You are receiving this mail because: You are on the CC list for the bug.=