From owner-svn-src-head@freebsd.org Tue Sep 10 08:22:45 2019 Return-Path: Delivered-To: svn-src-head@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 876CDF6F8D; Tue, 10 Sep 2019 08:22:45 +0000 (UTC) (envelope-from zeising+freebsd@daemonic.se) Received: from mail.daemonic.se (mail.daemonic.se [IPv6:2607:f740:d:20::25]) (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 46SJ1d2zVwz4859; Tue, 10 Sep 2019 08:22:45 +0000 (UTC) (envelope-from zeising+freebsd@daemonic.se) Received: from cid.daemonic.se (localhost [IPv6:::1]) by mail.daemonic.se (Postfix) with ESMTP id 46SJ1T0jQXz3c7b; Tue, 10 Sep 2019 08:22:37 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=daemonic.se; h= content-transfer-encoding:content-language:content-type :content-type:in-reply-to:mime-version:user-agent:date:date :message-id:from:from:references:subject:subject:received :received; s=20151023; t=1568103755; bh=l3d8pdl3nagaWEgmfiVRb3HM kutxyIaup9+ku2kJmog=; b=NN4U0VUmIUxDQUsPaF8Xvzj+667nyirpStDOHGaC hnXNpwA/j2V8iUtVc64sm44O3Sy0Q9/6D0/y86cKje4Yyz1hRa2OAnDQXgiHVYqx +FDAphQxXY6y5bW4usqZCC8Jit53IggtRv7GIU9ya9bNdkpZ8ahJ8PG/3VVHXdmt yoc= X-Virus-Scanned: amavisd-new at daemonic.se Received: from mail.daemonic.se ([127.0.0.1]) (using TLS with cipher ECDHE-RSA-AES128-GCM-SHA256) by cid.daemonic.se (mailscanner.daemonic.se [127.0.0.1]) (amavisd-new, port 10587) with ESMTPS id Ua967t-GjHUM; Tue, 10 Sep 2019 08:22:35 +0000 (UTC) Received: from garnet.daemonic.se (host-90-233-173-70.mobileonline.telia.com [90.233.173.70]) by mail.daemonic.se (Postfix) with ESMTPSA id 46SJ1R4hL3z3c7Z; Tue, 10 Sep 2019 08:22:35 +0000 (UTC) Subject: Re: svn commit: r352128 - in head: . usr.bin usr.bin/colldef usr.bin/mklocale To: Baptiste Daroussin , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org References: <201909100754.x8A7sncQ003252@repo.freebsd.org> From: Niclas Zeising Message-ID: <157d6234-19c4-3e0f-34f8-bc73c28da925@daemonic.se> Date: Tue, 10 Sep 2019 10:22:27 +0200 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:68.0) Gecko/20100101 Thunderbird/68.0 MIME-Version: 1.0 In-Reply-To: <201909100754.x8A7sncQ003252@repo.freebsd.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 46SJ1d2zVwz4859 X-Spamd-Bar: ----- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-6.00 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; TAGGED_FROM(0.00)[freebsd] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 10 Sep 2019 08:22:45 -0000 On 2019-09-10 09:54, Baptiste Daroussin wrote: > Author: bapt > Date: Tue Sep 10 07:54:49 2019 > New Revision: 352128 > URL: https://svnweb.freebsd.org/changeset/base/352128 > > Log: > Remove mklocale(1) and colldef(1) which are deprecated since FreeBSD 11 > > In FreeBSD 11 along with the rework on the collation, mklocale(1) and colldef(1) > has been replaced by localedef(1) (a note has been added to the manpage to state > it). > mklocale(1) and colldef(1) has been kept around to be able to build older > versions of FreeBSD. None of the version requiring those tools are supported > anymore so it is time to remove them from base > > Deleted: > head/usr.bin/colldef/ > head/usr.bin/mklocale/ > Modified: > head/ObsoleteFiles.inc > head/usr.bin/Makefile > > Modified: head/ObsoleteFiles.inc > ============================================================================== > --- head/ObsoleteFiles.inc Tue Sep 10 07:47:52 2019 (r352127) > +++ head/ObsoleteFiles.inc Tue Sep 10 07:54:49 2019 (r352128) > @@ -38,6 +38,11 @@ > # xargs -n1 | sort | uniq -d; > # done > > +# 20190910: mklocale(1) and colldef(1) removed > +OLD_FILES+=usr.bin/mklocale ^^^^^^^^^^ should be usr/bin/mklocale > +OLD_FILES+=usr/share/man/man1/mklocale.1.gz > +OLD_FILES+=usr.bin/colldef ^^^^^^^^^^ should be usr/bin/colldef > +OLD_FILES+=usr/share/man/man1/colldef.1.gz > # 20190904: Remove boot1.efifat > OLD_FILES+=boot/boot1.efifat > # 20190903: pc-sysinstall(8) removed Regards -- Niclas