summaryrefslogtreecommitdiff
path: root/apt-pkg/aptconfiguration.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2016-01-03 14:53:26 +0100
committerJulian Andres Klode <jak@debian.org>2016-01-03 14:53:26 +0100
commit59f1f42b7507137a10e1dae0636cd3a020a06a0e (patch)
tree2fa2d7cfdb0ad441b00420b504f4dfc21f3db669 /apt-pkg/aptconfiguration.cc
parentf1b9bf7a808edc5562b1d9c307472434c14bde5c (diff)
Change compressor costs to be 100 apart
This will give us the freedom to insert more compressors at positions in between. Also change the cost of uncompressed to 0, as that really has no overhead, and the values do not really mean much.
Diffstat (limited to 'apt-pkg/aptconfiguration.cc')
-rw-r--r--apt-pkg/aptconfiguration.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/apt-pkg/aptconfiguration.cc b/apt-pkg/aptconfiguration.cc
index d37ac2537..a708a77c9 100644
--- a/apt-pkg/aptconfiguration.cc
+++ b/apt-pkg/aptconfiguration.cc
@@ -364,30 +364,30 @@ const Configuration::getCompressors(bool const Cached) {
setDefaultConfigurationForCompressors();
- compressors.push_back(Compressor(".", "", "", NULL, NULL, 1));
+ compressors.push_back(Compressor(".", "", "", NULL, NULL, 0));
if (_config->Exists("Dir::Bin::gzip") == false || FileExists(_config->FindFile("Dir::Bin::gzip")) == true)
- compressors.push_back(Compressor("gzip",".gz","gzip","-6n","-d",2));
+ compressors.push_back(Compressor("gzip",".gz","gzip","-6n","-d",100));
#ifdef HAVE_ZLIB
else
- compressors.push_back(Compressor("gzip",".gz","false", NULL, NULL, 2));
+ compressors.push_back(Compressor("gzip",".gz","false", NULL, NULL, 100));
#endif
if (_config->Exists("Dir::Bin::xz") == false || FileExists(_config->FindFile("Dir::Bin::xz")) == true)
- compressors.push_back(Compressor("xz",".xz","xz","-6","-d",3));
+ compressors.push_back(Compressor("xz",".xz","xz","-6","-d",200));
#ifdef HAVE_LZMA
else
- compressors.push_back(Compressor("xz",".xz","false", NULL, NULL, 3));
+ compressors.push_back(Compressor("xz",".xz","false", NULL, NULL, 200));
#endif
if (_config->Exists("Dir::Bin::bzip2") == false || FileExists(_config->FindFile("Dir::Bin::bzip2")) == true)
- compressors.push_back(Compressor("bzip2",".bz2","bzip2","-6","-d",4));
+ compressors.push_back(Compressor("bzip2",".bz2","bzip2","-6","-d",300));
#ifdef HAVE_BZ2
else
- compressors.push_back(Compressor("bzip2",".bz2","false", NULL, NULL, 4));
+ compressors.push_back(Compressor("bzip2",".bz2","false", NULL, NULL, 300));
#endif
if (_config->Exists("Dir::Bin::lzma") == false || FileExists(_config->FindFile("Dir::Bin::lzma")) == true)
- compressors.push_back(Compressor("lzma",".lzma","lzma","-6","-d",5));
+ compressors.push_back(Compressor("lzma",".lzma","lzma","-6","-d",400));
#ifdef HAVE_LZMA
else
- compressors.push_back(Compressor("lzma",".lzma","false", NULL, NULL, 5));
+ compressors.push_back(Compressor("lzma",".lzma","false", NULL, NULL, 400));
#endif
std::vector<std::string> const comp = _config->FindVector("APT::Compressor");