This is an automated email from the git hooks/post-receive script. dod pushed a commit to branch master in repository libconfig-model-dpkg-perl.
commit eebfbc5e96b964c2bd20e7618d3810737096e6e4 Author: Dominique Dumont <[email protected]> Date: Wed Feb 1 18:10:23 2017 +0100 moved compat element at the beginning.. compat values is used by control do it must be loaded before. Otherwise, computed values inside control will use compat default value instead of the actual value that must be read from file. --- lib/Config/Model/models/Dpkg.pl | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lib/Config/Model/models/Dpkg.pl b/lib/Config/Model/models/Dpkg.pl index e79cbab..7ca3a0f 100644 --- a/lib/Config/Model/models/Dpkg.pl +++ b/lib/Config/Model/models/Dpkg.pl @@ -14,6 +14,13 @@ 'description' => 'This element contains a set of parameters to tune the behavior of this dpkg editor. You can for instance specify e-mail replacements. These parameters are stored in ~/.dpkg-meta.yml or ~/.local/share/.dpkg-meta.yml. These parameters can be applied to all Debian packages you maintain in this unix account.', 'type' => 'node' }, + 'compat', + { + 'default' => '9', + 'description' => 'compat file defines the debhelper compatibility level', + 'type' => 'leaf', + 'value_type' => 'integer' + }, 'control', { 'config_class_name' => 'Dpkg::Control', @@ -118,13 +125,6 @@ details', 'summary' => 'Debian patches applied to original sources', 'type' => 'hash' }, - 'compat', - { - 'default' => '9', - 'description' => 'compat file defines the debhelper compatibility level', - 'type' => 'leaf', - 'value_type' => 'integer' - }, 'dirs', { 'cargo' => { -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libconfig-model-dpkg-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
