summaryrefslogtreecommitdiffstats
path: root/templates/public/svn.html
diff options
context:
space:
mode:
authorIsmael Carnales <icarnales@gmail.com>2009-10-30 19:56:21 +0100
committerIsmael Carnales <icarnales@gmail.com>2009-11-10 01:24:37 +0100
commit79f00ef686e0597cb197ed67ba1462aa60a530bb (patch)
treefa27253b023f1cd6ec9f1d3fd79d0ee6bd727aaa /templates/public/svn.html
parentce662e0e0cdb66a7425bfc55bc7342cb152d5e4b (diff)
downloadarchweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.gz
archweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.xz
"imported" public app files from archweb_pub
Diffstat (limited to 'templates/public/svn.html')
-rw-r--r--templates/public/svn.html38
1 files changed, 38 insertions, 0 deletions
diff --git a/templates/public/svn.html b/templates/public/svn.html
new file mode 100644
index 0000000..1f900c2
--- /dev/null
+++ b/templates/public/svn.html
@@ -0,0 +1,38 @@
+{% 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="http://wiki.archlinux.org/index.php/ABS">the ABS wiki page</a>.
+ </p>
+ <p>
+ You can view the history of all the PKGBUILD files from the Repository
+ <a href="http://repos.archlinux.org/">WebSVN</a> interface.
+ </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 repository, 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="http://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 %}
+