From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D91F8139085 for ; Tue, 20 Dec 2016 08:00:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 501C2E0E0F; Tue, 20 Dec 2016 08:00:47 +0000 (UTC) Received: from ironport2-out.teksavvy.com (ironport2-out.teksavvy.com [206.248.154.181]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B6B6FE0E0A for ; Tue, 20 Dec 2016 08:00:46 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0AzBQAu3EVY/x6cSC1dHQEFAQsBgzgBAQEBAR9agQaCe6FWkm6CD4IIKYV5AoISQBMBAgEBAQEBAQFiKIRpAQQBOkQLCw0UEwcLDwVciGcIDq0GKgKLGAEBCAIgBYVFeYRbhBoRAWiCZYIwBY98imoBgXuET4o/ihAXDoYVjgKEDSABNWE4hBCBYyA0hkuCLgEBAQ X-IPAS-Result: A0AzBQAu3EVY/x6cSC1dHQEFAQsBgzgBAQEBAR9agQaCe6FWkm6CD4IIKYV5AoISQBMBAgEBAQEBAQFiKIRpAQQBOkQLCw0UEwcLDwVciGcIDq0GKgKLGAEBCAIgBYVFeYRbhBoRAWiCZYIwBY98imoBgXuET4o/ihAXDoYVjgKEDSABNWE4hBCBYyA0hkuCLgEBAQ X-IronPort-AV: E=Sophos;i="5.33,749,1477972800"; d="scan'208";a="283272572" Received: from unknown (HELO waltdnes.org) ([45.72.156.30]) by smtp.teksavvy.com with SMTP; 20 Dec 2016 03:00:46 -0500 Received: by waltdnes.org (sSMTP sendmail emulation); Tue, 20 Dec 2016 03:00:36 -0500 From: "Walter Dnes" Date: Tue, 20 Dec 2016 03:00:36 -0500 To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Reading the (SSL) traffic with Pale Moon, WAS: from Firefox52: NO pure ALSA? Youtube... Audio: No Message-ID: <20161220080036.GA16916@waltdnes.org> References: <20161217055952.GB13608@waltdnes.org> <20161217224455.GA9477@g0n.xdwgrp> <20161217232554.GB9477@g0n.xdwgrp> <20161218015637.GC18283@waltdnes.org> <20161218055009.GA11155@g0n.xdwgrp> <20161218070441.GA19833@waltdnes.org> <20161218181616.GA13242@g0n.xdwgrp> <20161218184347.GB13242@g0n.xdwgrp> <20161218202933.GA23487@waltdnes.org> <20161219122519.GB31077@g0n.xdwgrp> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20161219122519.GB31077@g0n.xdwgrp> User-Agent: Mutt/1.5.24 (2015-08-30) X-Archives-Salt: dcac2e7c-d251-4258-99b5-4c3a5189403c X-Archives-Hash: ab3b6edcad625a61d0ebb6c2d6f1c4fa On Mon, Dec 19, 2016 at 01:25:19PM +0100, Miroslav Rovis wrote > And I'm very curious to learn how to install in Air-Gapped, from git, > through intermediary action, that is acceptable, but in a verifiable > way, as I asked in my other reply email to this message. The Pale Moon project is located at... https://github.com/MoonchildProductions/Pale-Moon The current release branch is "27.0_Relbranch". I'm not a programmer, and I don't push commits back to the project. So I don't need the full depth and history. The following command grabs the latest 27.0.x source and downloads it to a directory pmsrc/ and only downloads what is needed to do a build. git clone -b 27.0_RelBranch --depth 1 https://github.com/MoonchildProductions/Pale-Moon.git pmsrc To save typing, I made a script "getcode". I merely have to type ./getcode 27.0 The script consists of 2 lines... #!/bin/bash git clone -b "${1}_RelBranch" --depth 1 https://github.com/MoonchildProductions/Pale-Moon.git pmsrc Note that this picks up the latest git tag. You can force a specific tag (e.g. 27.0.0 or 27.0.1 or 27.0.2) if you use the appropriate git command. Once the the pmsrc/ subdirectory is populated, you can... cp -r pmsrc/ /pmsrc/ walk over to the air-gapped machine and... cp -r /pmsrc/ pmsrc/ and then do a "-march=native" build on the air-gapped machine. -- Walter Dnes I don't run "desktop environments"; I run useful applications