Re: Access to all the tarballs on the website
Ger Hobbelt <[email protected]>
| Newsgroups | gmane.mail.spam.crm114 |
|---|---|
| Message-ID | <[email protected]> |
On Mon, Jan 19, 2009 at 7:32 PM, Nico Kadel-Garcia <[email protected]> wrote: > Who, right now, is maintaining the tarball repository at > http://crm114.sourceforge.net/wiki/doku.php?id=download? I'd like to > be able to mirror the contents of that, to compare one release to > another easily rather than having to pick and choose which one I want > to see, but it's hard to see what's behind the webpage without the > ability to browse the directory. That'd be Bill. Here's my UNIX shell script to grab the latest on crm114 whenever I want/need; note that since I joined (autumn '07) the last part is the magic one delivering the goods; the first line ('cvs -z3 ...') is there, but doesn't deliver new stuff unless I kick myself again and at least get /my/ stuff into CVS again. The CVS repo is more for us archeologists / speleologists, rather. Regarding tarballs, AFAIK Bill creates and uploads them, but you better check that. -- Met vriendelijke groeten / Best regards, Ger Hobbelt -------------------------------------------------- web: http://www.hobbelt.com/ http://www.hebbut.net/ mail: [email protected] mobile: +31-6-11 120 978 -------------------------------------------------- ------------------------------------------------------------------------------ This SF.net email is sponsored by: SourcForge Community SourceForge wants to tell your story. http://p.sf.net/sfu/sf-spreadtheword _______________________________________________ Crm114-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/crm114-general
_update_from_cvs.sh
(application/x-sh, 552 B)
#! /bin/sh # # grab the complete source tree from CVS at sourceforge # #cvs -d:pserver:[email protected]:/cvsroot/crm114 login cvs -z3 -d:pserver:[email protected]:/cvsroot/crm114 co -R . # as taken from the advice at: # # http://crm114.sourceforge.net/wiki/doku.php?id=download&DokuWiki=7b240324da483cf9d54207516ed90c68 # # mkdir src cd src wget -m -np http://crm114.sourceforge.net/src/ wget -m -np http://crm114.sourceforge.net/coolthings/ wget -m -np http://crm114.sourceforge.net/tarballs/ cd ..