From 79f00ef686e0597cb197ed67ba1462aa60a530bb Mon Sep 17 00:00:00 2001 From: Ismael Carnales Date: Fri, 30 Oct 2009 16:56:21 -0200 Subject: "imported" public app files from archweb_pub --- templates/public/svn.html | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 templates/public/svn.html (limited to 'templates/public/svn.html') 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 %} +
+

SVN Repositories

+

+ The PKGBUILD files can be fetched via the ABS utility. To learn more + about ABS, see the ABS wiki page. +

+

+ You can view the history of all the PKGBUILD files from the Repository + WebSVN interface. +

+

+ 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. + DO NOT CHECK OUT THE ENTIRE SVN REPO. Your address may be + blocked. Use the following commands to check out a specific package: +

+
+        svn checkout --depth=empty svn://svn.archlinux.org/packages
+        cd packages
+        svn update <your-package-name>
+    
+ For the community repository, use the following commands instead: +
+        svn checkout --depth=empty svn://svn.archlinux.org/community
+        cd community
+        svn update <your-package-name>
+    
+

+ Visit the wiki for more tips on checking out and updating svn PKGBUILDs. +

+ +
+

+{% endblock %} + -- cgit v1.2.3-24-g4f1b