summaryrefslogtreecommitdiff
path: root/libre/hyperbola-pacstrap-config
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-09-22 21:50:37 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2019-09-22 21:50:37 +0200
commit1d408dde55e2a3e8e8b4292e73822c8a1b31a919 (patch)
tree61e680ac0f94b902c8ec521edf9004d097675656 /libre/hyperbola-pacstrap-config
parenta8ede8c47a927e243716d2a8223e15a952e2fe1f (diff)
libre: Add hyperbola-pacstrap-config
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'libre/hyperbola-pacstrap-config')
-rw-r--r--libre/hyperbola-pacstrap-config/PKGBUILD27
-rw-r--r--libre/hyperbola-pacstrap-config/pacman.conf.i68681
-rw-r--r--libre/hyperbola-pacstrap-config/pacman.conf.x86_6487
3 files changed, 195 insertions, 0 deletions
diff --git a/libre/hyperbola-pacstrap-config/PKGBUILD b/libre/hyperbola-pacstrap-config/PKGBUILD
new file mode 100644
index 000000000..b13624493
--- /dev/null
+++ b/libre/hyperbola-pacstrap-config/PKGBUILD
@@ -0,0 +1,27 @@
+# Maintainer (Parabola): Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
+
+# The configuration files have been imported from hyperbola's pacman package
+# with the following modifications:
+# sed 's#/etc/pacman.d/mirrorlist#/usr/share/mirrorlist/hyperbola#g' -i pacman.conf.*
+
+pkgname=hyperbola-pacstrap-config
+pkgver=5.0.2
+pkgrel=2.hyperbola14
+pkgrel+=.par1
+pkgdesc="Hyperbola pacman configuration for pacstrap"
+arch=('any')
+license=('GPL-2')
+depends=('archlinux-keyring'
+ 'hyperbola-archlinux-keyring'
+ 'hyperbola-keyring'
+ 'hyperbola-mirrorlist')
+source=('pacman.conf.i686'
+ 'pacman.conf.x86_64')
+sha512sums=('c7771f088498b90235b9e2bf485d35abcf49751a4b8b061f66c37e214630ff01a46c5c17a5cbead791801ea115356f84c36bef26c2c16c38868e08d84cbea83b'
+ 'b2497a022447189622c44788c756acea4b86a21a29d32b14f806b6fd2bc9728946510a2b0445be0f6799eb56bc01940d9552294704f6034e3b28897c221b0948')
+
+package() {
+ mkdir -p $pkgdir/usr/share/pacstrap/hyperbola/
+ install -m644 $srcdir/pacman.conf.i686 $pkgdir/usr/share/pacstrap/hyperbola/
+ install -m644 $srcdir/pacman.conf.x86_64 $pkgdir/usr/share/pacstrap/hyperbola/
+}
diff --git a/libre/hyperbola-pacstrap-config/pacman.conf.i686 b/libre/hyperbola-pacstrap-config/pacman.conf.i686
new file mode 100644
index 000000000..7d7cd8605
--- /dev/null
+++ b/libre/hyperbola-pacstrap-config/pacman.conf.i686
@@ -0,0 +1,81 @@
+#
+# /etc/pacman.conf
+#
+# See the pacman.conf(5) manpage for option and repository directives
+
+#
+# GENERAL OPTIONS
+#
+[options]
+# The following paths are commented out with their default values listed.
+# If you wish to use different paths, uncomment and update the paths.
+#RootDir = /
+#DBPath = /var/lib/pacman/
+#CacheDir = /var/cache/pacman/pkg/
+#LogFile = /var/log/pacman.log
+#GPGDir = /etc/pacman.d/gnupg/
+#HookDir = /etc/pacman.d/hooks/
+HoldPkg = pacman glibc
+#XferCommand = /usr/bin/curl -C - -f %u > %o
+#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
+#CleanMethod = KeepInstalled
+#UseDelta = 0.7
+Architecture = auto
+
+# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
+#IgnorePkg =
+#IgnoreGroup =
+
+#NoUpgrade =
+#NoExtract =
+
+# Misc options
+#UseSyslog
+#Color
+#TotalDownload
+CheckSpace
+#VerbosePkgLists
+
+# By default, pacman accepts packages signed by keys that its local keyring
+# trusts (see pacman-key and its man page), as well as unsigned packages.
+SigLevel = Required DatabaseOptional
+LocalFileSigLevel = Optional
+#RemoteFileSigLevel = Required
+
+# NOTE: You must run `pacman-key --init` before first using pacman; the local
+# keyring can then be populated with the keys of all Arch/Hyperbola packagers
+# with `pacman-key --populate arch` and `pacman-key --populate hyperbola`.
+
+#
+# REPOSITORIES
+# - can be defined here or included from another file
+# - pacman will search repositories in the order defined here
+# - local/custom mirrors can be added here or in separate files
+# - repositories listed first will take precedence when packages
+# have identical names, regardless of version number
+# - URLs will have $repo replaced by the name of the current repo
+# - URLs will have $arch replaced by the name of the architecture
+#
+# Repository entries are of the format:
+# [repo-name]
+# Server = ServerName
+# Include = IncludePath
+#
+# The header [repo-name] is crucial - it must be present and
+# uncommented to enable the repo.
+#
+
+[core]
+Include = /usr/share/mirrorlist/hyperbola
+
+[extra]
+Include = /usr/share/mirrorlist/hyperbola
+
+[community]
+Include = /usr/share/mirrorlist/hyperbola
+
+# An example of a custom package repository. See the pacman manpage for
+# tips on creating your own repositories.
+#[custom]
+#SigLevel = Optional TrustAll
+#Server = file:///home/custompkgs
diff --git a/libre/hyperbola-pacstrap-config/pacman.conf.x86_64 b/libre/hyperbola-pacstrap-config/pacman.conf.x86_64
new file mode 100644
index 000000000..c52934215
--- /dev/null
+++ b/libre/hyperbola-pacstrap-config/pacman.conf.x86_64
@@ -0,0 +1,87 @@
+#
+# /etc/pacman.conf
+#
+# See the pacman.conf(5) manpage for option and repository directives
+
+#
+# GENERAL OPTIONS
+#
+[options]
+# The following paths are commented out with their default values listed.
+# If you wish to use different paths, uncomment and update the paths.
+#RootDir = /
+#DBPath = /var/lib/pacman/
+#CacheDir = /var/cache/pacman/pkg/
+#LogFile = /var/log/pacman.log
+#GPGDir = /etc/pacman.d/gnupg/
+#HookDir = /etc/pacman.d/hooks/
+HoldPkg = pacman glibc
+#XferCommand = /usr/bin/curl -C - -f %u > %o
+#XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
+#CleanMethod = KeepInstalled
+#UseDelta = 0.7
+Architecture = auto
+
+# Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
+#IgnorePkg =
+#IgnoreGroup =
+
+#NoUpgrade =
+#NoExtract =
+
+# Misc options
+#UseSyslog
+#Color
+#TotalDownload
+CheckSpace
+#VerbosePkgLists
+
+# By default, pacman accepts packages signed by keys that its local keyring
+# trusts (see pacman-key and its man page), as well as unsigned packages.
+SigLevel = Required DatabaseOptional
+LocalFileSigLevel = Optional
+#RemoteFileSigLevel = Required
+
+# NOTE: You must run `pacman-key --init` before first using pacman; the local
+# keyring can then be populated with the keys of all Arch/Hyperbola packagers
+# with `pacman-key --populate arch` and `pacman-key --populate hyperbola`.
+
+#
+# REPOSITORIES
+# - can be defined here or included from another file
+# - pacman will search repositories in the order defined here
+# - local/custom mirrors can be added here or in separate files
+# - repositories listed first will take precedence when packages
+# have identical names, regardless of version number
+# - URLs will have $repo replaced by the name of the current repo
+# - URLs will have $arch replaced by the name of the architecture
+#
+# Repository entries are of the format:
+# [repo-name]
+# Server = ServerName
+# Include = IncludePath
+#
+# The header [repo-name] is crucial - it must be present and
+# uncommented to enable the repo.
+#
+
+[core]
+Include = /usr/share/mirrorlist/hyperbola
+
+[extra]
+Include = /usr/share/mirrorlist/hyperbola
+
+[community]
+Include = /usr/share/mirrorlist/hyperbola
+
+# If you want to run 32 bit applications on your x86_64 system,
+# enable the multilib repository as required here.
+
+#[multilib]
+#Include = /usr/share/mirrorlist/hyperbola
+
+# An example of a custom package repository. See the pacman manpage for
+# tips on creating your own repositories.
+#[custom]
+#SigLevel = Optional TrustAll
+#Server = file:///home/custompkgs