1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
#
# This file is part of Config-Model
#
# This software is Copyright (c) 2012 by Dominique Dumont, Krzysztof Tyszecki.
#
# This is free software, licensed under:
#
# The GNU Lesser General Public License, Version 2.1, February 1999
#
[
{
'accept' => [
'Bug-.*',
{
'cargo' => {
'value_type' => 'uniline',
'type' => 'leaf'
},
'type' => 'list',
'accept_after' => 'Bug'
}
],
'read_config' => [
{
'backend' => 'Debian::Dpkg::Patch',
'config_dir' => 'debian/patches'
}
],
'name' => 'Debian::Dpkg::Patch',
'element' => [
'Synopsis',
{
'warn_unless' => {
'empty' => {
'msg' => 'Empty synopsis',
'fix' => '$_ = ucfirst( $self->parent->index_value ) ;
s/-/ /g;
',
'code' => 'defined $_ && /\\w/ ? 1 : 0 ;'
}
},
'value_type' => 'uniline',
'warn_if_match' => {
'.{60,}' => {
'msg' => 'Synopsis is too long. '
}
},
'summary' => 'short description of the patch',
'type' => 'leaf'
},
'Description',
{
'value_type' => 'string',
'type' => 'leaf',
'description' => 'verbose explanation of the patch and its history.'
},
'Subject',
{
'value_type' => 'string',
'type' => 'leaf'
},
'Bug',
{
'cargo' => {
'value_type' => 'uniline',
'type' => 'leaf'
},
'type' => 'list'
},
'Forwarded',
{
'value_type' => 'uniline',
'type' => 'leaf'
},
'Author',
{
'value_type' => 'uniline',
'type' => 'leaf'
},
'Origin',
{
'value_type' => 'string',
'type' => 'leaf'
},
'From',
{
'value_type' => 'uniline',
'type' => 'leaf'
},
'Reviewed-by',
{
'value_type' => 'uniline',
'type' => 'leaf'
},
'Acked-by',
{
'value_type' => 'uniline',
'type' => 'leaf'
},
'Last-Update',
{
'value_type' => 'uniline',
'type' => 'leaf'
},
'Applied-Upstream',
{
'value_type' => 'uniline',
'type' => 'leaf'
},
'diff',
{
'value_type' => 'string',
'summary' => 'actual patch',
'type' => 'leaf',
'description' => 'This element contains the diff that will be used to patch the source. Do not modify.'
}
]
}
]
;
|