From owner-freebsd-current@freebsd.org Wed Nov 25 15:05:50 2020 Return-Path: Delivered-To: freebsd-current@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 6A15D46C176 for ; Wed, 25 Nov 2020 15:05:50 +0000 (UTC) (envelope-from shawn.webb@hardenedbsd.org) Received: from mail-qk1-x72e.google.com (mail-qk1-x72e.google.com [IPv6:2607:f8b0:4864:20::72e]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 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 4Ch42k2K0vz3NXt for ; Wed, 25 Nov 2020 15:05:50 +0000 (UTC) (envelope-from shawn.webb@hardenedbsd.org) Received: by mail-qk1-x72e.google.com with SMTP id v143so4963764qkb.2 for ; Wed, 25 Nov 2020 07:05:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=7SWHFxXw1fJ+JF4MLUiSoBczZDQd9kjHVKpi/DbaOfI=; b=tepQnP+2g7/SEo0FP8zhK70N30/MJVcUuN6cqUKox4+qNUD7Cp+XXOEchLRDH6+U2P BZqoX6gtq3Z7MK/k1h0fiuh7aQrfJXdSjgFRgX2rB7VTnkRBY0KtOj4Sc5KVEiQVoQ5D TqiEiDoE5p8SI6X2M1ghlioK73dKZovpJ5M/rEFqD3YJ4onhaGzYf3cV59nzV9CuwtUh uCwbwuyVhQJKGO35I+2tmgxe/KxWgCOd1gIrPyvpN/pvn09y38stmjxPmeWOV1xSOrCK bvqACrstEpmYbZExedZGZNbhoobjNQ5D3nkRdj95D0A8ohZpt5iYd9xnTenh8UMrSvax sArA== X-Gm-Message-State: AOAM531QLFS3PO8IPni8TfiXaXgU6xErwwMHlAS1rPA01HvvkVI3lCu6 rg0Fje5S8289xNJqvuM0L/O6uA== X-Google-Smtp-Source: ABdhPJzNfsqMF/eYuRrlcvtouJJoZSFpIgQ6FforvCJtLExNM+rllhlhj7wNIfpSA/s0jb9/Xhhwqg== X-Received: by 2002:a05:620a:88e:: with SMTP id b14mr3782106qka.434.1606316749506; Wed, 25 Nov 2020 07:05:49 -0800 (PST) Received: from mutt-hbsd (pool-100-16-222-53.bltmmd.fios.verizon.net. [100.16.222.53]) by smtp.gmail.com with ESMTPSA id z23sm2541184qtq.66.2020.11.25.07.05.48 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 25 Nov 2020 07:05:48 -0800 (PST) Date: Wed, 25 Nov 2020 10:05:48 -0500 From: Shawn Webb To: Baptiste Daroussin Cc: Warner Losh , FreeBSD Current Subject: Re: git tools for building in base? Message-ID: <20201125150548.vkqgtlqnawgwujbn@mutt-hbsd> X-Operating-System: FreeBSD mutt-hbsd 13.0-CURRENT-HBSD FreeBSD 13.0-CURRENT-HBSD X-PGP-Key: http://pgp.mit.edu/pks/lookup?op=vindex&search=0xFF2E67A277F8E1FA References: <20201125150050.bz62hatil6sbhdwn@ivaldir.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="dcdzsxpdt2tnhx4x" Content-Disposition: inline In-Reply-To: <20201125150050.bz62hatil6sbhdwn@ivaldir.net> X-Rspamd-Queue-Id: 4Ch42k2K0vz3NXt X-Spamd-Bar: ---- X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Nov 2020 15:05:50 -0000 --dcdzsxpdt2tnhx4x Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Nov 25, 2020 at 04:00:50PM +0100, Baptiste Daroussin wrote: > On Tue, Nov 24, 2020 at 09:59:15PM -0700, Warner Losh wrote: > > On Tue, Nov 24, 2020 at 2:19 PM tech-lists wrote: > >=20 > > > As subject - what will there be in base to interact with the new git = repo? > > > I mean, right now, for svn there is svnlite. What for git? > > > > >=20 > > 'pkg add git' is your choice now. >=20 > pkg install not pkg add There's also fetch for a one-time download of the ports tree (bootstrapping ports, for example). A HardenedBSD user would do this: fetch -o ports.tar.gz \ https://git-01.md.hardenedbsd.org/HardenedBSD/hardenedbsd-ports/archive= /master.tar.gz mkdir -p /usr/ports tar -xf ports.tar.gz --strip-components 1 -C /usr/ports Something similar could be done in FreeBSDlandia. Thanks, --=20 Shawn Webb Cofounder / Security Engineer HardenedBSD GPG Key ID: 0xFF2E67A277F8E1FA GPG Key Fingerprint: D206 BB45 15E0 9C49 0CF9 3633 C85B 0AF8 AB23 0FB2 https://git-01.md.hardenedbsd.org/HardenedBSD/pubkeys/src/branch/master/Sha= wn_Webb/03A4CBEBB82EA5A67D9F3853FF2E67A277F8E1FA.pub.asc --dcdzsxpdt2tnhx4x Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEA6TL67gupaZ9nzhT/y5nonf44foFAl++cskACgkQ/y5nonf4 4fpLwRAAiQ95LEaEN4gEM5impEDeR+FTPkHVXuYZ9mqa9znGDg5SHYOxD0/gVQc+ M+Za/32/EDbfiYjCsWnjTReYkyn6Wc7QPhs33ZheXTgGQAkicz3FOBor/chTDWNY wIcWJ9JIvGCUY4cjJvVWYwzxBZwFNzD+GWhGiGjnQlKx9WDK+gSD/lhBsplZOcSv cS7P+9jE+5EXnT+m4XBrBFrtq8p+GS+hE8SWsn4u0B2DilS0HkXPLALIT/pNM+ut BoJOcVkepW27aJCrmX6Jz1h83U5GDRLTHvoNsoGbNnWfgYCbcy9l3UQvW9Nc/0DK jtPLwv6B3jUMX4gJiEZ8l4kELnpQ1wD7WwjzKLF9/yQvuiCOdDqJLMlwgyu3hy03 5zJV82hTw5SvhdmFq96M977SRTzwBfXFxCtJMqBPHTwDOfXbmY4W2YNhL+ZsGOIy tT2Fkep3DgrEC0TeSy3t9F6C8ZwzoAxx8PeI7V/LvDgppWC8hsSMK0wq8IDT0+Xb tfR9LB/WXHLlbOVtxgnjKhkaywG6EF0Y6456DxDHXtzKhwVykZW/BIgsoEWavWrF ozlCECOMK9tAzfKzJPEM1tiKZ0Zu8TD2SDCLunzw07+TPgTSH+UCEFXYLqnX1iwX VHqWuHW14p/bBGCFFDn4qRUd/FVIn2eh/PWmxS2eminnqCvrYYg= =COxO -----END PGP SIGNATURE----- --dcdzsxpdt2tnhx4x--