From 4bba2c48c3fc736bfc41573d82f9d85e7909a29e Mon Sep 17 00:00:00 2001 From: Jelle van der Waa Date: Sat, 13 May 2023 15:51:54 +0200 Subject: [PATCH] Drop svn page --- public/tests.py | 5 ----- sitemaps.py | 1 - templates/public/index.html | 2 -- templates/public/svn.html | 41 ------------------------------------- urls.py | 1 - 5 files changed, 50 deletions(-) delete mode 100644 templates/public/svn.html diff --git a/public/tests.py b/public/tests.py index 9be36564..a1f75ee1 100644 --- a/public/tests.py +++ b/public/tests.py @@ -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 diff --git a/sitemaps.py b/sitemaps.py index bfa3a048..68a63375 100644 --- a/sitemaps.py +++ b/sitemaps.py @@ -172,7 +172,6 @@ class BaseSitemap(Sitemap): ('mirror-status', 0.4, 'hourly'), 'page-about', 'page-art', - 'page-svn', 'page-donate', 'feeds-list', 'mirror-list', diff --git a/templates/public/index.html b/templates/public/index.html index 8105c113..c358df51 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -157,8 +157,6 @@

Development

title="Getting involved">Getting involved
  • Projects in Git
  • -
  • SVN Repositories
  • Developer Wiki
  • -

    SVN Repositories

    -

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

    -

    The SVN repositories have been cloned into git repositories and can be - viewed via the Github 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 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. -

    - - -

    -{% endblock %} - diff --git a/urls.py b/urls.py index f5edec5c..c136e728 100644 --- a/urls.py +++ b/urls.py @@ -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'),