This file is indexed.

/usr/share/gps/plug-ins/cvs.xml is in gnat-gps-common 5.0-13.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
<?xml version="1.0"?>
<!--  Provides support for the CVS configuration management system.

      This file integrates into GPS's VCS support, and uses the same
      menus as all other VCS systems supported by GPS.
      You can easily edit this file to configurat the CVS commands that
      are executed by each of the menus
-->

<GPS>

   <!-- CVS status -->

   <action name="generic_cvs_status" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <shell output="">echo "Querying status for files in %1"</shell>
      <external check-password="true">cvs status $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>VCS.status_parse "CVS" "%1" "$1" FALSE "%3"</shell>
   </action>

   <!-- CVS status dir -->

   <action name="generic_cvs_status_dir" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <shell output="">echo "Querying status for %1"</shell>
      <external check-password="true">cvs status -l .</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>VCS.status_parse "CVS" "%1" "$1" FALSE "%3"</shell>
   </action>

   <!-- CVS tag/branch -->

   <action name="generic_cvs_create_tag" show-command="false" output="" category="">
      <shell>echo "Create tag $2 on $1"</shell>
      <external check-password="true" output="none">cvs tag -c "$2"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
   </action>

   <action name="generic_cvs_create_branch" show-command="false" output="" category="">
      <shell>echo "Create branch $2 on $1"</shell>
      <external check-password="true" output="none">cvs tag -c -b "$2"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
   </action>

   <!-- CVS switch -->

   <action name="generic_cvs_switch" show-command="false" output="" category="">
      <shell>echo "Switch to $2"</shell>
      <external check-password="true" output="none">cvs update -r $2</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
   </action>

   <!-- CVS annotate -->

   <action name="generic_cvs_annotate" show-command="false" output="" category="">
      <shell>echo "Querying annotations for $1"</shell>
      <external check-password="true" output="none">cvs annotate "$1"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell output="none">VCS.annotations_parse "CVS" "$1" "%1"</shell>
   </action>

   <!-- CVS local status -->

   <action name="generic_cvs_local_status" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <shell>Editor.get_buffer "./CVS/Entries"</shell>
      <shell>VCS.status_parse "CVS" "%1" FALSE TRUE "%2"</shell>
   </action>

   <!-- CVS commit -->

   <action name="generic_cvs_commit" show-command="false" output="none" category="">
      <shell output="">echo "Committing file(s) $2-"</shell>
      <shell>dump "$1" TRUE</shell>
      <external check-password="true">cvs commit -F "%1" $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>delete "%2"</shell>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
   </action>

   <!-- CVS add -->

   <action name="generic_cvs_add" show-command="false" output="none" category="">
      <shell output="">echo "adding file(s) $2-"</shell>
      <external check-password="true">cvs add $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>dump "$1" TRUE</shell>
      <external check-password="true">cvs commit -F "%1" $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>delete "%2"</shell>
   </action>

   <!-- CVS add (no commit) -->

   <action name="generic_cvs_add_no_commit" show-command="false" output="none" category="">
      <shell output="">echo "adding (no commit) file(s) $2-"</shell>
      <external check-password="true">cvs add $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
   </action>

   <!-- CVS remove -->

   <action name="generic_cvs_remove" show-command="false" output="none" category="">
      <shell output="">echo "removing file(s) $2-"</shell>
      <shell>delete $2-</shell>
      <external check-password="true">cvs remove $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>dump "$1" TRUE</shell>
      <external check-password="true">cvs commit -F "%1" $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>delete "%2"</shell>
   </action>

   <!-- CVS remove (no commit) -->

   <action name="generic_cvs_remove_no_commit" show-command="false" output="none" category="">
      <shell output="">echo "removing file(s) $2-"</shell>
      <shell>delete $2-</shell>
      <external check-password="true">cvs remove $2-</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
   </action>

   <!-- CVS history -->

   <action name="generic_cvs_history" show-command="false" output="none" category="">
      <shell output="">echo "Querying history for $1"</shell>
      <external check-password="true">cvs status -v "$1"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>VCS.revision_parse "CVS" "$1" "%1"</shell>
      <external check-password="true">cvs log -N "$1"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>VCS.log_parse "CVS" "$1" "%1"</shell>
   </action>

   <action name="generic_cvs_history_text" show-command="false" output="none" category="">
     <shell output="">echo "Querying history for $1"</shell>
     <external check-password="true">cvs log -N "$1"</external>
     <on-failure>
       <shell output="">echo_error "CVS error:"</shell>
       <shell output="">echo_error "%2"</shell>
     </on-failure>
     <shell>base_name "$1"</shell>
     <shell>dump "%2" TRUE</shell>
     <shell>Editor.edit "%1"</shell>
     <shell>Editor.set_title "%2" "Log for %3" "Log for %3"</shell>
     <shell>Editor.set_writable "%3" FALSE</shell>
     <shell>MDI.split_vertically TRUE</shell>
     <shell>delete "%5"</shell>
   </action>

   <action name="generic_cvs_history_rev" show-command="false" output="none" category="">
      <shell output="">echo "Querying history for $2"</shell>
      <external check-password="true">cvs status -v "$2"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>VCS.revision_parse "CVS" "$2" "%1"</shell>
      <external check-password="true">cvs log -N -r$1 "$2"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>VCS.log_parse "CVS" "$2" "%1"</shell>
   </action>

   <!-- CVS update -->

   <action name="generic_cvs_update" show-command="false" output="none" category="">
      <shell>pwd</shell>
      <external check-password="true">cvs update $*</external>
      <on-failure>
	 <shell>Hook "file_changed_on_disk"</shell>
	 <shell>Hook.run %1 null</shell>
	 <shell>VCS.update_parse "CVS" "%3" "%4"</shell>
      </on-failure>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
      <shell>VCS.update_parse "CVS" "%3" "%4"</shell>
   </action>

   <!-- CVS merge -->

   <action name="generic_cvs_merge" show-command="false" output="none" category="">
      <external check-password="true" output="">cvs update -j "$1" "$2"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
   </action>

   <!-- CVS diff -->

   <action name="generic_cvs_diff_patch" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for $2 ..."</shell>
      <external check-password="true">cvs -f diff -N -c -rHEAD "$2"</external>

      <on-failure>
        <shell>dump_file "%1" "$1" FALSE</shell>
      </on-failure>
   </action>

   <action name="generic_cvs_diff_head" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for $1 ..."</shell>
      <external check-password="true">cvs -f diff -rHEAD "$1"</external>

      <on-failure>
	<shell>base_name "$1"</shell>
        <shell>dump "%2" TRUE</shell>
        <shell>File "%1"</shell>
        <shell>File "$1" TRUE</shell>
        <shell>File.name %1</shell>
        <shell>Hook "diff_action_hook"</shell>
        <shell>Hook.run %1 "%2" null %3 %4 "%6 [HEAD]"</shell>
        <shell>delete "%6"</shell>
      </on-failure>
      <shell output="">echo "No differences found."</shell>
   </action>

   <action name="generic_cvs_diff" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for revision $1 of $2 ..."</shell>
      <external check-password="true">cvs -f diff -r $1 "$2"</external>

      <on-failure>
	<shell>base_name "$2"</shell>
        <shell>dump "%2" TRUE</shell>
        <shell>File "%1"</shell>
        <shell>File "$2" TRUE</shell>
        <shell>Hook "diff_action_hook"</shell>
        <shell>Hook.run %1 "$2" null %2 %3 "%5 [$1]"</shell>
        <shell>delete "%5"</shell>
      </on-failure>
      <shell output="">echo "No differences found."</shell>
   </action>

   <action name="generic_cvs_diff_tag" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison for revision $1 of $2 ..."</shell>
      <external check-password="true">cvs -f diff -r $1 "$2"</external>

      <on-failure>
	<shell>base_name "$2"</shell>
        <shell>dump "%2" TRUE</shell>
        <shell>File "%1"</shell>
        <shell>File "$2" TRUE</shell>
        <shell>Hook "diff_action_hook"</shell>
        <shell>Hook.run %1 "$2" null %2 %3 "%5 [$1]"</shell>
        <shell>delete "%5"</shell>
      </on-failure>
      <shell output="">echo "No differences found."</shell>
   </action>

   <action name="generic_cvs_diff2" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison between revisions $1 / $2 of $3 ..."</shell>
      <external check-password="true">cvs -q update -p -r$2 "$3"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>base_name "$3"</shell>
      <shell>dump_file "%2" "%1.[$2]" FALSE</shell>
      <shell>File "%1"</shell>
      <shell>Editor.edit "%2"</shell>
      <shell>Editor.set_title %3 "%4 [$2]" "%4 [$2]"</shell>
      <shell>Editor.set_writable %4 FALSE</shell>
      <shell>VCS.set_reference %5 "$3"</shell>

      <external check-password="true">cvs -f diff -r$1 -r$2 "$3"</external>

      <on-failure>
        <shell>dump "%1" TRUE</shell>
        <shell>File "%1"</shell>
        <shell>Hook "diff_action_hook"</shell>
        <shell>Hook.run %1 "$3" null %9 %2 "%11 [$1]"</shell>
        <shell>delete "%4"</shell>
        <shell>delete "%12"</shell>
      </on-failure>
      <shell output="">echo "No differences found."</shell>
   </action>

   <action name="generic_cvs_diff_base_head" show-command="false" output="none" category="">
      <shell output="">echo "Getting comparison between base and head of $1 ..."</shell>
      <external check-password="true">cvs -q update -p -rHEAD "$1"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>dump "%1" TRUE</shell>
      <shell>File "%1"</shell>

      <external check-password="true">cvs -f diff -rBASE -rHEAD "$1"</external>

      <on-failure>
	<shell>base_name "$1"</shell>
        <shell>dump "%2" TRUE</shell>
        <shell>File "%1"</shell>
        <shell>Hook "diff_action_hook"</shell>
        <shell>Hook.run %1 "$1" null %6 %2 "%4 [BASE]"</shell>
        <shell>delete "%4"</shell>
        <shell>delete "%9"</shell>
      </on-failure>
      <shell output="">echo "No differences found between BASE and HEAD for $1"</shell>
   </action>

   <!-- CVS open -->

   <action name="generic_cvs_open" show-command="false" output="none" category="">
      <shell output="">echo "Opening CVS file $*"</shell>
      <external check-password="true">cvs edit $*</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
      <shell>Editor.edit "$1" 0 0</shell>
   </action>

   <!-- CVS revert -->

   <action name="generic_cvs_revert" show-command="false" output="none" category="">
      <external check-password="true" output="">cvs update -C $*</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>Hook "file_changed_on_disk"</shell>
      <shell>Hook.run %1 null</shell>
   </action>

   <!-- CVS revision -->

   <action name="generic_cvs_revision" show-command="false" output="none" category="">
      <shell output="">echo "Getting $2 at revision $1"</shell>
      <external check-password="true" output="none">cvs -q update -p -r "$1" "$2"</external>
      <on-failure>
         <shell output="">echo_error "CVS error:"</shell>
         <shell output="">echo_error "%2"</shell>
      </on-failure>
      <shell>base_name "$2"</shell>
      <shell>dump "%2"</shell>
      <shell>Editor.edit "%1"</shell>
      <shell>Editor.set_title "%2" "%3 [$1]" "%3 [$1]"</shell>
      <shell>Editor.set_writable "%3" FALSE</shell>
      <shell>delete "%4"</shell>
   </action>

   <!-- CVS -->

   <vcs name="CVS" dir_sep="UNIX"
        absolute_names="FALSE" ignore_file=".cvsignore"
	administrative_directory="CVS">
      <status_files       action="generic_cvs_status"           label="Query status"/>
      <status_dir         action="generic_cvs_status_dir"       label="Query status for directory"/>
      <local_status_files action="generic_cvs_local_status"     label="Local status"/>
      <create_tag         action="generic_cvs_create_tag"       label="Create tag"/>
      <create_branch      action="generic_cvs_create_branch"    label="Create branch"/>
      <switch             action="generic_cvs_switch"           label="Switch tag/branch"/>
      <open               action="generic_cvs_open"             label="Open"/>
      <update             action="generic_cvs_update"           label="Update"/>
      <merge              action="generic_cvs_merge"            label="Merge"/>
      <commit             action="generic_cvs_commit"           label="Commit"/>
      <history            action="generic_cvs_history"          label="View entire revision history"/>
      <history_text       action="generic_cvs_history_text"     label="View entire revision history (as text)"/>
      <history_revision   action="generic_cvs_history_rev"      label="View specific revision history"/>
      <annotate           action="generic_cvs_annotate"         label="Annotations"/>
      <add                action="generic_cvs_add"              label="Add"/>
      <add_no_commit      action="generic_cvs_add_no_commit"    label="Add/No commit"/>
      <remove             action="generic_cvs_remove"           label="Remove"/>
      <remove_no_commit   action="generic_cvs_remove_no_commit" label="Remove/No commit"/>
      <revert             action="generic_cvs_revert"           label="Revert"/>
      <revision           action="generic_cvs_revision"         label="View revision"/>
      <diff_patch         action="generic_cvs_diff_patch"       label="Compare against head revision for building a patch file"/>
      <diff_head          action="generic_cvs_diff_head"        label="Compare against head revision"/>
      <diff_base_head     action="generic_cvs_diff_base_head"   label="Compare base against head"/>
      <diff               action="generic_cvs_diff"             label="Compare against other revision"/>
      <diff_tag           action="generic_cvs_diff_tag"         label="Compare against a tag/branch"/>
      <diff2              action="generic_cvs_diff2"            label="Compare two revisions"/>

      <status label="Up to date" stock="gps-vcs-up-to-date" />
      <status label="Locally modified" stock="gps-vcs-modified" />
      <status label="Needs merge" stock="gps-vcs-needs-merge" />
      <status label="Needs update" stock="gps-vcs-needs-update" />
      <status label="Contains merge conflicts" stock="gps-vcs-has-conflicts" />
      <status label="Removed" stock="gps-vcs-removed" />
      <status label="Added" stock="gps-vcs-added" />

      <parent_revision regexp="(\d+(\.\d+)+)\.\d+\.\d+"/>
      <branch_root_revision regexp="(\d+(\.\d+)+)\.\d+"/>

      <status_parser>
         <regexp>File: (no file )?([^\s]*)\s*Status: (.*?)\n\n *Working revision:\s*([^\s]*).*\n *Repository revision:\s*([^\s]*).*</regexp>

         <file_index>2</file_index>
         <status_index>3</status_index>
         <local_revision_index>4</local_revision_index>
         <repository_revision_index>5</repository_revision_index>

         <status_matcher label="Up to date">Up-to-date</status_matcher>
         <status_matcher label="Locally modified">Locally Modified</status_matcher>
         <status_matcher label="Needs update">Needs Patch</status_matcher>
         <status_matcher label="Needs merge">Needs Merge</status_matcher>
         <status_matcher label="Added">Locally Added</status_matcher>
         <status_matcher label="Removed">Locally Removed</status_matcher>
         <status_matcher label="Removed">Entry Invalid</status_matcher>
         <status_matcher label="Contains merge conflicts">File had conflicts on merge</status_matcher>
      </status_parser>

      <local_status_parser>
         <regexp>/(.+)/(.+?)/.*//(\n|$)</regexp>

         <file_index>1</file_index>
         <local_revision_index>2</local_revision_index>
      </local_status_parser>

      <annotations_parser>
         <regexp>(\d\.\d[^\s]*)[^\(]*\(([^\s]*)[\s]*([^\)]*)\)\:(.*)(\n|$)</regexp>

         <repository_revision_index>1</repository_revision_index>
	 <author_index>2</author_index>
	 <date_index>3</date_index>
         <file_index>4</file_index>
	 <tooltip_pattern>Revision \1 on \3, Author \2</tooltip_pattern>
      </annotations_parser>

      <update_parser>
         <regexp>(^|\n)([UMC])\s+([^\n]+)</regexp>

         <file_index>3</file_index>
         <status_index>2</status_index>

         <status_matcher label="Up to date">U</status_matcher>
         <status_matcher label="Locally modified">M</status_matcher>
         <status_matcher label="Contains merge conflicts">C</status_matcher>
      </update_parser>

      <log_parser>
         <regexp>----------\nrevision ([^\n]+)\ndate: ([^;]+);  author: ([^;]+)[^\n]+(\nbranches: [^;]+;\n|\n)(([^-\n][^\n]+\n|.?.?[^-=][^-=][^-=][^-=][^-=][^\n]*\n)*)</regexp>

         <repository_revision_index>1</repository_revision_index>
	 <author_index>3</author_index>
	 <date_index>2</date_index>
	 <log_index>5</log_index>
      </log_parser>

      <revision_parser>
         <regexp>\t([^ ]+) *\t\((revision:|branch:) (\d+\.\d+)(\.\d+)?\)</regexp>
	 <sym_index>1</sym_index>
	 <repository_revision_index>3</repository_revision_index>
      </revision_parser>
   </vcs>

</GPS>