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

Annotation of www/cvsup.html, Revision 1.48

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.48    ! brian      96: CVSup is difficult to compile and install because it is written in Modula3.
        !            97: While there are open source Modula3 environments available, compiling and
        !            98: installing them is a difficult task (especially for unsupported platforms).
        !            99: There is a port of Modula3 for i386 architecture only (<tt>lang/pm3</tt>).
        !           100: Therefore, CVSup is only currently available for i386.
1.9       naddy     101: </p>
                    102:
                    103: <p>
1.1       brian     104: The following configuration file might be used:
                    105: </p>
                    106:
                    107: <pre>
                    108:         # Defaults that apply to all the collections
                    109:         *default release=cvs
                    110:         *default delete use-rel-suffix
                    111:         *default umask=002
1.41      brad      112:         *default host=cvsup.uk.openbsd.org
1.1       brian     113:         *default base=/cvs
                    114:         *default prefix=/cvs
                    115:
                    116:         # If your network link is a T1 or faster, comment out the following line.
                    117:         *default compress
                    118:
                    119:         OpenBSD-all
                    120:         #OpenBSD-src
                    121:         #OpenBSD-www
                    122:         #OpenBSD-ports
                    123:         #OpenBSD-x11
1.20      brian     124:         #OpenBSD-xf4
1.1       brian     125: </pre>
                    126:
                    127: <p>
                    128: This directs cvsup to refresh all OpenBSD distributions from
1.41      brad      129: <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     130: permission to the local repository.
                    131: </p>
                    132:
                    133: <p>
                    134: Assuming this file is saved as <tt>cvs-supfile</tt>, the
1.39      horacio   135: following command would be used to invoke the cvsup GUI:
1.9       naddy     136: </p>
1.1       brian     137: <pre>
                    138:         cvsup cvs-supfile
                    139: </pre>
1.9       naddy     140: <p>
1.1       brian     141: whereas for batch mode, the following might be used:
1.9       naddy     142: </p>
1.1       brian     143: <pre>
                    144:         cvsup -g -L 2 cvs-supfile
                    145: </pre>
                    146:
1.21      naddy     147: <h3><a name="using">
1.7       brian     148: <font color="#0000e0">Using CVS to Update Your Source Tree</font>
1.2       brian     149: </a></h3>
1.1       brian     150:
                    151: <p>
1.7       brian     152: It is now simple to check out any one of the CVSup'ed repositories.
                    153: For Korn/Bourne shells:
1.9       naddy     154: </p>
1.7       brian     155: <pre>
                    156:         # cd /usr
                    157:         # CVSROOT=/cvs cvs checkout src
                    158: </pre>
                    159: <p>
                    160: For csh and its derivatives:
1.9       naddy     161: </p>
1.7       brian     162: <pre>
                    163:         # cd /usr
                    164:         # setenv CVSROOT /cvs
                    165:         # cvs checkout src
                    166: </pre>
1.1       brian     167:
                    168: <p>
1.7       brian     169: The above will check out the most current sources. Many of you will only
1.1       brian     170: want the release sources, especially if you are patching your system.  To
                    171: checkout release sources you must specify a tag along with your command.
                    172: For example:
                    173: </p>
1.7       brian     174: <pre>
                    175:         # cd /usr
1.40      jufi      176:         # cvs checkout -rOPENBSD_2_9 src
1.7       brian     177: </pre>
                    178: <p>
1.40      jufi      179: Or <tt>OPENBSD_2_8</tt> for 2.8, etc.
1.7       brian     180: </p>
                    181:
1.21      naddy     182: <h3><a name="checkout"><font color="#0000e0">Running CVSup in
1.7       brian     183: Checkout Mode</font></a></h3>
1.1       brian     184:
                    185: <p>
1.7       brian     186: As an alternative to getting the repository and using CVS, you can
                    187: run CVSup in checkout mode by adding a <tt>tag</tt> or <tt>date</tt>
                    188: keyword to your supfile, either as a <tt>*default</tt> or as an
                    189: option to a collection. In particular, you can use this to efficiently
                    190: update the source and ports trees shipped on the <a
                    191: href="orders.html">CDROMs</a>.
1.1       brian     192: </p>
1.7       brian     193: <p>
                    194: The following supfile could be used to update your ports tree:
                    195: </p>
                    196: <pre>
                    197:         # Defaults that apply to all the collections
                    198:         *default host=cvsup.uk.openbsd.org
                    199:         *default base=/var
                    200:         *default prefix=/usr
                    201:         *default release=cvs
                    202:         *default delete use-rel-suffix compress
                    203:
                    204:         # Ports Collection.
                    205:         OpenBSD-ports tag=.
                    206: </pre>
                    207: <p>
                    208: Any CVS symbolic tag can be used.  A single period "." means HEAD,
                    209: i.e. the newest revision of all files in the main branch.  Take care
                    210: to specify an existing tag, as CVSup cannot distinguish valid from
                    211: invalid tags, and an attempt to synchronize an existing source tree
                    212: to an invalid tag will remove all files.
                    213: </p>
                    214: <p>
                    215: Alternatively, use the keyword <tt>date=[cc.]yy.mm.dd.hh.mm.ss</tt>
                    216: to select a revision by date.  All 17 or 19 characters must be
                    217: given as shown.  For the years 2000 and beyond, specify the century
                    218: <var>cc</var>.  For earlier years, specify only the last two digits
                    219: <var>yy</var>.  You may also combine the <tt>tag</tt> and <tt>date</tt>
                    220: keywords.
                    221: </p>
                    222:
1.1       brian     223:
1.2       brian     224: <h3>
1.21      naddy     225: <a name="CVSROOT"><font color="#0000e0">Available CVSup Servers</font></a>
1.2       brian     226: </h3>
1.1       brian     227:
1.7       brian     228: <p>The following CVSup servers are available:</p>
                    229:
1.1       brian     230: <dl>
1.41      brad      231: <dt><a href="http://cvsup.uk.openbsd.org"><strong>cvsup.uk.openbsd.org</strong></a></dt>
1.7       brian     232: <dd><p>
1.6       deraadt   233: located in Brighton, UK;
1.41      brad      234: maintained by <a href="mailto:brian@openbsd.org">Brian Somers</a>.<br>
1.21      naddy     235: Updated every 2 hours.
1.9       naddy     236: </p>
1.1       brian     237: <p>
1.7       brian     238: Available collections:
1.9       naddy     239: </p>
1.1       brian     240: <table>
1.9       naddy     241: <tr><td width="20"></td>
                    242:     <td><strong>OpenBSD-src</strong></td>
                    243:     <td>- The <b>src</b> repository</td></tr>
                    244: <tr><td></td>
                    245:     <td><strong>OpenBSD-ports</strong></td>
                    246:     <td>- The <b>ports</b> repository</td></tr>
                    247: <tr><td></td>
                    248:     <td><strong>OpenBSD-www</strong></td>
                    249:     <td>- The <b>www</b> repository</td></tr>
                    250: <tr><td></td>
                    251:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     252:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    253: <tr><td></td>
                    254:     <td><strong>OpenBSD-xf4</strong></td>
                    255:     <td>- The <b>XFree86-4</b> repository</td></tr>
1.9       naddy     256: <tr><td></td>
                    257:     <td><strong>OpenBSD-all</strong></td>
                    258:     <td>- All OpenBSD repositories</td></tr>
1.1       brian     259: </table>
1.7       brian     260: </dd>
                    261: </dl>
1.1       brian     262:
1.7       brian     263: <dl>
1.41      brad      264: <dt><strong>cvsup.de.openbsd.org</strong></dt>
1.7       brian     265: <dd><p>
                    266: located near Frankfurt am Main, Germany;
1.21      naddy     267: maintained by <a href="mailto:wosch@FreeBSD.org">Wolfram Schneider</a>.<br>
                    268: Updated by CTM.
1.9       naddy     269: </p>
1.3       brian     270: <p>
1.7       brian     271: Available collections:
1.9       naddy     272: </p>
1.3       brian     273: <table>
1.9       naddy     274: <tr><td width="20"></td>
1.12      naddy     275:     <td><strong>OpenBSD-src</strong></td>
1.9       naddy     276:     <td>- The <b>src</b> repository</td></tr>
                    277: <tr><td></td>
1.12      naddy     278:     <td><strong>OpenBSD-ports</strong></td>
1.9       naddy     279:     <td>- The <b>ports</b> repository</td></tr>
                    280: <tr><td></td>
1.12      naddy     281:     <td><strong>OpenBSD-www</strong></td>
1.9       naddy     282:     <td>- The <b>www</b> repository</td></tr>
                    283: <tr><td></td>
1.12      naddy     284:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     285:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.12      naddy     286: <tr><td></td>
                    287:     <td><strong>OpenBSD-all</strong></td>
                    288:     <td>- All OpenBSD repositories</td></tr>
1.3       brian     289: </table>
1.7       brian     290: </dd>
                    291: </dl>
1.3       brian     292:
1.7       brian     293: <dl>
1.41      brad      294: <dt><a href="http://cvsup2.de.openbsd.org"><strong>cvsup2.de.openbsd.org</strong></a></dt>
1.7       brian     295: <dd><p>
1.41      brad      296: located in Munich, Germany;
                    297: maintained by <a href="mailto:dl@leo.org">Daniel Lang</a>.<br>
                    298: Updated every 24 hours.
1.9       naddy     299: </p>
1.5       ericj     300: <p>
1.7       brian     301: Available collections:
1.9       naddy     302: </p>
1.5       ericj     303: <table>
1.9       naddy     304: <tr><td width="20"></td>
                    305:     <td><strong>OpenBSD-src</strong></td>
                    306:     <td>- The <b>src</b> repository</td></tr>
                    307: <tr><td></td>
                    308:     <td><strong>OpenBSD-ports</strong></td>
                    309:     <td>- The <b>ports</b> repository</td></tr>
                    310: <tr><td></td>
                    311:     <td><strong>OpenBSD-www</strong></td>
                    312:     <td>- The <b>www</b> repository</td></tr>
                    313: <tr><td></td>
                    314:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     315:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.9       naddy     316: <tr><td></td>
1.41      brad      317:     <td><strong>OpenBSD-xf4</strong></td>
                    318:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    319: <tr><td></td>
1.9       naddy     320:     <td><strong>OpenBSD-all</strong></td>
                    321:     <td>- All OpenBSD repositories</td></tr>
1.5       ericj     322: </table>
1.7       brian     323: </dd>
                    324: </dl>
1.1       brian     325:
1.7       brian     326: <dl>
1.41      brad      327: <dt><strong>cvsup.hu.openbsd.org</strong></dt>
1.18      beck      328: <dd><p>
1.41      brad      329: located in Hungary;
                    330: maintained by <a href="mailto:mohacsi@hera.ik.bme.hu">Mohacsi Janos</a>.<br>
                    331: Updated every 4 hours.
1.18      beck      332: </p>
                    333: <p>
                    334: Available collections:
                    335: </p>
                    336: <table>
                    337: <tr><td width="20"></td>
                    338:     <td><strong>OpenBSD-src</strong></td>
                    339:     <td>- The <b>src</b> repository</td></tr>
                    340: <tr><td></td>
                    341:     <td><strong>OpenBSD-ports</strong></td>
                    342:     <td>- The <b>ports</b> repository</td></tr>
                    343: <tr><td></td>
                    344:     <td><strong>OpenBSD-www</strong></td>
                    345:     <td>- The <b>www</b> repository</td></tr>
                    346: <tr><td></td>
1.19      brian     347:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     348:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.19      brian     349: <tr><td></td>
1.18      beck      350:     <td><strong>OpenBSD-all</strong></td>
                    351:     <td>- All OpenBSD repositories</td></tr>
                    352: </table>
                    353: </dd>
                    354: </dl>
                    355:
                    356: <dl>
1.41      brad      357: <dt><strong>cvsup.fr.openbsd.org</strong></dt>
1.7       brian     358: <dd><p>
1.6       deraadt   359: located in France;
1.21      naddy     360: maintained by <a href="mailto:jch@oleane.net">Jean-Claude Christophe</a>.<br>
1.7       brian     361: Updated every 12 hours.
1.9       naddy     362: </p>
1.6       deraadt   363: <p>
1.7       brian     364: Available collections:
1.9       naddy     365: </p>
1.6       deraadt   366: <table>
1.9       naddy     367: <tr><td width="20"></td>
                    368:     <td><strong>OpenBSD-src</strong></td>
                    369:     <td>- The <b>src</b> repository</td></tr>
                    370: <tr><td></td>
                    371:     <td><strong>OpenBSD-ports</strong></td>
                    372:     <td>- The <b>ports</b> repository</td></tr>
                    373: <tr><td></td>
                    374:     <td><strong>OpenBSD-www</strong></td>
                    375:     <td>- The <b>www</b> repository</td></tr>
                    376: <tr><td></td>
                    377:     <td><strong>OpenBSD-all</strong></td>
                    378:     <td>- All OpenBSD repositories</td></tr>
1.6       deraadt   379: </table>
1.7       brian     380: </dd>
                    381: </dl>
1.5       ericj     382:
1.14      brian     383: <dl>
1.41      brad      384: <dt><strong>cvsup.ca.openbsd.org</strong></dt>
                    385: <dd><p>
                    386: located in Toronto, Ontario, Canada;
                    387: maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    388: Updated every 2 hours.
                    389: </p>
                    390: <p>
                    391: Available collections:
                    392: </p>
                    393: <table>
                    394: <tr><td width="20"></td>
                    395:     <td><strong>OpenBSD-src</strong></td>
                    396:     <td>- The <b>src</b> repository</td>
                    397: <tr><td></td>
                    398:     <td><strong>OpenBSD-ports</strong></td>
                    399:     <td>- The <b>ports</b> repository</td></tr>
                    400: <tr><td></td>
                    401:     <td><strong>OpenBSD-www</strong></td>
                    402:     <td>- The <b>www</b> repository</td></tr>
                    403: <tr><td></td>
                    404:     <td><strong>OpenBSD-x11</strong></td>
                    405:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    406: <tr><td></td>
                    407:     <td><strong>OpenBSD-xf4</strong></td>
                    408:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    409: <tr><td></td>
                    410:     <td><strong>OpenBSD-all</strong></td>
                    411:     <td>- All OpenBSD repositories</td></tr>
                    412: </table>
                    413: </dd>
                    414: </dl>
                    415:
                    416: <dl>
                    417: <dt><strong>cvsup.usa.openbsd.org</strong></dt>
1.14      brian     418: <dd><p>
1.41      brad      419: located in West Lafayette, Indiana, USA;
1.21      naddy     420: maintained by <a href="mailto:will@csociety.ecn.purdue.edu">Will Andrews</a>.<br>
1.14      brian     421: Updated every 2 hours.
                    422: </p>
                    423: <p>
                    424: Available collections:
                    425: </p>
                    426: <table>
                    427: <tr><td width="20"></td>
                    428:     <td><strong>OpenBSD-src</strong></td>
                    429:     <td>- The <b>src</b> repository</td>
                    430: <tr><td></td>
                    431:     <td><strong>OpenBSD-ports</strong></td>
                    432:     <td>- The <b>ports</b> repository</td></tr>
                    433: <tr><td></td>
                    434:     <td><strong>OpenBSD-www</strong></td>
                    435:     <td>- The <b>www</b> repository</td></tr>
                    436: <tr><td></td>
                    437:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     438:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.14      brian     439: <tr><td></td>
1.23      naddy     440:     <td><strong>OpenBSD-xf4</strong></td>
                    441:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    442: <tr><td></td>
1.14      brian     443:     <td><strong>OpenBSD-all</strong></td>
                    444:     <td>- All OpenBSD repositories</td></tr>
                    445: </table>
                    446: </dd>
                    447: </dl>
                    448:
1.26      brian     449: <dl>
1.41      brad      450: <dt><a href="http://rouge.snu.ac.kr/cgi-bin/openbsdcvs.cgi/"><strong>cvsup.kr.openbsd.org</strong></a></dt>
1.26      brian     451: <dd><p>
                    452: located in Seoul, Korea;
                    453: maintained by <a href="mailto:redjade@atropos.snu.ac.kr">Kim Kyung-Hwan</a>.<br>
                    454: Updated every 2 hours.
                    455: </p>
                    456: <p>
                    457: Available collections:
                    458: </p>
                    459: <table>
                    460: <tr><td width="20"></td>
                    461:     <td><strong>OpenBSD-src</strong></td>
                    462:     <td>- The <b>src</b> repository</td>
                    463: <tr><td></td>
                    464:     <td><strong>OpenBSD-ports</strong></td>
                    465:     <td>- The <b>ports</b> repository</td></tr>
                    466: <tr><td></td>
                    467:     <td><strong>OpenBSD-www</strong></td>
                    468:     <td>- The <b>www</b> repository</td></tr>
                    469: <tr><td></td>
                    470:     <td><strong>OpenBSD-x11</strong></td>
                    471:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    472: <tr><td></td>
                    473:     <td><strong>OpenBSD-xf4</strong></td>
                    474:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    475: <tr><td></td>
                    476:     <td><strong>OpenBSD-all</strong></td>
                    477:     <td>- All OpenBSD repositories</td></tr>
                    478: </table>
                    479: </dd>
                    480: </dl>
                    481:
1.27      brian     482: <dl>
1.41      brad      483: <dt><a href="http://cvsup.no.openbsd.org/"><strong>cvsup.no.openbsd.org</strong></a></dt>
1.27      brian     484: <dd><p>
1.43      heko      485: located in Oslo, Norway;
1.27      brian     486: maintained by <a href="mailto:anders@fix.no">Anders Nordby</a>.<br>
1.29      brian     487: Updated every 3 hours.
1.27      brian     488: </p>
                    489: <p>
                    490: Available collections:
                    491: </p>
                    492: <table>
                    493: <tr><td width="20"></td>
                    494:     <td><strong>OpenBSD-src</strong></td>
                    495:     <td>- The <b>src</b> repository</td>
                    496: <tr><td></td>
                    497:     <td><strong>OpenBSD-ports</strong></td>
                    498:     <td>- The <b>ports</b> repository</td></tr>
                    499: <tr><td></td>
                    500:     <td><strong>OpenBSD-www</strong></td>
                    501:     <td>- The <b>www</b> repository</td></tr>
                    502: <tr><td></td>
                    503:     <td><strong>OpenBSD-x11</strong></td>
                    504:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    505: <tr><td></td>
                    506:     <td><strong>OpenBSD-xf4</strong></td>
                    507:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    508: <tr><td></td>
                    509:     <td><strong>OpenBSD-all</strong></td>
                    510:     <td>- All OpenBSD repositories</td></tr>
                    511: </table>
                    512: </dd>
                    513: </dl>
                    514:
1.30      brian     515: <dl>
1.41      brad      516: <dt><a href="http://cvsup.pt.openbsd.org/"><strong>cvsup.pt.openbsd.org</strong></a></dt>
1.30      brian     517: <dd><p>
                    518: located at the University of Coimbra, Portugal;
1.36      brian     519: maintained by <a href="mailto:jpedras@webvolution.net">Jo&atilde;o Pedras</a>.<br>
1.30      brian     520: Updated every 3 hours.
                    521: </p>
                    522: <p>
                    523: Available collections:
                    524: </p>
                    525: <table>
                    526: <tr><td width="20"></td>
                    527:     <td><strong>OpenBSD-src</strong></td>
                    528:     <td>- The <b>src</b> repository</td>
                    529: <tr><td></td>
                    530:     <td><strong>OpenBSD-ports</strong></td>
                    531:     <td>- The <b>ports</b> repository</td></tr>
                    532: <tr><td></td>
                    533:     <td><strong>OpenBSD-www</strong></td>
                    534:     <td>- The <b>www</b> repository</td></tr>
                    535: <tr><td></td>
                    536:     <td><strong>OpenBSD-x11</strong></td>
                    537:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    538: <tr><td></td>
                    539:     <td><strong>OpenBSD-xf4</strong></td>
                    540:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    541: <tr><td></td>
                    542:     <td><strong>OpenBSD-all</strong></td>
                    543:     <td>- All OpenBSD repositories</td></tr>
                    544: </table>
                    545: </dd>
                    546: </dl>
1.47      brian     547:
1.37      brian     548: <dl>
                    549: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    550: <dd><p>
1.38      brian     551: located at Lake in the Hills, Illinois, USA;
1.37      brian     552: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     553: Updated every 2 hours.
1.37      brian     554: </p>
                    555: <p>
                    556: Available collections:
                    557: </p>
                    558: <table>
                    559: <tr><td width="20"></td>
                    560:     <td><strong>OpenBSD-src</strong></td>
                    561:     <td>- The <b>src</b> repository</td>
                    562: <tr><td></td>
                    563:     <td><strong>OpenBSD-ports</strong></td>
                    564:     <td>- The <b>ports</b> repository</td></tr>
                    565: <tr><td></td>
                    566:     <td><strong>OpenBSD-www</strong></td>
                    567:     <td>- The <b>www</b> repository</td></tr>
                    568: <tr><td></td>
                    569:     <td><strong>OpenBSD-x11</strong></td>
                    570:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    571: <tr><td></td>
                    572:     <td><strong>OpenBSD-xf4</strong></td>
                    573:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    574: <tr><td></td>
                    575:     <td><strong>OpenBSD-all</strong></td>
                    576:     <td>- All OpenBSD repositories</td></tr>
                    577: </table>
                    578: </dd>
                    579: </dl>
1.30      brian     580:
1.47      brian     581: <dl>
1.44      brian     582: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    583: <dd><p>
1.46      brian     584: located in St. Petersburg State University, St. Petersburg, Russia;
1.44      brian     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.48    ! brian     683: <br><small>$OpenBSD: cvsup.html,v 1.47 2001/10/17 10:26:48 brian Exp $</small>
1.1       brian     684:
                    685: </body>
                    686: </html>