File: changelog

package info (click to toggle)
libgtkada 18-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 28,348 kB
  • sloc: ada: 61,514; xml: 7,709; python: 4,310; sh: 2,822; ansic: 1,598; makefile: 240; objc: 160; perl: 70
file content (1157 lines) | stat: -rw-r--r-- 43,748 bytes parent folder | download
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
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
libgtkada (18-2) unstable; urgency=medium

  * Rebuild in unstable for gnat-8 transition.

 -- Nicolas Boulenguez <nicolas@debian.org>  Sat, 27 Oct 2018 15:10:00 +0200

libgtkada (18-1) experimental; urgency=medium

  * New upstream release. No package renaming in experimental.

 -- Nicolas Boulenguez <nicolas@debian.org>  Sat, 9 Jun 2018 17:26:03 +0200

libgtkada (17.0.2017-4) experimental; urgency=medium

  * Rebuild with gnat-8.
    Rename shared library and -dev packages per Debian Ada policy.
    Drop obsolete Break/Replace with older -dev.
  * Delete watch file. Explain why in README.source.
  * Update upstream Home page.
  * Let run time test produce more debug information.

 -- Nicolas Boulenguez <nicolas@debian.org>  Mon, 07 May 2018 14:45:38 +0200

libgtkada (17.0.2017-3) unstable; urgency=medium

  * Break+Replace: previous -dev per Ada policy. Closes: #892148.
  * Standards-Version: 4.1.4.

 -- Nicolas Boulenguez <nicolas@debian.org>  Tue, 24 Apr 2018 16:29:00 +0200

libgtkada (17.0.2017-3~exp1) experimental; urgency=medium

  * update-gtk-gir.diff: use obsolete Gtk-3.0.gir with recent libgtk-dev.
    Implies a new ALI version because the generated Ada have changed, but
    also a new SO version: the new enumeration values will be passed to
    existing callbacks by recent GTK runtimes.
  * Debhelper 11. Move docs to /u/s/doc/libgtkada*-dev.
  * Remove trailing whitespaces in this changelog.
  * Build-Depend: drop obsolete restriction on dpkg-dev version.
  * Standards-Version: 4.1.3 without changes.
  * Update Vcs-Mtn to new monotone URI format.
  * Remove duplicate build flags.
  * Example archive: stop embedding backup file and unreproducible data.

 -- Nicolas Boulenguez <nicolas@debian.org>  Wed, 28 Feb 2018 21:22:51 +0100

libgtkada (17.0.2017-2) unstable; urgency=medium

  * Upload to unstable.
  * Standards-Version: 4.0.1 (no changes).
  * No need to Break/Replace previous -dev depending on previous gnat.

 -- Nicolas Boulenguez <nicolas@debian.org>  Thu, 10 Aug 2017 10:23:57 +0200

libgtkada (17.0.2017-1) experimental; urgency=medium

  * New upstream release built with gnat-7. No ALI/SO bump in experimental.
  * Debhelper 10.
    Let dh and dh_autoreconf generate ./configure.
    Remove explicit rules targets leading dh to run ./configure twice.
  * Standards-Version: 4.0.0.
    DEB_BUILD_OPTIONS=nodoc. HTTPS copyright format URL.
  * Drop obsolete preinst script and Break/Replace: libgtkada2-doc.
  * usr-bin-gnatchop-856274.diff to work-around gnat bug #856274.
  * Sort testgtk tar options, thanks to Steve Langasek. Closes: #831001.
  * gnat-7 handles SOURCE_DATE_EPOCH directly.
  * Allow -doc package to satisfy Multi-Arch: foreign dependencies.
  * Move manpage from excluded docs/ to debian/.
  * Patch testgtk.gpr for usage outside source tree without opengl.

 -- Nicolas Boulenguez <nicolas@debian.org>  Fri, 07 Jul 2017 00:28:23 +0200

libgtkada (16.1.0-1) experimental; urgency=medium

  * New upstream release.
    Bump SO version, rename/break/replace -dev package per Ada policy.
  * Upstream drops support for gtkada-config and pkg-config.
    -dev does not Depend: -bin for gtkada-config nor Suggest: pkg-config.
  * Build-Depend: libfontconfig1-dev because of new binding.
  * build_flags.diff: remove part refused upstream.
  * Ensure that ./configure uses gnatgcc instead of gcc.
  * Enable PIE in hardening flags for executables.
  * Do not bother touching timestamps for C sources.
  * Make watch file more readable with version 4.

 -- Nicolas Boulenguez <nicolas@debian.org>  Thu, 18 Aug 2016 21:49:34 +0200

libgtkada (3.8.3-1) unstable; urgency=medium

  * Build with gnat-6, gprbuild >= 2015, upload to unstable.
  * Enable all hardening flags, but PIE because we build a shared library.
    Let LDFLAGS also affect local libraries in linker command line.
  * Switch from manual -dbg packages to automatic -dbgsym packages.
  * Standards-Version: 3.9.8 (no changes).

 -- Nicolas Boulenguez <nicolas@debian.org>  Tue, 26 Apr 2016 09:25:57 +0200

libgtkada (3.8.3-1~exp1) experimental; urgency=medium

  * New upstream release, built with gnat-5 and linking with gtk-3.
    Rename library and -dev packages per Ada policy.
    Drop Build-Depends: libx11-dev, example_makefiles.patch.
    GNOME support has been removed.
  * Drop OpenGL library until gtkgl2 migrates to GTK3.
  * Rely on upstream GPR-based build system.
    - give GL module the same name as upstream, obsoleting a preinst script.
    - build-flags.diff
    - clean_properly.diff
    - adapt-pkg-config-and-gtkada-config.diff
    - separate project for testgtk as example, keep it as build test.
  * Drop versioned gtkada2 compatibility project. Suggest pkg-config.
  * License switch from GPL-2+ to GPL-3+, now correct in source headers.
    Let license_readme.diff also patch some obsolete headers.
  * Repackage without GFDL documentation, copied and generated sources.
    Drop README.source and get-orig-source target.
    Patch build system to avoid building missing documents.
    Drop Janne Löf from copyright holders, gtkgl was GPL-2+ anyways.
  * Drop XS-Testsuite: autopkgtest, now added by dpkg-source automatically.

 -- Nicolas Boulenguez <nicolas@debian.org>  Sun, 24 Jan 2016 14:41:46 +0100

libgtkada (2.24.4dfsg-2) unstable; urgency=medium

  * Touch generated sources for deterministic ALI files and tar headers.

 -- Nicolas Boulenguez <nicolas@debian.org>  Sun, 03 May 2015 18:14:44 +0200

libgtkada (2.24.4dfsg-1) unstable; urgency=medium

  * Repackage without GFDL documentation. Closes: #768539.
    - control: drop sphinx build-deps and javascript binary-deps.
    - patches/*, rules, libgtkada-doc.*: do not patch/build/install docs.
    - control: update description of -doc package.
    - copyright, README.source: adjust comments about stripped parts.
    - TODO: no hope to generate the reference manual anymore.

 -- Nicolas Boulenguez <nicolas@debian.org>  Sun, 09 Nov 2014 11:10:15 +0100

libgtkada (2.24.4-2) unstable; urgency=medium

  * Avoid Suggesting: -doc (=binary:Version). During binNMUs, -doc is not
    rebuilt, so =binary:Version cannot be satisfied anymore.
  * Standards-Version: 3.9.6 (no changes).

 -- Nicolas Boulenguez <nicolas@debian.org>  Mon, 06 Oct 2014 19:25:08 +0200

libgtkada (2.24.4-1) unstable; urgency=medium

  * New upstream release. Updated repackaging (xz), patches, README.source.
  * Package renamings per Ada policy. Versioned preinst not needed anymore.
  * links: instead of embedding javascript in generated html.
  * lintian-overrides: license not repeated despite file names.
  * rules: run-tests target obsoleted by sadt from devscripts.
  * tests: xvfb-run depends on xauth for Debian tests. Closes: #740742.
  * (Build-)Depends: concrete cairo2-dev before virtual cairo-dev.

 -- Nicolas Boulenguez <nicolas@debian.org>  Sun, 11 May 2014 16:48:22 +0200

libgtkada (2.24.1-14) unstable; urgency=low

  [ Jean-Baptiste Lallement ]
  *  Add missing dependency 'libglu1-mesa-dev | libglu-dev' to
     libgtkglada2.24.1-dev. (LP: #1244896) (Closes: #727753)
     This completes the work-around for  #720991 explained in debian/rules.

  [ Nicolas Boulenguez ]
  * Standards-Version: 3.9.5 without changes.
  * source/options: use default compressor for Debian diff.

 -- Nicolas Boulenguez <nicolas@debian.org>  Thu, 07 Nov 2013 00:33:29 +0100

libgtkada (2.24.1-13) unstable; urgency=low

  * Revert "share library_dir" changes, which sometimes FTBFS: dynamic/static
    variants of same ALI may conflict depending on compilation order.
  * control (Build-Depends): provide concrete mesa-dev before virtual gl-dev.
  * rules: let info page search images in /usr/share/doc/.
    Only duplicate versioned project for -arch and after the first one exists.
  * source.lintian-overrides: correct syntax.

 -- Nicolas Boulenguez <nicolas@debian.org>  Wed, 28 Aug 2013 14:14:04 +0200

libgtkada (2.24.1-12) unstable; urgency=low

  [Martin Pitt <martin.pitt@ubuntu.com]
  * Add missing libgtkgl2.0-dev dependency to libgtkglada2.24.1-dev (spotted
    by autopkgtest). Closes: #718259.
  * debian/tests/control: Add xvfb test dependency.
  * debian/tests/link-with-shared: Run test program through xvfb as it needs a
    $DISPLAY.

  [Nicolas Boulenguez]
  * Remove any symlink in documentation directories.
  * Build-Depends: unversioned cairo-dev and gl-dev.
  * gtkada-config: more efficient generation. Split arch/indep install
    overrides so that sed is only called for existing package.
  * Share library_dir. Use src/tools/obj/, no reason to create ours.
  * Use pkg-config for LDLIBS. I removed it because it created unneeded
    dependencies, but --as-needed drops them automatically now.

 -- Nicolas Boulenguez <nicolas@debian.org>  Mon, 26 Aug 2013 20:14:26 +0200

libgtkada (2.24.1-11) unstable; urgency=low

  * copyright: now machine-readable.
  * lintian-overrides: a patch removing a non DFSG license must contain it
  * rules, patches/01-doc.diff: typo in manpage, COPYING as license.

 -- Nicolas Boulenguez <nicolas@debian.org>  Mon, 22 Jul 2013 19:24:27 +0200

libgtkada (2.24.1-10) unstable; urgency=low

  * Add -lm to the gtkada.gpr link list (Closes: #695055).
    Patch from Thorsten Glaser.

 -- Nicolas Boulenguez <nicolas@debian.org>  Mon, 15 Jul 2013 19:14:24 +0200

libgtkada (2.24.1-9) unstable; urgency=low

  * control: Testsuite field used by automatic checkers. Closes: #692679.
    Removed obsolete DM-Upload-Allowed field.
    Standards-Version: 3.9.3 -> 3.9.4 without changes.
    Build-Depends: explicit direct dependency on pkg-config.
  * tools.gpr: does not need C flags for Ada only sources.
  * debian/*: use my debian mail address.
  * tests: valid test names may not contain underscores.
    And must not write to stderr if successful.
  * Build-Depends, gtkglada.gpr: use libgtkgl-2.0 instead of src/opengl/*.c.
  * rules: updated run-tests target, cosmetic changes in comments.
  * rules, ada_libraries, control, *.gpr: replaced gprbuild with gnatmake.
    Each library needs its own obj subdirectory for each build.
    Order of linker options becomes compatible with architectures where
    --as-needed is the default.
   I hope that is Closes: #695055 and various shlibs-symbol-not-found.

 -- Nicolas Boulenguez <nicolas@debian.org>  Tue, 11 Jun 2013 11:05:41 +0200

libgtkada (2.24.1-8) unstable; urgency=low

  * debian/patches/no_gtkextra.patch: revive, upstream's testgtk still
    depends on GtkExtra which is dead upstream and no longer in Debian.
    Closes: #686781.
  * debian/patches/04-testgtk.patch (testgtk.gpr): force linking with
    libGLU.so since libgtkglada.so is not linked to it.

 -- Ludovic Brenta <lbrenta@debian.org>  Wed,  5 Sep 2012 22:51:30 +0200

libgtkada (2.24.1-7) unstable; urgency=low

  * debian/control (Build-Depends): tighten to gprbuild (>= 2011-2).
    Fixes FTBFS caused by #679061.

 -- Ludovic Brenta <lbrenta@debian.org>  Tue, 26 Jun 2012 21:39:40 +0200

libgtkada (2.24.1-6) unstable; urgency=low

  * control: Build-Depend dpkg-dev (>= 1.16.2) so that build-arch is
    preferred to build, see http://wiki.debian.org/Build-Depends-Indep
    (this caused a FTBS on mips/mipsel).
  * rules: prepend CPPFLAGS to CFLAGS before exporting to projects
    (hardening preprocessor flags were ignored).

 -- Nicolas Boulenguez <nicolas.boulenguez@free.fr>  Fri, 22 Jun 2012 21:23:55 +0200

libgtkada (2.24.1-5) unstable; urgency=low

  [Nicolas Boulenguez]
  * rules, *.gpr, ada_libraries: switched to dh_ada_library.
  * rules, control, compat: dh (>= 9) should handle build target.
  * control: Standards-Version: 3.9.3 (no changes)
    -dev packages cannot be Multi-Arch: same as they embed a project file
    whose content mentions lib/TRIPLET subdirectories (Closes: #669998).
    -dbg packages can be Multi-Arch: same without Pre-Depends as they do not
    need the linker at install time.
  * rules:
    Standard /usr/share/dpkg/default.mk from dpkg-dev (>= 1.16.1)
    Gprbuild now selects gnatgcc instead of gcc automatically.
  * tests: import versioned project, to test both versions in one go.
  * patches/include_only_glib_h: documented.

  [Ludovic Brenta]
  * Build-Depend: dh-ada-library >= 2 to avoid a bug affecting gtkada.

 -- Nicolas Boulenguez <nicolas.boulenguez@free.fr>  Thu, 10 May 2012 23:49:34 +0200

libgtkada (2.24.1-4) unstable; urgency=low

  [Nicolas Boulenguez]
  * Internal dependencies are very redundant because the package names
    contain version numbers. We generate them with deb-substvars to ease
    next ali or so version bump. This implies a lintian override.
  * Correct -v option in test.

  [Ludovic Brenta]

  * debian/patches/include_only_glib_h.patch: new.  Closes: #665570.

 -- Ludovic Brenta <lbrenta@debian.org>  Sat, 24 Mar 2012 23:45:17 +0100

libgtkada (2.24.1-3) unstable; urgency=low

  [Nicolas Boulenguez]
  * debian/control: remove dependencies on ada-compiler virtual package.

  [Ludovic Brenta]
  * debian/rules: do not compile with -gnatE (dynamic elaboration checks).

 -- Ludovic Brenta <lbrenta@debian.org>  Sat, 11 Feb 2012 13:20:35 +0100

libgtkada (2.24.1-2) unstable; urgency=low

  * debian/control: add Breaks and Replaces clauses for all -dev packages.

 -- Ludovic Brenta <lbrenta@debian.org>  Sun, 15 Jan 2012 21:08:53 +0100

libgtkada (2.24.1-1) unstable; urgency=low

  * New upstream release (revision 175477).
  * Package renamings pursuant to Debian Policy for Ada:
    libgnomeada2.24.0     -> libgnomeada2.24.1
    libgnomeada2.24.0-dev -> libgnomeada2.24.1-dev
    libgtkada2.24.0       -> libgtkada2.24.1
    libgtkada2.24.0-dev   -> libgtkada2.24.1-dev
    libgtkglada2.24.0     -> libgtkglada2.24.1
    libgtkglada2.24.0-dev -> libgtkglada2.24.1-dev
  * debian/patches/01-doc.patch: refresh.

 -- Ludovic Brenta <lbrenta@debian.org>  Sun, 15 Jan 2012 15:13:25 +0100

libgtkada (2.24.0-4) unstable; urgency=low

  * control: Replaces: and Breaks: former packages with conflicting files:
    libgtkada2-bin, libgtkada2-doc. Closes: #651543.

 -- Nicolas Boulenguez <nicolas.boulenguez@free.fr>  Mon, 12 Dec 2011 17:55:37 +0100

libgtkada (2.24.0-3) unstable; urgency=low

  * rules: typo (gcc was used instead of gnatgcc)
  * README.*, libgtkada-doc.examples, source/local-options:
    restored four files ignored by mtn
  * .mtn-ignore: patched to avoid this from now on
  * watch: style in comment

 -- Nicolas Boulenguez <nicolas.boulenguez@free.fr>  Fri, 09 Dec 2011 22:36:52 +0100

libgtkada (2.24.0-2) unstable; urgency=low

  * debian/rules (build): do nothing.  This makes debian/rules compatible
    with architecture-dependent-only and architecture-independent-only
    builds (dpkg-buildpackage -B, -A).

 -- Ludovic Brenta <lbrenta@debian.org>  Wed,  7 Dec 2011 22:28:38 +0100

libgtkada (2.24.0-1) unstable; urgency=low

  [Nicolas Boulenguez]
  * New upstream release.
  * Rename the source package from libgtkada2 to libgtkada.
  * Package renamings pursuant to Debian Policy for Ada:
    libgnomeada2.14.2      -> libgnomeada2.24.0
    libgnomeada2.14.2-dbg  -> libgnomeada-dbg
    libgnomeada2.14.2-dev  -> libgnomeada2.24.0-dev
    libgtkada-gl2.14.2     -> libgtkglada2.24.0
    -                      -> libgtkglada-dbg       (new package)
    -                      -> libgtkglada2.24.0-dev (new package)
    libgtkada-glade2.14.2  -> (removed, support dropped upstream)
    libgtkada2-bin         -> libgtkada-bin
    libgtkada2-doc         -> libgtkada-doc
    libgtkada2.14.2        -> libgtkada2.24.0
    libgtkada2.14.2-dbg    -> libgtkada-dbg
    libgtkada2.14.2-dev    -> libgtkada2.24.0-dev
  * Build with gnat-4.6.
  * Switch to dpkg-source 3.0 (quilt) format
  * control: (Homepage) added
     (Architecture) "any" instead of an explicit list
     (Section) avoided redundancy between source and binaries
     (Standard-Versions) 3.9.2
     Conflicts/Replaces removed with gcc change, due to debian-ada-policy.
  * copyright: DEP-5
  * patches: DEP-3
  * lintian override: GNAT needs an executable stack
  * watch: explains why uscan won't work.
  * doc-base registrations
  * patch to compile with hardening flags, new dpkg default.
  * bypass upstream build system, that was not intended to build
    two versions of the libraries at the same time.  Closes: #585611.

  [Ludovic Brenta]
  * control (Uploaders): add Nicolas.
    (DM-Upload-Allowed): yes.

 -- Ludovic Brenta <lbrenta@debian.org>  Tue,  6 Dec 2011 23:31:12 +0100

libgtkada2 (2.14.2-5) unstable; urgency=low

   * Interim upload before the transition to gnat-4.6.
   * debian/gnomeada2.gpr: correct an embarrassing thinko.  Closes: #646115.
   * debian/control (Build-Depend, Depend): remove gnat, which has
     transitioned to 4.6 and b-d on gnat-4.4 instead.

 -- Ludovic Brenta <lbrenta@debian.org>  Fri, 21 Oct 2011 22:48:13 +0200

libgtkada2 (2.14.2-4) unstable; urgency=low

  * debian/patch/example_makefiles.patch: new.  Thanks, Olivier Henley.
  * debian/rules (configure-stamp): correct the paths. Closes: #587533.

 -- Ludovic Brenta <lbrenta@debian.org>  Thu,  8 Jul 2010 10:55:03 +0200

libgtkada2 (2.14.2-3) unstable; urgency=low

  * debian/control (Architecture): add armel.  Closes: #568442.
    (Standards-Version): bump to 3.8.4 with no changes required.
    (*-dev): depend on gnat, ada-compiler.
    (*-doc, *-dbg, *-bin): suggest gnat, ada-compiler.
    (*-bin): recommend glade, not glade-2.
             Change the short description (lintian warning).
    (XS-VCS-*): replace with VCS-* (lintian warning).
    (Depends): add ${misc:Depends} everywhere (lintian warning).

  * debian/rules:
    (libgtkada2.14.2-dev): generate gtkada.gpr and gnomeada.gpr
    from gtkada2.gpr and gnomada2.gpr. Closes: #580118.
    (binary-arch): fix a thinko (lintian warning).

  * Fix lintian errors:
    ancient-autotools-helper-file config.guess 2001-09-04
    ancient-autotools-helper-file config.sub 2001-09-04
    - debian/control (Build-Depends): add autotools-dev.
    - debian/rules (clean): delete the two files.
      (configure-stamp): symlink them from /usr/share/misc, provided by
      autotools-dev.
  See also #585611.

 -- Ludovic Brenta <lbrenta@debian.org>  Sat, 12 Jun 2010 12:59:08 +0200

libgtkada2 (2.14.2-2) unstable; urgency=low

  [Nicolas Boulenguez]
  * debian/patches/02-commands.patch: Call gate2-in.exe in the location
    where debian/rules installs it.

 -- Ludovic Brenta <lbrenta@debian.org>  Sat, 24 Apr 2010 11:20:38 +0200

libgtkada2 (2.14.2-1) unstable; urgency=low

  [Olivier Scalbert]
  * New upstream version taken from Subversion revision 149669
    (gtkada-2.14.2-branchpoint).  Closes: #542417.
  * debian/patches/rename_gdialog_to_gtkada-dialog.patch: remove, merged upstream.
  * debian/patches/02-commands.patch,
    debian/patches/04-testgtk.patch,
    debian/patches/gtkada-config.patch,
    debian/patches/no_gtkextra.patch: adjust to new upstream release.
  * Do not built against libgtk+2.0-extra.  Closes: #534872.

  [Ludovic Brenta]
  * Migrate to gnat-4.4.  Closes: #560177.
  * debian/control (Architectures): remove alpha (see http://gcc.gnu.org/PR42073).
    (Section): move -dbg packages to debug.
    (Description): s/Ada 95/Ada/g.
    (Build-Depends): move some dependencies to...
    (Build-Depends-Indep): here.  Also add texlive-fonts-recommended and
    texlive-latex-base, needed for proper generation of the documentation.
  * -dev package renamings per Debian Policy for Ada:
    libgtkada2-dev          -> libgtkada2.14.2-dev
    libgnomeada2-dev        -> libgnomeada2.14.2-dev
  * Shared library package renamings due to new soname:
    libgtkada2.12           -> libgtkada2.14.2
    libgnomeada2.12         -> libgnomeada2.14.2
    libgtkada-glade2.12     -> libgtkada-gl2.14.2
    libgtkada-gl2.12        -> libgtkada-gl2.14.2
  * Debugging symbols package renamings due to new soname:
    libgtkada2.12-dbg       -> libgtkada2.14.2-dbg
    libgnomeada2.12-dbg     -> libgnomeada2.14.2-dbg
  * debian/rules:
    - extract aliversion and soversion from debian/control.
    - convert .gif to .png for inclusion in the PDF version of the doc.
    - separate build-arch from build-indep to support dpkg-buildpackage -A and -B.
  * debian/patches/compiler_options.patch: build without -fstack-check which
    is broken in gnat-4.4 on x86 (see http://gcc.gnu.org/PR20548).
  * debian/patches/sonames.patch: use the full three-part version number as
    the soversion.
  * debian/patches/01-doc.patch:
    - Move the Info documentation to "GNU Ada Tools".
    - Rename gtkada_{ug,rm} to gtkada2_{ug,rm}.
    - Correct the version number in the documentation.
    - Correct the license of the documentation from GFDL with invariant
      sections to GPLv2 or later, as required by upstream who claims that
      everything on libre.adacore.com, including the Subversion repository,
      is pure GPL.
  * debian/patches/linker_options.patch: new:
    - link libgnomeada2.so, libgtkada_glade2.so and libgtkada2_gl.so against
      libgtkada2.so.
    - link all libraries against libgnat.so.
    - link libgtkada2.so and libgtkada2_gl.so against libX11.so.
    - pass --as-needed to the linker to eliminate unneeded dependencies.

 -- Ludovic Brenta <lbrenta@debian.org>  Mon, 28 Dec 2009 15:24:01 +0100

libgtkada2 (2.12.0-4) unstable; urgency=low

  [Michael Trim]
  * debian/patches/rename_gdialog_to_gtkada-dialog.patch: new; rename
    the gdialog binary to gtkada-dialog.  Avoids a conflict with the
    gdialog binary provided by zenity.  Patch from upstream
    Subversion revision 146020.  Closes: #497464.
  * debian/patches/sonames.patch,
    debian/patches/object_directories.patch,
    debian/patches/01-doc.patch,
    debian/control,
    debian/rules: adjust to apply to gtkada-dialog instead of gdialog.

  [Ludovic Brenta]
  * debian/control:
    - use ${binary:Version} instead of ${source:Version}.
    - (Standards-Version): update to 3.8.2 with no changes required.
  * debian/README.Debian: update some version numbers and fix typos.

 -- Ludovic Brenta <lbrenta@debian.org>  Sat, 20 Jun 2009 15:14:18 +0200

libgtkada2 (2.12.0-3) unstable; urgency=low

  * debian/patches/gtkada-config.patch: new; adjust the output of
    gtkada-config to Debian.  Closes: #497407.

 -- Ludovic Brenta <lbrenta@debian.org>  Sun,  1 Mar 2009 19:39:21 +0100

libgtkada2 (2.12.0-2) unstable; urgency=low

  * Correct the project files to add a Library_ALI_Dir and correct the
    Library_Name.

 -- Ludovic Brenta <lbrenta@debian.org>  Thu, 31 Jul 2008 18:10:47 +0200

libgtkada2 (2.12.0-1) unstable; urgency=low

  * New upstream version taken from Subversion revision 125361.
    Closes: #475743, #490418.
  * Apply patch from Raphaël Hertzog to become compliant with source
    format 3.0.  Update Standards-Version to 3.8.0. Closes: #485097.
  * debian/patches/*.patch: adjust to the new upstream release.
  * debian/control (libgtkada2-dbg, libgnomeada2-dbg): change priority to
    extra to match the overrides file.
  * debian/rules (DH_COMPAT): move to a new debian/compat file.
    (SHELL): remove, become compatible with dash.
    Adjust to the new upstream version.
  * testgtk/testgtk.mak: merge into debian/patches/04-testgtk.patch.
  * debian/patches/03-dgate.patch,
    debian/patches/05-ia64.patch.patch,
    debian/patches/06-415137.patch: remove, obsolete.
  * debian/patches/00-makefiles.patch: split into several smaller patches.

 -- Ludovic Brenta <lbrenta@debian.org>  Tue, 22 Jul 2008 23:21:37 +0200

libgtkada2 (2.8.1-6) unstable; urgency=low

  * Gratefully acknowledge the non-maintainer upload.  Thanks, Kees.
  * patches/02-commands.patch (gtkada-config): fix the directory for .ali
    files.  Closes: #402505.
  * patches/06-415137.patch: new.  Closes: #415137.
  * debian/gtkada2.gpr: clarify the documentation, and replace the &
    concatenation operator, which was incorrect, with a comma which is
    correct.  Closes: #435440.

 -- Ludovic Brenta <lbrenta@debian.org>  Thu,  3 Aug 2007 00:09:37 +0200

libgtkada2 (2.8.1-5.1) unstable; urgency=low

  * Non-maintainer upload.
  * debian/control: tetex->texlive transition to fix FTBFS (Closes: #421140).

 -- Kees Cook <kees@outflux.net>  Wed, 23 May 2007 13:25:51 -0700

libgtkada2 (2.8.1-5) unstable; urgency=low

  * patches/00-makefiles.patch: pass @CFLAGS@ to configure, instead of the
    hardcoded flags.
  * debian/control (libgtkada2-dbg, libgnomeada2-dbg): new packages for the
    detached debugging symbols.  Closes: #411450.
  * debian/rules (binary-arch): build them.  Bump DH_COMPAT to 5.  Use all
    available processors when building.

 -- Ludovic Brenta <lbrenta@debian.org>  Mon, 19 Feb 2007 11:06:01 +0100

libgtkada2 (2.8.1-4) unstable; urgency=low

  * Clean up the diff.gz, it was preventing 00-makefiles.patch from
    applying cleanly.

 -- Ludovic Brenta <lbrenta@debian.org>  Sat,  7 Oct 2006 21:34:33 +0200

libgtkada2 (2.8.1-3) unstable; urgency=low

  * patches/00-makefiles.patch (src/Makefile.in (obj-tools)): do not depend
    on glade, because that would build a static library from the PIC object
    files.
  * patches/05-ia6.patch: new, fixes FTBFS on ia64.

 -- Ludovic Brenta <lbrenta@debian.org>  Sat,  7 Oct 2006 15:20:59 +0200

libgtkada2 (2.8.1-2) unstable; urgency=medium

  * debian/control (Build-Depend): add tetex-bin, now necessary for the docs.
    Fixes FTBFS.

 -- Ludovic Brenta <lbrenta@debian.org>  Tue, 26 Sep 2006 22:21:31 +0200

libgtkada2 (2.8.1-1) unstable; urgency=low

  * New upstream release.  Closes: #358300, #380587.
  * debian/control:
    - (Maintainer): change email address: now a full DD!
    - (Build-Depends): add gnat (>= 4.1) and quilt.
    - New ABI; rename library packages to -2.8 instead of -2.4.
    - (Standards-Version): bump to 3.7.2 with no changes.
    - (libgtkada2-dev, libgnomeada2-dev): Depend on gnat-4.1.
    - (Architecture): set to alpha amd64 hppa kfreebsd-i386 i386
      ia64 powerpc s390 sparc.
    - (libgtkada2-bin): new package.  Closes: #299482.
  * debian/rules:
    - (patch-stamp, unpatch): use quilt.
    - split the utilities into their own package, for multilib support.
  * debian/*.patch: move to patches/*.patch; update.
  * debian/00-makefiles.patch:
    - change the sonames as described in README.Debian
    - do not link the library object files statically into dgate, gdialog.
    - place the object files in separate directories for the static and
      shared (-fPIC) libraries, avoiding the need to delete them.
  * debian/README.Debian: explain the change of license to pure GPL.

 -- Ludovic Brenta <lbrenta@debian.org>  Tue, 12 Sep 2006 22:32:04 +0200

libgtkada2 (2.4.0-8) unstable; urgency=low

  * debian/control: Build-depend on libglu1-xorg-dev | libglu1-mesa-dev
    instead of xlibmesa-glu-dev | libglu-dev, due to the recent upload of
    X.org 6.9.

 -- Ludovic Brenta <ludovic@ludovic-brenta.org>  Tue,  2 May 2006 19:44:02 +0200

libgtkada2 (2.4.0-7) unstable; urgency=low

  * debian/rules (regexp): accept any character in the Debian upload
    number.  Closes: #359897.

 -- Ludovic Brenta <ludovic@ludovic-brenta.org>  Sat,  1 Apr 2006 12:48:49 +0200

libgtkada2 (2.4.0-6) unstable; urgency=low

  * Add kfreebsd-i386 to the list of supported architectures.  Thanks,
    Aurélien Jarno.  Build-depend on gnat (>= 3.15p-19).  Closes: #345086.

 -- Ludovic Brenta <ludovic@ludovic-brenta.org>  Sat,  7 Jan 2006 18:28:15 +0100

libgtkada2 (2.4.0-5) unstable; urgency=low

  * Change maintainer's email address.

 -- Ludovic Brenta <ludovic@ludovic-brenta.org>  Fri, 26 Aug 2005 15:37:11 +0000

libgtkada2 (2.4.0-4) unstable; urgency=low

  * debian/rules (binary-arch): fix lintian warning, missing-depends-line
    on libgtkada-2.4, by calling dh_shlibdeps.
  * debian/rules (clean): removes files that are generated during build.
  * debian/README.Debian: update to new package names.
  * The previous upload also Closes: #295919.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Sun,  6 Mar 2005 17:09:52 +0100

libgtkada2 (2.4.0-3) unstable; urgency=low

  * debian/libgtkada2-dev.preinst: new; remove
    /usr/share/doc/libgtkada2-dev -> libgtkada2-0.  Closes: #295918.
  * debian/control: fix typos in Recommends.
  * Thanks to Aaron M. Ucko for reporting the two above bugs.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Sat, 19 Feb 2005 16:20:45 +0100

libgtkada2 (2.4.0-2) unstable; urgency=low

  * The sonames of the shared libraries have changed.  Change binary
    package names (with Conflicts and Replaces):
    libgnomeada2     -> libgnomeada-2.4
    libgtkada2-0     -> libgtkada-2.4
    libgtkada2-gl    -> libgtkada-gl-2.4
    libgtkaga2-glade -> libgtkada-glade-2.4
    Closes: #293652.
  * The upstream release also Closes: #249663, #249664, #272663.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Sat,  5 Feb 2005 23:44:37 +0100

libgtkada2 (2.4.0-1) unstable; urgency=low

  * New upstream version.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Tue,  4 Jan 2005 07:49:46 +0100

libgtkada2 (2.2.1-7) unstable; urgency=low

  * debian/sourceforge_960804.patch: new patch to solve a bug in gtkextra:
    not possible to type capital letters with shift.
  * debian/rules: symlink /usr/bin/gate2 to /usr/bin/gate, per user
    request.  Also link dgate2 to dgate.  Closes: #273228.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Tue, 28 Sep 2004 18:06:06 +0200

libgtkada2 (2.2.1-6) unstable; urgency=low

  * debian/rules: fix typo, /use -> /usr.  Closes: #269010.
  * debian/rules: export SHELL=/bin/bash, we use bashisms.
  * debian/watch: new file, per request from Matthias Klose.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Tue, 31 Aug 2004 20:21:42 +0200

libgtkada2 (2.2.1-5) unstable; urgency=low

  * Acknowledge NMU.
  * gtk-marshallers.adb: Made code compliant with AI-229.
    Closes: #249665.
  * Apply patch from Jeffrey Creem so we can compile against GTK+ 2.4.
  * Handle dots in build numbers, for future NMUs.
  * Compile gl_h.ads and glu_h.ads; provide the corresponding .ali files.
  * Provide a Makefile and a project file for testgtk, suitable for use
    with /usr/share/ada/adainclude/gtkada2.gpr.
  * libgtkada2-dev: split into libgtkada2-dev and libgnomeada2-dev, so
    that libgtkada2-dev does not depend on GNOME.  Closes: #258733.
  * Update Standards-Version to 3.6.1.1.
  * Build-Depend on libpopt-dev.
  * Build-Depend on debhelper (>= 4.2.13) instead of (>> 4.1.0), so we
    don't have to chmod the *.ali files anymore.  Remove the postinst
    scripts.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Sun, 18 Jul 2004 12:13:13 +0200

libgtkada2 (2.2.1-4) unstable; urgency=low

  * Recompile with gnat 3.15p-7 in a new chroot.  Closes: #233911.
    (-4, because debian/rules cannot handle NMU versions).

 -- Matthias Klose <doko@debian.org>  Sun,  7 Mar 2004 09:51:19 +0100

libgtkada2 (2.2.1-3) unstable; urgency=low

  * Recompile with gnat 3.15p-7.  Closes: #233911.
  * Do not provide the INSTALL file; fixes a lintian warning.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Mon, 23 Feb 2004 16:04:33 +0100

libgtkada2 (2.2.1-2) unstable; urgency=low

  * Install /usr/bin/gtkada-config as a symlink to
    /usr/bin/gtkada2-config.  Closes: #225117.
  * Install documentation files, the user's guide and reference manuals in
    /usr/share/doc/libgtkada2-doc; not /usr/share/doc/libgtkada2.
  * Conflict with, and Replace, libgtkada1-dev.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Thu, 12 Feb 2004 16:59:45 +0100

libgtkada2 (2.2.1-1) unstable; urgency=low

  * New upstream version.
  * Move /usr/bin/gate2-in.exe to /usr/lib/ada/adalib/gtkada2/bin/, so we
    don't need to provide a man page for it.
  * generate.pl: rename to generate2 instead of generate2.pl, as per
    Debian policy.
  * Provide a manpage for generate2.
  * Provide a manpage for gdialog2.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Thu, 27 nov 2003 02:18:20 +0100

libgtkada2 (2.2.0-7) unstable; urgency=low

  * Add texinfo to the build dependencies.

 -- Matthias Klose <doko@debian.org>  Mon, 17 Nov 2003 23:15:10 +0100

libgtkada2 (2.2.0-6) unstable; urgency=low

  * Move man pages from the -doc to the -dev package.

 -- Matthias Klose <doko@debian.org>  Wed, 12 Nov 2003 00:50:43 +0100

libgtkada2 (2.2.0-5) unstable; urgency=low

  * Fixed gtkada2-config; it gave a wrong path for the *.ali files.
  * Added testgtk in -doc as part of the examples.
  * Added a project file, /usr/share/ada/adainclude/gtkada2.gpr.
  * Do not compress the source code for the examples, otherwise the user
    can't compile them.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Thu, 11 Sep 2003 10:16:53 +0200

libgtkada2 (2.2.0-4) unstable; urgency=low

  * The *.ali files for glib, gdk, gtk, and pango were missing from
    /usr/lib/ada/adalib/gtkada2.
  * Do not remove debugging symbols from static libraries.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Thu, 21 Aug 2003 20:07:48 +0200

libgtkada2 (2.2.0-3) unstable; urgency=low

  * Moved *.ad[bs] to /usr/share/ada/adainclude/gtkada2.
  * Moved *.ali to /usr/lib/adalib/gtkada2.
  * Reflected above changes in gtkada2-config.
  * Explicitly link libgtkada2.so against libgnat-3.15p.so.1, so that
    libgtkada2-0 depends on libgnat-3.15p-1 (dh_shlibdeps takes care of
    that).
  * Same for libgtkada2-gl, libgtkada2-glade, and libgtkada2-gnome.
  * Restrict architectures to i386 powerpc sparc because gnat only exists
    there.
  * libgtkada2-dev now Depends on gnat (>= 3.15p).
  * The above changes are to comply with Florian Weimer's recommended GNU
    Ada Environment Specification
    (http://cert.uni-stuttgart.de/files/ada/gnae)
  * Build-Depend on perl, needed to generate HTML documentation.
  * Rebuild the static library without -fPIC.
  * Bump Standards-Version to 2.6.0 (from 2.5.8)

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Tue, 19 Aug 2003 12:49:31 +0200

libgtkada2 (2.2.0-2) unstable; urgency=low

  * New support binaries in /usr/bin: gate2, dgate2, gtkada2-config,
    generate2.pl, and gate2-in.exe.

  * New binary package libgtkada2-doc with full documentation in ASCII,
    HTML and Info formats (no PostScript).

  * Added missing files to /usr/include/gtkada2: *.ad[bs]

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Fri,  1 Aug 2003 17:02:54 +0200

libgtkada2 (2.2.0-1) unstable; urgency=low

  * Renamed the packages and libraries to libgtkada2 instead of
    libgtkada1 to prevent conflicts; both versions may be installed.
  * Compiled with, and build-depends on, gnat-3.15p-1 which I packaged.
  * Changed the Makefile.in's to use $(ADAC) instead of $(CC) when
    compiling Ada source code.
  * Removed package libgtkada-art.

 -- Ludovic Brenta <ludovic.brenta@insalien.org>  Mon, 21 Jul 2003 04:39:54 +0200

libgtkada (1.2.12-7) unstable; urgency=low

  * Fix doc-base. Closes: #137526.

 -- Samuel Tardieu <sam@debian.org>  Thu, 14 Mar 2002 19:31:17 +0100

libgtkada (1.2.12-6) unstable; urgency=low

  * Fix dependency problems.

 -- Samuel Tardieu <sam@debian.org>  Tue, 19 Feb 2002 10:27:00 +0100

libgtkada (1.2.12-5) unstable; urgency=low

  * Recompile with GNAT 3.14p.

 -- Samuel Tardieu <sam@debian.org>  Mon,  4 Feb 2002 13:26:36 +0100

libgtkada (1.2.12-4) unstable; urgency=low

  * Include dgate in the distribution (it is not included by default
    in upstream package).

 -- Samuel Tardieu <sam@debian.org>  Tue,  6 Nov 2001 12:22:38 +0100

libgtkada (1.2.12-3) unstable; urgency=low

  * Fix location of gate-in.exe. Closes: #103333.

 -- Samuel Tardieu <sam@debian.org>  Wed,  4 Jul 2001 18:48:34 +0200

libgtkada (1.2.12-2) unstable; urgency=low

  * Add missing -I in gtkada-config.

 -- Samuel Tardieu <sam@debian.org>  Sat, 16 Jun 2001 13:21:59 +0200

libgtkada (1.2.12-1) unstable; urgency=low

  * New upstream version.
  * Reinstate gdialog, but call it gtkada-gdialog. Closes: #94358.

 -- Samuel Tardieu <sam@debian.org>  Thu, 14 Jun 2001 10:50:36 +0200

libgtkada (1.2.11-2) unstable; urgency=low

  * Create separate packages for libgnomeada and libgtkada_glade, since
    they drag in huge dependencies that are useless in many cases.
    Closes: #89799.

 -- Samuel Tardieu <sam@debian.org>  Fri, 16 Mar 2001 13:48:26 +0100

libgtkada (1.2.11-1) unstable; urgency=low

  * New upstream version.
  * Use debhelper instead of yada.

 -- Samuel Tardieu <sam@debian.org>  Mon, 12 Mar 2001 18:31:48 +0100

libgtkada (1.2.10-7) unstable; urgency=low

  * Require gnat (>=3.13p-3) for building so that the correct shlibs
    information is included when autobuilder pick this package up.

 -- Samuel Tardieu <sam@debian.org>  Mon, 29 Jan 2001 12:29:34 +0100

libgtkada (1.2.10-6) unstable; urgency=low

  * Make yada executable. Closes: #83137.

 -- Samuel Tardieu <sam@debian.org>  Mon, 22 Jan 2001 14:27:47 +0100

libgtkada (1.2.10-5) unstable; urgency=low

  * Use libgl-dev instead of mesag-dev in the Build-Depends.

 -- Samuel Tardieu <sam@debian.org>  Wed, 17 Jan 2001 22:14:19 +0100

libgtkada (1.2.10-4) unstable; urgency=low

  * Change shlibs to reference at least 1.2.10-3, which is binary
    compatible with this release.

 -- Samuel Tardieu <sam@debian.org>  Thu, 14 Dec 2000 20:06:38 +0100

libgtkada (1.2.10-3) unstable; urgency=low

  * Dependencies were not correct.
  * Use new yada.

 -- Samuel Tardieu <sam@debian.org>  Thu, 14 Dec 2000 18:28:18 +0100

libgtkada (1.2.10-2) unstable; urgency=low

  * Do not install gdialog as it is also part of gnome-utils. Closes: #78998.
  * Pixbuf is now integrated. Closes: #71353.
  * Restrict list of platforms to the one of GNAT. Closes: #78631.

 -- Samuel Tardieu <sam@debian.org>  Thu,  7 Dec 2000 14:34:17 +0100

libgtkada (1.2.10-1) unstable; urgency=low

  * New upstream release.

 -- Samuel Tardieu <sam@debian.org>  Tue, 28 Nov 2000 11:37:43 +0100

libgtkada (1.2.8-3) unstable; urgency=low

  * Use libgdk-pixbuf-dev. Closes: #71353.

 -- Samuel Tardieu <sam@debian.org>  Fri, 27 Oct 2000 19:02:24 +0200

libgtkada (1.2.8-2) unstable; urgency=low

  * Fix doc installation. Not sure of the fix though. Please check and
    reopen if needed. Closes: #69569.

 -- Samuel Tardieu <sam@debian.org>  Wed, 30 Aug 2000 13:11:46 +0200

libgtkada (1.2.8-1) unstable; urgency=low

  * New upstream release.

 -- Samuel Tardieu <sam@debian.org>  Thu,  3 Aug 2000 14:54:01 +0200

libgtkada (1.2.7-3) unstable; urgency=low

  * Recompile to use the latest GNAT. Closes: #65314.

 -- Samuel Tardieu <sam@debian.org>  Wed,  7 Jun 2000 15:55:15 +0200

libgtkada (1.2.7-2) unstable; urgency=low

  * Suggests glade instead of Recommending it. Closes: #60961.

 -- Samuel Tardieu <sam@debian.org>  Mon,  5 Jun 2000 18:35:17 +0200

libgtkada (1.2.7-1) unstable; urgency=low

  * New upstream release.

 -- Samuel Tardieu <sam@debian.org>  Mon, 15 May 2000 17:29:51 +0200

libgtkada (1.2.4-3) frozen unstable; urgency=low

  * Change Mesa dependency. Closes: #59590.

 -- Samuel Tardieu <sam@debian.org>  Sun,  5 Mar 2000 00:31:03 +0100

libgtkada (1.2.4-2.1) unstable; urgency=low

  * NMU to fix RCB. Rebuilt with the latest mesag-dev. Closes: #59590
  * Changed depends from mesag-dev to libgl-devel for libgtkada1-dev.
  * Use --with-lib-GL instead of --with-lib-MesaGL (deprecated).

 -- Raphael Hertzog <hertzog@debian.org>  Mon, 20 Mar 2000 22:57:18 +0100

libgtkada (1.2.4-2) unstable; urgency=low

  * Add missing dependency.

 -- Samuel Tardieu <sam@debian.org>  Thu, 23 Dec 1999 15:20:13 +0100

libgtkada (1.2.4-1) unstable; urgency=low

  * New upstream release.

 -- Samuel Tardieu <sam@debian.org>  Mon, 25 Oct 1999 10:59:10 +0200

libgtkada (1.2.3-7) unstable; urgency=low

  * Recompile to fix a dependency problem in the GNAT package.

 -- Samuel Tardieu <sam@debian.org>  Fri, 22 Oct 1999 15:18:36 +0200

libgtkada (1.2.3-6) unstable; urgency=low

  * Use reinstated link /usr/lib/libgnat.so.

 -- Samuel Tardieu <sam@debian.org>  Thu, 21 Oct 1999 12:48:55 +0200

libgtkada (1.2.3-5) unstable; urgency=low

  * Rebuild with GNAT 3.12p.

 -- Samuel Tardieu <sam@debian.org>  Wed, 20 Oct 1999 16:52:28 +0200

libgtkada (1.2.3-4) unstable; urgency=low

  * Add examples from the tarball. Closes: #45284.

 -- Samuel Tardieu <sam@debian.org>  Mon, 20 Sep 1999 11:00:44 +0200

libgtkada (1.2.3-3) unstable; urgency=low

  * Fix wrong dependency (Closes: #41705).

 -- Samuel Tardieu <sam@debian.org>  Wed, 21 Jul 1999 13:13:43 +0200

libgtkada (1.2.3-2) unstable; urgency=low

  * Update standards-version to 3.0.0.

 -- Samuel Tardieu <sam@debian.org>  Tue, 20 Jul 1999 13:34:33 +0200

libgtkada (1.2.3-1) unstable; urgency=low

  * New upstream release.

 -- Samuel Tardieu <sam@debian.org>  Thu, 15 Jul 1999 16:15:44 +0200

libgtkada (1.2.2-1) unstable; urgency=low

  * New upstream release.
  * Do not use /usr/libexec anymore. Closes: #40110.

 -- Samuel Tardieu <sam@debian.org>  Thu, 24 Jun 1999 18:09:18 +0200

libgtkada (1.2.1-1) unstable; urgency=low

  * New upstream release, with much more documentation.

 -- Samuel Tardieu <sam@debian.org>  Mon, 10 May 1999 17:13:10 +0200

libgtkada (1.2.0.1-1) unstable; urgency=low

  * New upstream release.

 -- Samuel Tardieu <sam@debian.org>  Mon, 19 Apr 1999 14:54:57 +0200

libgtkada (0.6-2) unstable; urgency=low

  * Install gate.ex in /usr/libexec, since it's needed by gate.

 -- Samuel Tardieu <sam@debian.org>  Tue, 30 Mar 1999 22:33:13 +0200

libgtkada (0.6-1) unstable; urgency=low

  * New upstream release, with two new executables, gate and dgate.
  * Recompile with GNAT 3.11p-10 in order to work with glibc2.1.

 -- Samuel Tardieu <sam@debian.org>  Mon,  8 Mar 1999 17:02:51 +0100

libgtkada (0.5-2) unstable; urgency=low

  * Recompile with GNAT 3.11p-9 to get the dependencies right.

 -- Samuel Tardieu <sam@debian.org>  Tue, 23 Feb 1999 20:30:29 +0100

libgtkada (0.5-1) unstable; urgency=low

  * New upstream release.

 -- Samuel Tardieu <sam@debian.org>  Wed,  3 Feb 1999 18:08:43 +0100

libgtkada (0.4-1) unstable; urgency=low

  * New upstream release, with a complete reorganization of the Makefile.
    Patches have been sent to the authors to make it easier to build under
    a `standard' configuration (e.g, debian).

 -- Samuel Tardieu <sam@debian.org>  Wed,  6 Jan 1999 20:25:06 +0100

libgtkada (0.2.1-1) frozen unstable; urgency=low

  * New upstream release 0.2.1. Note that this upstream version does not
    bring any new functionality compared to the previous Debian package,
    it only includes the Debian-specific patches. That will allow libgtkada0
    to be source-unpacked on other architectures working around the dpkg-dev
    bug that prevents patches to lines starting with "-- " to be applied
    (Bug#28977).

 -- Samuel Tardieu <sam@debian.org>  Mon, 16 Nov 1998 14:17:05 +0100

libgtkada (0.1a-6) unstable; urgency=low

  * New upstream bug fixes.

 -- Samuel Tardieu <sam@debian.org>  Tue, 20 Oct 1998 15:46:22 +0200

libgtkada (0.1a-5) unstable; urgency=low

  * Hopefully last try to get the licence right. This one was minor though.

 -- Samuel Tardieu <sam@debian.org>  Thu, 15 Oct 1998 22:13:34 +0200

libgtkada (0.1a-4) unstable; urgency=low

  * Licence issues sorted out, thanks to the authors.

 -- Samuel Tardieu <sam@debian.org>  Wed, 14 Oct 1998 19:35:37 +0200

libgtkada (0.1a-3) unstable; urgency=low

  * Many more upstream fixes.

 -- Samuel Tardieu <sam@debian.org>  Wed, 14 Oct 1998 18:02:50 +0200

libgtkada (0.1a-2) unstable; urgency=low

  * Apply a lot of fixes sent by the authors. This version is not released
    yet.

 -- Samuel Tardieu <sam@debian.org>  Tue, 13 Oct 1998 23:08:57 +0200

libgtkada (0.1a-1) unstable; urgency=low

  * Initial Release.

 -- Samuel Tardieu <sam@debian.org>  Tue, 13 Oct 1998 18:18:21 +0200