From 9ea7fb8955c2d5887b8c00a1002316c25350e9c1 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 7 Dec 2010 12:56:35 -0600 Subject: Add repo name to recent updates package tooltip Should handle the suggestion/question in FS#11078 in the easiest way possible. Signed-off-by: Dan McGee --- templates/public/index.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'templates/public') diff --git a/templates/public/index.html b/templates/public/index.html index c060449c..c903b232 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -27,8 +27,10 @@

Our strong community is diverse and helpful, and we pride ourselves on the range of skillsets and uses for Arch that stem from it. Please check out our forums - and mailing lists - to get your feet wet. Also glance through our wiki + and mailing lists + to get your feet wet. Also glance through our wiki if you want to learn more about Arch.

- {{ fpkg.pkgname }} {{ fpkg.pkgver }}-{{ fpkg.pkgrel }} + {{ fpkg.pkgname }} {{ fpkg.pkgver }}-{{ fpkg.pkgrel }} {% for pkg in update %}{{ pkg.arch }}{% if not forloop.last %}/{% endif %}{% endfor %} + title="Details for {{ pkg.pkgname }} [{{ pkg.repo|lower }}]">{{ pkg.arch }}{% if not forloop.last %}/{% endif %}{% endfor %} {% endwith %} -- cgit v1.2.3-2-g168b From 97e8489ecbfc85c3759afdbe59605f3c0ffb4ce5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20B=C3=A4chler?= Date: Tue, 14 Dec 2010 21:06:30 +0100 Subject: Get rid of all references to repos.archlinux.org The packages/community repositories can now be viewed via cgit. Point links to cgit instead of websvn, as websvn is buggy and nobody wants to maintain it. This allows us to get rid of websvn entirely. Signed-off-by: Dan McGee --- templates/public/svn.html | 34 ++++++++++++++++++---------------- 1 file changed, 18 insertions(+), 16 deletions(-) (limited to 'templates/public') diff --git a/templates/public/svn.html b/templates/public/svn.html index 90852b71..dd175bcc 100644 --- a/templates/public/svn.html +++ b/templates/public/svn.html @@ -7,27 +7,29 @@ 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. -

+

The SVN repositories have been cloned into git repositories and can be + viewed via the cgit interface. + All + packages are available here except for + community + and multilib which are available in a different repository.

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>
-    
+

+ +
svn checkout --depth=empty svn://svn.archlinux.org/packages
+cd packages
+svn update <your-package-name>
+ + For the community and multilib repositories, 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. -- cgit v1.2.3-2-g168b