[BACK]Return to cvsup.html CVS log [TXT][DIR] Up to [local] / www

Annotation of www/cvsup.html, Revision 1.45

1.21      naddy       1: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
                      2: <html>
1.1       brian       3: <head>
                      4: <title>OpenBSD CVSup</title>
1.21      naddy       5: <link rev="made" href="mailto:www@openbsd.org">
                      6: <meta name="resource-type" content="document">
                      7: <meta name="description" content="How to get OpenBSD updates via Internet using CVSup">
                      8: <meta name="keywords" content="openbsd,cvsup,updates">
                      9: <meta name="distribution" content="global">
1.39      horacio    10: <meta name="copyright" content="This document copyright 2001 by OpenBSD.">
1.1       brian      11: </head>
                     12:
1.7       brian      13: <body bgcolor="#FFFFFF" text="#000000" link="#23238E">
1.1       brian      14:
1.21      naddy      15: <img alt="[OpenBSD]" height="30" width="141" src="images/smalltitle.gif">
1.7       brian      16:
                     17: <h2><font color="#e00000">CVSup</font></h2>
1.21      naddy      18: <hr>
1.1       brian      19:
1.7       brian      20: <h3>Table of Contents</h3>
                     21: <ul>
                     22: <li><a href="#cvsup">What Is CVSup?</a></li>
                     23: <li><a href="#starting">Getting Started Using CVSup</a></li>
                     24: <li><a href="#using">Using CVS to Update Your Source Tree</a></li>
                     25: <li><a href="#checkout">Running CVSup in Checkout Mode</a></li>
                     26: <li><a href="#CVSROOT">Available CVSup Servers</a></li>
1.1       brian      27: </ul>
                     28:
1.21      naddy      29: <hr>
1.1       brian      30:
1.9       naddy      31:
1.21      naddy      32: <h3><a name="cvsup"><font color="#0000e0">What Is CVSup?</font></a></h3>
1.1       brian      33:
                     34: <p>
                     35: <b>CVSup</b> is a software package for distributing and updating source
1.39      horacio    36: trees from a master <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&sektion=1">cvs(1)</a> repository on a remote server host. The OpenBSD
1.1       brian      37: sources are maintained in a CVS repository on a central development machine
                     38: in Canada.  With CVSup, OpenBSD users can easily keep their own source trees
                     39: up to date.
                     40: </p>
                     41:
                     42: <p>
                     43: <b>CVSup</b> uses the so-called pull model of updating. Under the pull
                     44: model, each client asks the server for updates, if and when they are
                     45: wanted.  The server waits passively for update requests from its clients.
                     46: Thus all updates are instigated by the client.  The server never sends
                     47: unsolicited updates.  Users must either run the <b>CVSup</b> client
1.39      horacio    48: manually to get an update, or they must set up a <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cron&sektion=8">cron(8)</a> job to run it
1.1       brian      49: automatically on a regular basis.
                     50: </p>
                     51:
                     52: <p>
                     53: The term <b>CVSup</b>, capitalized just so, refers to the entire software
                     54: package. Its main components are the client <tt>cvsup</tt> which runs on
                     55: each user's machine, and the server <tt>cvsupd</tt> which runs at each of
                     56: the OpenBSD CVSup mirror sites.
                     57: </p>
                     58:
                     59: <p>
                     60: <b>CVSup</b> is intended to be both faster and more flexible than
1.21      naddy      61: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=sup&amp;sektion=1&amp;format=html">sup(1)</a>, CVSup's predecessor.
1.1       brian      62: </p>
                     63:
                     64: <p>
1.21      naddy      65: The OpenBSD Project currently has five main source repositories:
1.1       brian      66: </p>
                     67:
                     68: <ul>
1.9       naddy      69:   <li><b>src</b> - Houses all source code for the OpenBSD Operating System.</li>
                     70:   <li><b>ports</b> - Houses the <a href="./ports.html">OpenBSD Ports</a>.</li>
                     71:   <li><b>www</b> - Houses all OpenBSD web pages. (Including this one).</li>
                     72:   <li><b>x11</b> - Houses OpenBSD's adaptation of the
1.20      brian      73:       <a href="http://www.XFree86.org/">XFree86-3</a> software project.</li>
                     74:   <li><b>xf4</b> - Houses OpenBSD's adaptation of the
                     75:       <a href="http://www.XFree86.org/">XFree86-4</a> software project.</li>
1.1       brian      76: </ul>
                     77:
1.21      naddy      78: <h3><a name="CVS"><font color="#0000e0">What Is CVS?</font></a></h3>
1.1       brian      79:
                     80: <p>
                     81: CVS is the source code control system used to manage the OpenBSD source
1.7       brian      82: tree.  It is described in more detail <a href="anoncvs.html#CVS">here</a>.
1.9       naddy      83: </p>
1.1       brian      84:
1.2       brian      85: <h3>
1.21      naddy      86: <a name="starting"><font color="#0000e0">Getting Started Using CVSup</font></a>
1.2       brian      87: </h3>
1.1       brian      88:
                     89: <p>
                     90: The latest version of CVSup is available at
1.7       brian      91: <a href="http://www.polstra.com/projects/freeware/CVSup/">
1.1       brian      92: http://www.polstra.com/projects/freeware/CVSup/</a>.
                     93: </p>
                     94:
                     95: <p>
1.9       naddy      96: Building CVSup from the sources is not for the fainthearted since
                     97: it is written in Modula-3. There is a port of the CVSup client
1.11      wvdputte   98: (<tt>net/cvsup-bin</tt>) which provides John's pre-compiled executables
1.9       naddy      99: for the i386 and sparc architectures that run under FreeBSD and
                    100: SunOS emulation, respectively, since there is no native port of
                    101: Modula-3 to OpenBSD yet.
                    102: </p>
                    103:
                    104: <p>
1.1       brian     105: The following configuration file might be used:
                    106: </p>
                    107:
                    108: <pre>
                    109:         # Defaults that apply to all the collections
                    110:         *default release=cvs
                    111:         *default delete use-rel-suffix
                    112:         *default umask=002
1.41      brad      113:         *default host=cvsup.uk.openbsd.org
1.1       brian     114:         *default base=/cvs
                    115:         *default prefix=/cvs
                    116:
                    117:         # If your network link is a T1 or faster, comment out the following line.
                    118:         *default compress
                    119:
                    120:         OpenBSD-all
                    121:         #OpenBSD-src
                    122:         #OpenBSD-www
                    123:         #OpenBSD-ports
                    124:         #OpenBSD-x11
1.20      brian     125:         #OpenBSD-xf4
1.1       brian     126: </pre>
                    127:
                    128: <p>
                    129: This directs cvsup to refresh all OpenBSD distributions from
1.41      brad      130: <b>cvsup.uk.openbsd.org</b> with a <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=umask&sektion=2">umask(2)</a> that permits group write
1.1       brian     131: permission to the local repository.
                    132: </p>
                    133:
                    134: <p>
                    135: Assuming this file is saved as <tt>cvs-supfile</tt>, the
1.39      horacio   136: following command would be used to invoke the cvsup GUI:
1.9       naddy     137: </p>
1.1       brian     138: <pre>
                    139:         cvsup cvs-supfile
                    140: </pre>
1.9       naddy     141: <p>
1.1       brian     142: whereas for batch mode, the following might be used:
1.9       naddy     143: </p>
1.1       brian     144: <pre>
                    145:         cvsup -g -L 2 cvs-supfile
                    146: </pre>
                    147:
1.21      naddy     148: <h3><a name="using">
1.7       brian     149: <font color="#0000e0">Using CVS to Update Your Source Tree</font>
1.2       brian     150: </a></h3>
1.1       brian     151:
                    152: <p>
1.7       brian     153: It is now simple to check out any one of the CVSup'ed repositories.
                    154: For Korn/Bourne shells:
1.9       naddy     155: </p>
1.7       brian     156: <pre>
                    157:         # cd /usr
                    158:         # CVSROOT=/cvs cvs checkout src
                    159: </pre>
                    160: <p>
                    161: For csh and its derivatives:
1.9       naddy     162: </p>
1.7       brian     163: <pre>
                    164:         # cd /usr
                    165:         # setenv CVSROOT /cvs
                    166:         # cvs checkout src
                    167: </pre>
1.1       brian     168:
                    169: <p>
1.7       brian     170: The above will check out the most current sources. Many of you will only
1.1       brian     171: want the release sources, especially if you are patching your system.  To
                    172: checkout release sources you must specify a tag along with your command.
                    173: For example:
                    174: </p>
1.7       brian     175: <pre>
                    176:         # cd /usr
1.40      jufi      177:         # cvs checkout -rOPENBSD_2_9 src
1.7       brian     178: </pre>
                    179: <p>
1.40      jufi      180: Or <tt>OPENBSD_2_8</tt> for 2.8, etc.
1.7       brian     181: </p>
                    182:
1.21      naddy     183: <h3><a name="checkout"><font color="#0000e0">Running CVSup in
1.7       brian     184: Checkout Mode</font></a></h3>
1.1       brian     185:
                    186: <p>
1.7       brian     187: As an alternative to getting the repository and using CVS, you can
                    188: run CVSup in checkout mode by adding a <tt>tag</tt> or <tt>date</tt>
                    189: keyword to your supfile, either as a <tt>*default</tt> or as an
                    190: option to a collection. In particular, you can use this to efficiently
                    191: update the source and ports trees shipped on the <a
                    192: href="orders.html">CDROMs</a>.
1.1       brian     193: </p>
1.7       brian     194: <p>
                    195: The following supfile could be used to update your ports tree:
                    196: </p>
                    197: <pre>
                    198:         # Defaults that apply to all the collections
                    199:         *default host=cvsup.uk.openbsd.org
                    200:         *default base=/var
                    201:         *default prefix=/usr
                    202:         *default release=cvs
                    203:         *default delete use-rel-suffix compress
                    204:
                    205:         # Ports Collection.
                    206:         OpenBSD-ports tag=.
                    207: </pre>
                    208: <p>
                    209: Any CVS symbolic tag can be used.  A single period "." means HEAD,
                    210: i.e. the newest revision of all files in the main branch.  Take care
                    211: to specify an existing tag, as CVSup cannot distinguish valid from
                    212: invalid tags, and an attempt to synchronize an existing source tree
                    213: to an invalid tag will remove all files.
                    214: </p>
                    215: <p>
                    216: Alternatively, use the keyword <tt>date=[cc.]yy.mm.dd.hh.mm.ss</tt>
                    217: to select a revision by date.  All 17 or 19 characters must be
                    218: given as shown.  For the years 2000 and beyond, specify the century
                    219: <var>cc</var>.  For earlier years, specify only the last two digits
                    220: <var>yy</var>.  You may also combine the <tt>tag</tt> and <tt>date</tt>
                    221: keywords.
                    222: </p>
                    223:
1.1       brian     224:
1.2       brian     225: <h3>
1.21      naddy     226: <a name="CVSROOT"><font color="#0000e0">Available CVSup Servers</font></a>
1.2       brian     227: </h3>
1.1       brian     228:
1.7       brian     229: <p>The following CVSup servers are available:</p>
                    230:
1.1       brian     231: <dl>
1.41      brad      232: <dt><a href="http://cvsup.uk.openbsd.org"><strong>cvsup.uk.openbsd.org</strong></a></dt>
1.7       brian     233: <dd><p>
1.6       deraadt   234: located in Brighton, UK;
1.41      brad      235: maintained by <a href="mailto:brian@openbsd.org">Brian Somers</a>.<br>
1.21      naddy     236: Updated every 2 hours.
1.9       naddy     237: </p>
1.1       brian     238: <p>
1.7       brian     239: Available collections:
1.9       naddy     240: </p>
1.1       brian     241: <table>
1.9       naddy     242: <tr><td width="20"></td>
                    243:     <td><strong>OpenBSD-src</strong></td>
                    244:     <td>- The <b>src</b> repository</td></tr>
                    245: <tr><td></td>
                    246:     <td><strong>OpenBSD-ports</strong></td>
                    247:     <td>- The <b>ports</b> repository</td></tr>
                    248: <tr><td></td>
                    249:     <td><strong>OpenBSD-www</strong></td>
                    250:     <td>- The <b>www</b> repository</td></tr>
                    251: <tr><td></td>
                    252:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     253:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    254: <tr><td></td>
                    255:     <td><strong>OpenBSD-xf4</strong></td>
                    256:     <td>- The <b>XFree86-4</b> repository</td></tr>
1.9       naddy     257: <tr><td></td>
                    258:     <td><strong>OpenBSD-all</strong></td>
                    259:     <td>- All OpenBSD repositories</td></tr>
1.1       brian     260: </table>
1.7       brian     261: </dd>
                    262: </dl>
1.1       brian     263:
1.7       brian     264: <dl>
1.41      brad      265: <dt><strong>cvsup.de.openbsd.org</strong></dt>
1.7       brian     266: <dd><p>
                    267: located near Frankfurt am Main, Germany;
1.21      naddy     268: maintained by <a href="mailto:wosch@FreeBSD.org">Wolfram Schneider</a>.<br>
                    269: Updated by CTM.
1.9       naddy     270: </p>
1.3       brian     271: <p>
1.7       brian     272: Available collections:
1.9       naddy     273: </p>
1.3       brian     274: <table>
1.9       naddy     275: <tr><td width="20"></td>
1.12      naddy     276:     <td><strong>OpenBSD-src</strong></td>
1.9       naddy     277:     <td>- The <b>src</b> repository</td></tr>
                    278: <tr><td></td>
1.12      naddy     279:     <td><strong>OpenBSD-ports</strong></td>
1.9       naddy     280:     <td>- The <b>ports</b> repository</td></tr>
                    281: <tr><td></td>
1.12      naddy     282:     <td><strong>OpenBSD-www</strong></td>
1.9       naddy     283:     <td>- The <b>www</b> repository</td></tr>
                    284: <tr><td></td>
1.12      naddy     285:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     286:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.12      naddy     287: <tr><td></td>
                    288:     <td><strong>OpenBSD-all</strong></td>
                    289:     <td>- All OpenBSD repositories</td></tr>
1.3       brian     290: </table>
1.7       brian     291: </dd>
                    292: </dl>
1.3       brian     293:
1.7       brian     294: <dl>
1.41      brad      295: <dt><a href="http://cvsup2.de.openbsd.org"><strong>cvsup2.de.openbsd.org</strong></a></dt>
1.7       brian     296: <dd><p>
1.41      brad      297: located in Munich, Germany;
                    298: maintained by <a href="mailto:dl@leo.org">Daniel Lang</a>.<br>
                    299: Updated every 24 hours.
1.9       naddy     300: </p>
1.5       ericj     301: <p>
1.7       brian     302: Available collections:
1.9       naddy     303: </p>
1.5       ericj     304: <table>
1.9       naddy     305: <tr><td width="20"></td>
                    306:     <td><strong>OpenBSD-src</strong></td>
                    307:     <td>- The <b>src</b> repository</td></tr>
                    308: <tr><td></td>
                    309:     <td><strong>OpenBSD-ports</strong></td>
                    310:     <td>- The <b>ports</b> repository</td></tr>
                    311: <tr><td></td>
                    312:     <td><strong>OpenBSD-www</strong></td>
                    313:     <td>- The <b>www</b> repository</td></tr>
                    314: <tr><td></td>
                    315:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     316:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.9       naddy     317: <tr><td></td>
1.41      brad      318:     <td><strong>OpenBSD-xf4</strong></td>
                    319:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    320: <tr><td></td>
1.9       naddy     321:     <td><strong>OpenBSD-all</strong></td>
                    322:     <td>- All OpenBSD repositories</td></tr>
1.5       ericj     323: </table>
1.7       brian     324: </dd>
                    325: </dl>
1.1       brian     326:
1.7       brian     327: <dl>
1.41      brad      328: <dt><strong>cvsup.hu.openbsd.org</strong></dt>
1.18      beck      329: <dd><p>
1.41      brad      330: located in Hungary;
                    331: maintained by <a href="mailto:mohacsi@hera.ik.bme.hu">Mohacsi Janos</a>.<br>
                    332: Updated every 4 hours.
1.18      beck      333: </p>
                    334: <p>
                    335: Available collections:
                    336: </p>
                    337: <table>
                    338: <tr><td width="20"></td>
                    339:     <td><strong>OpenBSD-src</strong></td>
                    340:     <td>- The <b>src</b> repository</td></tr>
                    341: <tr><td></td>
                    342:     <td><strong>OpenBSD-ports</strong></td>
                    343:     <td>- The <b>ports</b> repository</td></tr>
                    344: <tr><td></td>
                    345:     <td><strong>OpenBSD-www</strong></td>
                    346:     <td>- The <b>www</b> repository</td></tr>
                    347: <tr><td></td>
1.19      brian     348:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     349:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.19      brian     350: <tr><td></td>
1.18      beck      351:     <td><strong>OpenBSD-all</strong></td>
                    352:     <td>- All OpenBSD repositories</td></tr>
                    353: </table>
                    354: </dd>
                    355: </dl>
                    356:
                    357: <dl>
1.41      brad      358: <dt><strong>cvsup.fr.openbsd.org</strong></dt>
1.7       brian     359: <dd><p>
1.6       deraadt   360: located in France;
1.21      naddy     361: maintained by <a href="mailto:jch@oleane.net">Jean-Claude Christophe</a>.<br>
1.7       brian     362: Updated every 12 hours.
1.9       naddy     363: </p>
1.6       deraadt   364: <p>
1.7       brian     365: Available collections:
1.9       naddy     366: </p>
1.6       deraadt   367: <table>
1.9       naddy     368: <tr><td width="20"></td>
                    369:     <td><strong>OpenBSD-src</strong></td>
                    370:     <td>- The <b>src</b> repository</td></tr>
                    371: <tr><td></td>
                    372:     <td><strong>OpenBSD-ports</strong></td>
                    373:     <td>- The <b>ports</b> repository</td></tr>
                    374: <tr><td></td>
                    375:     <td><strong>OpenBSD-www</strong></td>
                    376:     <td>- The <b>www</b> repository</td></tr>
                    377: <tr><td></td>
                    378:     <td><strong>OpenBSD-all</strong></td>
                    379:     <td>- All OpenBSD repositories</td></tr>
1.6       deraadt   380: </table>
1.7       brian     381: </dd>
                    382: </dl>
1.5       ericj     383:
1.14      brian     384: <dl>
1.41      brad      385: <dt><strong>cvsup.ca.openbsd.org</strong></dt>
                    386: <dd><p>
                    387: located in Toronto, Ontario, Canada;
                    388: maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    389: Updated every 2 hours.
                    390: </p>
                    391: <p>
                    392: Available collections:
                    393: </p>
                    394: <table>
                    395: <tr><td width="20"></td>
                    396:     <td><strong>OpenBSD-src</strong></td>
                    397:     <td>- The <b>src</b> repository</td>
                    398: <tr><td></td>
                    399:     <td><strong>OpenBSD-ports</strong></td>
                    400:     <td>- The <b>ports</b> repository</td></tr>
                    401: <tr><td></td>
                    402:     <td><strong>OpenBSD-www</strong></td>
                    403:     <td>- The <b>www</b> repository</td></tr>
                    404: <tr><td></td>
                    405:     <td><strong>OpenBSD-x11</strong></td>
                    406:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    407: <tr><td></td>
                    408:     <td><strong>OpenBSD-xf4</strong></td>
                    409:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    410: <tr><td></td>
                    411:     <td><strong>OpenBSD-all</strong></td>
                    412:     <td>- All OpenBSD repositories</td></tr>
                    413: </table>
                    414: </dd>
                    415: </dl>
                    416:
                    417: <dl>
                    418: <dt><strong>cvsup.usa.openbsd.org</strong></dt>
1.14      brian     419: <dd><p>
1.41      brad      420: located in West Lafayette, Indiana, USA;
1.21      naddy     421: maintained by <a href="mailto:will@csociety.ecn.purdue.edu">Will Andrews</a>.<br>
1.14      brian     422: Updated every 2 hours.
                    423: </p>
                    424: <p>
                    425: Available collections:
                    426: </p>
                    427: <table>
                    428: <tr><td width="20"></td>
                    429:     <td><strong>OpenBSD-src</strong></td>
                    430:     <td>- The <b>src</b> repository</td>
                    431: <tr><td></td>
                    432:     <td><strong>OpenBSD-ports</strong></td>
                    433:     <td>- The <b>ports</b> repository</td></tr>
                    434: <tr><td></td>
                    435:     <td><strong>OpenBSD-www</strong></td>
                    436:     <td>- The <b>www</b> repository</td></tr>
                    437: <tr><td></td>
                    438:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     439:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.14      brian     440: <tr><td></td>
1.23      naddy     441:     <td><strong>OpenBSD-xf4</strong></td>
                    442:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    443: <tr><td></td>
1.14      brian     444:     <td><strong>OpenBSD-all</strong></td>
                    445:     <td>- All OpenBSD repositories</td></tr>
                    446: </table>
                    447: </dd>
                    448: </dl>
                    449:
1.26      brian     450: <dl>
1.41      brad      451: <dt><a href="http://rouge.snu.ac.kr/cgi-bin/openbsdcvs.cgi/"><strong>cvsup.kr.openbsd.org</strong></a></dt>
1.26      brian     452: <dd><p>
                    453: located in Seoul, Korea;
                    454: maintained by <a href="mailto:redjade@atropos.snu.ac.kr">Kim Kyung-Hwan</a>.<br>
                    455: Updated every 2 hours.
                    456: </p>
                    457: <p>
                    458: Available collections:
                    459: </p>
                    460: <table>
                    461: <tr><td width="20"></td>
                    462:     <td><strong>OpenBSD-src</strong></td>
                    463:     <td>- The <b>src</b> repository</td>
                    464: <tr><td></td>
                    465:     <td><strong>OpenBSD-ports</strong></td>
                    466:     <td>- The <b>ports</b> repository</td></tr>
                    467: <tr><td></td>
                    468:     <td><strong>OpenBSD-www</strong></td>
                    469:     <td>- The <b>www</b> repository</td></tr>
                    470: <tr><td></td>
                    471:     <td><strong>OpenBSD-x11</strong></td>
                    472:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    473: <tr><td></td>
                    474:     <td><strong>OpenBSD-xf4</strong></td>
                    475:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    476: <tr><td></td>
                    477:     <td><strong>OpenBSD-all</strong></td>
                    478:     <td>- All OpenBSD repositories</td></tr>
                    479: </table>
                    480: </dd>
                    481: </dl>
                    482:
1.27      brian     483: <dl>
1.41      brad      484: <dt><a href="http://cvsup.no.openbsd.org/"><strong>cvsup.no.openbsd.org</strong></a></dt>
1.27      brian     485: <dd><p>
1.43      heko      486: located in Oslo, Norway;
1.27      brian     487: maintained by <a href="mailto:anders@fix.no">Anders Nordby</a>.<br>
1.29      brian     488: Updated every 3 hours.
1.27      brian     489: </p>
                    490: <p>
                    491: Available collections:
                    492: </p>
                    493: <table>
                    494: <tr><td width="20"></td>
                    495:     <td><strong>OpenBSD-src</strong></td>
                    496:     <td>- The <b>src</b> repository</td>
                    497: <tr><td></td>
                    498:     <td><strong>OpenBSD-ports</strong></td>
                    499:     <td>- The <b>ports</b> repository</td></tr>
                    500: <tr><td></td>
                    501:     <td><strong>OpenBSD-www</strong></td>
                    502:     <td>- The <b>www</b> repository</td></tr>
                    503: <tr><td></td>
                    504:     <td><strong>OpenBSD-x11</strong></td>
                    505:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    506: <tr><td></td>
                    507:     <td><strong>OpenBSD-xf4</strong></td>
                    508:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    509: <tr><td></td>
                    510:     <td><strong>OpenBSD-all</strong></td>
                    511:     <td>- All OpenBSD repositories</td></tr>
                    512: </table>
                    513: </dd>
                    514: </dl>
                    515:
1.30      brian     516: <dl>
1.41      brad      517: <dt><a href="http://cvsup.pt.openbsd.org/"><strong>cvsup.pt.openbsd.org</strong></a></dt>
1.30      brian     518: <dd><p>
                    519: located at the University of Coimbra, Portugal;
1.36      brian     520: maintained by <a href="mailto:jpedras@webvolution.net">Jo&atilde;o Pedras</a>.<br>
1.30      brian     521: Updated every 3 hours.
                    522: </p>
                    523: <p>
                    524: Available collections:
                    525: </p>
                    526: <table>
                    527: <tr><td width="20"></td>
                    528:     <td><strong>OpenBSD-src</strong></td>
                    529:     <td>- The <b>src</b> repository</td>
                    530: <tr><td></td>
                    531:     <td><strong>OpenBSD-ports</strong></td>
                    532:     <td>- The <b>ports</b> repository</td></tr>
                    533: <tr><td></td>
                    534:     <td><strong>OpenBSD-www</strong></td>
                    535:     <td>- The <b>www</b> repository</td></tr>
                    536: <tr><td></td>
                    537:     <td><strong>OpenBSD-x11</strong></td>
                    538:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    539: <tr><td></td>
                    540:     <td><strong>OpenBSD-xf4</strong></td>
                    541:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    542: <tr><td></td>
                    543:     <td><strong>OpenBSD-all</strong></td>
                    544:     <td>- All OpenBSD repositories</td></tr>
                    545: </table>
                    546: </dd>
                    547: </dl>
1.37      brian     548: <dl>
                    549:
                    550: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    551: <dd><p>
1.38      brian     552: located at Lake in the Hills, Illinois, USA;
1.37      brian     553: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     554: Updated every 2 hours.
1.37      brian     555: </p>
                    556: <p>
                    557: Available collections:
                    558: </p>
                    559: <table>
                    560: <tr><td width="20"></td>
                    561:     <td><strong>OpenBSD-src</strong></td>
                    562:     <td>- The <b>src</b> repository</td>
                    563: <tr><td></td>
                    564:     <td><strong>OpenBSD-ports</strong></td>
                    565:     <td>- The <b>ports</b> repository</td></tr>
                    566: <tr><td></td>
                    567:     <td><strong>OpenBSD-www</strong></td>
                    568:     <td>- The <b>www</b> repository</td></tr>
                    569: <tr><td></td>
                    570:     <td><strong>OpenBSD-x11</strong></td>
                    571:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    572: <tr><td></td>
                    573:     <td><strong>OpenBSD-xf4</strong></td>
                    574:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    575: <tr><td></td>
                    576:     <td><strong>OpenBSD-all</strong></td>
                    577:     <td>- All OpenBSD repositories</td></tr>
                    578: </table>
                    579: </dd>
                    580: </dl>
1.30      brian     581:
1.44      brian     582: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    583: <dd><p>
                    584: located in Russia;
                    585: maintained by <a href="mailto:kab00m@lich.phys.spbu.ru">Dima Veselov</a>.<br>
                    586: Updated every 4 hours.
                    587: </p>
                    588: <p>
                    589: Available collections:
                    590: </p>
                    591: <table>
                    592: <tr><td></td>
                    593:     <td><strong>OpenBSD-ports</strong></td>
                    594:     <td>- The <b>ports</b> repository</td></tr>
                    595: </table>
                    596: </dd>
                    597: </dl>
                    598:
1.1       brian     599: <p>
1.7       brian     600: <em>Note:</em>, If your server is listed on here with inaccurate or
                    601: unknown information, please contact <a
1.9       naddy     602: href="mailto:beck@openbsd.org"><tt>beck@openbsd.org</tt></a>
1.33      brian     603: or <a href="mailto:brian@openbsd.org"><tt>brian@openbsd.org</tt></a>
1.9       naddy     604: </p>
1.1       brian     605: <p>
1.39      horacio   606: You may want to use <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=traceroute&sektion=8">traceroute(8)</a>
                    607: to find out which server is nearest you.
1.1       brian     608: Problems with a server should be reported to the <b>maintainer</b> of the
                    609: server in question.
1.9       naddy     610: </p>
1.1       brian     611: <p>
1.45    ! brian     612: Currently (as of October 16, 2001), the CVS repository sizes are
1.9       naddy     613: </p>
1.4       brian     614: <table>
1.9       naddy     615: <tr><td width="20"></td>
1.20      brian     616:     <td><strong>OpenBSD-ports</strong></td>
1.45    ! brian     617:     <td>- <b>67</b>MB</td></tr>
1.9       naddy     618: <tr><td></td>
1.20      brian     619:     <td><strong>OpenBSD-src</strong></td>
1.45    ! brian     620:     <td>- <b>783</b>MB</td></tr>
1.9       naddy     621: <tr><td></td>
1.20      brian     622:     <td><strong>OpenBSD-www</strong></td>
1.45    ! brian     623:     <td>- <b>46</b>MB</td></tr>
1.9       naddy     624: <tr><td></td>
1.20      brian     625:     <td><strong>OpenBSD-x11</strong></td>
1.45    ! brian     626:     <td>- <b>193</b>MB</td></tr>
1.20      brian     627: <tr><td></td>
                    628:     <td><strong>OpenBSD-xf4</strong></td>
1.42      brian     629:     <td>- <b>340</b>MB</td></tr>
1.4       brian     630: </table>
                    631: <p>
1.45    ! brian     632: There is an additional overhead of <b>34</b>MB for the CVSROOT and sup
1.15      brian     633: directories.  The overall repository size currently increases at a rate
                    634: of about <b>170</b>MB per annum.
1.9       naddy     635: </p>
1.4       brian     636: <p>
1.1       brian     637: <strong>IMPORTANT NOTE:</strong>
                    638: There are a few issues relating to cryptographic software that everyone
                    639: should be aware of:
1.9       naddy     640: </p>
1.1       brian     641: <ul>
1.9       naddy     642:   <li>
                    643:     <p>
                    644:     The OpenBSD sources are from Canada. As
                    645:     <a href="http://insight.mcmaster.ca/org/efc/pages/doc/crypto-export.html">
                    646:     researched by a Canadian individual</a> and as
                    647:     <a href="http://axion.physics.ubc.ca/ECL.html">
                    648:     described in the Export Control list of Canada</a>,
                    649:     it is legal to export crypto software from Canada to the world.
                    650:     </p>
                    651:   </li>
                    652:   <li>
                    653:     <p>
                    654:     However, if you are outside the USA or Canada, you should not
                    655:     fetch the cryptographic sections of the OpenBSD sources from an
                    656:     AnonCVS server located in the USA. The files in question are...
                    657:     </p>
                    658:     <ul>
                    659:       <li><tt>src/kerberosIV/*</tt></li>
                    660:       <li><tt>src/lib/libdes/*</tt></li>
                    661:       <li><tt>src/lib/libc/crypt/crypt.c</tt></li>
                    662:       <li><tt>src/lib/libc/crypt/morecrypt.c</tt></li>
                    663:       <li><tt>src/sys/netinet</tt></li>
                    664:       <li><tt>src/usr.sbin/afs/src/rxkad/*</tt></li>
                    665:       <li><tt>X11/xc/lib/Xdmcp/Wraphelp.c</tt></li>
                    666:     </ul>
                    667:     <p>
                    668:     Because of the USA ITAR munitions list,
                    669:     crypto software may only be exported to Canada from the USA.
                    670:     </p>
                    671:   </li>
1.1       brian     672: </ul>
                    673:
                    674: <p>
                    675: The OpenBSD project is looking for more CVSup servers -- if you are
1.41      brad      676: interested, please contact <a href="mailto:brian@openbsd.org">Brian Somers</a>
1.1       brian     677: for configuration details.
                    678: </p>
                    679:
1.21      naddy     680: <hr>
                    681: <a href="index.html"><img height="24" width="24" src="back.gif" border="0" alt="OpenBSD"></a>
1.7       brian     682: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.45    ! brian     683: <br><small>$OpenBSD: cvsup.html,v 1.44 2001/10/16 17:03:38 brian Exp $</small>
1.1       brian     684:
                    685: </body>
                    686: </html>