From owner-svn-ports-all@freebsd.org Tue Sep 3 15:51:39 2019 Return-Path: Delivered-To: svn-ports-all@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 C19E6DFC9F; Tue, 3 Sep 2019 15:51:39 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: from mail-qt1-f181.google.com (mail-qt1-f181.google.com [209.85.160.181]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 46NBJq4rQcz3G3P; Tue, 3 Sep 2019 15:51:39 +0000 (UTC) (envelope-from mpp302@gmail.com) Received: by mail-qt1-f181.google.com with SMTP id j15so20451382qtl.13; Tue, 03 Sep 2019 08:51:39 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=JCB5DsGge6bBvTLAQRsLHQerGt2lrU+z4wh+7yxGfj0=; b=D7TnyPDDta9UQ3TFhe336nPYJT8TFZx5Dbty4/263mj6xaB0Clo3cpQZzeX+BChlH7 tHuPU8ox081C6BciB0aNVd23QEbeI7DNTDdUs2JOaLDhj9SEbcOayWGszdPyvVXVfMqc 2IonGfrS6sjZj6UH26lcx5ckinq3zdXMMOg5oQ9EmP5OTAxlxzBJUO6xiejpFaAvff9j 43U1gWC3nMygP1Rr78PGSb/SWR8vVG/SB15CguR7ea+SitW3zJqzT9VqesTBOKDXENPQ 5IjyZ+Wfx7DSeGT8c9ZpjloOABc+ryVuRJJT9ssR4VWU5lPGKoByPZTZlug8d/Ui5iL0 Eh3Q== X-Gm-Message-State: APjAAAWkUhy7jloLeM06m6DaN9AXkk0l2lZEXRtdzN6JNQbAsSYnXoEW eq7jt5eMJDSSlJiNP+z4Vz1ffQMFMgg= X-Google-Smtp-Source: APXvYqx3fAMcix6ZNjDETpZSN64dfbr7NI7tJ2fgwdDxsE1Su6fg4BbuywbiYgsdxYgR3GO1yPSprQ== X-Received: by 2002:ac8:670a:: with SMTP id e10mr35192250qtp.387.1567525898650; Tue, 03 Sep 2019 08:51:38 -0700 (PDT) Received: from mail-qt1-f178.google.com (mail-qt1-f178.google.com. [209.85.160.178]) by smtp.gmail.com with ESMTPSA id l23sm6707383qta.53.2019.09.03.08.51.38 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Tue, 03 Sep 2019 08:51:38 -0700 (PDT) Received: by mail-qt1-f178.google.com with SMTP id t12so20485644qtp.9; Tue, 03 Sep 2019 08:51:38 -0700 (PDT) X-Received: by 2002:ac8:4504:: with SMTP id q4mr21303612qtn.274.1567525898300; Tue, 03 Sep 2019 08:51:38 -0700 (PDT) MIME-Version: 1.0 References: <201909031436.x83Ea0VM073026@repo.freebsd.org> In-Reply-To: <201909031436.x83Ea0VM073026@repo.freebsd.org> From: Mateusz Piotrowski <0mp@freebsd.org> Date: Tue, 3 Sep 2019 17:51:28 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r510950 - in head/Mk: . Scripts To: Baptiste Daroussin Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-Rspamd-Queue-Id: 46NBJq4rQcz3G3P X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Sep 2019 15:51:39 -0000 On Tue, 3 Sep 2019 at 16:37, Baptiste Daroussin wrote: > Author: bapt > Date: Tue Sep 3 14:36:00 2019 > New Revision: 510950 > URL: https://svnweb.freebsd.org/changeset/ports/510950 > > Log: > Add support for overlays > > overlays are a way to help users to integrate their own ports tree > with the official ports tree without having to maintain clone of the > official tree and remerge on regular basis. > > The ports tree will lookup in the overlays (in the order the are listed > in > OVERLAY variable) for the dependencies and the USES. It will use the > first > found. > > in order to use it the user have to declare his overlays that way in > their > make.conf: > OVERLAYS= overlay1 overlay2 overlay3 > > Reviewed by: manu > Approved by: swills > Differential Revision: https://reviews.freebsd.org/D21468 Awesome work! Thanks a lot! I'll make use of it for sure.