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