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

Annotation of www/cvsup.html, Revision 1.120

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