Drop svn page

This commit is contained in:
Jelle van der Waa 2023-05-13 15:51:54 +02:00 committed by Jelle van der Waa
parent 0fe06d055e
commit 4bba2c48c3
5 changed files with 0 additions and 50 deletions

View File

@ -13,11 +13,6 @@ def test_art(client, arches, repos, package, groups, staff_groups):
assert response.status_code == 200
def test_svn(client, arches, repos, package, groups, staff_groups):
response = client.get('/svn/')
assert response.status_code == 200
def test_donate(client, arches, repos, package, groups, staff_groups):
response = client.get('/donate/')
assert response.status_code == 200

View File

@ -172,7 +172,6 @@ class BaseSitemap(Sitemap):
('mirror-status', 0.4, 'hourly'),
'page-about',
'page-art',
'page-svn',
'page-donate',
'feeds-list',
'mirror-list',

View File

@ -157,8 +157,6 @@ <h4>Development</h4>
title="Getting involved">Getting involved</a></li>
<li><a href="https://gitlab.archlinux.org/archlinux/"
title="Official Arch projects (git)">Projects in Git</a></li>
<li><a href="{% url 'page-svn' %}"
title="View SVN entries for packages">SVN Repositories</a></li>
<li><a href="https://wiki.archlinux.org/title/DeveloperWiki"
title="Developer Wiki articles">Developer Wiki</a></li>
<li><a href="/groups/"

View File

@ -1,41 +0,0 @@
{% 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/title/ABS">the ABS wiki page</a>.
</p>
<p>The SVN repositories have been cloned into git repositories and can be
viewed via the Github interface.
<a href="https://github.com/archlinux/svntogit-packages.git/">All
packages</a> are available here except for
<a href="https://github.com/archlinux/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 %}

View File

@ -43,7 +43,6 @@
path('', public.views.index, name='index'),
path('about/', TemplateView.as_view(template_name='public/about.html'), name='page-about'),
path('art/', TemplateView.as_view(template_name='public/art.html'), name='page-art'),
path('svn/', TemplateView.as_view(template_name='public/svn.html'), name='page-svn'),
path('donate/', public.views.donate, name='page-donate'),
path('download/', public.views.download, name='page-download'),
path('master-keys/', public.views.keys, name='page-keys'),