[SCM] Debian native package for Config::Model::Dpkg branch, master, updated. debian/2.036-2-g982706c

Dominique Dumont dod at debian.org
Mon May 6 18:43:46 UTC 2013


The following commit has been merged in the master branch:
commit 982706cc1ef57cd5ea726c3d64dd1037c85f18b0
Author: Dominique Dumont <dod at debian.org>
Date:   Mon May 6 20:43:31 2013 +0200

    Source Option model: added compression and compression-level parameters (Thanks Daniel)

diff --git a/lib/Config/Model/models/Dpkg/Source/Options.pl b/lib/Config/Model/models/Dpkg/Source/Options.pl
index b720623..79e6312 100644
--- a/lib/Config/Model/models/Dpkg/Source/Options.pl
+++ b/lib/Config/Model/models/Dpkg/Source/Options.pl
@@ -37,6 +37,40 @@
         'summary' => 'Perl regexp to extend the diff-ignore setup',
         'type' => 'leaf',
         'description' => 'The perl regular expression specified will extend the default regular expression associated to diff-ignore by concatenating "|regexp" to the default regexp. This option is convenient to exclude some auto-generated files from the automatic patch generation.'
+      },
+      'compression',
+      {
+        'value_type' => 'enum',
+        'summary' => 'Specify  the compression to use for created files (tarballs and diffs).',
+        'upstream_default' => 'gzip',
+        'type' => 'leaf',
+        'description' => 'gzip is the default compression. xz is only supported since dpkg-dev 1.15.5.',
+        'choice' => [
+          'gzip',
+          'gzip2',
+          'lzma',
+          'xz'
+        ]
+      },
+      'compression-level',
+      {
+        'value_type' => 'enum',
+        'summary' => 'Compression level to use.',
+        'type' => 'leaf',
+        'description' => 'Default compression level is 9 for gzip and bzip2, 6 for xz and lzma.',
+        'choice' => [
+          1,
+          2,
+          3,
+          4,
+          5,
+          6,
+          7,
+          8,
+          9,
+          'best',
+          'fast'
+        ]
       }
     ]
   }

-- 
Debian native package for Config::Model::Dpkg



More information about the Pkg-perl-cvs-commits mailing list