From owner-svn-src-head@freebsd.org Wed May 18 01:12:22 2016 Return-Path: Delivered-To: svn-src-head@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 AFE6FB400F5; Wed, 18 May 2016 01:12:22 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io0-x234.google.com (mail-io0-x234.google.com [IPv6:2607:f8b0:4001:c06::234]) (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 777081720; Wed, 18 May 2016 01:12:22 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-io0-x234.google.com with SMTP id i75so46418095ioa.3; Tue, 17 May 2016 18:12:22 -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:from:date:message-id :subject:to:cc; bh=kjCQK1Wy4Xf1igoNIUhAoBGK+ptSlEY0LAL4rKjKAok=; b=pL9ScBpE1ipeKDNz6HnlWHV1WZ9qug/6IM2CZrC72MzdhNw7fYVC9YxWG3htj9zdpQ jWcmriTFFmQ7ka9jCnUWr2U0guE3rcdmZ0KMvVtH9eQCNlQLeb6OSlP9QulPahc1azc8 xsfNPIKiMhCjs795qGnvlxy47a49vqTfh+IUegcXLu40e5y2WYzy/c51phQuy6367Fuu ukQZWljxioDFpxiL0YGzMhciMQwVpyrNMyd9JPyXyTFyrCyQC5MwnZ7G3yIOV37tBpUM MB08A2OHyyX5N07WxfnDWowoJi5iByDKOan0U2BF7bbBSBEBO41V2o1BKTExA5/h0dgf mNQw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=kjCQK1Wy4Xf1igoNIUhAoBGK+ptSlEY0LAL4rKjKAok=; b=MaA2PZaWfbFRVA03H7TL7gf8uVxKooR6qStiXxEc+feS8eerLhQ9xPce16IxwGzl+Y 9P623KzaFbsTlkZyfgdKfUd4O7gxbm6pfzeTmq2L1BfDc11uzLYRcz3KbMov5S9JenjV pb99F5jpVs3f7GbHFCWkNlOQoOTPZXSBKA3fhu7M/1HC4EGFuikzcvGpajm56YWEAans 35FMDztRe+gWYLOP+hWZOeyq+jZJDd+AAW5OtK3urDRzvLDko+khLtio9zGJr0KKNYRS Kz+0QYJ4BnbhBLN+Wy4+z6BQslaQvPDidDezzrzmgXLyggXBD4Lg+kCkZpYDxEnCxofM VTVg== X-Gm-Message-State: AOPr4FXdr0c8cXXJnLBkMDAKVY8kkkyW0O1FUFKhnMhFgQpO7N9Gpis5B/9TUMTp5AcJ3HidgtUWkbbhYpZbtg== X-Received: by 10.107.159.84 with SMTP id i81mr3181966ioe.29.1463533941829; Tue, 17 May 2016 18:12:21 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.27.197 with HTTP; Tue, 17 May 2016 18:12:02 -0700 (PDT) In-Reply-To: <201605180022.u4I0MqSU048808@repo.freebsd.org> References: <201605180022.u4I0MqSU048808@repo.freebsd.org> From: Ed Maste Date: Wed, 18 May 2016 01:12:02 +0000 X-Google-Sender-Auth: nhK3Z2ZuVtMNeMCrCVSPqf3d2YA Message-ID: Subject: Re: svn commit: r300098 - head/usr.sbin/makefs To: "Pedro F. Giffuni" 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.22 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: Wed, 18 May 2016 01:12:22 -0000 On 18 May 2016 at 00:22, Pedro F. Giffuni wrote: > Author: pfg > Date: Wed May 18 00:22:52 2016 > New Revision: 300098 > URL: https://svnweb.freebsd.org/changeset/base/300098 > > Log: > makefs(8): Clarify the comment concerning seeding. > > Avoid giving the impression makefs currently supports reproduceable > builds. Thanks! It might make sense to seed based on SOURCE_DATE_EPOCH (https://reproducible-builds.org/specs/source-date-epoch/) if set, and later on we ought to add an option to set the seed on the command line. But, there are a lot of other reproducible build tasks that are probably more important to tackle before this.