From owner-svn-src-head@FreeBSD.ORG Sat Jun 20 09:52:08 2015 Return-Path: Delivered-To: svn-src-head@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 70035D21; Sat, 20 Jun 2015 09:52:08 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: from mail-wi0-x22d.google.com (mail-wi0-x22d.google.com [IPv6:2a00:1450:400c:c05::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 06263604; Sat, 20 Jun 2015 09:52:08 +0000 (UTC) (envelope-from antoine.brodin.freebsd@gmail.com) Received: by wicnd19 with SMTP id nd19so37902040wic.1; Sat, 20 Jun 2015 02:52:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=jnrEBRRKj9bK2Lem3TVHmVwyRjtDLYitb9mpMGvQBOs=; b=DiA6amTrYGH3F20WuRz8nkhQOa9LB4Us2TPDggf0PawwvnBDMnxUP1smafh2UQGqNn 8Xl5DZgERb6Q5G40k1bwY9EXTL9yq1oUVDuiUmsvQvBLCdLdlRj8sZ/wxGi/2IhMWArx nGmXD9Vh99+6HLg/Y3UxG5MUqWZo4u5Jedb/2rDLgxTOaRafGMYD6qe+/nwxGdHsuE4v GLNo9XKBU/6/sra8yAFQP2iUdTogO6hLL20L6Z4HjjbC3Qk6JJlYJDQPClblRxiMSq5B a6B+GUj66ls4HEAChkhXuBMbcFTnVZffil7q2klxfbz4f3IkrwhbXDarUV366n/UypxI XjZQ== MIME-Version: 1.0 X-Received: by 10.194.47.196 with SMTP id f4mr23442396wjn.46.1434793926431; Sat, 20 Jun 2015 02:52:06 -0700 (PDT) Sender: antoine.brodin.freebsd@gmail.com Received: by 10.194.17.130 with HTTP; Sat, 20 Jun 2015 02:52:06 -0700 (PDT) In-Reply-To: References: <201506200906.t5K96mY8014539@svn.freebsd.org> Date: Sat, 20 Jun 2015 09:52:06 +0000 X-Google-Sender-Auth: e8jWL7LLDtUt32Gs2oxZ_h4ItSY Message-ID: Subject: Re: svn commit: r284637 - head From: Antoine Brodin To: NGie Cooper Cc: "src-committers@freebsd.org" , "svn-src-all@freebsd.org" , "svn-src-head@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 20 Jun 2015 09:52:08 -0000 On Sat, Jun 20, 2015 at 9:48 AM, NGie Cooper wrote: > On Sat, Jun 20, 2015 at 2:41 AM, Antoine Brodin wrote: >> On Sat, Jun 20, 2015 at 9:11 AM, NGie Cooper wrote: >>> On Sat, Jun 20, 2015 at 2:06 AM, Antoine Brodin wrote: >>>> Author: antoine >>>> Date: Sat Jun 20 09:06:48 2015 >>>> New Revision: 284637 >>>> URL: https://svnweb.freebsd.org/changeset/base/284637 >>>> >>>> Log: >>>> Add more obsolete files >>> >>> ... >>> >>>> +# 20141030: atf 0.21 import >>>> +OLD_FILES+=usr/share/man/man3/atf-c++-api.3.gz >>> >>> Is this correct? >> >> This file is not installed from base/head. It may still be installed >> by the port but it's unrelated. > > It's still being installed in base -- just as a hardlink: > > 72 MAN= atf-c++.3 > 73 MLINKS+= atf-c++.3 atf-c-api++.3 # Backwards compatibility. > > $ make -n maninstall > install -o root -g wheel -m 444 atf-c++.3.gz /usr/share/man/man3 > set atf-c++.3 3 atf-c-api++.3 3; while : ; do case $# in 0) break;; > [123]) echo "warn: empty MLINK: $1 $2 $3"; break;; esac; name=$1; > shift; sect=$1; shift; l=/usr/share/man/man${sect}/$name; name=$1; > shift; sect=$1; shift; t=/usr/share/man/man${sect}/$name; echo > ${t}.gz -\> ${l}.gz; rm -f ${t} ${t}.gz; install -l h ${l}.gz > ${t}.gz; done > ===> tests (maninstall) > ===> tests/detail (maninstall) > > Is your script/method of finding obsolete files correct? c++-api is different from c-api++ Antoine