Updated for format

This commit is contained in:
Dimitris Zlatanidis 2024-03-25 19:30:31 +02:00
parent 7089f62304
commit f59a2e9d76

View file

@ -38,8 +38,8 @@ DIALOG = true
# Default is false. [true/false]
NEW_PACKAGES = false
# This config is also for -current users and remove packages that are no longer
# exist in the repository when you run the upgrade command.
# This config is also for -current users and remove packages that are
# no longer exist in the repository when you run the upgrade command.
# Default is false. [true/false]
REMOVED_PACKAGES = false
@ -48,15 +48,16 @@ REMOVED_PACKAGES = false
# Default is true. [true/false].
ASCII_CHARACTERS = true
# Set false to all the questions. If set false, option --yes will not work.
# Default is true. [true/false].
# Set false to all the questions. If set false, option --yes will
# not work. Default is true. [true/false].
ASK_QUESTION = true
# Download sources in parallel. Default is false. [true/false]
# Alternatively, you can use the option '--parallel'.
PARALLEL_DOWNLOADS = false
# If progress bar is true, it does not print the commands as they are executed.
# If progress bar is true, it does not print the commands as they
# are executed.
# Default is false. [true/false]
PROGRESS_BAR = false
@ -82,26 +83,27 @@ CASE_SENSITIVE = true
# Default is true. [true/false]
PROCESS_LOG = true
# Slackware command for installation packages, instead, you can use 'installpkg'.
# Normally upgradepkg only upgrades packages that are already installed
# on the system, and will skip any packages that do not already have a
# version installed. If --install-new is specified, the behavior is
# modified to install new packages in addition to upgrading existing ones.
# See manpage of the upgradepkg.
# Slackware command for installation packages, instead, you can use
# 'installpkg'. Normally upgradepkg only upgrades packages that are
# already installed on the system, and will skip any packages that
# do not already have a version installed. If --install-new is specified,
# the behavior is modified to install new packages in addition to
# upgrading existing ones. See manpage of the upgradepkg.
INSTALLPKG = "upgradepkg --install-new"
# Slackware command to reinstall packages.
# Upgradepkg usually skips packages if the exact same package (matching name,
# version, arch, and build number) is already installed on the system. Use
# the --reinstall option if you want to upgrade all packages even if the same
# version is already installed.
# Upgradepkg usually skips packages if the exact same package
# (matching name, version, arch, and build number) is already installed
# on the system. Use the --reinstall option if you want to upgrade all
# packages even if the same version is already installed.
REINSTALL = "upgradepkg --reinstall"
# Slackware command to remove packages.
#removepkg removes a previously installed Slackware package, while writing
# a progress report to the standard output. A package may be specified either
# by the full package name (as you'd see listed in /var/lib/pkgtools/packages/),
# or by the base package name. See manpage of the removepkg.
# removepkg removes a previously installed Slackware package, while
# writing a progress report to the standard output. A package may be
# specified either by the full package name (as you'd see listed in
# /var/lib/pkgtools/packages/), or by the base package name.
# See manpage of the removepkg.
REMOVEPKG = "removepkg"
# You can choose a downloader among wget, curl and lftp.
@ -120,15 +122,16 @@ CURL_OPTIONS = ""
# Lftp donwloader options.
LFTP_GET_OPTIONS = "-c get -e"
# Lftp mirror options are used to synchronize with the SBo and Ponce repositories
# or for the local repositories.
# Lftp mirror options are used to synchronize with the SBo and
# Ponce repositories or for the local repositories.
LFTP_MIRROR_OPTIONS = "-c mirror --parallel=100 --only-newer --delete"
# Python urllib3 settings used for checking between two changelog files.
# Timeouts allow you to control how long (in seconds) requests are allowed
# to run before being aborted. In simple cases, you can specify a timeout as a float.
# By default, urllib3 will retry requests 3 times and follow up to 3 redirects.
# For more please visit: https://urllib3.readthedocs.io/en/stable/user-guide.html
# to run before being aborted. In simple cases, you can specify a timeout
# as a float. By default, urllib3 will retry requests 3 times and follow
# up to 3 redirects. For more please visit:
# https://urllib3.readthedocs.io/en/stable/user-guide.html
URLLIB_RETRIES = false
URLLIB_REDIRECT = false
URLLIB_TIMEOUT = 3.0