File: changelog

package info (click to toggle)
gnome-dictionary 3.26.1-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,968 kB
  • sloc: ansic: 12,740; xml: 132; sh: 97; makefile: 8
file content (1391 lines) | stat: -rw-r--r-- 47,271 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
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
gnome-dictionary (3.26.1-6) unstable; urgency=medium

  * Team upload.

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * Set debhelper-compat version in Build-Depends.
  * Fix misspelling of Close => Closes.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.
  * Update standards version to 4.4.1, no changes needed.

  [ Andreas Henriksson ]
  * Bump to debhelper compat 12
  * Cherry-pick patch from upstream adding appdata content_rating
  * Cherry-pick upstream patch to install appdata in new location

 -- Andreas Henriksson <andreas@fatal.se>  Sun, 09 Feb 2020 19:40:02 +0100

gnome-dictionary (3.26.1-5) unstable; urgency=medium

  * Bump debhelper compat to 11
  * Enable all hardening flags
  * Build-Depend on libxml2-utils for xmllint
  * Opt in to Ubuntu language packs
  * Update Vcs fields for migration to https://salsa.debian.org/
  * Bump Standards-Version to 4.3.0

 -- Jeremy Bicha <jbicha@debian.org>  Sun, 23 Dec 2018 11:25:06 -0500

gnome-dictionary (3.26.1-4) unstable; urgency=medium

  * Update Vcs fields for conversion to git
  * Add debian/gbp.conf
  * Bump Standards-Version to 4.1.2

 -- Jeremy Bicha <jbicha@debian.org>  Thu, 14 Dec 2017 17:27:41 -0500

gnome-dictionary (3.26.1-3) unstable; urgency=medium

  * Fold libgdict-common into the gnome-dictionary binary package.
    After the removal of the libgdict library package it no longer makes sense
    to keep libgdict-common as a separate binary package.

 -- Michael Biebl <biebl@debian.org>  Sat, 11 Nov 2017 16:03:33 +0100

gnome-dictionary (3.26.1-2) unstable; urgency=high

  * Depend on libgdict-common, accidentally dropped in 3.25.90-1

 -- Jeremy Bicha <jbicha@debian.org>  Fri, 10 Nov 2017 10:18:00 -0500

gnome-dictionary (3.26.1-1) unstable; urgency=medium

  * New upstream release
  * Bump Standards-Version to 4.1.1

 -- Jeremy Bicha <jbicha@debian.org>  Sun, 01 Oct 2017 17:26:09 -0400

gnome-dictionary (3.26.0-1) unstable; urgency=medium

  * New upstream release
  * debian/control.in:
    - Bump minimum meson to 0.42.0
    - Build-depend on docbook-xml, docbook-xsl, and xsltproc to generate
      manpage
    - Build-depend on appstream-util and desktop-file-utils for validation
      tests
  * debian/rules: Generate manpage
  * debian/docs: AUTHORS and TODO were dropped in new release. README is now
    README.md
  * Drop install-man.patch: Applied in new release

 -- Jeremy Bicha <jbicha@debian.org>  Tue, 12 Sep 2017 19:03:20 -0400

gnome-dictionary (3.25.90-1) unstable; urgency=medium

  * New upstream release
    - Remove libgdict
  * Build with meson
  * Add install-man.patch: Cherry-pick patch to fix manpage installation
  * debian/copyright: Exclude docs/rfc2229.txt since it's non-free

 -- Jeremy Bicha <jbicha@debian.org>  Wed, 06 Sep 2017 11:34:00 -0400

gnome-dictionary (3.24.0-1) unstable; urgency=medium

  * New upstream release
  * debian/control.in:
    - Bump minimum libglib2.0-dev to >= 2.42.0 and
      libgtk-3-dev to >= 3.21.1
  * Drop Include_the_right_header_in_GdictClientContext.patch:
    - applied in new release
  * Bump Standards-Version to 4.1.0

 -- Jeremy Bicha <jbicha@ubuntu.com>  Tue, 29 Aug 2017 18:49:19 -0400

gnome-dictionary (3.20.0-4) unstable; urgency=medium

  * Add patch from upstream to fix FTBFS:
    - debian/patches/Include_the_right_header_in_GdictClientContext.patch
    (Closes: #865806, thanks to Jason Crain for investigating this)

 -- Andreas Henriksson <andreas@fatal.se>  Mon, 03 Jul 2017 10:11:49 +0200

gnome-dictionary (3.20.0-3) unstable; urgency=medium

  * Convert from cdbs to dh.
  * Bump dh compat to 10
  * Use --fail-missing.

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 27 Sep 2016 17:43:03 +0200

gnome-dictionary (3.20.0-2) unstable; urgency=medium

  * Bump Build-Depends on libgtk-3-dev to (>= 3.20) as it uses new API like
    gdk_display_get_default_seat() or gdk_seat_get_pointer(). Closes: #822790

 -- Michael Biebl <biebl@debian.org>  Wed, 27 Apr 2016 21:48:52 +0200

gnome-dictionary (3.20.0-1) unstable; urgency=medium

  [ Andreas Henriksson ]
  * Fix debian/rules MAKESHLIBS override -c4 to apply to soname 9

  [ Michael Biebl ]
  * New upstream release.
  * Bump dependency on libgtk-3-dev to (>= 3.16) as per configure.ac.
  * Rename library packages for new SONAME (9 → 10).
  * Update debian/libgdict-1.0-10.symbols.
  * Bump Standards-Version to 3.9.8.
  * Update debian/copyright, add section for help/ which is CC-BY-SA-3.0.

 -- Michael Biebl <biebl@debian.org>  Tue, 26 Apr 2016 20:31:54 +0200

gnome-dictionary (3.18.0-2) unstable; urgency=medium

  * Upload to unstable.

 -- Andreas Henriksson <andreas@fatal.se>  Fri, 02 Oct 2015 11:11:00 +0200

gnome-dictionary (3.18.0-1) experimental; urgency=medium

  [ Josselin Mouette ]
  * Remove Debian menu entry.

  [ Andreas Henriksson ]
  * New upstream release.
  * Rename library packages for new SONAME (8->9)
  * Update debian/libgdict-1.0-9.symbols

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 22 Sep 2015 19:40:00 +0200

gnome-dictionary (3.16.2-1) unstable; urgency=medium

  * New upstream release.
  * Drop obsolete Breaks/Replaces from pre-wheezy.
  * Rename libgdict-1.0-6 → libgdict-1.0-8 for the soname bump.
  * Update debian/libgdict-1.0-8.symbols.
  * Update debian/gnome-dictionary.install, the UI resources are now builtin
    and loadeded via GResource.
  * Enable GObject introspection support.
  * Convert to multiarch.
  * Bump debhelper compatibility level to 9.

 -- Michael Biebl <biebl@debian.org>  Sun, 24 May 2015 21:21:52 +0200

gnome-dictionary (3.14.1-1) unstable; urgency=medium

  * New upstream release.
  * Update Homepage URL.
  * Bump Standards-Version to 3.9.6. No further changes.
  * Bump required version of libglib2.0-dev to (>= 2.39.0) as per
    configure.ac.
  * Drop obsolete --disable-scrollkeeper configure switch.

 -- Michael Biebl <biebl@debian.org>  Sun, 12 Oct 2014 16:06:33 +0200

gnome-dictionary (3.14.0-1) unstable; urgency=medium

  * New upstream release.
  * debian/gnome-dictionary.install: ship usr/share/appdata

 -- Andreas Henriksson <andreas@fatal.se>  Tue, 23 Sep 2014 20:39:02 +0200

gnome-dictionary (3.10.0-1) unstable; urgency=low

  * New upstream release.

 -- Andreas Henriksson <andreas@fatal.se>  Thu, 17 Oct 2013 20:20:54 +0200

gnome-dictionary (3.8.0-1) unstable; urgency=low

  [ Jeremy Bicha ]
  * New upstream release
  * debian/control.in:
    - Update homepage
    - Don't build-depend on rarian-compat

  [ Michael Biebl ]
  * Bump Standards-Version to 3.9.4. No further changes.

 -- Michael Biebl <biebl@debian.org>  Thu, 29 Aug 2013 00:33:09 +0200

gnome-dictionary (3.6.0-1) unstable; urgency=low

  * Team upload.
  * New upstream release.
  * Upstream switched from gnome-doc-utils to yelp-tools
    - update build-dependencies accordingly.
    - update debian/gnome-dictionary.install for new help files path

 -- Andreas Henriksson <andreas@fatal.se>  Fri, 24 May 2013 11:14:35 +0200

gnome-dictionary (3.4.0-2) unstable; urgency=low

  * Upload to unstable.

 -- Michael Biebl <biebl@debian.org>  Thu, 19 Apr 2012 03:05:43 +0200

gnome-dictionary (3.4.0-1) experimental; urgency=low

  * New upstream release.
  * debian/watch: Track stable releases (again).
  * debian/control.in: Relax dependency between libgdict-1.0-6 and
    libgdict-common.

 -- Michael Biebl <biebl@debian.org>  Tue, 27 Mar 2012 01:02:26 +0200

gnome-dictionary (3.3.2-1) experimental; urgency=low

  * New upstream development release.
  * gnome-utils has been split and gnome-dictionary is a separate module now.
  * Rename the source package to gnome-dictionary.
  * Update watch file and Vcs-* URLs.
  * Drop non-gnome-dictionary files, packages and build dependencies.
  * Stop using dh-autoreconf.
  * Rebuild gtk-doc API documentation and don't use the one shipped in the
    upstream tarball.
  * Remove a few obsolete Breaks and Replaces.
  * Rewrite and update debian/copyright using the new machine-readable
    format.
  * Bump Standards-Version to 3.9.3.
  * Split the translation files and dictionary sources definitions, which were
    previously part of gnome-utils-common, into a separate package
    libgdict-common and make libgdict-1.0-6 depend on it.
  * Add the necessary Breaks/Replaces against gnome-utils-common.

 -- Michael Biebl <biebl@debian.org>  Tue, 13 Mar 2012 12:22:42 +0100

gnome-utils (3.2.1-3) unstable; urgency=low

  [ Josselin Mouette ]
  * gnome-screenshot requires nautilus for the D-Bus service.
    Closes: #654226.

 -- Michael Biebl <biebl@debian.org>  Mon, 12 Mar 2012 22:52:18 +0100

gnome-utils (3.2.1-2) unstable; urgency=low

  * Upload to unstable.
  * debian/watch:
    - Track .xz tarballs.
    - Fix regex to correctly match directories.
  * debian/org.debian.pkexec.gnome-system-log.policy:
    - Install PolicyKit action definition for gnome-system-log. X applications
      need explicit configuration so they can be started via pkexec.

 -- Michael Biebl <biebl@debian.org>  Sat, 19 Nov 2011 22:29:55 +0100

gnome-utils (3.2.1-1) experimental; urgency=low

  [ Josselin Mouette ]
  * Use pkexec instead of gksu for gnome-system-log.

  [ Jordi Mallach ]
  * New upstream release.
  * Drop 02_gdict-1.0_pc_requires.patch: fixed upstream.
  * Drop 03-don-t-abort-if-nautilus-schema-is-not-installed.patch: obsolete.
  * Bump Build-Depends to libglib2.0-dev (>= 2.29.14), as required by
    configure.ac.
  * Add 10_no_disable_deprecated.patch: don't set *_DISABLE_DEPRECATED,
    to avoid build failures with GTK+ 3.0.x.
  * Build-Depend on dh-autoreconf and include the CDBS snippet.
  * Add -c4 to dh_makeshlibs call.
  * Set LDFLAGS to -Wl,-z,defs -Wl,-O1 -Wl,--as-needed.
  * Update Vcs-* URLs.
  * Replace Conflicts with Breaks.

 -- Jordi Mallach <jordi@debian.org>  Sat, 12 Nov 2011 16:40:01 +0100

gnome-utils (3.0.1-5) unstable; urgency=low

  * debian/control.in:
    - Add Breaks/Replaces: capplets-data (<< 1:3.0.0) to gnome-font-viewer as
      the gnome-font-viewer.desktop file has been moved into the
      gnome-font-viewer package. Closes: #634942

 -- Michael Biebl <biebl@debian.org>  Thu, 21 Jul 2011 13:49:50 +0200

gnome-utils (3.0.1-4) unstable; urgency=low

  * Upload to unstable.

 -- Michael Biebl <biebl@debian.org>  Wed, 20 Jul 2011 21:22:45 +0200

gnome-utils (3.0.1-3) experimental; urgency=low

  * debian/patches/03-don-t-abort-if-nautilus-schema-is-not-installed.patch
    - Don't abort in gnome-screenshot if the nautilus settings schema
      'org.gnome.nautilus.preferences' is not installed. Closes: #631413

 -- Michael Biebl <biebl@debian.org>  Tue, 19 Jul 2011 21:15:44 +0200

gnome-utils (3.0.1-2) experimental; urgency=low

  * 02_gdict-1.0_pc_requires.patch: Make gdict-1.0's pkg-config file
    require the correct GTK+ version.

 -- Jordi Mallach <jordi@debian.org>  Wed, 13 Jul 2011 19:11:18 +0200

gnome-utils (3.0.1-1) experimental; urgency=low

  [ Sebastien Bacher ]
  *  debian/gnome-screenshot.install, debian/gnome-system-log.install:
     - install the gconf to gsettings migration scripts

  [ Michael Biebl ]
  * debian/watch: Switch to .bz2 tarballs.
  * New upstream release.
  * debian/control.in
    - Bump Build-Depends on libglib2.0-dev to (>= 2.28.0).
    - Bump Standards-Version to 3.9.2. No further changes.
  * Bump debhelper compatibility level to 8.
    - Update Build-Depends on debhelper.
    - Strip debian/tmp/ from .install files.
  * debian/gnome-dictionary.install
    - Stop installing files from usr/share/gnome-2.0 as gnome-dictionary no
      longer builds a panel applet.
  * debian/rules
    - Remove --enable-gdict-applet=no configure option, obsolete.
  * Add new gnome-font-viewer package.
    - Add Breaks/Replaces: gnome-control-center (<< 1:3.0.0) as
      gnome-font-viewer and gnome-thumbnail-font were part of g-c-c 2.x.
  * libgdict now builds against GTK3, which changes its ABI, but hasn't
    changed the SONAME. As a workaround, bump the versions in
    libgdict-1.0-6.symbols to 3.0.0 and add Breaks against
    gnome-dictionary (<< 3.0.0) and gtranslator (<< 2.90.0).

 -- Michael Biebl <biebl@debian.org>  Thu, 16 Jun 2011 00:18:36 +0200

gnome-utils (3.0.0-1) experimental; urgency=low

  * New Upstream release.
    + debian/control.in
      - Update build-dependencies, especially for Gnome 3
      - Updated Standards-Version
      - Removed the dependency on libpanel-applet
      - Added dependency on gsettings-desktop-schemas as asked
        in the configure.ac
      - Removed description about the gdict applet
    + debian/rules
      - Disabled build of applet because of the new gnome-panel
    + debian/*.install
      - Removed gconf schemas when obsolete
      - Added gschemas
      - Removed *.a from -dev package as it seems to not be produced anymore
    + debian/copyright
      - Refer to GPL-2 instead of GPL
    + debian/gnome-screenshot.links
      - Link the manpage for gnome-panel-screenshot
    + debian/patch/01_logview_gksu.patch.new
      - refreshed

 -- Jean Schurger <jean@schurger.org>  Mon, 11 Apr 2011 18:20:44 -0400

gnome-utils (2.30.0-2) unstable; urgency=low

  * Update build-dependencies, especially add missing one on
    gtk-doc-tools.
  * Switch to cdbs, based on Ubuntu packaging. Closes: #583370.
  * Remove workaround for docbook stuff, gtk-doc-tools should bring
    docbook-xml and its XML catalog.
  * Remove workaround for broken .schemas file, it’s been fixed
    upstream.
  * Split gnome-utils into one package per tool. Closes: #584981.
  * Switch to 3.0 (quilt) source format.

 -- Josselin Mouette <joss@debian.org>  Sat, 19 Jun 2010 15:20:04 +0200

gnome-utils (2.30.0-1) unstable; urgency=low

  * New upstream stable release:
    + debian/control.in:
      - Update build dependencies.

 -- Sebastian Dröge <slomo@debian.org>  Sat, 10 Apr 2010 06:52:34 +0200

gnome-utils (2.28.1-1) unstable; urgency=low

  * New upstream release.
    - debian/rules:
      + Remove gnome-search-tool.schemas before building, it will be
        autogenerated and the shipped one is broken. See GNOME #599317.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Fri, 23 Oct 2009 01:03:31 +0200

gnome-utils (2.28.0-1) unstable; urgency=low

  [ Emilio Pozuelo Monfort ]
  * debian/gnome-screenshot.sgml: updated for the new options. Patch by
    Tom Feiner, thanks! Closes: #534539.
  * Autogenerate the manpage during the build.
  * debian/watch: don't uupdate.
  * debian/rules: don't call dh_desktop and dh_scrollkeeper, they're
    deprecated.
  * Standards-Version is 3.8.2, no changes needed.
  * Update Vcs-* fields.
  * debian/patches/01_logview_gksu.patch: add upstream bug reference.

  [ Josselin Mouette ]
  * Drop libtool file, it’s not referenced anywhere.

  [ Luca Bruno ]
  * New upstream release:
    - Drop gfloppy.
    - gnome-search-tool: Ignore binary files. Closes: #507737.
  * debian/control.in:
    - Standards-Version is 3.8.3, no changes needed.
    - Build-Depends:
      + Add libcanberra-gtk-dev (>= 0.4).
      + Remove all libgnome* and libglade.
      + Remove libhal as it's not referenced in the code.
      + Bump libglib2.0-dev to 2.20.0 and libgtk2.0-dev to 2.17.2.
  * debian/gnome-screenshot.sgml, debian/gnome-utils.manpages,
    debian/rules:
    - Removed screenshot manpage, it's being shipped upstream.

  [ Emilio Pozuelo Monfort ]
  * debian/control.in:
    - Build depend on intltool >= 0.40.0.
    - Remove docbook-to-man and libpango1.0-dev build dependencies, no
      longer needed.

 -- Emilio Pozuelo Monfort <pochu@debian.org>  Tue, 13 Oct 2009 23:40:34 +0200

gnome-utils (2.26.0-1) unstable; urgency=low

  [ Josselin Mouette ]
  * libgdict-1.0-dev.files: move the gtk-doc files to libgdict-1.0-dev.
  * Bump Replaces: accordingly.
  * Build-depend on libglib2.0-doc and libgtk2.0-doc to ensure proper
    xrefs.
  * Re-enable hal support on kfreebsd and hurd, now it has been ported.
  * Remove useless stuff in the descriptions. Closes: #521007.

  [ Luca Bruno ]
  * New upstream release:
    + Set a meaningful error message if we can't read from the log file.
      Closes: #443743.
  * debian/patches:
    + Updated 01_logview_gksu.patch.
    + Removed 02_logview_crash.patch since logview has been rewritten.
    + Removed 03_screenshot_xinerama.patch, applied upstream.
  * debian/control.in:
    + Build-Depends version bumps:
      - libgtk2.0-dev to 2.14.0.
      - libglib2.0-dev to 2.16.0.
      - Removed libbonoboui2-dev and libgnomecanvas2-dev.
      - Added zlib1g-dev to view .gz log files.
    + Update Standards-Version to 3.8.1. No changes needed..

  [ Emilio Pozuelo Monfort ]
  * Let libgdict-1.0-dev depend on ${misc:Depends}
  * debian/gnome-screenshot.1: scape hyphens where necessary.

  [ Josselin Mouette ]
  * Set the team as primary maintainer. Closes: #523539.
  * Remove scrollkeeper dependency.

 -- Luca Bruno <lethalman88@gmail.com>  Tue, 24 Mar 2009 00:02:25 +0100

gnome-utils (2.24.1-2) unstable; urgency=low

  * Upload to unstable.

 -- Josselin Mouette <joss@debian.org>  Wed, 11 Mar 2009 18:41:23 +0100

gnome-utils (2.24.1-1) experimental; urgency=low

  * 01_logview_gksu.patch: disable StartupNotify, as it doesn’t work
    with gksu.
  * 02_logview_crash.patch: new patch. Fix crash when switching between
    certain logs. Closes: #500091.
  * 03_screenshot_xinerama.patch: new patch from Hal Ashburner and Brian
    Cameron. Correctly capture the whole screen in Xinerama mode.
    Closes: #503852, #329596.
  * New upstream release.
  * 01_logview_gksu.patch: updated for the new version.

 -- Josselin Mouette <joss@debian.org>  Sun, 04 Jan 2009 13:03:59 +0100

gnome-utils (2.24.0-1) experimental; urgency=low

  * New upstream release

 -- Gustavo Noronha Silva <kov@debian.org>  Mon, 22 Sep 2008 23:08:48 -0300

gnome-utils (2.23.92-1) experimental; urgency=low

  * New upstream development version
  - fixes error reporting when saving file (Closes: #401501)
  - fixes total file system capacity display on baobab (Closes: #470553)
  - fixes baobab not closing correctly when you give it an argument in the
    command line (Closes: #447016)
  * debian/control.in:
  - added HomePage and Vcs* headers; using experimental branch for now for
    Vcs-*
  - updated Standards-Version to 3.8.0 with no further changes needed
  * debian/control.in, debian/libgdict-1.0-6.{symbols,files},
    debian/libgdict-1.0-dev.files, debian/gnome-utils.install,
    debian/rules:
  - create also libgdict-1.0-{6,dev} packages, so that other applications
    are able to use the GNOME dictionary library for their purposes
    (Closes: #443889)
  * debian/copyright:
  - added more precise copyright information

 -- Gustavo Noronha Silva <kov@debian.org>  Fri, 12 Sep 2008 00:42:16 -0300

gnome-utils (2.20.0.1-2) unstable; urgency=low

  * Drop linux-libc-dev build-dep; thanks Petr Salinger.

 -- Loic Minier <lool@dooz.org>  Mon, 18 Feb 2008 16:52:20 +0100

gnome-utils (2.20.0.1-1) unstable; urgency=low

  * New upstream bugfix release.
  * debian/control.in:
    + Add libxt-dev to build depends.

 -- Sebastian Dröge <slomo@debian.org>  Sun, 23 Sep 2007 08:25:38 +0200

gnome-utils (2.20.0-1) unstable; urgency=low

  * New upstream release.
    + Uses a unique temporary directory. Closes: #421599.
    + Only show utilities in the GNOME menu. Closes: #314799.
  * Massive build-depends update.
  * Remove remaining development files.
  * 06_fix_logview_crasher.patch: removed, integrated upstream.
  * Don't ignore errors in make distclean.
  * Fix sections in menu file.

 -- Josselin Mouette <joss@debian.org>  Sat, 22 Sep 2007 19:04:14 +0200

gnome-utils (2.18.1-1) unstable; urgency=low

  * Drop useless INSTALL_PROGRAM definition.
  * Fix default CFLAGS.
  * Pass --enable-gfloppy to configure; thanks Alan Baghumian;
    closes: #419256.
  * Upload to unstable; drop check-dist include.
  * Wrap build-deps and deps.
  * Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE
    differ.
  * Cleanups.
  * New upstream release; no API change.

 -- Loic Minier <lool@dooz.org>  Mon, 16 Apr 2007 11:10:04 +0200

gnome-utils (2.18.0-1) experimental; urgency=low

  * gnome-screenshot man page updates by Theppitak Karoonboonyanan;
    closes: #415949.
  * Add build-dep on gconf2 for gconftool-2.
  * New upstream major stable release.
    - Bump up libgtk2.0-dev build-dep to >= 2.10.0 for
      gtk_text_buffer_get_has_selection(); upstream isn't correctly checking
      for the minimum Gtk version it requires.
    - Another round of man page updates for 2.18 by Theppitak Karoonboonyanan.
  * New patch, 06_fix_logview_crasher, fixes a crash due to an uninitialized
    variable; found in the Ubuntu package.

 -- Loic Minier <lool@dooz.org>  Fri, 23 Mar 2007 16:37:15 +0100

gnome-utils (2.16.2-2) experimental; urgency=low

  * Add a get-orig-source target to retrieve the upstream tarball.
  * Include the new check-dist Makefile to prevent accidental uploads to
    unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
  * Merge 2.14.0.dfsg-1 up to 2.14.0.dfsg-5; SVN r7690:9186.
    - Drop patch 20_screenshot-overlapped-windows; merged upstream.
    - Drop patch 10_po-too-fuzzy-cvs; only relevant for 2.14.

 -- Loic Minier <lool@dooz.org>  Fri, 23 Mar 2007 12:03:09 +0100

gnome-utils (2.16.2-1) experimental; urgency=low

  * New upstream release.
    + Non-free RFC was removed (closes: #393372).
  * 01_logview_gksu.patch: use gksu to invoke the log viewer as root.
    The default Debian setup allows to see only the Xorg logs.

 -- Josselin Mouette <joss@debian.org>  Tue, 21 Nov 2006 21:23:49 +0100

gnome-utils (2.16.0-1) experimental; urgency=low

  [ Marco Cabizza ]
  * New upstream release

  [ Guilherme de S. Pastore ]
  * debian/copyright, debian/watch: fix download URL.
  * debian/README.Debian: removed; too old, no longer useful.

  [ Loic Minier ]
  * The new upstream releases above bear no API change.
  * Upload.

 -- Loic Minier <lool@dooz.org>  Mon, 25 Sep 2006 16:40:23 +0200

gnome-utils (2.15.92-1) experimental; urgency=low

  * New upstream development releases, with API changes.
    - Target at experimental.
    - Add Baobab to the description.
    - Conclict with and Replace baobab.
    - Bump up build-deps to: libgtk2.0-dev >= 2.8.0, libgnome2-dev >= 2.13.7,
      libgnomeui-dev >= 2.13.2
    - Add build-deps on: libgtop2-dev (>= 2.12.0), libgnomecanvas2-dev (>=
      2.10.2)
    - Install baobab's README as README.baobab.
    - Update shlibs for new SONAME: libgdict-1.0 5 gnome-utils (>= 2.15.90).
    - Pass shlibs directly to dh_makeshlibs and drop gnome-utils.shlibs.
    - libgdict changes SONAME; no action required since it had no shlibs.
    - Drop patch 02_gdict_crasher, merged upstream.
    - Drop libpopt-dev build-dep.
    - Add a menu entry and XPM icon for Baobab.
  * Drop -s flag to install as the debian/rules already uses dh_strip.
  * Re-add autotools-dev config.guess/sub autoupdate with a build-dep.
  * Misc cleanups.
  * Add CDBS' utils.

 -- Loic Minier <lool@dooz.org>  Sun, 13 Aug 2006 17:51:24 +0200

gnome-utils (2.14.0.dfsg-5) unstable; urgency=medium

  * Add a get-orig-source target to retrieve the upstream tarball.
  * Resurrect the gnome-panel-screenshot man page from gnome-panel and rename
    to gnome-screenshot; this even covers flags which are not in the --help
    output; closes: #384602.
  * New patch, 20_screenshot-overlapped-windows, to fix screenshots of
    overlapping windows; backported from GNOME #121492.

 -- Loic Minier <lool@dooz.org>  Thu,  8 Mar 2007 14:33:12 +0100

gnome-utils (2.14.0.dfsg-4) unstable; urgency=low

  * Exclude libhal-dev build-dep for kfreebsd and hurd; thanks
    Petr Salinger; closes: #402129.

 -- Loic Minier <lool@dooz.org>  Fri,  8 Dec 2006 17:56:43 +0100

gnome-utils (2.14.0.dfsg-3) unstable; urgency=high

  * Update all *.po files; rename 10_fr-po-too-fuzzy-cvs to
    10_po-too-fuzzy-cvs; thanks Simon Paillard; update LINGUAS in configure.in
    and configure.

 -- Loic Minier <lool@dooz.org>  Wed, 22 Nov 2006 09:28:54 +0100

gnome-utils (2.14.0.dfsg-2) unstable; urgency=high

  * New patch, 10_fr-po-too-fuzzy-cvs, to snapshot fr.po from the CVS
    gnome-2-14 branch as many strings are fuzzy in the tarball; thanks
    Simon Paillard for the report.

 -- Loic Minier <lool@dooz.org>  Tue, 21 Nov 2006 21:24:49 +0100

gnome-utils (2.14.0.dfsg-1) unstable; urgency=high

  * Repack upstream tarball to strip RFC; closes: #393372.

 -- Loic Minier <lool@dooz.org>  Mon, 16 Oct 2006 14:49:13 +0200

gnome-utils (2.14.0-2) unstable; urgency=low

  [ Marco Cabizza ]
  * Steal patch from HEAD to prevent gnome-dictionary from crashing with
    some words [debian/patches/02_gdict_crasher.patch]

  [ Loic Minier ]
  * Update watch file to track stable versions and use HTTP.
  * Fix 02_gdict_crasher patch to apply correctly.
  * Drop debian/dirs and refactor installation a little.

 -- Loic Minier <lool@dooz.org>  Sun, 13 Aug 2006 16:30:15 +0200

gnome-utils (2.14.0-1) unstable; urgency=low

  [ Marco Cabizza ]
  * New maintainer
  * New upstream release
    - gnome-screenshot: Alt+Print works again (Closes: #283592)
    - gdict-applet: Fixed the CPU usage issue (Closes: #214074, #220318)
  * Added a Debian menu entry for gnome-panel-screenshot (Closes: #354102)
  * Added patch/unpatch rules to debian/rules
  * patches/01_configure.patch: work around upstream bug #336546, combined with
    seb128's 10_configure.patch.
  * debian/rules:
    - not using dpatch anymore
    - added dh_makeshlibs (and debian/gnome-utils.shlibs) due to libgdict-1.0
  * debian/control: fixing dependencies.
  * debian/pixmaps: resized the Debian menu icons to 32x32
  * Standards-version is 3.7.2.

  [ Guilherme de S. Pastore ]
  * debian/control.in:
    - added build-dependency on cdbs.
    - added build-dependency on gnome-doc-utils.
  * debian/compat: created, bumping debhelper compatibility version to 5.

 -- Guilherme de S. Pastore <gpastore@debian.org>  Tue, 16 May 2006 20:40:00 -0300

gnome-utils (2.12.2-3) unstable; urgency=low

  * Upload to unstable.

 -- Josselin Mouette <joss@debian.org>  Sun,  8 Jan 2006 16:54:30 +0100

gnome-utils (2.12.2-2) experimental; urgency=low

  * Build against dbus >= 0.60

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 18 Dec 2005 22:29:44 +0100

gnome-utils (2.12.2-1) experimental; urgency=low

  * New upstream release.
  * Drop debian/patches/04_gfloppyjaomf.dpatch, this was fixed differently
    upstream (they commented the <contributor> block out), don't list this
    patch in debian/patches/00list.
  * Actually ship license and distinguish from copyright.
  * Set debhelper compatibility level to 4.

 -- Loic Minier <lool@dooz.org>  Mon, 12 Dec 2005 23:00:59 +0100

gnome-utils (2.12.1-1) experimental; urgency=low

  * New upstream version.
  * debian/control.in:
    - Build-Depends on the libhal package.
  * debian/patches/04_gfloppyjaomf.dpatch:
    - fix an issue with an omf file (Closes: #270880).
  * debian/patches/10_configure.dpatch:
    - updated.
  * debian/watch:
    - updated.

 -- Sebastien Bacher <seb128@debian.org>  Mon, 24 Oct 2005 15:26:22 +0200

gnome-utils (2.10.1-4) unstable; urgency=high

  * Standards-version is 3.6.2.
  * Depend on ${misc:Depends} (high urgency fix).

 -- Josselin Mouette <joss@debian.org>  Thu, 13 Oct 2005 21:40:35 +0200

gnome-utils (2.10.1-3) unstable; urgency=low

  * Upload to unstable.
  * debian/control.in: add gnome-screenshot to the description.

 -- Jordi Mallach <jordi@debian.org>  Fri, 10 Jun 2005 14:44:03 +0200

gnome-utils (2.10.1-2) experimental; urgency=low

  * Rebuild on a GNOME 2.10-only chroot.

 -- Jordi Mallach <jordi@debian.org>  Fri, 29 Apr 2005 04:36:25 +0200

gnome-utils (2.10.1-1) experimental; urgency=low

  * GNOME team upload.
  * New upstream release.
    - should now read gzipped files (closes: #135548).
  * debian/control.in:
    - Conflicts/Replaces gnome-panel/gnome-panel-data (<< 2.10).
    - update build-depends.
    - Suggest gcalctool instead of calctool.
    - promote gksu from Suggests to Recommends.
    - fix typo in description (closes: #290573).
  * debian/rules: disable config.{guess,sub} updating.
  * debian/watch: updated.

 -- Jordi Mallach <jordi@debian.org>  Sat,  9 Apr 2005 00:52:12 +0200

gnome-utils (2.8.1-1) unstable; urgency=low

  * GNOME Team Upload.
  * New upstream release:
    GNOME Dictionary:
    - add hyperlinks (Closes: #76739).
    GNOME Log Viewer
    - get correct date on log zoom (Closes: #222605).
  * debian/control.in:
    - suggests gksu instead of xsu (Closes: #259883).
    - updated the Build-Depends.
  * debian/patches/20_syslog_crash.dpatch
    - patch by Vincent Untz <vincent@vuntz.net> to fix a gnome-system-log
      crash on amd64
  * debian/rules:
    - use dh_desktop.

 -- Sebastien Bacher <seb128@debian.org>  Sun, 28 Nov 2004 00:21:21 +0100

gnome-utils (2.6.2-1) unstable; urgency=low

  * GNOME Team Upload.
  * New upstream release
    + gfloppy now really formats floppies (Closes: #251443)
  * debian/menu: Quote everything to silence lintian.

 -- Marc 'HE' Brockschmidt <he@debian.org>  Tue,  8 Jun 2004 17:29:35 +0200

gnome-utils (2.6.0-2) unstable; urgency=low

  * GNOME Team Upload.
  * Upload in unstable.
  * debian/patches/10_configure.dpatch:
    + removed useless X11 libs check (Closes: #247418).
  * J.H.M. Dassen (Ray) <jdassen@debian.org>
    * Update Build-Depends for required versions of packages as per configure.in
    + debian/control.in: Bumped build dependencies on libgtk2.0-dev,
    libgnomevfs2-dev, libglib2.0-dev, libbonoboui2-dev, libglade2-dev,
    libpanel-applet2-dev, libgnome-desktop-dev; added build dependency on
    libgnome2-dev. (Closes: #248945)

 -- Sebastien Bacher <seb128@debian.org>  Sun, 30 May 2004 19:30:44 +0200

gnome-utils (2.6.0-1) experimental; urgency=low

  * New upstream release.
    + gdict now allows accented characters. (Closes: Bug#213800)
    + gnome-search tool always uses locate (Closes: Bug#220722)
    + gdict-applet no longer crashes when a word is misspelled
      (Closes: Bug#219217)
  * debian/rules
    + Add gnome team rules
    + Use dh_gconf and dh_scrollkeeper, and remove the relevant bits from
      postinst
  * debian/control:
    + Add Uploaders for gnome team
    + Add Build-Depends on gnome-pkg-tools; update debconf build-depends to
      >= 4.1.84 because of use of dh-gconf and dh_scrollkeeper
    + Suggest:
      - mtools (Closes: Bug#240612)
      - gnomesu instead of xsu (Closes: Bug#197318)
  * debian/README.Debian
    + Mention gtkfontsel (Closes: Bug#168217)

 -- Joe Drew <drew@debian.org>  Sun,  4 Apr 2004 17:07:07 -0400

gnome-utils (2.4.1-1) unstable; urgency=low

  * The "No more complaining" release, part 2
    (Subtitled: two calculator menu entries? disaster!
     also subtitled: SHUT UP)
  * New upstream release for GNOME 2.4 (Closes: Bug#218865)
  * debian/control:
    + Update description, Build-Depends for new version
    + Update Standards-Version to 3.6.1
    + Change Section to gnome
  * debian/rules:
    + Support new version of DEB_BUILD_OPTIONS properly
    + Remove gdialog enabling in configure (replaced by zenity)
  * debian/menu:
    + Remove entries for all binaries which are no longer present in
      gnome-utils

 -- Joe Drew <drew@debian.org>  Sat, 15 Nov 2003 17:55:15 -0500

gnome-utils (2.2.1-1) unstable; urgency=low

  * New upstream release, for GNOME 2.2.1

 -- Joe Drew <drew@debian.org>  Sat, 15 Mar 2003 18:48:21 -0500

gnome-utils (2.2.0.3-1) unstable; urgency=low

  * New upstream release for GNOME 2.2

 -- Joe Drew <drew@debian.org>  Sun, 12 Jan 2003 21:59:52 -0500

gnome-utils (2.0.6-1) unstable; urgency=low

  * The 'This version isn't THAT old' release.
  * New upstream release.
  * Thanks to Colin Walters for NMUing gnome-utils into sid when I was adrift,
    without a computer to develop on.

 -- Joe Drew <drew@debian.org>  Sun,  1 Dec 2002 15:40:44 -0500

gnome-utils (2.0.5-3.1) unstable; urgency=low

  * Add Build-Depends on scrollkeeper.

 -- Colin Walters <walters@debian.org>  Tue, 29 Oct 2002 17:45:05 -0500

gnome-utils (2.0.5-3) unstable; urgency=low

  * First upload to sid.  Yay!

 -- Colin Walters <walters@debian.org>  Sun, 27 Oct 2002 11:10:05 -0500

gnome-utils (2.0.5-2) experimental; urgency=low

  * Add Build-Depends on libncurses5-dev. Why this is required for a GTK
    program (gdialog) is beyond me.

 -- Joe Drew <drew@debian.org>  Sun, 13 Oct 2002 23:05:21 -0400

gnome-utils (2.0.5-1) experimental; urgency=low

  * New upstream release.
  * Acknowledge NMU - Thanks, Davide! Closes: Bug#156683

 -- Joe Drew <drew@debian.org>  Wed,  9 Oct 2002 23:15:16 -0400

gnome-utils (2.0.1-2) experimental; urgency=low

  * Re-enable gdialog due to popular demand.

 -- Joe Drew <drew@debian.org>  Wed, 31 Jul 2002 19:10:12 -0400

gnome-utils (2.0.1-1.1) experimental; urgency=low

  * NMU.
  * Recompiled against libgtk2.0-0png3 because of png2->png3 transition.

 -- Davide Puricelli (evo) <evo@debian.org>  Wed, 14 Aug 2002 18:23:34 +0200

gnome-utils (2.0.1-1) experimental; urgency=low

  * New maintainer (Closes: Bug#154505)
  * New upstream release

 -- Joe Drew <drew@debian.org>  Sat, 27 Jul 2002 22:25:54 -0400

gnome-utils (1.106.0-1) experimental; urgency=low

  * New upstream version (Closes: #147636)
    Uploaded to experimental, because it is a GNOME 2 prerelase version
    which cannot coexist with the GNOME 1.4 version.

 -- Jochen Voss <voss@debian.org>  Sun, 26 May 2002 16:52:33 +0200

gnome-utils (1.4.1.2-4) unstable; urgency=low

  * Depend on scrollkeeper as requested by Matt Zimmerman <mdz@debian.org>.
    gnome-utils would happily run without scrollkeeper, but the
    dependency seems to fix some potential upgrade problems.
    Keep scrollkeeper more silent as well. (closes: #140818)

 -- Jochen Voss <voss@debian.org>  Fri, 12 Apr 2002 16:56:45 +0200

gnome-utils (1.4.1.2-3) unstable; urgency=low

  * Recompiled as requested by the e2fsprogs maintainer
  * Apply patches from the GNOME BTS to fix gdict (Closes: #76735)

 -- Jochen Voss <voss@debian.org>  Sun, 24 Mar 2002 16:06:47 +0100

gnome-utils (1.4.1.2-2) unstable; urgency=low

  * Apply patch from Sebastian Rittau (Closes: #135550)

 -- Jochen Voss <voss@debian.org>  Mon,  4 Mar 2002 18:36:42 +0100

gnome-utils (1.4.1.2-1) unstable; urgency=low

  * New upstream release (translation updates, gtt fixes, ...)
  * Suggest xsu and mention it in the gshutdown manual page
    (Closes: #117833, #113377)
  * Provide the new virtual package "dict-client"

 -- Jochen Voss <voss@debian.org>  Mon, 18 Feb 2002 20:24:04 +0100

gnome-utils (1.4.1.1-5) unstable; urgency=low

  * stripchart documentation was truncated.

 -- Jochen Voss <voss@debian.org>  Thu, 17 Jan 2002 20:26:05 +0100

gnome-utils (1.4.1.1-4) unstable; urgency=low

  * Fix code in logview, which broke for archs
    where char is unsigned (Closes: #127021).
  * Fix the return codes of the "splac" utility.
  * Fix the gless manual page (Closes: #127255, #127256).

 -- Jochen Voss <voss@debian.org>  Fri,  4 Jan 2002 15:59:54 +0100

gnome-utils (1.4.1.1-3) unstable; urgency=low

  * Rebuild with libgtkhtml20 instead of libgtkhtml19.
    Somebody managed to remove libgtkhtml19 even while
    gnome-utils depends on it (Closes: #123212).
  * Add an override file for lintian: the license files
    in the online manual are ok.

 -- Jochen Voss <voss@debian.org>  Tue, 11 Dec 2001 16:43:17 +0100

gnome-utils (1.4.1.1-2) unstable; urgency=low

  * Add libgtkhtml-dev to the build dependencies.
    Otherwise gtt would not be built.

 -- Jochen Voss <voss@debian.org>  Tue,  4 Dec 2001 11:46:18 +0100

gnome-utils (1.4.1.1-1) unstable; urgency=low

  * New upstream release (mostly fixes, but contains an improved
    version of gtt)
  * Do not install "stripchart.conf" in /etc.  Upstream tells me, that
    this is no configuration file at all (despite of the name).  Same
    for "stripchar.params"
  * Update the build dependencies.

 -- Jochen Voss <voss@debian.org>  Fri, 23 Nov 2001 10:47:18 +0100

gnome-utils (1.4.0.2-4) unstable; urgency=low

  * Fixed the menu pixmaps. (Closes: #107572)
    Thanks to Michael Piefel for the new ones.

 -- Jochen Voss <voss@debian.org>  Thu, 30 Aug 2001 09:37:12 +0200

gnome-utils (1.4.0.2-3) unstable; urgency=low

  * Fix gdialog again.  This time the text mode was broken. (Closes: #105990)
  * Remove the emacs stuff from the bottom of this file.

 -- Jochen Voss <voss@debian.org>  Tue, 28 Aug 2001 16:18:28 +0200

gnome-utils (1.4.0.2-2) unstable; urgency=low

  * Fix the use of scrollkeeper (Closes: #105974)

 -- Jochen Voss <voss@debian.org>  Sat, 21 Jul 2001 13:37:40 +0200

gnome-utils (1.4.0.2-1) unstable; urgency=low

  * New upstream release

 -- Jochen Voss <voss@debian.org>  Sun,  8 Jul 2001 13:13:27 +0200

gnome-utils (1.4.0.1-3) unstable; urgency=low

  * Use the --with-messages configure option (Closes: #103509)

 -- Jochen Voss <voss@debian.org>  Wed,  4 Jul 2001 19:13:51 +0200

gnome-utils (1.4.0.1-2) unstable; urgency=low

  * Try to fix the Build-Depends again (Closes: #103122)

 -- Jochen Voss <voss@debian.org>  Mon,  2 Jul 2001 19:19:53 +0200

gnome-utils (1.4.0.1-1) unstable; urgency=low

  * New upstream release

 -- Jochen Voss <voss@debian.org>  Mon, 25 Jun 2001 19:22:51 +0200

gnome-utils (1.4.0-10) unstable; urgency=low

  * Upgraded to standards version 3.5.4.0
    (support DEB_BUILD_OPTIONS)
  * minor bug fix for gfloppy
  * Fix some manual pages.
  * Don't try to build the broken Azerbaijanian manual for gfloppy.

 -- Jochen Voss <voss@debian.org>  Mon, 14 May 2001 22:24:34 +0200

gnome-utils (1.4.0-9) unstable; urgency=low

  * Fix the output of "gdialog --version"

 -- Jochen Voss <voss@debian.org>  Wed,  2 May 2001 17:19:03 +0200

gnome-utils (1.4.0-8) unstable; urgency=low

  * Remove the bogus "Conflicts: gnome-admin", Replaces is
    enough (Closes: #94683)

 -- Jochen Voss <voss@debian.org>  Tue, 24 Apr 2001 08:48:20 +0200

gnome-utils (1.4.0-7) unstable; urgency=low

  * Add the remaining manual pages (Closes: #56078)

 -- Jochen Voss <voss@debian.org>  Sat, 21 Apr 2001 18:08:11 +0200

gnome-utils (1.4.0-6) unstable; urgency=low

  * Make "gdialog --menu" work
  * Call scrollkeeper-update properly
  * Add another five manual pages

 -- Jochen Voss <voss@debian.org>  Mon, 16 Apr 2001 18:26:27 +0200

gnome-utils (1.4.0-5) unstable; urgency=low

  * Add more manual pages

 -- Jochen Voss <voss@debian.org>  Sat,  7 Apr 2001 17:09:15 +0200

gnome-utils (1.4.0-4) unstable; urgency=low

  * Fix the Build-Depends again (Closes: #93072)

 -- Jochen Voss <voss@debian.org>  Fri,  6 Apr 2001 13:55:18 +0200

gnome-utils (1.4.0-3) unstable; urgency=low

  * Update the menu file (Closes: #80027, #46418)
  * Add menu icons

 -- Jochen Voss <voss@debian.org>  Fri,  6 Apr 2001 13:55:04 +0200

gnome-utils (1.4.0-2) unstable; urgency=low

  * Fix gdict's font and color selection dialog (Closes: #87179)

 -- Jochen Voss <voss@debian.org>  Sun, 25 Mar 2001 17:44:45 +0200

gnome-utils (1.4.0-1) unstable; urgency=low

  * New upstream release

 -- Jochen Voss <voss@debian.org>  Tue, 20 Mar 2001 18:31:01 +0100

gnome-utils (1.3.2-1) unstable; urgency=low

  * Update to standards version 3.1.0
  * New upstream release

 -- Jochen Voss <voss@debian.org>  Thu,  8 Mar 2001 19:21:30 +0100

gnome-utils (1.2.1-11) unstable; urgency=low

  * Install all README files into the doc directory.
  * Add a manual page for gdict (Closes: #35453)
  * Use dh_installman instead of deprecated dh_installmanpages.

 -- Jochen Voss <jvoss2@gmx.de>  Fri, 23 Feb 2001 18:19:17 +0100

gnome-utils (1.2.1-10) unstable; urgency=low

  * New maintainer (Closes: #86114)
  * Add links to the undocumented.7 manpage.
  * Small fix to the Build-Depends.

 -- Jochen Voss <jvoss2@gmx.de>  Fri, 16 Feb 2001 20:26:01 +0100

gnome-utils (1.2.1-9) unstable; urgency=low

  * Fix conflicts/replaces with gnome-admin. (Closes: #76995)
  * Recompile with fixed dpkg-dev (Closes: #76885, #77097, #77863)

 -- James LewisMoss <dres@debian.org>  Sun, 26 Nov 2000 03:14:11 -0500

gnome-utils (1.2.1-8) unstable; urgency=low

  * Conflict with gnome-admin (<< 1.0.3-2) (Closes: #76542)
  * Fixup menus.  Add missing (gdiskfree, gcharmap, gdict, idetool,
    gfloppy).  Add hints (hints="Gnome")

 -- James LewisMoss <dres@debian.org>  Sat, 11 Nov 2000 00:47:38 -0500

gnome-utils (1.2.1-7) unstable; urgency=low

  * Capitalize depends in Build-Depends (Closes: #74926)
  * Remove ghex from short descrip (no longer in package) (Closes: #74454)
  * Fix french translation of "Font Selector". Reported upstream. (Closes:
    #75092)
  * Grab patch from cvs to fix gcolorsel crashing problem (Closes: #74930)
  * Blech.  Modified a makefile.am.  Do the automake autoconf clean
    Makefile.in configure crap.

 -- James LewisMoss <dres@debian.org>  Sun, 22 Oct 2000 12:12:33 -0400

gnome-utils (1.2.1-6) unstable; urgency=low

  * Hopefully get all the build depends (Closes: #74343)

 -- James LewisMoss <dres@debian.org>  Sun,  8 Oct 2000 19:44:06 -0400

gnome-utils (1.2.1-5) unstable; urgency=low

  * Add Replaces, Provides gdict.
  * Add some build-depends.

 -- James LewisMoss <dres@debian.org>  Thu,  5 Oct 2000 22:22:03 -0400

gnome-utils (1.2.1-4) unstable; urgency=low

  * Maintainer upload.
  * Remove undocumented manpage links. (Should reopen #56078)
  * Fix up list of installed applications.

 -- James LewisMoss <dres@debian.org>  Thu,  5 Oct 2000 20:27:47 -0400

gnome-utils (1.2.1-0.1) unstable; urgency=low

  * New upstream release Closes: #69687).
  * NMU.
  * Move /usr/share/gstripchart/gstripchart.conf to /etc (Closes: #50212)
  * Install doc in the right place (Closes: #69142).
  * Build with libgnome 1.2.4 (Closes: #65419).
  * Install undocumented manpages (Closes: #56078).
  * Install a manpage for gdialog (Closes: #46947).
  * Gcalc don't segfault when pressing = (Closes: #63456).

 -- Christian Marillat <marillat@debian.org>  Fri, 25 Aug 2000 16:38:06 +0200

gnome-utils (1.2.0-0.0) frozen unstable; urgency=low

  * New upstream release.

 -- James LewisMoss <marillat.christian@wanadoo.fr>  Wed, 31 May 2000 10:03:13 +0200

gnome-utils (1.0.50-5) frozen unstable; urgency=low

  * setenv LC_NUMERIC to C at begininng of gcalc's main important bug.
    (Closes: #62471)
  * Apply patch from bug report (Closes: #51338)
  * Change the menu location from Apps/System to Apps/Tools for gcolorsel,
    gfontsel, and gsearchtool (Closes: #55596)
  * Remove patching code in rules.

 -- James LewisMoss <dres@debian.org>  Wed, 26 Apr 2000 23:25:08 -0400

gnome-utils (1.0.50-4) frozen unstable; urgency=low

  * Recompile to get libesd0|libesd0-alsa dependancy correct.  important
    bug.  (Closes: #55662)
  * Fix license file location in copyright file.

 -- James LewisMoss <dres@debian.org>  Sun, 30 Jan 2000 02:40:05 -0500

gnome-utils (1.0.50-3) unstable; urgency=low

  * Oops remove the FIXME comment.

 -- James LewisMoss <dres@debian.org>  Thu, 28 Oct 1999 23:44:08 -0400

gnome-utils (1.0.50-2) unstable; urgency=low

  * Add devpts as exclude fs type in gdiskfree/df.c.  Closes: #46420.
  * s/length/string-length/ in cromagnon/cromagnon.scm.
  * Add --gauge (correct spelling option to gdialog) (not replacement for
    guage, just a correct spelling option just the same) Closes: #44757.
  * Fix gfontsel so that already chosen items are redisplayed in text
    box. Closes: #35065.
  * Move gless from Apps/Editors to Apps/Viewers.  Closes: #47416.
  * gpenguin seems to have been removed from upstream source. Closes:
    #45942.

 -- James LewisMoss <dres@debian.org>  Thu, 28 Oct 1999 22:22:34 -0400

gnome-utils (1.0.50-1) unstable; urgency=low

  * New upstream.
  * Accept --defaultno at begining and end of option list for yesno.

 -- James LewisMoss <dres@debian.org>  Sat, 23 Oct 1999 00:00:53 -0400

gnome-utils (1.0.13-3) unstable; urgency=low

  * If width is set to 0 for yesno dialog do auto sizing.

 -- James LewisMoss <dres@debian.org>  Sun, 26 Sep 1999 23:13:00 -0400

gnome-utils (1.0.13-2) unstable; urgency=low

  * Add --defaultno option to --yesno dialog.

 -- James LewisMoss <dres@debian.org>  Sun, 26 Sep 1999 20:58:53 -0400

gnome-utils (1.0.13-1) unstable; urgency=low

  * New upstream.

 -- James LewisMoss <dres@debian.org>  Thu, 23 Sep 1999 21:56:00 -0400

gnome-utils (1.0.12-1) unstable; urgency=low

  * New upstream.
  * Remove beta warning in control.in.
  * Whoever said they would take this package and hasn't yet is more than
    welcom to it.  Only doing this to get Jim Pick's name off the
    maintainer list for it.
  * Remove gnomecal from description (Fixes bug: #40543)
  * Removed menu entries for gnomecal and gnomecard (Fixes bug #41755)
  * Previous NMU fixed #40153.
  * Move man files from usr/man/man1 to usr/share/man/man1 (FHS compliance)

 -- James LewisMoss <dres@debian.org>  Tue,  7 Sep 1999 21:58:35 -0400

gnome-utils (1.0.1-0.3) unstable; urgency=low

  * Non-maintainer upload fixing important #40362.
  * In clean target of debian/rules, chown files owned by root (created
    during configuration); also call distclean only if Makefile is present;
    new target force-clean to configure and then clean (old way).
  * Remove gnomecal and gnomecards manpages also from debian/rules.in.

 -- Roman Hodek <Roman.Hodek@informatik.uni-erlangen.de>  Tue,  6 Jul 1999 14:55:29 +0200

gnome-utils (1.0.1-0.2) unstable; urgency=low

  * Non-maintainer upload.
    Fixes bugs: #39089, #33132, #36161, #39333, #39819, #40029, #40129,  #38828.

 -- Vincent Renardias <vincent@waw.com>  Fri, 25 Jun 1999 13:00:16 +0200

gnome-utils (1.0.1-0.1) unstable; urgency=low

  * Non-maintainer upload for GNOME-1.0

 -- Jules Bean <jules@debian.org>  Mon,  8 Mar 1999 10:34:59 +0100

gnome-utils (0.99.3-1) unstable; urgency=low

  * New upstream release.

 -- Jim Pick <jim@jimpick.com>  Sun, 24 Jan 1999 21:05:15 -0800

gnome-utils (0.30-2) frozen unstable; urgency=low

  * Recompiled to fix dependencies.
  * shlibs.local updated
  * G_HAVE_INLINE and HAVE_ATEXIT defined as glib workaround.
  * GNOME IS ALPHA warnings added.

 -- Jim Pick <jim@jimpick.com>  Mon, 23 Nov 1998 23:46:45 -0800

gnome-utils (0.30-1) unstable; urgency=low

  * New upstream release.

 -- Jim Pick <jim@jimpick.com>  Fri, 25 Sep 1998 13:22:54 -0700

gnome-utils (0.28-1) unstable; urgency=low

  * New upstream release.

 -- Jim Pick <jim@jimpick.com>  Mon, 17 Aug 1998 13:00:56 -0700

gnome-utils (0.27-1) unstable; urgency=low

  * New upstream release.

 -- Jim Pick <jim@jimpick.com>  Sat, 15 Aug 1998 20:28:27 -0700

gnome-utils (0.25-1) unstable; urgency=low

  * New upstream version.

 -- Jim Pick <jim@jimpick.com>  Sat,  8 Aug 1998 11:09:30 -0700

gnome-utils (0.20-3) unstable; urgency=low

  * Rebuilt to fix dependencies.

 -- Jim Pick <jim@jimpick.com>  Mon,  3 Aug 1998 15:02:56 -0700

gnome-utils (0.20-2) unstable; urgency=low

  * Fixed broken dependency.

 -- Jim Pick <jim@jimpick.com>  Mon, 22 Jun 1998 10:33:31 -0700

gnome-utils (0.20-1) unstable; urgency=low

  * Initial Release.

 -- Jim Pick <jim@jimpick.com>  Wed, 17 Jun 1998 19:13:52 -0700