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

Annotation of www/cvsup.html, Revision 1.113

1.74      xsa         1: <!DOCTYPE HTML PUBLIC  "-//W3C//DTD HTML 4.01 Transitional//EN"
                      2:        "http://www.w3.org/TR/html4/loose.dtd">
1.21      naddy       3: <html>
1.1       brian       4: <head>
                      5: <title>OpenBSD CVSup</title>
1.21      naddy       6: <link rev="made" href="mailto:www@openbsd.org">
1.74      xsa         7: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
1.21      naddy       8: <meta name="resource-type" content="document">
                      9: <meta name="description" content="How to get OpenBSD updates via Internet using CVSup">
                     10: <meta name="keywords" content="openbsd,cvsup,updates">
                     11: <meta name="distribution" content="global">
1.107     nick       12: <meta name="copyright" content="This document copyright 2000-2007 by OpenBSD.">
1.1       brian      13: </head>
                     14:
1.7       brian      15: <body bgcolor="#FFFFFF" text="#000000" link="#23238E">
1.1       brian      16:
1.74      xsa        17: <a href="index.html"><img alt="[OpenBSD]" height="30" width="141"
                     18:        src="images/smalltitle.gif" border="0"></a>
1.7       brian      19:
                     20: <h2><font color="#e00000">CVSup</font></h2>
1.21      naddy      21: <hr>
1.1       brian      22:
1.7       brian      23: <h3>Table of Contents</h3>
                     24: <ul>
                     25: <li><a href="#cvsup">What Is CVSup?</a></li>
                     26: <li><a href="#starting">Getting Started Using CVSup</a></li>
1.113   ! nick       27: <li><a href="#using">Using CVS to Work With Your Repository</a></li>
1.7       brian      28: <li><a href="#checkout">Running CVSup in Checkout Mode</a></li>
                     29: <li><a href="#CVSROOT">Available CVSup Servers</a></li>
1.1       brian      30: </ul>
                     31:
1.21      naddy      32: <hr>
1.1       brian      33:
1.9       naddy      34:
1.21      naddy      35: <h3><a name="cvsup"><font color="#0000e0">What Is CVSup?</font></a></h3>
1.1       brian      36:
                     37: <p>
                     38: <b>CVSup</b> is a software package for distributing and updating source
1.58      naddy      39: 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      40: sources are maintained in a CVS repository on a central development machine
                     41: in Canada.  With CVSup, OpenBSD users can easily keep their own source trees
                     42: up to date.
                     43:
                     44: <p>
                     45: <b>CVSup</b> uses the so-called pull model of updating. Under the pull
                     46: model, each client asks the server for updates, if and when they are
                     47: wanted.  The server waits passively for update requests from its clients.
                     48: Thus all updates are instigated by the client.  The server never sends
                     49: unsolicited updates.  Users must either run the <b>CVSup</b> client
1.58      naddy      50: 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      51: automatically on a regular basis.
                     52:
                     53: <p>
                     54: The term <b>CVSup</b>, capitalized just so, refers to the entire software
                     55: package. Its main components are the client <tt>cvsup</tt> which runs on
                     56: each user's machine, and the server <tt>cvsupd</tt> which runs at each of
                     57: the OpenBSD CVSup mirror sites.
                     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:
                     63: <p>
1.107     nick       64: The OpenBSD Project currently has six main source repositories:
1.1       brian      65:
                     66: <ul>
1.9       naddy      67:   <li><b>src</b> - Houses all source code for the OpenBSD Operating System.</li>
                     68:   <li><b>ports</b> - Houses the <a href="./ports.html">OpenBSD Ports</a>.</li>
                     69:   <li><b>www</b> - Houses all OpenBSD web pages. (Including this one).</li>
1.88      matthieu   70:   <li><b>X11</b> - Houses OpenBSD's adaptation of the
1.89      matthieu   71:       <a href="http://www.XFree86.org/">XFree86-3</a> software project.
                     72:       This is here just for historical purposes, most users will have no
                     73:       reason to use this tree, it is no longer being used.
                     74:   <li><b>XF4</b> - Houses OpenBSD's active X source tree.
1.107     nick       75:   <li><b>xenocara</b> - Houses OpenBSD's in-development X.org v7 tree.
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.1       brian      87:
1.2       brian      88: <h3>
1.21      naddy      89: <a name="starting"><font color="#0000e0">Getting Started Using CVSup</font></a>
1.2       brian      90: </h3>
1.1       brian      91:
                     92: <p>
1.59      naddy      93: Building CVSup from the sources can prove cumbersome since it is
                     94: written in Modula-3.  The <tt>lang/ezm3</tt> port provides a smaller
                     95: distribution of the Modula-3 compiler and runtime system for people
                     96: whose only need for Modula-3 is to build CVSup.  Nevertheless, if
                     97: you only care about running CVSup, it is recommended that you
                     98: download the cvsup package from the <a href="ftp.html">ftp mirror
                     99: sites</a> instead of building your own from the <tt>net/cvsup</tt>
                    100: port.  Currently the OpenBSD ports of Ezm3 and consequently CVSup
                    101: are only available on the i386 platform.
1.1       brian     102:
                    103: <p>
1.50      naddy     104: For further information about CVSup, see the author's
1.109     mbalmer   105: <a href="http://www.cvsup.org/">project homepage</a>.
1.9       naddy     106:
                    107: <p>
1.50      naddy     108: In order to mirror the OpenBSD repository with CVSup,
                    109: the following configuration file might be used:
1.1       brian     110:
                    111: <pre>
                    112:         # Defaults that apply to all the collections
                    113:         *default release=cvs
                    114:         *default delete use-rel-suffix
                    115:         *default umask=002
1.41      brad      116:         *default host=cvsup.uk.openbsd.org
1.1       brian     117:         *default base=/cvs
                    118:         *default prefix=/cvs
                    119:
                    120:         # If your network link is a T1 or faster, comment out the following line.
                    121:         *default compress
                    122:
                    123:         OpenBSD-all
                    124:         #OpenBSD-src
                    125:         #OpenBSD-www
                    126:         #OpenBSD-ports
                    127:         #OpenBSD-x11
1.20      brian     128:         #OpenBSD-xf4
1.110     mbalmer   129:         #OpenBSD-xenocara
1.1       brian     130: </pre>
                    131:
                    132: <p>
                    133: This directs cvsup to refresh all OpenBSD distributions from
1.58      naddy     134: <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     135: permission to the local repository.
                    136:
                    137: <p>
                    138: Assuming this file is saved as <tt>cvs-supfile</tt>, the
1.39      horacio   139: following command would be used to invoke the cvsup GUI:
1.1       brian     140: <pre>
                    141:         cvsup cvs-supfile
                    142: </pre>
1.9       naddy     143: <p>
1.1       brian     144: whereas for batch mode, the following might be used:
                    145: <pre>
                    146:         cvsup -g -L 2 cvs-supfile
                    147: </pre>
                    148:
1.21      naddy     149: <h3><a name="using">
1.113   ! nick      150: <font color="#0000e0">Using CVS to Work With Your Repository</font>
1.2       brian     151: </a></h3>
1.1       brian     152:
                    153: <p>
1.113   ! nick      154: Now that you have a local copy of the CVS repository, it is now simple
        !           155: to check out, update, or do any of the other CVS operations you would
        !           156: normally do against a remote repository, locally.
        !           157: Fore example:
1.7       brian     158: <pre>
1.113   ! nick      159:         cvs -d/cvs checkout src -P
        !           160:         cvs -d/cvs up -Pd
        !           161:         cvs -d/cvs diff -u file.c
1.7       brian     162: </pre>
1.113   ! nick      163: More details on CVS operation can be found in
        !           164: <a href="faq/faq5.html#BldGetSrc">FAQ5, Fetching appropriate source
        !           165: code</a> and in the
        !           166: <a href="http://www.openbsd.org/cgi-bin/man.cgi?query=cvs&amp;sektion=1">cvs(1)</a>
        !           167: man page.
1.7       brian     168:
1.21      naddy     169: <h3><a name="checkout"><font color="#0000e0">Running CVSup in
1.7       brian     170: Checkout Mode</font></a></h3>
1.1       brian     171:
                    172: <p>
1.7       brian     173: As an alternative to getting the repository and using CVS, you can
                    174: run CVSup in checkout mode by adding a <tt>tag</tt> or <tt>date</tt>
                    175: keyword to your supfile, either as a <tt>*default</tt> or as an
                    176: option to a collection. In particular, you can use this to efficiently
                    177: update the source and ports trees shipped on the <a
                    178: href="orders.html">CDROMs</a>.
                    179: <p>
                    180: The following supfile could be used to update your ports tree:
                    181: <pre>
                    182:         # Defaults that apply to all the collections
                    183:         *default host=cvsup.uk.openbsd.org
                    184:         *default base=/var
                    185:         *default prefix=/usr
                    186:         *default release=cvs
                    187:         *default delete use-rel-suffix compress
                    188:
                    189:         # Ports Collection.
                    190:         OpenBSD-ports tag=.
                    191: </pre>
                    192: <p>
                    193: Any CVS symbolic tag can be used.  A single period "." means HEAD,
                    194: i.e. the newest revision of all files in the main branch.  Take care
                    195: to specify an existing tag, as CVSup cannot distinguish valid from
                    196: invalid tags, and an attempt to synchronize an existing source tree
                    197: to an invalid tag will remove all files.
                    198: <p>
                    199: Alternatively, use the keyword <tt>date=[cc.]yy.mm.dd.hh.mm.ss</tt>
1.60      deraadt   200: to select a revision by date.  All 17 or 20 characters must be
1.7       brian     201: given as shown.  For the years 2000 and beyond, specify the century
                    202: <var>cc</var>.  For earlier years, specify only the last two digits
                    203: <var>yy</var>.  You may also combine the <tt>tag</tt> and <tt>date</tt>
                    204: keywords.
                    205:
1.1       brian     206:
1.2       brian     207: <h3>
1.21      naddy     208: <a name="CVSROOT"><font color="#0000e0">Available CVSup Servers</font></a>
1.2       brian     209: </h3>
1.1       brian     210:
1.74      xsa       211: <p>The following CVSup servers are available:
1.7       brian     212:
1.1       brian     213: <dl>
1.41      brad      214: <dt><a href="http://cvsup.uk.openbsd.org"><strong>cvsup.uk.openbsd.org</strong></a></dt>
1.7       brian     215: <dd><p>
1.6       deraadt   216: located in Brighton, UK;
1.41      brad      217: maintained by <a href="mailto:brian@openbsd.org">Brian Somers</a>.<br>
1.21      naddy     218: Updated every 2 hours.
1.1       brian     219: <p>
1.7       brian     220: Available collections:
1.1       brian     221: <table>
1.9       naddy     222: <tr><td width="20"></td>
                    223:     <td><strong>OpenBSD-src</strong></td>
                    224:     <td>- The <b>src</b> repository</td></tr>
                    225: <tr><td></td>
                    226:     <td><strong>OpenBSD-ports</strong></td>
                    227:     <td>- The <b>ports</b> repository</td></tr>
                    228: <tr><td></td>
                    229:     <td><strong>OpenBSD-www</strong></td>
                    230:     <td>- The <b>www</b> repository</td></tr>
                    231: <tr><td></td>
                    232:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     233:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    234: <tr><td></td>
                    235:     <td><strong>OpenBSD-xf4</strong></td>
                    236:     <td>- The <b>XFree86-4</b> repository</td></tr>
1.9       naddy     237: <tr><td></td>
                    238:     <td><strong>OpenBSD-all</strong></td>
                    239:     <td>- All OpenBSD repositories</td></tr>
1.1       brian     240: </table>
1.7       brian     241: </dd>
                    242: </dl>
1.1       brian     243:
1.7       brian     244: <dl>
1.41      brad      245: <dt><strong>cvsup.usa.openbsd.org</strong></dt>
1.14      brian     246: <dd><p>
1.41      brad      247: located in West Lafayette, Indiana, USA;
1.21      naddy     248: maintained by <a href="mailto:will@csociety.ecn.purdue.edu">Will Andrews</a>.<br>
1.14      brian     249: Updated every 2 hours.
                    250: <p>
                    251: Available collections:
                    252: <table>
                    253: <tr><td width="20"></td>
                    254:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    255:     <td>- The <b>src</b> repository</td></tr>
1.14      brian     256: <tr><td></td>
                    257:     <td><strong>OpenBSD-ports</strong></td>
                    258:     <td>- The <b>ports</b> repository</td></tr>
                    259: <tr><td></td>
                    260:     <td><strong>OpenBSD-www</strong></td>
                    261:     <td>- The <b>www</b> repository</td></tr>
                    262: <tr><td></td>
                    263:     <td><strong>OpenBSD-x11</strong></td>
1.20      brian     264:     <td>- The <b>XFree86-3</b> repository</td></tr>
1.14      brian     265: <tr><td></td>
1.23      naddy     266:     <td><strong>OpenBSD-xf4</strong></td>
                    267:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    268: <tr><td></td>
1.14      brian     269:     <td><strong>OpenBSD-all</strong></td>
                    270:     <td>- All OpenBSD repositories</td></tr>
                    271: </table>
                    272: </dd>
                    273: </dl>
                    274:
1.26      brian     275: <dl>
1.76      millert   276: <dt><strong>anoncvs1.usa.openbsd.org</strong></dt>
                    277: <dd><p>
                    278: located in Redwood City, California, western USA;
                    279: maintained by <a href="mailto:millert@openbsd.org">Todd Miller</a>.<br>
                    280: Updated every 2 hours.
                    281: <p>
                    282: Available collections:
                    283: <table>
                    284: <tr><td width="20"></td>
                    285:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    286:     <td>- The <b>src</b> repository</td></tr>
1.76      millert   287: <tr><td></td>
                    288:     <td><strong>OpenBSD-ports</strong></td>
                    289:     <td>- The <b>ports</b> repository</td></tr>
                    290: <tr><td></td>
                    291:     <td><strong>OpenBSD-www</strong></td>
                    292:     <td>- The <b>www</b> repository</td></tr>
                    293: <tr><td></td>
                    294:     <td><strong>OpenBSD-x11</strong></td>
                    295:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    296: <tr><td></td>
                    297:     <td><strong>OpenBSD-xf4</strong></td>
                    298:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    299: <tr><td></td>
                    300:     <td><strong>OpenBSD-all</strong></td>
                    301:     <td>- All OpenBSD repositories</td></tr>
                    302: </table>
                    303: </dd>
                    304: </dl>
                    305:
                    306: <dl>
1.41      brad      307: <dt><a href="http://cvsup.no.openbsd.org/"><strong>cvsup.no.openbsd.org</strong></a></dt>
1.27      brian     308: <dd><p>
1.43      heko      309: located in Oslo, Norway;
1.106     steven    310: maintained by <a href="mailto:anders@fupp.net">Anders Nordby</a>.<br>
1.29      brian     311: Updated every 3 hours.
1.27      brian     312: <p>
                    313: Available collections:
                    314: <table>
                    315: <tr><td width="20"></td>
                    316:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    317:     <td>- The <b>src</b> repository</td></tr>
1.27      brian     318: <tr><td></td>
                    319:     <td><strong>OpenBSD-ports</strong></td>
                    320:     <td>- The <b>ports</b> repository</td></tr>
                    321: <tr><td></td>
                    322:     <td><strong>OpenBSD-www</strong></td>
                    323:     <td>- The <b>www</b> repository</td></tr>
                    324: <tr><td></td>
                    325:     <td><strong>OpenBSD-x11</strong></td>
                    326:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    327: <tr><td></td>
                    328:     <td><strong>OpenBSD-xf4</strong></td>
                    329:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    330: <tr><td></td>
                    331:     <td><strong>OpenBSD-all</strong></td>
                    332:     <td>- All OpenBSD repositories</td></tr>
                    333: </table>
                    334: </dd>
                    335: </dl>
                    336:
1.30      brian     337: <dl>
1.41      brad      338: <dt><a href="http://cvsup.pt.openbsd.org/"><strong>cvsup.pt.openbsd.org</strong></a></dt>
1.30      brian     339: <dd><p>
                    340: located at the University of Coimbra, Portugal;
1.36      brian     341: maintained by <a href="mailto:jpedras@webvolution.net">Jo&atilde;o Pedras</a>.<br>
1.30      brian     342: Updated every 3 hours.
                    343: <p>
                    344: Available collections:
                    345: <table>
                    346: <tr><td width="20"></td>
                    347:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    348:     <td>- The <b>src</b> repository</td></tr>
1.30      brian     349: <tr><td></td>
                    350:     <td><strong>OpenBSD-ports</strong></td>
                    351:     <td>- The <b>ports</b> repository</td></tr>
                    352: <tr><td></td>
                    353:     <td><strong>OpenBSD-www</strong></td>
                    354:     <td>- The <b>www</b> repository</td></tr>
                    355: <tr><td></td>
                    356:     <td><strong>OpenBSD-x11</strong></td>
                    357:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    358: <tr><td></td>
                    359:     <td><strong>OpenBSD-xf4</strong></td>
                    360:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    361: <tr><td></td>
                    362:     <td><strong>OpenBSD-all</strong></td>
                    363:     <td>- All OpenBSD repositories</td></tr>
                    364: </table>
                    365: </dd>
                    366: </dl>
1.47      brian     367:
1.37      brian     368: <dl>
                    369: <dt><a href="http://rt.fm/cvsup.html"><strong>rt.fm</strong></a></dt>
                    370: <dd><p>
1.38      brian     371: located at Lake in the Hills, Illinois, USA;
1.37      brian     372: maintained by <a href="mailto:jcs@rt.fm">Joshua Stein</a>.<br>
1.38      brian     373: Updated every 2 hours.
1.37      brian     374: <p>
                    375: Available collections:
                    376: <table>
                    377: <tr><td width="20"></td>
                    378:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    379:     <td>- The <b>src</b> repository</td></tr>
1.37      brian     380: <tr><td></td>
                    381:     <td><strong>OpenBSD-ports</strong></td>
                    382:     <td>- The <b>ports</b> repository</td></tr>
                    383: <tr><td></td>
                    384:     <td><strong>OpenBSD-www</strong></td>
                    385:     <td>- The <b>www</b> repository</td></tr>
                    386: <tr><td></td>
                    387:     <td><strong>OpenBSD-x11</strong></td>
                    388:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    389: <tr><td></td>
                    390:     <td><strong>OpenBSD-xf4</strong></td>
                    391:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    392: <tr><td></td>
1.108     grunk     393:     <td><strong>OpenBSD-xenocara</strong></td>
                    394:     <td>- The <b>Xenocara</b> repository</td></tr>
                    395: <tr><td></td>
1.37      brian     396:     <td><strong>OpenBSD-all</strong></td>
                    397:     <td>- All OpenBSD repositories</td></tr>
                    398: </table>
                    399: </dd>
                    400: </dl>
1.30      brian     401:
1.47      brian     402: <dl>
1.44      brian     403: <dt><strong>skeleton.phys.spbu.ru</strong></dt>
                    404: <dd><p>
1.46      brian     405: located in St. Petersburg State University, St. Petersburg, Russia;
1.44      brian     406: maintained by <a href="mailto:kab00m@lich.phys.spbu.ru">Dima Veselov</a>.<br>
                    407: Updated every 4 hours.
                    408: <p>
                    409: Available collections:
                    410: <table>
1.49      jufi      411: <tr><td width="20"></td>
1.44      brian     412:     <td><strong>OpenBSD-ports</strong></td>
                    413:     <td>- The <b>ports</b> repository</td></tr>
                    414: </table>
                    415: </dd>
                    416: </dl>
                    417:
1.52      brian     418: <dl>
1.58      naddy     419: <dt><strong>cvsup.jp.OpenBSD.org</strong></dt>
1.52      brian     420: <dd><p>
                    421: located at Otemachi, Tokyo, Japan;
1.57      brian     422: maintained by <a href="mailto:cvsupadm@openbsd.bsdlab.org">CVSup Administrator</a>.<br>
1.52      brian     423: Updated every 3 hours.
                    424: <p>
                    425: Available collections:
                    426: <table>
                    427: <tr><td width="20"></td>
                    428:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    429:     <td>- The <b>src</b> repository</td></tr>
1.52      brian     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>
                    438:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    439: <tr><td></td>
                    440:     <td><strong>OpenBSD-xf4</strong></td>
                    441:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    442: <tr><td></td>
                    443:     <td><strong>OpenBSD-all</strong></td>
                    444:     <td>- All OpenBSD repositories</td></tr>
                    445: </table>
                    446: </dd>
                    447: </dl>
                    448:
1.54      brian     449: <dl>
1.73      kevlo     450: <dt><strong>cvsup.tw.OpenBSD.org</strong></dt>
                    451: <dd><p>
                    452: located at National Chiao-Tung University, Taiwan;
                    453: maintained by <a href="mailto:ijliao@FreeBSD.org">Ying-Chieh Liao</a>.<br>
                    454: Updated every 2 hours.
                    455: <p>
                    456: Available collections:
                    457: <table>
                    458: <tr><td width="20"></td>
                    459:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    460:     <td>- The <b>src</b> repository</td></tr>
1.73      kevlo     461: <tr><td></td>
                    462:     <td><strong>OpenBSD-ports</strong></td>
                    463:     <td>- The <b>ports</b> repository</td></tr>
                    464: <tr><td></td>
                    465:     <td><strong>OpenBSD-www</strong></td>
                    466:     <td>- The <b>www</b> repository</td></tr>
                    467: <tr><td></td>
                    468:     <td><strong>OpenBSD-x11</strong></td>
                    469:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    470: <tr><td></td>
                    471:     <td><strong>OpenBSD-xf4</strong></td>
                    472:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    473: <tr><td></td>
                    474:     <td><strong>OpenBSD-all</strong></td>
                    475:     <td>- All OpenBSD repositories</td></tr>
                    476: </table>
                    477: </dd>
                    478: </dl>
                    479:
                    480: <dl>
1.58      naddy     481: <dt><strong>wiretapped.net</strong></dt>
1.54      brian     482: <dd><p>
                    483: located in Sydney Australia;
                    484: maintained by <a href="mailto:gbayley@ausmac.net">Grant Bayley</a>.<br>
                    485: Updated every 6 hours.
                    486: <p>
                    487: Available collections:
                    488: <table>
                    489: <tr><td width="20"></td>
                    490:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    491:     <td>- The <b>src</b> repository</td></tr>
1.54      brian     492: <tr><td></td>
                    493:     <td><strong>OpenBSD-ports</strong></td>
                    494:     <td>- The <b>ports</b> repository</td></tr>
                    495: <tr><td></td>
                    496:     <td><strong>OpenBSD-www</strong></td>
                    497:     <td>- The <b>www</b> repository</td></tr>
                    498: <tr><td></td>
                    499:     <td><strong>OpenBSD-x11</strong></td>
                    500:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    501: <tr><td></td>
                    502:     <td><strong>OpenBSD-xf4</strong></td>
                    503:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    504: <tr><td></td>
1.110     mbalmer   505:     <td><strong>OpenBSD-xenocara</strong></td>
                    506:     <td>- The <b>Xenocara</b> repository</td></tr>
                    507: <tr><td></td>
1.54      brian     508:     <td><strong>OpenBSD-all</strong></td>
                    509:     <td>- All OpenBSD repositories</td></tr>
                    510: </table>
                    511: </dd>
                    512: </dl>
                    513:
1.63      beck      514: <dl>
                    515: <dt><a href="http://mirror.osn.de/"><strong>mirror.osn.de</strong></a></dt>
                    516: <dd><p>
                    517: located in Germany
                    518: maintained by <a href="mailto:aw@osn.de">Armin Wolfermann</a>.<br>
                    519: Updated every 4 hours.
                    520: <p>
                    521: Available collections:
                    522: <table>
                    523: <tr><td width="20"></td>
                    524:     <td><strong>OpenBSD-src</strong></td>
1.102     steven    525:     <td>- The <b>src</b> repository</td></tr>
1.63      beck      526: <tr><td></td>
                    527:     <td><strong>OpenBSD-ports</strong></td>
                    528:     <td>- The <b>ports</b> repository</td></tr>
                    529: <tr><td></td>
                    530:     <td><strong>OpenBSD-www</strong></td>
                    531:     <td>- The <b>www</b> repository</td></tr>
                    532: <tr><td></td>
                    533:     <td><strong>OpenBSD-x11</strong></td>
                    534:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    535: <tr><td></td>
                    536:     <td><strong>OpenBSD-xf4</strong></td>
                    537:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    538: <tr><td></td>
1.108     grunk     539:     <td><strong>OpenBSD-xenocara</strong></td>
                    540:     <td>- The <b>Xenocara</b> repository</td></tr>
                    541: <tr><td></td>
1.63      beck      542:     <td><strong>OpenBSD-all</strong></td>
                    543:     <td>- All OpenBSD repositories</td></tr>
                    544: </table>
                    545: </dd>
                    546: </dl>
                    547:
1.65      naddy     548: <dl>
1.78      pvalchev  549: <dt><strong>cvsup.bg.openbsd.org</strong></dt>
                    550: <dd><p>
                    551: located in Plovdiv, Bulgaria,
                    552: maintained by <a href="mailto:veno@evrocom.net">Ventsislav Velkov</a>.<br>
                    553: Updated every 2 hours.
                    554: <p>
                    555: Available collections:
                    556: <table>
                    557: <tr><td width="20"></td>
                    558:     <td><strong>OpenBSD-src</strong></td>
                    559:     <td>- The <b>src</b> repository</td></tr>
                    560: <tr><td></td>
                    561:     <td><strong>OpenBSD-ports</strong></td>
                    562:     <td>- The <b>ports</b> repository</td></tr>
                    563: <tr><td></td>
                    564:     <td><strong>OpenBSD-www</strong></td>
                    565:     <td>- The <b>www</b> repository</td></tr>
                    566: <tr><td></td>
                    567:     <td><strong>OpenBSD-x11</strong></td>
                    568:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    569: <tr><td></td>
                    570:     <td><strong>OpenBSD-xf4</strong></td>
                    571:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    572: <tr><td></td>
                    573:     <td><strong>OpenBSD-all</strong></td>
                    574:     <td>- All OpenBSD repositories</td></tr>
                    575: </table>
                    576: </dd>
                    577: </dl>
                    578:
1.84      nick      579: <dl>
                    580: <dt><strong><a href="http://cvsup.open.bsd.lv">cvsup.open.bsd.lv</a></strong></dt>
                    581: <dd><p>
                    582: located in Riga, Latvia;
                    583: maintained by <a href="mailto:petruha@bsd.lv">Peter Dunaskin</a>.<br>
                    584: Updated every 2 hours.
                    585: <p>
                    586: Available collections:
                    587: <table>
                    588: <tr><td width="20"></td>
                    589:     <td><strong>OpenBSD-src</strong></td>
                    590:     <td>- The <b>src</b> repository</td></tr>
                    591: <tr><td></td>
                    592:     <td><strong>OpenBSD-ports</strong></td>
                    593:     <td>- The <b>ports</b> repository</td></tr>
                    594: <tr><td></td>
                    595:     <td><strong>OpenBSD-www</strong></td>
                    596:     <td>- The <b>www</b> repository</td></tr>
                    597: <tr><td></td>
                    598:     <td><strong>OpenBSD-x11</strong></td>
                    599:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    600: <tr><td></td>
                    601:     <td><strong>OpenBSD-xf4</strong></td>
                    602:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    603: <tr><td></td>
                    604:     <td><strong>OpenBSD-all</strong></td>
                    605:     <td>- All OpenBSD repositories</td></tr>
                    606: </table>
                    607: </dd>
                    608: </dl>
                    609:
1.91      grunk     610: <dl>
                    611: <dt><strong>rudy.mif.pg.gda.pl</strong></dt>
                    612: <dd><p>
                    613: located at the Gdansk University of Technology, Poland;
1.92      grunk     614: maintained by <a href="mailto:szati@rudy.mif.pg.gda.pl">Lukasz Sztachanski</a>.
1.91      grunk     615: <br>
                    616: Updated every 2 hours.
                    617: <p>
                    618: Available collections:
                    619: <table>
                    620: <tr><td width="20"></td>
                    621:     <td><strong>OpenBSD-src</strong></td>
                    622:     <td>- The <b>src</b> repository</td></tr>
                    623: <tr><td></td>
                    624:     <td><strong>OpenBSD-ports</strong></td>
                    625:     <td>- The <b>ports</b> repository</td></tr>
                    626: <tr><td></td>
                    627:     <td><strong>OpenBSD-www</strong></td>
                    628:     <td>- The <b>www</b> repository</td></tr>
                    629: <tr><td></td>
                    630:     <td><strong>OpenBSD-x11</strong></td>
                    631:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    632: <tr><td></td>
                    633:     <td><strong>OpenBSD-xf4</strong></td>
                    634:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    635: <tr><td></td>
                    636:     <td><strong>OpenBSD-all</strong></td>
                    637:     <td>- All OpenBSD repositories</td></tr>
                    638: </table>
                    639: </dd>
                    640: </dl>
                    641:
1.95      grunk     642: <dl>
                    643: <dt><strong>mirror.public-internet.co.uk</strong></dt>
                    644: <dd><p>
                    645: located at London, UK;
                    646: maintained by <a href="mailto:tom.beard@public-internet.co.uk">Tom Beard</a>.
                    647: <br>
                    648: Updated every 2 hours from cvsup2.de.openbsd.org.
                    649: <p>
                    650: Available collections:
                    651: <table>
                    652: <tr><td width="20"></td>
                    653:     <td><strong>OpenBSD-src</strong></td>
                    654:     <td>- The <b>src</b> repository</td></tr>
                    655: <tr><td></td>
                    656:     <td><strong>OpenBSD-ports</strong></td>
                    657:     <td>- The <b>ports</b> repository</td></tr>
                    658: <tr><td></td>
                    659:     <td><strong>OpenBSD-www</strong></td>
                    660:     <td>- The <b>www</b> repository</td></tr>
                    661: <tr><td></td>
                    662:     <td><strong>OpenBSD-x11</strong></td>
                    663:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    664: <tr><td></td>
                    665:     <td><strong>OpenBSD-xf4</strong></td>
                    666:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    667: <tr><td></td>
                    668:     <td><strong>OpenBSD-all</strong></td>
                    669:     <td>- All OpenBSD repositories</td></tr>
                    670: </table>
                    671: </dd>
                    672: </dl>
                    673:
1.99      steven    674: <!--
1.96      grunk     675: <dl>
                    676: <dt><strong>anoncvs.openbsd.org.ua</strong></dt>
                    677: <dd><p>
                    678: located in Kiev, Ukraine;
                    679: maintained by <a href="mailto:hunter@mirotel.net">Sergey Smitienko</a>.
                    680: <br>
                    681: Updated every 6 hours.
                    682: <p>
                    683: Available collections:
                    684: <table>
                    685: <tr><td width="20"></td>
                    686:     <td><strong>OpenBSD-src</strong></td>
                    687:     <td>- The <b>src</b> repository</td></tr>
                    688: <tr><td></td>
                    689:     <td><strong>OpenBSD-ports</strong></td>
                    690:     <td>- The <b>ports</b> repository</td></tr>
                    691: <tr><td></td>
                    692:     <td><strong>OpenBSD-www</strong></td>
                    693:     <td>- The <b>www</b> repository</td></tr>
                    694: <tr><td></td>
                    695:     <td><strong>OpenBSD-x11</strong></td>
                    696:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    697: <tr><td></td>
                    698:     <td><strong>OpenBSD-xf4</strong></td>
                    699:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    700: <tr><td></td>
                    701:     <td><strong>OpenBSD-all</strong></td>
                    702:     <td>- All OpenBSD repositories</td></tr>
                    703: </table>
                    704: </dd>
                    705: </dl>
1.99      steven    706: -->
1.96      grunk     707:
1.97      grunk     708: <dl>
                    709: <dt><strong>cvsup.openbsd.nu</strong></dt>
                    710: <dd><p>
                    711: located in Stockholm, Sweden;
                    712: maintained by <a href="mailto:kent@openbsd.nu">Kent Riboe</a>.
                    713: <br>
                    714: Updated every 3 hours from cvsync.de.openbsd.org.
                    715: <p>
                    716: Available collections:
                    717: <table>
                    718: <tr><td width="20"></td>
                    719:     <td><strong>OpenBSD-src</strong></td>
                    720:     <td>- The <b>src</b> repository</td></tr>
                    721: <tr><td></td>
                    722:     <td><strong>OpenBSD-ports</strong></td>
                    723:     <td>- The <b>ports</b> repository</td></tr>
                    724: <tr><td></td>
                    725:     <td><strong>OpenBSD-www</strong></td>
                    726:     <td>- The <b>www</b> repository</td></tr>
                    727: <tr><td></td>
                    728:     <td><strong>OpenBSD-x11</strong></td>
                    729:     <td>- The <b>XFree86-3</b> repository</td></tr>
                    730: <tr><td></td>
                    731:     <td><strong>OpenBSD-xf4</strong></td>
                    732:     <td>- The <b>XFree86-4</b> repository</td></tr>
                    733: <tr><td></td>
                    734:     <td><strong>OpenBSD-all</strong></td>
                    735:     <td>- All OpenBSD repositories</td></tr>
                    736: </table>
                    737: </dd>
                    738: </dl>
                    739:
1.1       brian     740: <p>
1.87      joel      741: <em>Note:</em> If your server is listed on here with inaccurate or
                    742: unknown information, please contact
                    743: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>.
1.1       brian     744: <p>
1.58      naddy     745: 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   746: to find out which server is nearest you.
1.1       brian     747: Problems with a server should be reported to the <b>maintainer</b> of the
                    748: server in question.
                    749: <p>
1.100     steven    750: As of August 21, 2006, the CVS repository sizes are
1.4       brian     751: <table>
1.9       naddy     752: <tr><td width="20"></td>
1.20      brian     753:     <td><strong>OpenBSD-ports</strong></td>
1.100     steven    754:     <td>- <b>222</b>MB</td></tr>
1.9       naddy     755: <tr><td></td>
1.20      brian     756:     <td><strong>OpenBSD-src</strong></td>
1.100     steven    757:     <td>- <b>1396</b>MB</td></tr>
1.9       naddy     758: <tr><td></td>
1.20      brian     759:     <td><strong>OpenBSD-www</strong></td>
1.100     steven    760:     <td>- <b>247</b>MB</td></tr>
1.9       naddy     761: <tr><td></td>
1.20      brian     762:     <td><strong>OpenBSD-x11</strong></td>
1.68      naddy     763:     <td>- <b>200</b>MB</td></tr>
1.20      brian     764: <tr><td></td>
                    765:     <td><strong>OpenBSD-xf4</strong></td>
1.100     steven    766:     <td>- <b>562</b>MB</td></tr>
1.4       brian     767: </table>
                    768: <p>
1.100     steven    769: There is an additional overhead of <b>408</b>MB for the CVSROOT
1.68      naddy     770: directory.  The overall repository size currently increases at a rate
1.85      nick      771: of about <b>400</b>MB per annum.
1.4       brian     772: <p>
1.1       brian     773: <strong>IMPORTANT NOTE:</strong>
                    774: There are a few issues relating to cryptographic software that everyone
                    775: should be aware of:
                    776: <ul>
1.9       naddy     777:   <li>
                    778:     <p>
                    779:     The OpenBSD sources are from Canada. As
1.67      nick      780:     <a href="http://www.efc.ca/pages/doc/crypto-export.html">
1.9       naddy     781:     researched by a Canadian individual</a> and as
                    782:     <a href="http://axion.physics.ubc.ca/ECL.html">
                    783:     described in the Export Control list of Canada</a>,
                    784:     it is legal to export crypto software from Canada to the world.
                    785:   </li>
                    786:   <li>
                    787:     <p>
                    788:     However, if you are outside the USA or Canada, you should not
1.72      naddy     789:     fetch the cryptographic sections of the OpenBSD sources from a
                    790:     CVSup server located in the USA. The files in question are...
1.9       naddy     791:     <ul>
                    792:       <li><tt>src/kerberosIV/*</tt></li>
1.56      miod      793:       <li><tt>src/kerberosV/*</tt></li>
1.9       naddy     794:       <li><tt>src/lib/libdes/*</tt></li>
                    795:       <li><tt>src/lib/libc/crypt/crypt.c</tt></li>
                    796:       <li><tt>src/lib/libc/crypt/morecrypt.c</tt></li>
1.56      miod      797:       <li><tt>src/sys/crypto</tt></li>
1.9       naddy     798:       <li><tt>src/sys/netinet</tt></li>
                    799:       <li><tt>src/usr.sbin/afs/src/rxkad/*</tt></li>
1.56      miod      800:       <li><tt>XF4/xc-mit/lib/Xdmcp/Wraphelp.c</tt></li>
                    801:       <li><tt>XF4/xc-old/lib/Xdmcp/Wraphelp.c</tt></li>
                    802:       <li><tt>XF4/xc/lib/Xdmcp/Wraphelp.c</tt></li>
1.9       naddy     803:     </ul>
                    804:     <p>
                    805:     Because of the USA ITAR munitions list,
                    806:     crypto software may only be exported to Canada from the USA.
                    807:   </li>
1.1       brian     808: </ul>
                    809:
                    810: <p>
                    811: The OpenBSD project is looking for more CVSup servers -- if you are
1.87      joel      812: interested, please contact
                    813: <a href="mailto:www@openbsd.org"><tt>www@openbsd.org</tt></a>
1.1       brian     814: for configuration details.
                    815:
1.21      naddy     816: <hr>
                    817: <a href="index.html"><img height="24" width="24" src="back.gif" border="0" alt="OpenBSD"></a>
1.7       brian     818: <a href="mailto:www@openbsd.org">www@openbsd.org</a>
1.113   ! nick      819: <br><small>$OpenBSD: cvsup.html,v 1.112 2007/09/25 15:15:13 millert Exp $</small>
1.1       brian     820:
                    821: </body>
                    822: </html>