summaryrefslogtreecommitdiffstats
path: root/templates/public/svn.html
blob: 0d0670987393a9a7c3fba36ea93832355fd95845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{% extends "base.html" %}
{% block title %}Arch Linux - SVN{% endblock %}
{% block content %}
<div class="box">
    <h2 class="title">SVN Repositories</h2>
    <p>
    The PKGBUILD files can be fetched via the ABS utility. To learn more
    about ABS, see <a href="https://wiki.archlinux.org/index.php/ABS">the ABS wiki page</a>.
    </p>
    <p>The SVN repositories have been cloned into git repositories and can be
    viewed via the cgit interface.
    <a href="https://projects.archlinux.org/svntogit/packages.git/">All
        packages</a> are available here except for
    <a href="https://projects.archlinux.org/svntogit/community.git/">community
        and multilib</a> which are available in a different repository.</p>
    <p>
    You can also get individual PKGBUILDs directly from SVN. This can be
    especially useful if you need to compile an older version of a package.
    <strong>DO NOT CHECK OUT THE ENTIRE SVN REPO</strong>. Your address may be
    blocked.  Use the following commands to check out a specific package:
    </p>

    <pre>svn checkout --depth=empty svn://svn.archlinux.org/packages
cd packages
svn update &lt;your-package-name&gt;</pre>

    For the community and multilib repositories, use the following commands
    instead:
    <pre>svn checkout --depth=empty svn://svn.archlinux.org/community
cd community
svn update &lt;your-package-name&gt;</pre>

    <p>
    Visit <a href="https://wiki.archlinux.org/index.php?title=Getting_PKGBUILDS_From_SVN">the wiki</a>
    for more tips on checking out and updating svn PKGBUILDs.
    </p>

</div>
<br /><br />
{% endblock %}