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

Annotation of www/cvsup.html, Revision 1.58

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.55      horacio    10: <meta name="copyright" content="This document copyright 2001-2002 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.58    ! naddy      36: trees from a master <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;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.58    ! naddy      48: manually to get an update, or they must set up a <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cron&amp;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.50      naddy      83: Note that CVS and CVSup are entirely different programs.  Although
                     84: CVS can be used for remote file access, it is not optimized for
                     85: wholesale source tree distribution over the net, and CVSup can be
                     86: easily an order of magnitude more efficient for this task.
1.9       naddy      87: </p>
1.1       brian      88:
1.2       brian      89: <h3>
1.21      naddy      90: <a name="starting"><font color="#0000e0">Getting Started Using CVSup</font></a>
1.2       brian      91: </h3>
1.1       brian      92:
                     93: <p>
1.50      naddy      94: Building CVSup from the sources is not for the fainthearted since
                     95: it is written in Modula-3.  Currently an OpenBSD port of Modula-3
                     96: (<tt>lang/pm3</tt>) is only available for the i386 platform, and
                     97: it is a fairly large package.  If you only care about running CVSup,
                     98: it is recommended that you download the statically linked cvsup
                     99: package from the <a href="ftp.html">ftp mirror sites</a> instead of
                    100: building your own from the <tt>net/cvsup</tt> port.
1.1       brian     101: </p>
                    102:
                    103: <p>
1.50      naddy     104: For further information about CVSup, see the author's
                    105: <a href="http://www.polstra.com/projects/freeware/CVSup/">project
                    106: homepage</a>.
1.9       naddy     107: </p>
                    108:
                    109: <p>
1.50      naddy     110: In order to mirror the OpenBSD repository with CVSup,
                    111: the following configuration file might be used:
1.1       brian     112: </p>
                    113:
                    114: <pre>
                    115:         # Defaults that apply to all the collections
                    116:         *default release=cvs
                    117:         *default delete use-rel-suffix
                    118:         *default umask=002
1.41      brad      119:         *default host=cvsup.uk.openbsd.org
1.1       brian     120:         *default base=/cvs
                    121:         *default prefix=/cvs
                    122:
                    123:         # If your network link is a T1 or faster, comment out the following line.
                    124:         *default compress
                    125:
                    126:         OpenBSD-all
                    127:         #OpenBSD-src
                    128:         #OpenBSD-www
                    129:         #OpenBSD-ports
                    130:         #OpenBSD-x11
1.20      brian     131:         #OpenBSD-xf4
1.1       brian     132: </pre>
                    133:
                    134: <p>
                    135: This directs cvsup to refresh all OpenBSD distributions from
1.58    ! naddy     136: <b>cvsup.uk.openbsd.org</b> with a <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=umask&amp;sektion=2">umask(2)</a> that permits group write
1.1       brian     137: permission to the local repository.
                    138: </p>
                    139:
                    140: <p>
                    141: Assuming this file is saved as <tt>cvs-supfile</tt>, the
1.39      horacio   142: following command would be used to invoke the cvsup GUI:
1.9       naddy     143: </p>
1.1       brian     144: <pre>
                    145:         cvsup cvs-supfile
                    146: </pre>
1.9       naddy     147: <p>
1.1       brian     148: whereas for batch mode, the following might be used:
1.9       naddy     149: </p>
1.1       brian     150: <pre>
                    151:         cvsup -g -L 2 cvs-supfile
                    152: </pre>
                    153:
1.21      naddy     154: <h3><a name="using">
1.7       brian     155: <font color="#0000e0">Using CVS to Update Your Source Tree</font>
1.2       brian     156: </a></h3>
1.1       brian     157:
                    158: <p>
1.7       brian     159: It is now simple to check out any one of the CVSup'ed repositories.
                    160: For Korn/Bourne shells:
1.9       naddy     161: </p>
1.7       brian     162: <pre>
                    163:         # cd /usr
                    164:         # CVSROOT=/cvs cvs checkout src
                    165: </pre>
                    166: <p>
                    167: For csh and its derivatives:
1.9       naddy     168: </p>
1.7       brian     169: <pre>
                    170:         # cd /usr
                    171:         # setenv CVSROOT /cvs
                    172:         # cvs checkout src
                    173: </pre>
1.1       brian     174:
                    175: <p>
1.7       brian     176: The above will check out the most current sources. Many of you will only
1.1       brian     177: want the release sources, especially if you are patching your system.  To
                    178: checkout release sources you must specify a tag along with your command.
                    179: For example:
                    180: </p>
1.7       brian     181: <pre>
                    182:         # cd /usr
1.40      jufi      183:         # cvs checkout -rOPENBSD_2_9 src
1.7       brian     184: </pre>
                    185: <p>
1.40      jufi      186: Or <tt>OPENBSD_2_8</tt> for 2.8, etc.
1.7       brian     187: </p>
                    188:
1.21      naddy     189: <h3><a name="checkout"><font color="#0000e0">Running CVSup in
1.7       brian     190: Checkout Mode</font></a></h3>
1.1       brian     191:
                    192: <p>
1.7       brian     193: As an alternative to getting the repository and using CVS, you can
                    194: run CVSup in checkout mode by adding a <tt>tag</tt> or <tt>date</tt>
                    195: keyword to your supfile, either as a <tt>*default</tt> or as an
                    196: option to a collection. In particular, you can use this to efficiently
                    197: update the source and ports trees shipped on the <a
                    198: href="orders.html">CDROMs</a>.
1.1       brian     199: </p>
1.7       brian     200: <p>
                    201: The following supfile could be used to update your ports tree:
                    202: </p>
                    203: <pre>
                    204:         # Defaults that apply to all the collections
                    205:         *default host=cvsup.uk.openbsd.org
                    206:         *default base=/var
                    207:         *default prefix=/usr
                    208:         *default release=cvs
                    209:         *default delete use-rel-suffix compress
                    210:
                    211:         # Ports Collection.
                    212:         OpenBSD-ports tag=.
                    213: </pre>
                    214: <p>
                    215: Any CVS symbolic tag can be used.  A single period "." means HEAD,
                    216: i.e. the newest revision of all files in the main branch.  Take care
                    217: to specify an existing tag, as CVSup cannot distinguish valid from
                    218: invalid tags, and an attempt to synchronize an existing source tree
                    219: to an invalid tag will remove all files.
                    220: </p>
                    221: <p>
                    222: Alternatively, use the keyword <tt>date=[cc.]yy.mm.dd.hh.mm.ss</tt>
                    223: to select a revision by date.  All 17 or 19 characters must be
                    224: given as shown.  For the years 2000 and beyond, specify the century
                    225: <var>cc</var>.  For earlier years, specify only the last two digits
                    226: <var>yy</var>.  You may also combine the <tt>tag</tt> and <tt>date</tt>
                    227: keywords.
                    228: </p>
                    229:
1.1       brian     230:
1.2       brian     231: <h3>
1.21      naddy     232: <a name="CVSROOT"><font color="#0000e0">Available CVSup Servers</font></a>
1.2       brian     233: </h3>
1.1       brian     234:
1.7       brian     235: <p>The following CVSup servers are available:</p>
                    236:
1.1       brian     237: <dl>
1.41      brad      238: <dt><a href="http://cvsup.uk.openbsd.org"><strong>cvsup.uk.openbsd.org</strong></a></dt>
1.7       brian     239: <dd><p>
1.6       deraadt   240: located in Brighton, UK;
1.41      brad      241: maintained by <a href="mailto:brian@openbsd.org">Brian Somers</a>.<br>
1.21      naddy     242: Updated every 2 hours.
1.9       naddy     243: </p>
1.1       brian     244: <p>
1.7       brian     245: Available collections:
1.9       naddy     246: </p>
1.1       brian     247: <table>
1.9       naddy     248: <tr><td width="20"></td>
                    249:     <td><strong>OpenBSD-src</strong></td>
                    250:     <td>- The <b>src</b> repository</td></tr>
                    251: <tr><td></td>
                    252:     <td><strong>OpenBSD-ports</strong></td>
                    253:     <td>- The <b>ports</b> repository</td></tr>
                    254: <tr><td></td>
                    255:     <td><strong>OpenBSD-www</strong></td>
                    256:     <td>- The <b>www</b> repository</td></tr>
                    257: <tr><td></td>
                    258:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     259:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    260: <tr><td></td>
                    261:     <td><strong>OpenBSD-xf4</strong></td>
                    262:     <td>- The <b>XFree86-4</b> repository</td></tr>
1.9       naddy     263: <tr><td></td>
                    264:     <td><strong>OpenBSD-all</strong></td>
                    265:     <td>- All OpenBSD repositories</td></tr>
1.1       brian     266: </table>
1.7       brian     267: </dd>
                    268: </dl>
1.1       brian     269:
1.7       brian     270: <dl>
1.41      brad      271: <dt><strong>cvsup.de.openbsd.org</strong></dt>
1.7       brian     272: <dd><p>
                    273: located near Frankfurt am Main, Germany;
1.21      naddy     274: maintained by <a href="mailto:wosch@FreeBSD.org">Wolfram Schneider</a>.<br>
1.53      naddy     275: Updated every 12 hours from cvsup.uk.openbsd.org.
1.9       naddy     276: </p>
1.3       brian     277: <p>
1.7       brian     278: Available collections:
1.9       naddy     279: </p>
1.3       brian     280: <table>
1.9       naddy     281: <tr><td width="20"></td>
1.12      naddy     282:     <td><strong>OpenBSD-src</strong></td>
1.9       naddy     283:     <td>- The <b>src</b> repository</td></tr>
                    284: <tr><td></td>
1.12      naddy     285:     <td><strong>OpenBSD-ports</strong></td>
1.9       naddy     286:     <td>- The <b>ports</b> repository</td></tr>
                    287: <tr><td></td>
1.12      naddy     288:     <td><strong>OpenBSD-www</strong></td>
1.9       naddy     289:     <td>- The <b>www</b> repository</td></tr>
                    290: <tr><td></td>
1.12      naddy     291:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     292:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.12      naddy     293: <tr><td></td>
                    294:     <td><strong>OpenBSD-all</strong></td>
                    295:     <td>- All OpenBSD repositories</td></tr>
1.3       brian     296: </table>
1.7       brian     297: </dd>
                    298: </dl>
1.3       brian     299:
1.7       brian     300: <dl>
1.41      brad      301: <dt><a href="http://cvsup2.de.openbsd.org"><strong>cvsup2.de.openbsd.org</strong></a></dt>
1.7       brian     302: <dd><p>
1.41      brad      303: located in Munich, Germany;
                    304: maintained by <a href="mailto:dl@leo.org">Daniel Lang</a>.<br>
                    305: Updated every 24 hours.
1.9       naddy     306: </p>
1.5       ericj     307: <p>
1.7       brian     308: Available collections:
1.9       naddy     309: </p>
1.5       ericj     310: <table>
1.9       naddy     311: <tr><td width="20"></td>
                    312:     <td><strong>OpenBSD-src</strong></td>
                    313:     <td>- The <b>src</b> repository</td></tr>
                    314: <tr><td></td>
                    315:     <td><strong>OpenBSD-ports</strong></td>
                    316:     <td>- The <b>ports</b> repository</td></tr>
                    317: <tr><td></td>
                    318:     <td><strong>OpenBSD-www</strong></td>
                    319:     <td>- The <b>www</b> repository</td></tr>
                    320: <tr><td></td>
                    321:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     322:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.9       naddy     323: <tr><td></td>
1.41      brad      324:     <td><strong>OpenBSD-xf4</strong></td>
                    325:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    326: <tr><td></td>
1.9       naddy     327:     <td><strong>OpenBSD-all</strong></td>
                    328:     <td>- All OpenBSD repositories</td></tr>
1.5       ericj     329: </table>
1.7       brian     330: </dd>
                    331: </dl>
1.1       brian     332:
1.7       brian     333: <dl>
1.41      brad      334: <dt><strong>cvsup.hu.openbsd.org</strong></dt>
1.18      beck      335: <dd><p>
1.41      brad      336: located in Hungary;
                    337: maintained by <a href="mailto:mohacsi@hera.ik.bme.hu">Mohacsi Janos</a>.<br>
                    338: Updated every 4 hours.
1.18      beck      339: </p>
                    340: <p>
                    341: Available collections:
                    342: </p>
                    343: <table>
                    344: <tr><td width="20"></td>
                    345:     <td><strong>OpenBSD-src</strong></td>
                    346:     <td>- The <b>src</b> repository</td></tr>
                    347: <tr><td></td>
                    348:     <td><strong>OpenBSD-ports</strong></td>
                    349:     <td>- The <b>ports</b> repository</td></tr>
                    350: <tr><td></td>
                    351:     <td><strong>OpenBSD-www</strong></td>
                    352:     <td>- The <b>www</b> repository</td></tr>
                    353: <tr><td></td>
1.19      brian     354:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     355:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.19      brian     356: <tr><td></td>
1.18      beck      357:     <td><strong>OpenBSD-all</strong></td>
                    358:     <td>- All OpenBSD repositories</td></tr>
                    359: </table>
                    360: </dd>
                    361: </dl>
                    362:
                    363: <dl>
1.41      brad      364: <dt><strong>cvsup.fr.openbsd.org</strong></dt>
1.7       brian     365: <dd><p>
1.6       deraadt   366: located in France;
1.21      naddy     367: maintained by <a href="mailto:jch@oleane.net">Jean-Claude Christophe</a>.<br>
1.7       brian     368: Updated every 12 hours.
1.9       naddy     369: </p>
1.6       deraadt   370: <p>
1.7       brian     371: Available collections:
1.9       naddy     372: </p>
1.6       deraadt   373: <table>
1.9       naddy     374: <tr><td width="20"></td>
                    375:     <td><strong>OpenBSD-src</strong></td>
                    376:     <td>- The <b>src</b> repository</td></tr>
                    377: <tr><td></td>
                    378:     <td><strong>OpenBSD-ports</strong></td>
                    379:     <td>- The <b>ports</b> repository</td></tr>
                    380: <tr><td></td>
                    381:     <td><strong>OpenBSD-www</strong></td>
                    382:     <td>- The <b>www</b> repository</td></tr>
                    383: <tr><td></td>
                    384:     <td><strong>OpenBSD-all</strong></td>
                    385:     <td>- All OpenBSD repositories</td></tr>
1.6       deraadt   386: </table>
1.7       brian     387: </dd>
                    388: </dl>
1.5       ericj     389:
1.14      brian     390: <dl>
1.41      brad      391: <dt><strong>cvsup.ca.openbsd.org</strong></dt>
                    392: <dd><p>
                    393: located in Toronto, Ontario, Canada;
                    394: maintained by <a href="mailto:brad@comstyle.com">Brad Smith</a>.<br>
                    395: Updated every 2 hours.
                    396: </p>
                    397: <p>
                    398: Available collections:
                    399: </p>
                    400: <table>
                    401: <tr><td width="20"></td>
                    402:     <td><strong>OpenBSD-src</strong></td>
                    403:     <td>- The <b>src</b> repository</td>
                    404: <tr><td></td>
                    405:     <td><strong>OpenBSD-ports</strong></td>
                    406:     <td>- The <b>ports</b> repository</td></tr>
                    407: <tr><td></td>
                    408:     <td><strong>OpenBSD-www</strong></td>
                    409:     <td>- The <b>www</b> repository</td></tr>
                    410: <tr><td></td>
                    411:     <td><strong>OpenBSD-x11</strong></td>
                    412:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    413: <tr><td></td>
                    414:     <td><strong>OpenBSD-xf4</strong></td>
                    415:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    416: <tr><td></td>
                    417:     <td><strong>OpenBSD-all</strong></td>
                    418:     <td>- All OpenBSD repositories</td></tr>
                    419: </table>
                    420: </dd>
                    421: </dl>
                    422:
                    423: <dl>
                    424: <dt><strong>cvsup.usa.openbsd.org</strong></dt>
1.14      brian     425: <dd><p>
1.41      brad      426: located in West Lafayette, Indiana, USA;
1.21      naddy     427: maintained by <a href="mailto:will@csociety.ecn.purdue.edu">Will Andrews</a>.<br>
1.14      brian     428: Updated every 2 hours.
                    429: </p>
                    430: <p>
                    431: Available collections:
                    432: </p>
                    433: <table>
                    434: <tr><td width="20"></td>
                    435:     <td><strong>OpenBSD-src</strong></td>
                    436:     <td>- The <b>src</b> repository</td>
                    437: <tr><td></td>
                    438:     <td><strong>OpenBSD-ports</strong></td>
                    439:     <td>- The <b>ports</b> repository</td></tr>
                    440: <tr><td></td>
                    441:     <td><strong>OpenBSD-www</strong></td>
                    442:     <td>- The <b>www</b> repository</td></tr>
                    443: <tr><td></td>
                    444:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     445:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.14      brian     446: <tr><td></td>
1.23      naddy     447:     <td><strong>OpenBSD-xf4</strong></td>
                    448:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    449: <tr><td></td>
1.14      brian     450:     <td><strong>OpenBSD-all</strong></td>
                    451:     <td>- All OpenBSD repositories</td></tr>
                    452: </table>
                    453: </dd>
                    454: </dl>
                    455:
1.26      brian     456: <dl>
1.41      brad      457: <dt><a href="http://rouge.snu.ac.kr/cgi-bin/openbsdcvs.cgi/"><strong>cvsup.kr.openbsd.org</strong></a></dt>
1.26      brian     458: <dd><p>
                    459: located in Seoul, Korea;
                    460: maintained by <a href="mailto:redjade@atropos.snu.ac.kr">Kim Kyung-Hwan</a>.<br>
                    461: Updated every 2 hours.
                    462: </p>
                    463: <p>
                    464: Available collections:
                    465: </p>
                    466: <table>
                    467: <tr><td width="20"></td>
                    468:     <td><strong>OpenBSD-src</strong></td>
                    469:     <td>- The <b>src</b> repository</td>
                    470: <tr><td></td>
                    471:     <td><strong>OpenBSD-ports</strong></td>
                    472:     <td>- The <b>ports</b> repository</td></tr>
                    473: <tr><td></td>
                    474:     <td><strong>OpenBSD-www</strong></td>
                    475:     <td>- The <b>www</b> repository</td></tr>
                    476: <tr><td></td>
                    477:     <td><strong>OpenBSD-x11</strong></td>
                    478:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    479: <tr><td></td>
                    480:     <td><strong>OpenBSD-xf4</strong></td>
                    481:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    482: <tr><td></td>
                    483:     <td><strong>OpenBSD-all</strong></td>
                    484:     <td>- All OpenBSD repositories</td></tr>
                    485: </table>
                    486: </dd>
                    487: </dl>
                    488:
1.27      brian     489: <dl>
1.41      brad      490: <dt><a href="http://cvsup.no.openbsd.org/"><strong>cvsup.no.openbsd.org</strong></a></dt>
1.27      brian     491: <dd><p>
1.43      heko      492: located in Oslo, Norway;
1.27      brian     493: maintained by <a href="mailto:anders@fix.no">Anders Nordby</a>.<br>
1.29      brian     494: Updated every 3 hours.
1.27      brian     495: </p>
                    496: <p>
                    497: Available collections:
                    498: </p>
                    499: <table>
                    500: <tr><td width="20"></td>
                    501:     <td><strong>OpenBSD-src</strong></td>
                    502:     <td>- The <b>src</b> repository</td>
                    503: <tr><td></td>
                    504:     <td><strong>OpenBSD-ports</strong></td>
                    505:     <td>- The <b>ports</b> repository</td></tr>
                    506: <tr><td></td>
                    507:     <td><strong>OpenBSD-www</strong></td>
                    508:     <td>- The <b>www</b> repository</td></tr>
                    509: <tr><td></td>
                    510:     <td><strong>OpenBSD-x11</strong></td>
                    511:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    512: <tr><td></td>
                    513:     <td><strong>OpenBSD-xf4</strong></td>
                    514:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    515: <tr><td></td>
                    516:     <td><strong>OpenBSD-all</strong></td>
                    517:     <td>- All OpenBSD repositories</td></tr>
                    518: </table>
                    519: </dd>
                    520: </dl>
                    521:
1.30      brian     522: <dl>
1.41      brad      523: <dt><a href="http://cvsup.pt.openbsd.org/"><strong>cvsup.pt.openbsd.org</strong></a></dt>
1.30      brian     524: <dd><p>
                    525: located at the University of Coimbra, Portugal;
1.36      brian     526: maintained by <a href="mailto:jpedras@webvolution.net">Jo&atilde;o Pedras</a>.<br>
1.30      brian     527: Updated every 3 hours.
                    528: </p>
                    529: <p>
                    530: Available collections:
                    531: </p>
                    532: <table>
                    533: <tr><td width="20"></td>
                    534:     <td><strong>OpenBSD-src</strong></td>
                    535:     <td>- The <b>src</b> repository</td>
                    536: <tr><td></td>
                    537:     <td><strong>OpenBSD-ports</strong></td>
                    538:     <td>- The <b>ports</b> repository</td></tr>
                    539: <tr><td></td>
                    540:     <td><strong>OpenBSD-www</strong></td>
                    541:     <td>- The <b>www</b> repository</td></tr>
                    542: <tr><td></td>
                    543:     <td><strong>OpenBSD-x11</strong></td>
                    544:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    545: <tr><td></td>
                    546:     <td><strong>OpenBSD-xf4</strong></td>
                    547:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    548: <tr><td></td>
                    549:     <td><strong>OpenBSD-all</strong></td>
                    550:     <td>- All OpenBSD repositories</td></tr>
                    551: </table>
                    552: </dd>
                    553: </dl>
1.47      brian     554:
1.37      brian     555: <dl>
1.51      naddy     556: <dt><a href="http://anoncvs.de.openbsd.org"><strong>anoncvs.de.openbsd.org</strong></a></dt>
                    557: <dd><p>
                    558: located at the University of Kaiserslautern, Germany;
                    559: maintained by <a href="mailto:hgw@d1906.inka.de">Hans-G&uuml;nter Weigand</a>
                    560: and <a href="mailto:naddy@openbsd.org">Christian Weisgerber</a>.<br>
1.53      naddy     561: Updated every 6 hours from cvsup2.de.openbsd.org.
1.51      naddy     562: </p>
                    563: <p>
                    564: Available collections:
                    565: </p>
                    566: <table>
                    567: <tr><td width="20"></td>
                    568:     <td><strong>OpenBSD-src</strong></td>
                    569:     <td>- The <b>src</b> repository</td></tr>
                    570: <tr><td></td>
                    571:     <td><strong>OpenBSD-ports</strong></td>
                    572:     <td>- The <b>ports</b> repository</td></tr>
                    573: <tr><td></td>
                    574:     <td><strong>OpenBSD-www</strong></td>
                    575:     <td>- The <b>www</b> repository</td></tr>
                    576: <tr><td></td>
                    577:     <td><strong>OpenBSD-x11</strong></td>
                    578:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    579: <tr><td></td>
                    580:     <td><strong>OpenBSD-xf4</strong></td>
                    581:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    582: <tr><td></td>
                    583:     <td><strong>OpenBSD-all</strong></td>
                    584:     <td>- All OpenBSD repositories</td></tr>
                    585: </table>
                    586: </dd>
                    587: </dl>
                    588:
                    589: <dl>
1.37      brian     590: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    591: <dd><p>
1.38      brian     592: located at Lake in the Hills, Illinois, USA;
1.37      brian     593: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     594: Updated every 2 hours.
1.37      brian     595: </p>
                    596: <p>
                    597: Available collections:
                    598: </p>
                    599: <table>
                    600: <tr><td width="20"></td>
                    601:     <td><strong>OpenBSD-src</strong></td>
                    602:     <td>- The <b>src</b> repository</td>
                    603: <tr><td></td>
                    604:     <td><strong>OpenBSD-ports</strong></td>
                    605:     <td>- The <b>ports</b> repository</td></tr>
                    606: <tr><td></td>
                    607:     <td><strong>OpenBSD-www</strong></td>
                    608:     <td>- The <b>www</b> repository</td></tr>
                    609: <tr><td></td>
                    610:     <td><strong>OpenBSD-x11</strong></td>
                    611:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    612: <tr><td></td>
                    613:     <td><strong>OpenBSD-xf4</strong></td>
                    614:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    615: <tr><td></td>
                    616:     <td><strong>OpenBSD-all</strong></td>
                    617:     <td>- All OpenBSD repositories</td></tr>
                    618: </table>
                    619: </dd>
                    620: </dl>
1.30      brian     621:
1.47      brian     622: <dl>
1.44      brian     623: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    624: <dd><p>
1.46      brian     625: located in St. Petersburg State University, St. Petersburg, Russia;
1.44      brian     626: maintained by <a href="mailto:kab00m@lich.phys.spbu.ru">Dima Veselov</a>.<br>
                    627: Updated every 4 hours.
                    628: </p>
                    629: <p>
                    630: Available collections:
                    631: </p>
                    632: <table>
1.49      jufi      633: <tr><td width="20"></td>
1.44      brian     634:     <td><strong>OpenBSD-ports</strong></td>
                    635:     <td>- The <b>ports</b> repository</td></tr>
                    636: </table>
                    637: </dd>
                    638: </dl>
                    639:
1.52      brian     640: <dl>
1.58    ! naddy     641: <dt><strong>cvsup.jp.OpenBSD.org</strong></dt>
1.52      brian     642: <dd><p>
                    643: located at Otemachi, Tokyo, Japan;
1.57      brian     644: maintained by <a href="mailto:cvsupadm@openbsd.bsdlab.org">CVSup Administrator</a>.<br>
1.52      brian     645: Updated every 3 hours.
                    646: </p>
                    647: <p>
                    648: Available collections:
                    649: </p>
                    650: <table>
                    651: <tr><td width="20"></td>
                    652:     <td><strong>OpenBSD-src</strong></td>
                    653:     <td>- The <b>src</b> repository</td>
                    654: <tr><td></td>
                    655:     <td><strong>OpenBSD-ports</strong></td>
                    656:     <td>- The <b>ports</b> repository</td></tr>
                    657: <tr><td></td>
                    658:     <td><strong>OpenBSD-www</strong></td>
                    659:     <td>- The <b>www</b> repository</td></tr>
                    660: <tr><td></td>
                    661:     <td><strong>OpenBSD-x11</strong></td>
                    662:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    663: <tr><td></td>
                    664:     <td><strong>OpenBSD-xf4</strong></td>
                    665:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    666: <tr><td></td>
                    667:     <td><strong>OpenBSD-all</strong></td>
                    668:     <td>- All OpenBSD repositories</td></tr>
                    669: </table>
                    670: </dd>
                    671: </dl>
                    672:
1.54      brian     673: <dl>
1.58    ! naddy     674: <dt><strong>wiretapped.net</strong></dt>
1.54      brian     675: <dd><p>
                    676: located in Sydney Australia;
                    677: maintained by <a href="mailto:gbayley@ausmac.net">Grant Bayley</a>.<br>
                    678: Updated every 6 hours.
                    679: </p>
                    680: <p>
                    681: Available collections:
                    682: </p>
                    683: <table>
                    684: <tr><td width="20"></td>
                    685:     <td><strong>OpenBSD-src</strong></td>
                    686:     <td>- The <b>src</b> repository</td>
                    687: <tr><td></td>
                    688:     <td><strong>OpenBSD-ports</strong></td>
                    689:     <td>- The <b>ports</b> repository</td></tr>
                    690: <tr><td></td>
                    691:     <td><strong>OpenBSD-www</strong></td>
                    692:     <td>- The <b>www</b> repository</td></tr>
                    693: <tr><td></td>
                    694:     <td><strong>OpenBSD-x11</strong></td>
                    695:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    696: <tr><td></td>
                    697:     <td><strong>OpenBSD-xf4</strong></td>
                    698:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    699: <tr><td></td>
                    700:     <td><strong>OpenBSD-all</strong></td>
                    701:     <td>- All OpenBSD repositories</td></tr>
                    702: </table>
                    703: </dd>
                    704: </dl>
                    705:
1.1       brian     706: <p>
1.7       brian     707: <em>Note:</em>, If your server is listed on here with inaccurate or
                    708: unknown information, please contact <a
1.9       naddy     709: href="mailto:beck@openbsd.org"><tt>beck@openbsd.org</tt></a>
1.33      brian     710: or <a href="mailto:brian@openbsd.org"><tt>brian@openbsd.org</tt></a>
1.9       naddy     711: </p>
1.1       brian     712: <p>
1.58    ! naddy     713: You may want to use <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=traceroute&amp;sektion=8">traceroute(8)</a>
1.39      horacio   714: to find out which server is nearest you.
1.1       brian     715: Problems with a server should be reported to the <b>maintainer</b> of the
                    716: server in question.
1.9       naddy     717: </p>
1.1       brian     718: <p>
1.45      brian     719: Currently (as of October 16, 2001), the CVS repository sizes are
1.9       naddy     720: </p>
1.4       brian     721: <table>
1.9       naddy     722: <tr><td width="20"></td>
1.20      brian     723:     <td><strong>OpenBSD-ports</strong></td>
1.45      brian     724:     <td>- <b>67</b>MB</td></tr>
1.9       naddy     725: <tr><td></td>
1.20      brian     726:     <td><strong>OpenBSD-src</strong></td>
1.45      brian     727:     <td>- <b>783</b>MB</td></tr>
1.9       naddy     728: <tr><td></td>
1.20      brian     729:     <td><strong>OpenBSD-www</strong></td>
1.45      brian     730:     <td>- <b>46</b>MB</td></tr>
1.9       naddy     731: <tr><td></td>
1.20      brian     732:     <td><strong>OpenBSD-x11</strong></td>
1.45      brian     733:     <td>- <b>193</b>MB</td></tr>
1.20      brian     734: <tr><td></td>
                    735:     <td><strong>OpenBSD-xf4</strong></td>
1.42      brian     736:     <td>- <b>340</b>MB</td></tr>
1.4       brian     737: </table>
                    738: <p>
1.45      brian     739: There is an additional overhead of <b>34</b>MB for the CVSROOT and sup
1.15      brian     740: directories.  The overall repository size currently increases at a rate
                    741: of about <b>170</b>MB per annum.
1.9       naddy     742: </p>
1.4       brian     743: <p>
1.1       brian     744: <strong>IMPORTANT NOTE:</strong>
                    745: There are a few issues relating to cryptographic software that everyone
                    746: should be aware of:
1.9       naddy     747: </p>
1.1       brian     748: <ul>
1.9       naddy     749:   <li>
                    750:     <p>
                    751:     The OpenBSD sources are from Canada. As
                    752:     <a href="http://insight.mcmaster.ca/org/efc/pages/doc/crypto-export.html">
                    753:     researched by a Canadian individual</a> and as
                    754:     <a href="http://axion.physics.ubc.ca/ECL.html">
                    755:     described in the Export Control list of Canada</a>,
                    756:     it is legal to export crypto software from Canada to the world.
                    757:     </p>
                    758:   </li>
                    759:   <li>
                    760:     <p>
                    761:     However, if you are outside the USA or Canada, you should not
                    762:     fetch the cryptographic sections of the OpenBSD sources from an
                    763:     AnonCVS server located in the USA. The files in question are...
                    764:     </p>
                    765:     <ul>
                    766:       <li><tt>src/kerberosIV/*</tt></li>
1.56      miod      767:       <li><tt>src/kerberosV/*</tt></li>
1.9       naddy     768:       <li><tt>src/lib/libdes/*</tt></li>
                    769:       <li><tt>src/lib/libc/crypt/crypt.c</tt></li>
                    770:       <li><tt>src/lib/libc/crypt/morecrypt.c</tt></li>
1.56      miod      771:       <li><tt>src/sys/crypto</tt></li>
1.9       naddy     772:       <li><tt>src/sys/netinet</tt></li>
                    773:       <li><tt>src/usr.sbin/afs/src/rxkad/*</tt></li>
1.56      miod      774:       <li><tt>XF4/xc-mit/lib/Xdmcp/Wraphelp.c</tt></li>
                    775:       <li><tt>XF4/xc-old/lib/Xdmcp/Wraphelp.c</tt></li>
                    776:       <li><tt>XF4/xc/lib/Xdmcp/Wraphelp.c</tt></li>
1.9       naddy     777:     </ul>
                    778:     <p>
                    779:     Because of the USA ITAR munitions list,
                    780:     crypto software may only be exported to Canada from the USA.
                    781:     </p>
                    782:   </li>
1.1       brian     783: </ul>
                    784:
                    785: <p>
                    786: The OpenBSD project is looking for more CVSup servers -- if you are
1.41      brad      787: interested, please contact <a href="mailto:brian@openbsd.org">Brian Somers</a>
1.1       brian     788: for configuration details.
                    789: </p>
                    790:
1.21      naddy     791: <hr>
                    792: <a href="index.html"><img height="24" width="24" src="back.gif" border="0" alt="OpenBSD"></a>
1.7       brian     793: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.58    ! naddy     794: <br><small>$OpenBSD: cvsup.html,v 1.57 2002/03/18 03:29:14 brian Exp $</small>
1.1       brian     795:
                    796: </body>
                    797: </html>