fix(arch-linux): update trizen config

This commit is contained in:
George Rawlinson 2018-05-12 17:30:55 +12:00
parent bd4ec13d27
commit 08a31b0a45
1 changed files with 47 additions and 43 deletions

View File

@ -1,49 +1,53 @@
#!/usr/bin/perl #!/usr/bin/perl
# trizen configuration file # trizen configuration file
# Updated on Tue Jan 2 16:25:43 2018 # Updated on Thu Feb 22 09:44:55 2018
our $CONFIG = { our $CONFIG = {
aur_results_last_modified => 0, # bool -- Show the date in AUR results when the package was last updated. ask_for_retry => 1, # bool -- When `makepkg` fails to build a package, offer the option for trying again.
aur_results_popularity => 0, # bool -- Show the popularity score in AUR results. aur_results_last_modified => 0, # bool -- Show the date when the packages were last updated in AUR results.
aur_results_show_installed => 0, # bool -- Show when a package is installed in AUR results. aur_results_popularity => 0, # bool -- Show the popularity score in AUR results.
aur_results_sort_by => "name", # str -- Sort the AUR results by: "name", "votes", "popularity" or "date" aur_results_show_installed => 0, # bool -- Show when a package is installed in AUR results.
aur_results_sort_order => "ascending", # str -- Sort the AUR results in "ascending" or "descending" order. aur_results_sort_by => "name", # str -- Sort the AUR results by "name", "votes", "popularity" or "date".
aur_results_votes => 0, # bool -- Show the number of votes in AUR results. aur_results_sort_order => "ascending", # str -- Sort the AUR results in "ascending" or "descending" order.
clone_dir => "/tmp/trizen-george", # str -- Absolute path to the directory where to clone and build packages. aur_results_votes => 0, # bool -- Show the number of votes in AUR results.
debug => 0, # bool -- Verbose mode. clone_dir => "/tmp/trizen-george", # str -- Absolute path to the directory where to clone and build packages.
force => 0, # bool -- Pass the `--force` flag to `pacman`. debug => 0, # bool -- Verbose mode.
git_clone_depth => 0, # int -- Pass the `--depth int` flag to `git clone`. (0 means no limit) flip_indices => 0, # bool -- In search+install mode, show the indices of packages in reverse order.
install_built_with_noconfirm => 0, # bool -- Install built packages with `--noconfirm`. flip_results => 0, # bool -- Show the search results in reverse order.
lwp_env_proxy => 1, # bool -- Use proxy settings defined in `env` (if any). force => 0, # bool -- Pass the `--force` flag to `pacman`.
lwp_show_progress => 0, # bool -- Show the HTTPS requests made by LWP::UserAgent to the AUR servers. git_clone_depth => 0, # int -- Pass the `--depth int` flag to `git clone`. (0 means no limit)
lwp_timeout => 60, # int -- Seconds after which an HTTPS connection is aborted. install_built_with_noconfirm => 0, # bool -- Install built packages with `--noconfirm`.
makepkg_command => "/usr/bin/makepkg --syncdeps --force --clean", # str -- The `makepkg` command that is used internally in building a package. lwp_env_proxy => 1, # bool -- Use proxy settings defined in `env` (if any).
movepkg => 0, # bool -- Move built packages in the directory `movepkg_dir`. lwp_show_progress => 0, # bool -- Show the HTTPS requests made by LWP::UserAgent to the AUR servers.
movepkg_dir => "/var/cache/pacman/pkg", # str -- Absolute path to the directory where to move built packages (with `movepkg`). lwp_timeout => 60, # int -- Seconds after which an HTTPS connection is aborted.
nocolors => 0, # bool -- Disable output colors for `trizen`. makepkg_command => "/usr/bin/makepkg --syncdeps --force --clean", # str -- The `makepkg` command that is used internally in building a package.
noedit => 1, # bool -- Do not prompt to edit files when installing an AUR package. movepkg => 0, # bool -- Move built packages in the directory `movepkg_dir`.
noinfo => 0, # bool -- Do not display package information when installing an AUR package. movepkg_dir => "/var/cache/pacman/pkg", # str -- Absolute path to the directory where to move built packages (with `movepkg`).
noinstall => 0, # bool -- Do not install built packages -- builds only. nocolors => 0, # bool -- Disable output colors for `trizen`.
nopull => 0, # bool -- Do not `git pull` new changes from the AUR git server. noedit => 1, # bool -- Do not prompt to edit files when installing an AUR package.
packages_in_stats => 5, # int -- The number of packages to display in `--stats` noinfo => 1, # bool -- Do not display package information when installing an AUR package.
pacman_command => "/usr/bin/pacman", # str -- The `pacman` command that is used internally for pacman operations. noinstall => 0, # bool -- Do not install built packages -- builds only.
pacman_local_dir => "/var/lib/pacman/local", # str -- Absolute path to the pacman's local directory. nopull => 0, # bool -- Do not `git pull` new changes from the AUR git server.
quiet => 0, # bool -- Do not display any warnings. packages_in_stats => 5, # int -- The number of packages to display in `--stats`
recompute_deps => 1, # bool -- Recompute the dependencies of a package after its build files are inspected. pacman_command => "/usr/bin/pacman", # str -- The `pacman` command that is used internally for pacman operations.
show_build_files_content => 1, # bool -- Show the content of the build files of a package before building it. pacman_local_dir => "/var/lib/pacman/local", # str -- Absolute path to the pacman's local directory.
show_comments => 0, # bool -- Show AUR comments for a package before building it. pager_mode => 0, # bool -- Show the build files in pager mode using pager.
show_inexistent => 1, # bool -- Warn about packages that do not exist in AUR, during -Su. quiet => 0, # bool -- Do not display any warnings.
show_ood => 0, # bool -- Warn about out-of-date marked packages, during -Su. recompute_deps => 1, # bool -- Recompute the dependencies of a package after its build files are inspected.
show_unmaintained => 1, # bool -- Warn about unmaintained packages, during -Su. show_build_files_content => 0, # bool -- Show the content of the build files of a package before building it.
skipinteg => 0, # bool -- Pass the `--skipinteg` argument to `makepkg`. show_comments => 0, # bool -- Show AUR comments for a package before building it.
split_packages => 1, # bool -- Ask about installing the other parts of a split package. show_diff_only => 0, # bool -- When the build files of a package already exist locally, show the diff only.
ssl_verify_hostname => 1, # bool -- Ensure LWP::UserAgent connects to servers that have a valid certificate. show_inexistent => 1, # bool -- Warn about packages that do not exist in AUR, during -Su.
su_command => "/usr/bin/su -c", # str -- Command used when special permissions are required and `use_sudo` is set to 0. show_ood => 0, # bool -- Warn about out-of-date marked packages, during -Su.
sudo_autorepeat => 0, # bool -- Automatically repeat `sudo -v` in the background after a `sudo` command was first executed. show_unmaintained => 1, # bool -- Warn about unmaintained packages, during -Su.
sudo_autorepeat_at_runtime => 0, # bool -- Execute `sudo -v` when `trizen` is first executed and apply the behavior of `sudo_autorepeat`. skipinteg => 0, # bool -- Pass the `--skipinteg` argument to `makepkg`.
sudo_autorepeat_interval => 180, # int -- Interval, in seconds, after which `sudo -v` is executed in background (with `sudo_autorepeat`). split_packages => 1, # bool -- Ask about installing the other parts of a split package.
sudo_command => "/usr/bin/sudo", # str -- Command used when special permissions are required and `use_sudo` is set to 1. ssl_verify_hostname => 1, # bool -- Ensure LWP::UserAgent connects to servers that have a valid certificate.
use_sudo => 1, # bool -- Use the `sudo` command when special permissions are required. su_command => "/usr/bin/su -c", # str -- Command used when special permissions are required and `use_sudo` is set to 0.
VERSION => 1.37, # float -- The current version number of `trizen`. sudo_autorepeat => 0, # bool -- Automatically repeat `sudo -v` in the background after a `sudo` command was first executed.
sudo_autorepeat_at_runtime => 0, # bool -- Execute `sudo -v` when `trizen` is first executed and apply the behavior of `sudo_autorepeat`.
sudo_autorepeat_interval => 180, # int -- Interval, in seconds, after which `sudo -v` is executed in background (with `sudo_autorepeat`).
sudo_command => "/usr/bin/sudo", # str -- Command used when special permissions are required and `use_sudo` is set to 1.
use_sudo => 1, # bool -- Use the `sudo` command when special permissions are required.
} }