|
List Info
Thread: archive of netbsd-3 ?
|
|
| archive of netbsd-3 ? |

|
2007-08-09 15:58:15 |
Is there a
ftp://ftp.netbsd.org/pub/pkgsrc/pkgsrc-2007Q2/pkgsrc-2007Q2.
tar.bz2
equivalent for netbsd-3?
... I can't find any.
// George
--
George Georgalis, information system scientist
<IXOYE><
|
|
| Re: archive of netbsd-3 ? |
  Slovakia |
2007-08-09 17:38:24 |
On Thu, Aug 09, 2007 at 04:58:15PM -0400, George Georgalis
wrote:
> Is there a
>
ftp://ftp.netbsd.org/pub/pkgsrc/pkgsrc-2007Q2/pkgsrc-2007Q2.
tar.bz2
> equivalent for netbsd-3?
>
> ... I can't find any.
pkgsrc quarterly branches aren't tied to any NetBSD (or any
other OS)
release. there is no other source than the one you
mentioned.
regards,
--
-- Lubomir Sedlacik <salo {NetBSD,Xtrmntr,silcnet}.org> --
|
|
| Re: archive of netbsd-3 ? |

|
2007-08-10 10:44:19 |
On Fri, Aug 10, 2007 at 12:38:24AM +0200, Lubomir Sedlacik
wrote:
>On Thu, Aug 09, 2007 at 04:58:15PM -0400, George
Georgalis wrote:
>> Is there a
>>
ftp://ftp.netbsd.org/pub/pkgsrc/pkgsrc-2007Q2/pkgsrc-2007Q2.
tar.bz2
>> equivalent for netbsd-3?
>>
>> ... I can't find any.
>
>pkgsrc quarterly branches aren't tied to any NetBSD (or
any other OS)
>release. there is no other source than the one you
mentioned.
That archive is made from the tag every few days.
It saves a ton of time to ftp the pkgsrc bz2
then extract and do a cvs update on a new machine,
verses doing an initial cvs checkout of the tag.
I was hoping netbsd src tags would be available as
archive, to accelerate a new checkout. maybe it
would reduce load and bandwidth of the netbsd cvs
servers too?
// George
--
George Georgalis, information system scientist
<IXOYE><
|
|
| Re: archive of netbsd-3 ? |
  Sweden |
2007-08-11 14:49:52 |
On Fri, 10 Aug 2007 11:44:19 -0400
"George Georgalis" <george galis.org> wrote:
> >> Is there a
> >>
ftp://ftp.netbsd.org/pub/pkgsrc/pkgsrc-2007Q2/pkgsrc-2007Q2.
tar.bz2
> >> equivalent for netbsd-3?
> >>
> >> ... I can't find any.
>
> I was hoping netbsd src tags would be available as
> archive, to accelerate a new checkout. maybe it
> would reduce load and bandwidth of the netbsd cvs
> servers too?
Hi,
There are tarballs for the netbsd-3 branch available at:
ftp://ftp.NetBSD.org/pub/NetBSD-daily/netbsd-3/pick_date/sou
rce/sets/
Kind regards,
-Tobias
|
|
| Re: misc/36765 archive of netbsd-3 ? |

|
2007-08-11 19:56:39 |
On Sat, Aug 11, 2007 at 09:49:52PM +0200, Tobias Nygren
wrote:
>
>There are tarballs for the netbsd-3 branch available
at:
>ftp://ftp.NetBSD.org/pub/NetBSD-daily/netbsd-3/pick_date
/source/sets/
Thanks, that will be a big help.
I'm scripting out a process to bring a host up to a
local standard which includes pkgsrc and src trees.
With $ there are some hoops to figure out
the url.
./pub/NetBSD-daily/netbsd-3/200708100002Z/source/sets/src.tg
z
I wonder if there is any reason not to symlink
./pub/NetBSD-daily/netbsd-3/$ to
./pub/NetBSD-daily/netbsd-3/netbsd-3 every time a
new $ comes out? Then we have a fixed url
for whatever most current snapshot of the tag is
available.
Yeah, that puts the tag in the url twice, maybe the
symlink could be called "snapshot"?
// George
--
George Georgalis, information system scientist
<IXOYE><
|
|
| Re: archive of netbsd-3 ? |

|
2007-08-13 09:03:46 |
On Sat, Aug 11, 2007 at 09:49:52PM +0200, Tobias Nygren
wrote:
>On Fri, 10 Aug 2007 11:44:19 -0400
>"George Georgalis" <george galis.org> wrote:
>
>> >> Is there a
>> >>
ftp://ftp.netbsd.org/pub/pkgsrc/pkgsrc-2007Q2/pkgsrc-2007Q2.
tar.bz2
>> >> equivalent for netbsd-3?
>> >>
>> >> ... I can't find any.
>>
>> I was hoping netbsd src tags would be available as
>> archive, to accelerate a new checkout. maybe it
>> would reduce load and bandwidth of the netbsd cvs
>> servers too?
>
>Hi,
>
>There are tarballs for the netbsd-3 branch available
at:
>ftp://ftp.NetBSD.org/pub/NetBSD-daily/netbsd-3/pick_date
/source/sets/
Humm, I tried the following script...
#:: Set parameters to obtain the NetBSD sources, and
download.
lastsrc () { # Return the dated path of the last netbsd-3
tgz
echo "ls -rx"
| ftp -4
ftp://ftp.netbsd.net/pub/NetBSD-daily/netbsd-3/
| awk '{print $1}'
}
mkdir -p /usr/local/dist/netbsd-3
cd /usr/local/dist/netbsd-3
ftp
ftp://ftp.netbsd.net/pub/NetBSD-daily/netbsd-3/$(lastsrc)/so
urce/sets/src.tgz
cd /
tar xzf /usr/local/dist/netbsd-3/src.tgz
#:: Update the src archive, to the cvs tag.
cd /usr/src && cvs -q upd -dP
but given the amount of files being updated, I doubt very
seriously that snapshot contained recent source, or maybe
there
is something else out of sync. It _seems_ it is updating
every
file in src, there is already a new snapshot since I started
the
update.
// George
--
George Georgalis, information system scientist
<IXOYE><
|
|
| Re: archive of netbsd-3 ? |

|
2007-08-13 14:24:43 |
On Mon, 13 Aug 2007 10:03:46 -0400
"George Georgalis" <george galis.org> wrote:
> Humm, I tried the following script...
>
> #:: Set parameters to obtain the NetBSD sources, and
download.
> lastsrc () { # Return the dated path of the last
netbsd-3 tgz
> echo "ls -rx"
> | ftp -4
ftp://ftp.netbsd.net/pub/NetBSD-daily/netbsd-3/
> | awk '{print $1}'
> }
> mkdir -p /usr/local/dist/netbsd-3
> cd /usr/local/dist/netbsd-3
> ftp
ftp://ftp.netbsd.net/pub/NetBSD-daily/netbsd-3/$(lastsrc)/so
urce/sets/src.tgz
> cd /
> tar xzf /usr/local/dist/netbsd-3/src.tgz
> #:: Update the src archive, to the cvs tag.
> cd /usr/src && cvs -q upd -dP
>
> but given the amount of files being updated, I doubt
very
> seriously that snapshot contained recent source, or
maybe there
> is something else out of sync. It _seems_ it is
updating every
> file in src, there is already a new snapshot since I
started the
> update.
You need to get sharesrc.tgz, sysrc.tgz, and gnusrc.tgz as
well.
dieter
>
> // George
>
>
> --
> George Georgalis, information system scientist
<IXOYE><
>
|
|
| Re: archive of netbsd-3 ? |

|
2007-08-13 16:05:59 |
On Mon, Aug 13, 2007 at 09:24:43PM +0200, dieter roelants
wrote:
>On Mon, 13 Aug 2007 10:03:46 -0400
>"George Georgalis" <george galis.org> wrote:
>
>
>> Humm, I tried the following script...
>>
>> #:: Set parameters to obtain the NetBSD sources,
and download.
>> lastsrc () { # Return the dated path of the last
netbsd-3 tgz
>> echo "ls -rx"
>> | ftp -4
ftp://ftp.netbsd.net/pub/NetBSD-daily/netbsd-3/
>> | awk '{print $1}'
>> }
>> mkdir -p /usr/local/dist/netbsd-3
>> cd /usr/local/dist/netbsd-3
>> ftp
ftp://ftp.netbsd.net/pub/NetBSD-daily/netbsd-3/$(lastsrc)/so
urce/sets/src.tgz
>> cd /
>> tar xzf /usr/local/dist/netbsd-3/src.tgz
>> #:: Update the src archive, to the cvs tag.
>> cd /usr/src && cvs -q upd -dP
>>
>> but given the amount of files being updated, I
doubt very
>> seriously that snapshot contained recent source, or
maybe there
>> is something else out of sync. It _seems_ it is
updating every
>> file in src, there is already a new snapshot since
I started the
>> update.
>
>You need to get sharesrc.tgz, sysrc.tgz, and gnusrc.tgz
as well.
thanks, this seems all what I need.
it seems odd that there is no "src.tgz" on the ftp
server which
represents the corresponding netbsd /cvsroot src checkout,
but I
see how these archives could also be useful independently.
// George
--
George Georgalis, information system scientist
<IXOYE><
|
|
[1-8]
|
|