From 73bafcbce9efef697926749584d234c624c31ce8 Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Wed, 21 Jun 2017 10:46:04 +0200 Subject: [PATCH] Initial commit. --- etc/powerpill/powerpill.json | 49 +++++++++++++++++++++++++ etc/xdg/cower/config | 39 ++++++++++++++++++++ etc/xdg/pacaur/config | 20 ++++++++++ etc/yaourtrc | 71 ++++++++++++++++++++++++++++++++++++ 4 files changed, 179 insertions(+) create mode 100644 etc/powerpill/powerpill.json create mode 100644 etc/xdg/cower/config create mode 100644 etc/xdg/pacaur/config create mode 100644 etc/yaourtrc diff --git a/etc/powerpill/powerpill.json b/etc/powerpill/powerpill.json new file mode 100644 index 0000000..c1480db --- /dev/null +++ b/etc/powerpill/powerpill.json @@ -0,0 +1,49 @@ +{ + "aria2": { + "args": [ + "--allow-overwrite=true", + "--always-resume=false", + "--auto-file-renaming=false", + "--check-integrity=true", + "--conditional-get=true", + "--continue=true", + "--file-allocation=none", + "--log-level=error", + "--console-log-level=error", + "--max-concurrent-downloads=100", + "--max-connection-per-server=5", + "--min-split-size=5M", + "--remote-time=true", + "--show-console-readout=true" + ], + "path": "/usr/bin/aria2c" + }, + "pacman": { + "config": "/etc/pacman.conf", + "path": "/usr/bin/pacman" + }, + "pacserve": { + "server": null + }, + "powerpill": { + "select": true, + "reflect databases": false + }, + "reflector": { + "args.unused": [ + "--protocol", + "http", + "--latest", + "50" + ] + }, + "rsync": { + "args": [ + "--no-motd", + "--progress" + ], + "db only": true, + "path": "/usr/bin/rsync", + "servers": [] + } +} diff --git a/etc/xdg/cower/config b/etc/xdg/cower/config new file mode 100644 index 0000000..851afb1 --- /dev/null +++ b/etc/xdg/cower/config @@ -0,0 +1,39 @@ +# +# example cower config file +# +# All options here can be overriden with flags on the command line. All options +# are case sensitive. This file will be read per user, and should be located at +# $XDG_CONFIG_HOME/cower/config or $HOME/.config/cower/config. +# + +# Use color in the output. This takes an optional arg of auto/never/always, +# identical to the command line arg --color. If no arg is specified, this is +# assumed to mean auto. +#Color = + +# Connection timeout to be passed to curl. Setting this to 0 will disable +# timeouts. +#ConnectTimeout = + +# Always ignore out of date packages. This can be overridden on the command line +# with --no-ignore-ood. +#IgnoreOOD + +# Ignore the specified packages when checking for updates. Multiple arguments +# to this option should be space delimited. Similar to the --ignore option, +# this is in addition to any packages found in pacman's config. +#IgnorePkg = + +# Ignore the specified binary repos when checking for updates. Multiple arguments +# to this option should be space delimited. +#IgnoreRepo = + +# Absolute path to download and extract to. Parameter and tilde expansions are +# honored here. +#TargetDir = + +# Max number of threads cower will use. This is synonymous with the max number +# of concurrent connections that will be opened to the AUR. +#MaxThreads = + +# vim: set noet syn=conf \ No newline at end of file diff --git a/etc/xdg/pacaur/config b/etc/xdg/pacaur/config new file mode 100644 index 0000000..458174d --- /dev/null +++ b/etc/xdg/pacaur/config @@ -0,0 +1,20 @@ +#!/bin/bash + +# +# /etc/xdg/pacaur/config +# + +# The following options are commented out with their default values listed. +# If you wish to use different values, uncomment and update the values. +# The Color and VerbosePkgLists options can be enabled in /etc/pacman.conf. +# The clone directory can be changed through the $AURDEST environment variable. +# The makepkg environment variables are also fully honored. +#editor="${VISUAL:-${EDITOR:-vi}}" # build files editor +#displaybuildfiles=diff # display build files (none|diff|full) +#fallback=true # pacman fallback to the AUR +#silent=false # silence output +#sortby=popularity # sort method (name|votes|popularity) +#sortorder=descending # sort order (ascending|descending) +#sudoloop=true # prevent sudo timeout + +pacmanbin=powerpill \ No newline at end of file diff --git a/etc/yaourtrc b/etc/yaourtrc new file mode 100644 index 0000000..1a2ca22 --- /dev/null +++ b/etc/yaourtrc @@ -0,0 +1,71 @@ +# yaourtrc - Configuration for yaourt +# +# See yaourtrc(5) for more information +# +# + +# General +#AUTOSAVEBACKUPFILE=0 +#DEVEL=0 +#DEVELSRCDIR="" +#FORCE=0 +#NO_TESTDB=0 + +# Environment variables +#EDITOR="$EDITOR" +#TMPDIR="/tmp" +#VISUAL="$VISUAL" + +# SUDO +#SUDONOVERIF=0 # Avoid multiple sudo checks when timestamp_timeout=0 +SUDOREDIRECT=0 # Define to 0 in case you use a fingerprint device + +# ABS +#USE_GIT=0 +# If the package "abs" is installed, those var are parsed from abs.conf +#REPOS=() # REPOS available at $SYNCSERVER +#SYNCSERVER="" + +# AUR +#AURURL="https://aur.archlinux.org" +#AURCOMMENT=5 +#AURDEVELONLY=0 +#AURSEARCH=1 +#AURSHOWDIFF=0 +#AURUPGRADE=0 +#AURVOTE=1 +#AURUSEGIT=0 + +# Build +#EXPORT=0 # Export to 1: EXPORTDIR or PKGDEST + # 2: pacman cache (as root) +#EXPORTSRC=0 # Need EXPORT>0 to be used +#EXPORTDIR="" # If empty, use makepkg's configuration (see makepkg.conf) + +# Prompt +#NOCONFIRM=0 +#UP_NOCONFIRM=0 # No prompt while build upgrades (including -Sbu) +#BUILD_NOCONFIRM=0 # Only prompt for editing files +#PU_NOCONFIRM=0 # Add --noconfirm to $PACMAN -U +#EDITFILES=1 +#NOENTER=1 + +# Output +#USECOLOR=1 +#USEPAGER=0 +#DETAILUPGRADE=1 +#SHOWORPHANS=1 +#TERMINALTITLE=1 + +# Command +PACMAN="powerpill" +#MAKEPKG="makepkg" +#DIFFEDITCMD="vimdiff" + +# pacdiffviewer +#P_LOCATE=0 # Use locate instead of find +#P_SEARCHDIR=(/etc/ /boot/) +#P_SAVEDIR='/var/lib/yaourt/backupfiles' + +# customizepkg +CUSTOMIZEPKGINSTALLED=1