summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-09-27 06:28:26 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2023-09-27 06:28:26 +0200
commit826c723d4789cc76ddf6ba87b98fdbee8a9b2ee4 (patch)
treed777dfe64e5c91ea0d4feedf1b362494b6d4d1cb
parentFix spelling mistake. (diff)
downloadprofiles-826c723d4789cc76ddf6ba87b98fdbee8a9b2ee4.tar.gz
profiles-826c723d4789cc76ddf6ba87b98fdbee8a9b2ee4.tar.xz
Remove profile arch_ports.
As of may 2023 Arch moved to a pure git setup, meaning that each package is now available as a separate repo. See link: https://lists.archlinux.org/archives/list/arch-dev-public@lists.archlinux.org/thread/SHCCCKHLIWPXPOIR5ARNJKSVWL2SSUO7/ diff --git a/manifests/arch_ports.pp b/manifests/arch_ports.pp index 2720ebe..16a8287 100644 --- a/manifests/arch_ports.pp +++ b/manifests/arch_ports.pp @@ -1,6 +1,8 @@ # "ports" tree for arch linux, providing all PKGBUILD sources for the # public repos. # https://archlinux.org/svn/ +# @deprecated +# class profiles::arch_ports ( String $location = '/usr/local/arch', ) {
-rw-r--r--manifests/arch_ports.pp15
1 files changed, 0 insertions, 15 deletions
diff --git a/manifests/arch_ports.pp b/manifests/arch_ports.pp
deleted file mode 100644
index 2720ebe..0000000
--- a/manifests/arch_ports.pp
+++ /dev/null
@@ -1,15 +0,0 @@
-# "ports" tree for arch linux, providing all PKGBUILD sources for the
-# public repos.
-# https://archlinux.org/svn/
-class profiles::arch_ports (
- String $location = '/usr/local/arch',
-) {
-
- [ 'packages', 'community' ].each |$repo| {
- vcsrepo { "${location}/${repo}":
- ensure => present,
- provider => 'git',
- source => "https://github.com/archlinux/svntogit-${repo}",
- }
- }
-}