Gentoo Archives: gentoo-alt

From: "McGehee
To: "'gentoo-alt@l.g.o'" <gentoo-alt@l.g.o>, "'gentoo-alt@l.g.o'" <gentoo-alt@l.g.o>
Subject: RE: [gentoo-alt] Re: Installing Prefix/libc : heroxbd overlay
Date: Thu, 05 Feb 2015 13:12:58
Message-Id: 97A7C8EACC6CE247AAE690059B45D178CFBD0ACDE0@MSGRTPCCRN2WIN.dmn1.fmr.com
In Reply to: Re: [gentoo-alt] Re: Installing Prefix/libc : heroxbd overlay by heroxbd@gentoo.org
1 Cool, thanks. I'll give these a try! If nothing else, I'll just manually make a copy, now that I know it's accessible outside of the firewall.
2
3 Cheers,
4 Robert
5
6 PS, thank you to everyone who has worked on the Gentoo Prefix project. It's been enormously helpful to me (and is just plain cool).
7
8
9
10 -----Original Message-----
11 From: heroxbd@g.o [heroxbd@g.o<mailto:heroxbd@g.o>]
12 Sent: Thursday, February 05, 2015 03:22 AM Eastern Standard Time
13 To: gentoo-alt@l.g.o
14 Subject: Re: [gentoo-alt] Re: Installing Prefix/libc : heroxbd overlay
15
16
17 Michael Haubenwallner <haubi@g.o> writes:
18
19 > On 02/04/2015 02:47 PM, McGehee, Robert wrote:
20 >> Ok, interesting. I think the problem is that I can't get to git:// port due to corporate firewall,
21 >
22 > In case you're able to ssh somewhere outside the firewall, you can use this one:
23 >
24 > $ ( echo '#! /bin/sh'; echo 'ssh -W $1:$2' your-outside-machine ) > ~/proxycmd
25 > $ chmod +x ~/proxycmd
26 >
27 > And then do the git commands with:
28 >
29 > $ GIT_PROXY_COMMAND=~/proxycmd git ...
30
31 Thanks Michael. Or a proxy wrapper:
32
33 $ cat proxy-wrapper
34 #!/bin/sh
35 nc.openbsd -x ${outside-proxy-permitting-https-connect}:3128 -Xconnect $*
36
37 $ GIT_PROXY_COMMAND=./proxy-wrapper git ...