File: changelog

package info (click to toggle)
gnustep-back 0.28.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,056 kB
  • sloc: objc: 39,893; ansic: 6,432; sh: 170; makefile: 154
file content (1003 lines) | stat: -rw-r--r-- 38,197 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
gnustep-back (0.28.0-3) unstable; urgency=medium

  * debian/patches/cache-pattern.patch: New; should fix occasionally
    missing font(s) in the UI with the cairo backend (Closes: #968386).
  * debian/patches/series: Update.
  * debian/templates/control.m4 (Build-Depends): Switch to the
    debhelper-compat mechanism.
    (Standards-Version): Bump to 4.5.1; no changes needed.
  * debian/control: Regenerate.
  * debian/compat: Delete.

 -- Yavor Doganov <yavor@gnu.org>  Tue, 26 Jan 2021 19:55:52 +0200

gnustep-back (0.28.0-2) unstable; urgency=medium

  * Upload to unstable.
  * debian/gbp.conf: Remove debian-branch.

 -- Yavor Doganov <yavor@gnu.org>  Fri, 12 Jun 2020 13:56:30 +0300

gnustep-back (0.28.0-1) experimental; urgency=medium

  * New upstream release.
  * debian/gbp.conf: Set debian-branch to experimental.
  * debian/compat: Set to 13.
  * debian/templates/control.m4 (Build-Depends): Drop gnustep-make;
    required version is in buster.  Bump debhelper requirement to match
    the compat level.  Replace libfontconfig1-dev and libfreetype6-dev
    (now empty/dummy packages) with libfontconfig-dev and libfreetype-dev,
    respectively.  Add libxrandr-dev.
    (Rules-Requires-Root): Set to "no".
    (Standards-Version): Claim compliance with 4.5.0; no changes needed.
  * debian/control: Regenerate, reflecting the SONAME change.
  * debian/rules (DEB_LDFLAGS_MAINT_APPEND): Remove -Wl,--as-needed,
    default as of GCC 9.
  * debian/NEWS.Debian: Rename as...
  * debian/NEWS: ... so that it gets installed automatically.  Remove
    asterisks from all entries.
  * debian/patches/fix-spelling-error.patch: Refresh.
  * debian/patches/debian-fonts.patch: Likewise.
  * debian/copyright: Update copyright years.

 -- Yavor Doganov <yavor@gnu.org>  Sat, 02 May 2020 17:36:29 +0300

gnustep-back (0.27.0-2) unstable; urgency=medium

  * Upload to unstable.
  * debian/gbp.conf: Remove debian-branch.

 -- Yavor Doganov <yavor@gnu.org>  Thu, 10 Jan 2019 15:51:11 +0200

gnustep-back (0.27.0-1) experimental; urgency=medium

  * New upstream release:
    - SONAME change: libgnustep-back0.26 -> 0.27.
  * Remove patches applied upstream:
    - autoreconf.patch;
    - no-freetype-config.patch;
    - link-libs.patch;
    - xlib-fontconfig.patch;
    - threaded-x.patch;
    - no-font_cacher.patch.
  * debian/patches/series: Update.
  * debian/compat: Set to 12.
  * debian/templates/control.m4 (Build-Depends): Bump debhelper
    requirement to match the compat level.  Require gnustep-make >=
    2.7.0-4 for "terse" support.
    (Standards-Version): Claim compliance with 4.3.0; no changes needed.
  * debian/control: Regenerate, reflecting the SONAME change.
  * debian/rules (override_dh_auto_install): Delete duplicate files
    already shipped at /usr/share/doc.
    (override_dh_auto_build): Use "$(verbose)" instead of "messages=yes"
    to support "terse" in DEB_BUILD_OPTIONS.
  * debian/upstream/signing-key.asc: Minimize.
  * debian/gbp.conf: New file.
  * debian/copyright: Update copyright years.

 -- Yavor Doganov <yavor@gnu.org>  Thu, 10 Jan 2019 15:50:38 +0200

gnustep-back (0.26.2-4) unstable; urgency=medium

  * debian/templates/control.m4: Let gnustep-backN provide gnustep-back so
    that a backend can always be installed without specifying the version
    (Closes: #892241).  Thanks Josh Freeman for the report.
    (Standards-Version): Bump to 4.1.4 (no changes required).
  * debian/control: Regenerate.
  * debian/tests/file-tests: Replace dumb file tests with a minimalistic
    test program which dynamically loads all backends (Closes: #896838).
    Thanks to Paul Gevers for the report and the idea.
  * debian/tests/control (Restrictions): Define to allow-stderr.
    (Depends): Remove shunit2 and file; add libgnustep-base-dev.
  * debian/tests/load_backends.m:
  * debian/tests/GNUmakefile: New files.

 -- Yavor Doganov <yavor@gnu.org>  Sun, 29 Apr 2018 22:38:07 +0300

gnustep-back (0.26.2-3) unstable; urgency=medium

  * debian/patches/xlib-fontconfig.patch: New, cherry-picked from
    upstream; replace xlib-specific font enumerator with the shared
    fontconfig one.  Fixes major slowness with approx 1/3 of the apps.
  * debian/patches/threaded-x.patch: New, cherry-picked from upstream;
    enables drawing in secondary threads which is needed by
    lynkeos.app/2.10.
  * debian/patches/no-font_cacher.patch: New, cherry-picked from upstream;
    don't build font_cacher with the Xft-enabled xlib backend.
  * debian/patches/fix-spelling-error.patch: Fix another spelling error.
  * debian/patches/tools.patch: Remove; not really needed.
  * debian/patches/series: Update.
  * debian/rules: Remove dh_make boilerplate comments.
    (override_dh_auto_build, override_dh_auto_install): Simplify recipes
    by passing SERIAL_SUBDIRECTORIES=Source for cairo and art.
  * debian/font_cacher.1: Delete.
  * debian/gnustep-back-common.manpages: Delete; the gpbs manpage is
    installed by the upstream build system.
  * debian/templates/gnustep-back-common.install.in: Add usr/share/man.
  * debian/README.Debian: Update info about font handling.
  * debian/copyright: Remove font_cacher.1 snippet.
  * debian/tests/control (Depends): Add file.

 -- Yavor Doganov <yavor@gnu.org>  Mon, 26 Feb 2018 00:27:35 +0200

gnustep-back (0.26.2-2) unstable; urgency=medium

  * Upload to unstable.
  * debian/templates/control.m4 (Vcs-Git, Vcs-Browser): Update to point
    to salsa.debian.org.
  * debian/control: Regenerate.
  * debian/README.Debian: Update to reflect the fact that cairo is the
    default backend.  Add note about different font handling between the
    backends.  Mention systempreferences.app.

 -- Yavor Doganov <yavor@gnu.org>  Thu, 25 Jan 2018 22:17:01 +0200

gnustep-back (0.26.2-1) experimental; urgency=medium

  [ Eric Heintzmann ]
  * debian/rules:
    + Remove -shared-libgcc LDFLAG, now useless.
    + Append --as-needed LDFLAG.
    + Hardening: remove -pie option.
    + Now build depends on latest gnustep-gui package.
  * debian/control:
    + Bump Standards Versions to 4.1.0.
    + As requested by Gürkan, change his name.
  * New fix-spelling-error.patch.
  * Add a testsuite.

  [ Yavor Doganov ]
  * New upstream release 0.26.2:
    + Rename packages following the SONAME change:
      - gnustep-back0.25 -> gnustep-back0.26
      - gnustep-back0.25-art -> gnustep-back0.26-art
      - gnustep-back0.25-cairo -> gnustep-back0.26-cairo
    + New package gnustep-back0.26-xlib: prepare for removal of the art
      backend due to removal of src:libart-lgpl (Addresses: #885786).
  * debian/watch: Switch to ftp.gnustep.org; much more reliable.
  * debian/compat: Bump compat level to 11.
  * debian/rules: Replace shell comments with makefile comments; M-x
    wh-cl.  Use convenience variables where possible.
    (DEB_LDFLAGS_MAINT_APPEND): Add -Wl,--no-undefined.
    (override_dh_testdir): New target to regenerate debian/control.
    (override_dh_auto_configure): Substitute GNUSTEP_SYSTEM_DOC as well
    when generating gnustep-back-common.install.  Configure the xlib
    backend in a separate builddir; handle the generation of maintainer
    scripts and .install/.links files.
    (override_dh_auto_build): Pass dpkg-buildflags explicitly as OBJCFLAGS
    and CFLAGS are being reset by gnustep-make.  Build documentation.
    Pass $(optim) for proper noopt support.  Pass tools=no and fonts=no to
    the cairo build.  Remove unnecessary tools recipe; add one for xlib.
    (override_dh_auto_install): Install documentation and the xlib
    backend.
    (override_dh_auto_clean): Clean documentation; ignoring errors.
    Simplify the recipe.
    (override_dh_strip): Remove in favor of automatic -dbgsym packages.
    (override_dh_shlibdeps): Add override to fix circular dependencies;
    regression introduced in 0.25.0-1 (Closes: #882078).  Thanks to Bill
    Allombert for the report.
  * debian/templates/control.m4: Remove -dbg, add new package -xlib.
    (Build-Depends): Require debhelper >= 11 and gnustep-make >= 2.7.0-3
    for the optim variable definition.
    (Section): Remove section "libs" for all packages as it is wrong
    according to lintian (and to me).
    (Depends): Relax dependencies on -common to ease transitions with the
    ultimate goal to support partial upgrades.
    (Breaks, Replaces): Remove; obsolete.
    (Standards-Version): Declare compliance with 4.1.3.
  * debian/control: Regenerate.
  * debian/templates/gnustep-back-common.install.in: Add
    @GNUSTEP_SYSTEM_DOC@/*.
  * debian/templates/gnustep-back-common.prerm.in: Also delete
    /var/lib/GNUstep, another regession in 0.25.0-1 (Closes: #832349).
    Thanks Andreas Beckmann.
  * debian/patches/autoreconf.patch: New; fix autoreconf failure.
  * debian/patches/no-freetype-config.patch: New; use PKG_CHECK_MODULES to
    detect freetype as freetype-config is being removed (Closes: #887719).
  * debian/patches/link-libs.patch: New; fix FTBFS with ld --no-undefined.
  * debian/patches/fix-spelling-error.patch: Fix another spelling error.
  * debian/patches/series: Update.
  * debian/clean: Simplify; add Documentation/version.texi.
  * debian/font_cacher.1: New file.
  * debian/gnustep-back-common.manpages: Install it.
  * debian/changelog: Whitespace cleanup.
  * debian/copyright: Update copyright years, add debian packaging
    copyright/license information, add configure license, fix LGPL/GPL
    license notices, fix indentation of license texts.

 -- Yavor Doganov <yavor@gnu.org>  Sun, 21 Jan 2018 15:50:21 +0200

gnustep-back (0.25.0-2) unstable; urgency=medium

  * Upload to unstable.
  * Thanks to Iain R. Learmonth, use cme and licensecheck tools:
    + Update debian/templates/control.m4 file
      and regenerate debian/control file
    + Update debian-fonts patch
    + Provide a new debian/copyright-scan-patterns.yml file
    + Provide a new debian/fill.copyright.blanks.yml file
    + Provide a new debian/fix.scanned.copyright file
    + Update debian/copyright file

 -- Eric Heintzmann <heintzmann.eric@free.fr>  Sun, 10 Jul 2016 01:42:04 +0200

gnustep-back (0.25.0-1) experimental; urgency=medium

  * Team upload.
  * New Upstream version 0.25.0
    + Remove autoreconf patch, now useless
    + Remove cairo-scrolling patch, now useless
    + Remove fontconfig-libs patch, now useless
    + Remove format-security patch, now useless
    + Update debian-fonts patch
  * New tools patch
  * Update debian/control.m4 and move it to debian/templates/ directory
    + In agreement with the Debian GNUstep maintainers, add myself as Uploader
    + Bump Standards-Version to 3.9.8
    + Update Vcs-* fields
    + Remove useless {gnustep:Depends} variable
    + Tighten dependencies
    + Regenerate debian/control file
  * Update debian/gnustep-back.postinst.in and
     move it to debian/templates/gnustep-backN-backend.postinst.in
  * Update debian/gnustep-back.prerm.in and
    move it to debian/templates/gnustep-backN-backend.prerm.in
  * Update debian/gnustep-back-common.postinst script and
    move it to debian/templates/gnustep-back-common.postinst.in
  * Update debian/gnustep-back-common.preinst script and
    move it to debian/templates/gnustep-back-common.preinst.in
  * Update debian/gnustep-back-common.prerm script and
    move it to debian/templates/gnustep-back-common.prerm.in
  * Provide a new debian/templates/gnustep-backN.docs.in doc
  * Provide a new debian/gnustep-back-common.manpages file
  * Provide a new debian/templates/gnustep-backN-backend.install.in file
  * Provide a new debian/templates/gnustep-backN-backend.links.in file
  * Provide a new debian/templates/gnustep-back-common.install.in file
  * Update debian/watch file to version 4 and
    provide a new debian/upstream/signing-key.asc file
  * Provide a new debian/clean file
  * Rewrite debian/copyright file
  * Rewrite debian/rules file for easier maintenance
    + use override_dh_* targets
    + enable hardening

 -- Eric Heintzmann <heintzmann.eric@free.fr>  Tue, 05 Jul 2016 18:05:12 +0200

gnustep-back (0.24.0-4) unstable; urgency=medium

  * debian/patches/cairo-scrolling.patch: New; fix scrolling with
    cairo/1.14.0 (Closes: #770141).
  * debian/patches/series: Update.

 -- Yavor Doganov <yavor@gnu.org>  Wed, 19 Nov 2014 08:11:48 +0200

gnustep-back (0.24.0-3) unstable; urgency=medium

  * debian/gnustep-back-common.postinst: Ignore errors from mv which lead
    to failure when font directories do not contain spaces, thanks Thomas
    Zell (Closes: #764695).
  * debian/gnustep-back-common.prerm: Revert bogus change introduced in
    0.24.0-1 (finally closes: #663388).
  * debian/control.m4 (Standards-Version): Bump to 3.9.6; no changes
    needed.
  * debian/control: Regenerate.

 -- Yavor Doganov <yavor@gnu.org>  Tue, 28 Oct 2014 11:17:15 +0200

gnustep-back (0.24.0-2) unstable; urgency=medium

  * Upload to unstable; should finally fix the piuparts issue once
    mknfonts.tool is binNMUed (Closes: #663388).
  * debian/compat: Bump to 9 to get .build-id debugging symbols.
  * debian/control.m4 (Build-Depends): Require debhlper >= 9.
    (Description): Mention that the art backend is deprecated.
    (Suggests): Remove fonts-freefont-ttf as -common depends on it.
  * debian/control: Regenerate.
  * debian/rules (confflags): Define conditionally and pass --host to
    configure only if cross-compiling.

 -- Yavor Doganov <yavor@gnu.org>  Mon, 07 Jul 2014 16:00:20 +0300

gnustep-back (0.24.0-1) experimental; urgency=low

  * New major upstream release.
  * Ack NMU, thanks gregor herrmann.
  * debian/rules (build-arch, build-indep): Remove dependency on
    $(QUILT_STAMPFN).
    (v_gui): Bump to 0.24.
    (p_gpbs, d_gpbs): Remove.
    (install-art): Move gpbs to -common.
    (binary-arch): Install the manpage in -common.  Bump alternatives
    priority of cairo to make it the default.
    (install-indep): Do not create Developer symlink.
  * debian/patches/cairo-fc.patch: Delete, not needed anymore.
  * debian/patches/fontconfig-libs.patch: New, fixes FTBFS with
    -Wl,--no-undefined.
  * debian/patches/autoreconf.patch: Regenerate.
  * debian/patches/series: Update.
  * debian/control.m4 (gnustep-gpbs): Remove, it seems unnecessary kludge
    to have it as an extra package.
    (gnustep-back`'SOV_BACK) <Depends>: Replace art with cairo.
    (gnustep-back-common) <Architecture>: Set to "any".
    <Depends>: Add ${shlibs:Depends}.  Remove version requirement for
    mknfonts.tool.
    <Breaks, Replaces>: Add gnustep-gpbs.
    (gnustep-back-dbg) <Depends>: Replace gnustep-gpbs with
    gnustep-back-common.
    <Recommends>: Replace libgnustep-gui0.22-dbg with
    libgnustep-gui0.24-dbg.
    (Suggests): Replace ttf-dejavu with fonts-dejavu.
    (Vcs-Git): Use the canonical URI.
    (Standards-Version): Bump to 3.9.5 (no changes needed).
  * debian/control: Regenerate.
  * debian/gnustep-back-common.postinst: In case of failure, inform about
    /var/log/gnustep-back-common.log.
  * debian/gnustep-back-common.prerm: Delete gnustep-back-common.log only
    on purge.
  * debian/copyright: Update copyright years, add more copyright holders
    and licenses.  Clarify that gpbs's license is GPLv3+.

 -- Yavor Doganov <yavor@gnu.org>  Wed, 28 May 2014 02:46:11 +0300

gnustep-back (0.20.1-2.1) unstable; urgency=low

  * Non-maintainer upload.
  * Fix "FTBFS: build-arch problems with patch applying and installation
    of files generated only in build-indep target":
    - debian/rules: make build-arch and build-indep depend on quilt patch
      target, thanks Ralf Treinen
    - debian/rules: don't install documentation in binary-arch target, only
      built for binary-indep packages
    (Closes: #666334)

 -- gregor herrmann <gregoa@debian.org>  Thu, 15 Nov 2012 18:16:40 +0100

gnustep-back (0.22.0-1) experimental; urgency=low

  * New major upstream release.
  * debian/rules (v_gui): Bump to 0.22, which depends on -base 1.24 which
    in turn does not lead to the automatic creation of $HOME/GNUstep
    (Closes: #663388).  Don't include /usr/share/quilt/quilt.make; remove
    patch/unpatch depedencies.  Enable hardening.
  * debian/control.m4 (Build-Depends): Remove quilt.  Add libxcursor-dev.
    (Depends, Suggests): Replace ttf-freefont with fonts-freefont-ttf.
    (Replaces, Breaks, Provides): Remove; no longer needed.
    (gnustep-back-dbg) <Recommends>: Set to libgnustep-gui0.22-dbg.
    (Standards-Version): Set to 3.9.3; no changes required.
  * debian/control: Regenerate.
  * debian/source/format: Switch to 3.0 (quilt) so that patches are always
    applied (Closes: #666334).
  * debian/README.source: Delete; redundant.
  * debian/gnustep-back-common.preinst: Remove defoma cleanup code.
  * debian/gnustep-back-common.prerm: Likewise.  Also delete unowned
    files/directories under /var.
  * debian/patches/cairo-fc.patch: Refresh.
  * debian/patches/autoreconf.patch: Regenerate.
  * debian/patches/format-security.patch: New, fixes FTBFS with
    -Werror=format-security; thanks Mathieu Trudel-Lapierre / Ubuntu.
  * debian/patches/series: Update.
  * debian/copyright: Update copyright years.

 -- Yavor Doganov <yavor@gnu.org>  Mon, 28 May 2012 14:56:36 +0300

gnustep-back (0.20.1-2) unstable; urgency=low

  * Upload to unstable.

 -- Yavor Doganov <yavor@gnu.org>  Fri, 16 Sep 2011 10:55:29 +0300

gnustep-back (0.20.1-1) experimental; urgency=low

  * New upstream release.
  * debian/control.m4 (Vcs-Arch): Replace with...
    (Vcs-Git): ...as the package is maintained in Git now.
    (Vcs-Browser): New field.
    (Description): Avoid definite article to placate lintian.
    (Standards-Version): Bump to 3.9.2; no changes needed.
    (gnustep-back-dbg) <Recommends>: Set to libgnustep-gui0.20-dbg.
  * debian/control: Regenerate.
  * debian/rules (v_gui): Bump to 0.20.
    (CC, dummy, foo): Remove; not needed.
    (debian/configure-art-stamp, debian/configure-cairo-stamp): Create a
    symlink for `configure'.
  * debian/patches/debian-fonts.patch:
  * debian/patches/cairo-fc.patch: Refresh.
  * debian/patches/autoreconf.patch: Regenerate.

 -- Yavor Doganov <yavor@gnu.org>  Sat, 04 Jun 2011 12:19:20 +0300

gnustep-back (0.18.0-3) unstable; urgency=medium

  * debian/control.m4 (gnustep-back-common) <Depends>: Add ttf-freefont
    (Closes: #596059).
  * debian/control: Regenerate.

 -- Yavor Doganov <yavor@gnu.org>  Wed, 08 Sep 2010 18:35:17 +0300

gnustep-back (0.18.0-2) unstable; urgency=low

  * Upload to unstable.
  * debian/control.m4 (gnustep-back-dbg) <Recommends>: Add
    libgnustep-gui0.18-dbg.
    (Conflicts): Replace with...
    (Breaks): ...as recommended by current Policy.
    (Standards-Version): Set to 3.9.1.
  * debian/control: Regenerate.
  * debian/watch: Track only stable releases.

 -- Yavor Doganov <yavor@gnu.org>  Wed, 11 Aug 2010 18:47:23 +0300

gnustep-back (0.18.0-1) experimental; urgency=low

  * New upstream release.
  * debian/control.m4 (Standards-Version): Set to 3.8.4 (no changes).
    (Depends): Remove ${shlibs:Depends}.  Add ${misc:Depends} for -dbg.
    (Description): Tweak to avoid lintian warning.
    (gnustep-back-doc): Remove and merge into -common.
    (gnustep-back-common) <Replaces, Conflicts, Provides>: Define to -doc.
  * debian/rules (v_gui): Bump to 0.18.0.
    (OPTFLAG): Replace with $(optim) for compatibility with
    gnustep-make/2.4.0.
    (p_doc, d_doc): Remove.
    (install-indep): Adjust rule to install the documentation into
    gnustep-back-common.
  * debian/gnustep-back-common.preinst: New; remove defoma stuff and new
    Fonts dir on upgrades.
  * debian/source/format: New file.
  * debian/copyright: Bump copyright years.  Add missing copyright notice
    for the fonts (Closes: #561809).

 -- Yavor Doganov <yavor@gnu.org>  Tue, 22 Jun 2010 18:46:58 +0300

gnustep-back (0.17.1-1) experimental; urgency=low

  [ Gürkan Sengün ]
  * New upstream version.
  * Bump standards version.

  [ Yavor Doganov ]
  * DejaVu is provided as a fallback font in [CairoFontEnumerator
    -default*FontName] methods (Closes: #527593).
  * debian/control.m4: Wrap all fields.
    (Section): Change to `gnustep'.
    (Uploaders): Add myself, remove Hubert upon his request.
    (Conflicts, Replaces): Remove; ancient.
    (Homepage, Vcs-Arch): New fields.
    (Build-Depends): Add quilt.
    (gnustep-back-common) <Depends>: Remove defoma, add fontconfig and
    mknfonts.tool (Closes: #542334).
  * debian/control: Regenerate.
  * debian/rules: Use $(MAKE) instead of gs_make to properly pass
    variables and options to sub-makes.  Use quilt for patch management;
    adjust rules accordingly.
    (LDFLAGS, OPTFLAG): Define.
    (install-art): Remove empty dirs.
    (binary-indep): Don't install the defoma script.
  * debian/gnustep-back-common.prerm:
  * debian/gnustep-back-common.postinst: Adjust for the defoma removal;
    generate nfont descriptions with the help of fc-list and mknfonts.
  * debian/README.source: New file.
  * debian/gnustep-nfont.defoma: Delete.
  * debian/watch: Make it work; don't uupdate.
  * debian/README.Debian: Add info about switching backends; remove
    obsolete notes about Bitstream-Vera.
  * debian/patches/debian-fonts.patch: New; split from the diff.gz and
    update for the new fonts location.
  * debian/patches/cairo-fc.patch: New; fix FTBFS with cairo from
    experimental.  Thanks to Barry deFreese for reporting this.
  * debian/patches/autoreconf.patch: New; regenerate configure.
  * debian/patches/series: Add.

 -- Yavor Doganov <yavor@gnu.org>  Fri, 04 Dec 2009 12:26:34 +0200

gnustep-back (0.16.0-3) unstable; urgency=low

  * Really upload to unstable.

 -- Hubert Chathi <uhoreg@debian.org>  Sun, 12 Apr 2009 15:54:30 -0400

gnustep-back (0.16.0-2) experimental; urgency=low

  * Upload to unstable.

 -- Hubert Chathi <uhoreg@debian.org>  Sat, 11 Apr 2009 13:54:01 -0400

gnustep-back (0.16.0-1) experimental; urgency=low

  [Gürkan Sengün]
  * New upstream version.
  * Bump standards version.
  * Bump debhelper version.
  * Add myself to Uploaders field.
  * Replace xlibmesa-gl-dev with libgl1-mesa-dev in debian/control.

  [Hubert Chathi]
  * Bump version numbers.
  * Force to install in system domain.
  * Remove config.status in clean target.
  * Target to experimental distribution.

 -- Gürkan Sengün <gurkan@phys.ethz.ch>  Fri, 20 Feb 2009 22:13:47 +0100

gnustep-back (0.14.0-2) unstable; urgency=low

  * Upload to unstable.

 -- Hubert Chathi <uhoreg@debian.org>  Wed, 02 Jul 2008 17:19:03 -0400

gnustep-back (0.14.0-1) experimental; urgency=low

  * New upstream release.
  * debian/rules: Fix building of backends to be more maintainable.
  * debian/control: Add depends on ${gnustep:Depends}.

 -- Hubert Chathi <uhoreg@debian.org>  Mon, 16 Jun 2008 10:18:50 -0400

gnustep-back (0.12.0-2) unstable; urgency=low

  * Source/x11/XGServer: Apply patch from upstream to work with multiple
    displays. (Closes: #467199)
  * debian/control, debian/rules: Add debug package.
  * debian/control, debian/compat: Use debhelper compatibility level 5.
  * debian/control: Bump standards version to 3.7.3 (no other changes needed).
  * debian/rules: Remove call to strip (dh_strip should be enough).
  * debian/control: Remove Suggests:/Depends: on ttf-bitstream-vera.
    (Closes: #461263)
  * debian/Fonts/*: Removed.
  * debian/NEWS.Debian: Updated information on font names.
  * debian/copyright: Add copyright info, update note about
    common-licenses to point to specific the version of the license as
    well as the latest version.

 -- Hubert Chathi <uhoreg@debian.org>  Tue, 26 Feb 2008 23:01:55 -0500

gnustep-back (0.12.0-1) unstable; urgency=low

  * New upstream release.

 -- Hubert Chan <uhoreg@debian.org>  Fri,  6 Jul 2007 13:41:52 -0400

gnustep-back (0.11.0-3) unstable; urgency=low

  * Update maintainer address.
  * Call defoma-app from gnustep-back-common postinst/prerm. (Closes: #393476)

 -- Hubert Chan <uhoreg@debian.org>  Wed, 18 Oct 2006 18:22:08 -0400

gnustep-back (0.11.0-2) unstable; urgency=low

  * Updated README.Debian, and added NEWS.Debian to document font name
    changes to match the defoma names.

 -- Hubert Chan <hubert@uhoreg.ca>  Mon, 25 Sep 2006 21:16:57 -0400

gnustep-back (0.11.0-1) unstable; urgency=low

  * New upstream release.
  * Get fonts from defoma (thanks to gus for the defoma script).
    - make the art backend search in /var/lib/defoma/gnustep-nfont.d.
  * Use shlibs.local file for libgnustep-gui to avoid circular depends.
  * Add license headers to copyright file.
  * Change section of -doc to doc, to agree with override file.
  * Suggest some useful font packages. (Closes: #361685)
  * Bump standards version to 3.7.2.  (no changes)

 -- Hubert Chan <hubert@uhoreg.ca>  Wed, 30 Aug 2006 16:39:25 -0600

gnustep-back (0.10.2-1) unstable; urgency=low

  * New upstream release.

 -- Hubert Chan <hubert@uhoreg.ca>  Tue, 27 Dec 2005 13:09:16 -0700

gnustep-back (0.10.1-2) unstable; urgency=low

  * Split into -back, -doc, -gpbs, and -common to help with future parallel
    installs of different versions.
  * Add soname to package name.
  * Remove unneeded lintian/linda overrides.

 -- Hubert Chan <hubert@uhoreg.ca>  Fri, 16 Dec 2005 23:26:20 -0500

gnustep-back (0.10.1-1) unstable; urgency=low

  * New upstream release.
  * Acknowledge NMU. (Closes: #314823, #314385, #320958, #321646, #329223,
    #337143, #340878)
  * Build with new gnustep-make.
  * Bump standards-version to 3.6.2.
  * Document how to turn off antialiasing in README.Debian.
  * Remove obsolete libdps-dev build-dependency.

 -- Hubert Chan <hubert@uhoreg.ca>  Mon, 12 Dec 2005 20:41:22 -0500

gnustep-back (0.9.5-1.1) unstable; urgency=low

  * NMU
  * Rebuilt against libfreetype6 (>= 2.1.10) (Closes: #314823, #314385,
    #320958, #321646, #329223, #337143, #340878)

 -- Wolfgang Sourdeau <was@debian.org>  Tue, 29 Nov 2005 16:50:32 -0500

gnustep-back (0.9.5-1) unstable; urgency=low

  * New upstream release.
  * Adam Fedor inserted a email address to forward reports to (closes: #291356).
  * Now Build-Depends on pkg-config.
  * Overrides inappropriate linda warnings.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Sat,  9 Apr 2005 22:58:10 +0200

gnustep-back (0.9.4-2) unstable; urgency=low

  * Rebuild using latest GNUstep libs (closes: #281007).

 -- Eric Heintzmann <eric@gnustep.fr.st>  Thu, 18 Nov 2004 20:18:30 +0100

gnustep-back (0.9.4-1) unstable; urgency=low

  * New upstream release.
  * Bump Standards-Version to 3.6.1.1.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Thu, 28 Oct 2004 21:16:31 +0200

gnustep-back (0.9.3-2) unstable; urgency=low

  * Recompile.

 -- Matthias Klose <doko@debian.org>  Sun, 18 Jul 2004 08:36:14 +0200

gnustep-back (0.9.3-1) unstable; urgency=low

  * New upstream release.
  * Remove libwraster2-dev from build-dependencies.
  * Change Debian GNUstep maintainers e-mail:
     use pkg-gnustep-maintainers@lists.alioth.debian.org.
  * Provides wrapper scripts for gpbs.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Mon, 28 Jun 2004 19:51:43 +0200

gnustep-back (0.9.2-2) unstable; urgency=medium

  * Update build dependency on gnustep-gui.

 -- Matthias Klose <doko@debian.org>  Mon, 12 Apr 2004 22:17:16 +0200

gnustep-back (0.9.2-1) unstable; urgency=low

  * New upstream release (closes: #239880).
  * debian/control.m4: Update Build-Depends field.
  * debian/rules: Update CC.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Wed,  7 Apr 2004 13:38:22 +0200

gnustep-back (0.9.1-2) unstable; urgency=low

  * Change Vera nfont dirnames.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Wed, 24 Dec 2003 03:24:45 +0100

gnustep-back (0.9.1-1) unstable; urgency=low

  * New upstream release.
  * Update Build-Depends field (libxft2-dev --> libxft-dev).
  * Switch to art backend (closes: #155229, #223365, #204774, #204645):
   + Add nfonts in Fonts dir.
   + Modify debian/rules install target to install fonts.
   + Binary package now depends on ttf-bitstream-vera and ttf-freefont.
   + New debian/README.Debian file.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Sat, 20 Dec 2003 18:29:06 +0100

gnustep-back (0.9.0-1) unstable; urgency=low

  * New upstream release.
  * Install gpbs manpage.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Fri,  3 Oct 2003 09:38:47 +0200

gnustep-back (0.8.9-1) unstable; urgency=low

  * New upstream release.
  * New Co-Maintainer.
  * Update to standard version 3.6.1.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Sat, 30 Aug 2003 00:08:34 +0200

gnustep-back (0.8.8-1) unstable; urgency=low

  * New upstream release.
  * Remove debian/gnustep-back.docs file.
  * Update debian/rules to use flattened directory structure :
    - remove GS_HOST, GS_CPU, GS_OS, GS_LIB_DIR, GS_COMBO_DIR variables.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Mon, 28 Jul 2003 06:02:56 +0200

gnustep-back (0.8.7-2) unstable; urgency=low

  * Minor build process modifications.

 -- Matthias Klose <doko@debian.org>  Sun, 27 Jul 2003 23:16:18 +0200

gnustep-back (0.8.7-1) unstable; urgency=low

  * New upstream release.
  * Update to standard version 3.5.10.
  * Update to debhelper compatibility level 4.
  * Use gcc/gobjc 3.3.
  * Update Build-Depends field.
  * Fix lintian warnings and errors.
  * Update copyright file.
  * Update descriptions.
  * Do not use dh_doclink any longer.
  * Add debian/watch file.

 -- Eric Heintzmann <eric@gnustep.fr.st>  Wed,  9 Jul 2003 23:11:40 +0200

gnustep-back (0.8.5-1) unstable; urgency=medium

  * New upstream release.
  * GNUstep was never optimized for i686 (closes: #183178).
  * Update copyright file (Eric Heintzmann). Closes: #186144.

 -- Matthias Klose <doko@debian.org>  Tue, 25 Mar 2003 22:35:52 +0100

gnustep-back (0.8.4-1) unstable; urgency=low

  * New upstream release.

 -- Matthias Klose <doko@debian.org>  Sat,  1 Mar 2003 14:27:36 +0100

gnustep-back (0.8.3-2) unstable; urgency=low

  * Adjust build dependencies for xlib backend.

 -- Matthias Klose <doko@debian.org>  Sun, 26 Jan 2003 12:15:39 +0100

gnustep-back (0.8.3-1) unstable; urgency=low

  * New upstream release.

 -- Matthias Klose <doko@debian.org>  Mon, 20 Jan 2003 23:57:33 +0100

gnustep-back (0.8.1-1) unstable; urgency=low

  * New upstream version.

 -- Matthias Klose <doko@debian.org>  Wed, 11 Sep 2002 22:04:20 +0200

gnustep-back (0.8.0-1) unstable; urgency=low

  * New upstream release.

 -- Matthias Klose <doko@debian.org>  Sat,  3 Aug 2002 16:40:05 +0200

gnustep-back (0.7.9-1) unstable; urgency=low

  * New upstream version.

 -- Matthias Klose <doko@debian.org>  Sun, 21 Jul 2002 17:43:52 +0200

gnustep-back (0.7.8-1) unstable; urgency=low

  * New upstream version.
  * Conflict/Replace with gnustep-xgps (closes: #148777).

 -- Matthias Klose <doko@debian.org>  Tue, 16 Jul 2002 23:07:58 +0200

gnustep-back (0.7.7-2) unstable; urgency=low

  * Recompile with tightened gnustep-gui dependency.
  * Remove explicit gcc dependency.

 -- Matthias Klose <doko@debian.org>  Sat,  1 Jun 2002 11:03:48 +0200

gnustep-back (0.7.7-1) unstable; urgency=low

  * New package, obsoleting the gnustep-xgps package.

 -- Matthias Klose <doko@debian.org>  Sun, 12 May 2002 11:48:28 +0200

gnustep-xgps (0.7.6-1) unstable; urgency=medium

  * debian/control.m4: Build-Depend on gnustep-gui's version.

 -- Matthias Klose <doko@debian.org>  Fri,  5 Apr 2002 17:39:38 +0200

gnustep-xgps (0.7.6-0.2) unstable; urgency=medium

  * Non Maintainer Upload
  * Rebuilt to get build dependencies right (closes #140180)

 -- Paul Seelig <pseelig@debian.org>  Thu, 28 Mar 2002 00:40:15 +0100

gnustep-xgps (0.7.6-0.1) unstable; urgency=medium

  * Non Maintainer Upload
  * New upstream release

 -- Paul Seelig <pseelig@debian.org>  Mon, 25 Mar 2002 02:26:47 +0100

gnustep-xgps (0.7.5-2) unstable; urgency=low

  * Rebuild to get the libobjc1 depedency right.

 -- Matthias Klose <doko@debian.org>  Thu,  7 Mar 2002 00:56:49 +0100

gnustep-xgps (0.7.5-1) unstable; urgency=medium

  * Final release.
  * Configure with --enable-xim.

 -- Matthias Klose <doko@debian.org>  Sun,  3 Feb 2002 20:04:00 +0100

gnustep-xgps (0.7.0.90-2) unstable; urgency=low

  * Add libwraster2-dev to build dependencies.

 -- Matthias Klose <doko@debian.org>  Thu, 17 Jan 2002 21:07:05 +0100

gnustep-xgps (0.7.0.90-1) unstable; urgency=low

  * New upstream snapshot (daily snapshot 20020110).
  * Correctly determine s390 architecture.
  * Fix build dependencies (closes: #126014).

 -- Matthias Klose <doko@debian.org>  Sun, 13 Jan 2002 21:54:45 +0100

gnustep-xgps (0.7.0-0.1) unstable; urgency=low

  * New upstream release.
  * Use Standards-Version: 3.5.5.

 -- Chanop Silpa-Anan <chanop@debian.org>  Thu, 26 Jul 2001 09:51:25 +1000

gstep-core (0.6.5-3) frozen unstable; urgency=low

  * base/Source/NSInvocation.m: Fix important build error on alpha #59373.
  * Set GNUSTEP_SYSTEM_ROOT to /usr/lib/GNUstep and disable separate
    system root. Needed to correctly build gstep-extensions and gstep-guile.
  * debian/gstep-base.init.in: Fix typo (fixes #59423).
  * debian/gstep-base.postrm: Remove directory in ld.so.conf inserted
    in postinst (fixes #59424).

 -- Matthias Klose <doko@cs.tu-berlin.de>  Wed,  1 Mar 2000 21:33:53 +0100

gstep-core (0.6.5-2) frozen unstable; urgency=medium

  * Updated to the current state of the CVS. Integrates the Debian
    patches submitted upstream.
  * debian/gstep-base.init.d: Use new gdomap option -p for not probing
    machines on the local network (really fixes grave #55906).
  * debian/README.Debian: Document gdomap configuration.
  * debian/control.in: Add autoconf to Build-Depends (fixes i#58873).

 -- Matthias Klose <doko@cs.tu-berlin.de>  Sun, 27 Feb 2000 22:31:00 +0100

gstep-core (0.6.5-1) frozen unstable; urgency=medium

  * Final release.
  * Don't probe machines on the local network (grave #55906).
  * Stop gdomap daemon (#48796).
  * /etc/GNUstep: directory for GNUstep configuration files.
  * debian/control.in: Add build depends.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Sat, 19 Feb 2000 10:09:19 +0100

gstep-core (0.6.0.90-1) unstable; urgency=low

  * New snapshot from CVS (1999-10-28).

 -- Matthias Klose <doko@cs.tu-berlin.de>  Thu, 28 Oct 1999 21:04:46 +0200

gstep-core (0.6.0-1) unstable; urgency=low

  * New upstream release.
  * debian/gstep-base.init: Change init script message (fixes #40339).
  * debian/gstep-xgps.{preinst,postrm}: Divert gpbs (fixes #40976).
  * debian/gstep-base.init.in: Don't source GNUstep.sh (fixes #40338).
  * debian/control.in: Use versioned package names for libraries.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Sat, 21 Aug 1999 20:41:37 +0200

gstep-core (0.5.5.990625-1) unstable; urgency=low

  * New snapshot.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Fri, 25 Jun 1999 22:24:56 +0200

gstep-core (0.5.5.990508-1) unstable; urgency=low

  * New snapshot. Built with xgps as backend.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Sun,  9 May 1999 15:18:28 +0200

gstep-core (0.5.5.990310-1) unstable; urgency=low

  * GNUstep 0.5.5 + minor updates from the CVS archive.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Thu, 11 Mar 1999 22:47:17 +0100

gstep-core (0.5.5-1) unstable; urgency=low

  * gstep-0.6 prerelease2 ("dawn").
  * gstep-extensions, gstep-db and gstep-guile are moved out of the core package.
  * Moved to debhelper-1.2.x.
  * First try for powerpc and alpha architectures.
  * New package gstep-base-dbg (link with -lgnustep-base_d).

 -- Matthias Klose <doko@cs.tu-berlin.de>  Wed, 24 Feb 1999 18:35:13 +0100

gstep-core (0.5.0.981229-1) frozen unstable; urgency=low

  * Fixed linking of guile dependent binaries (introduced with guile 1.3-11).
  * Fixed x permissions of debian installation scripts.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Tue, 29 Dec 1998 20:12:17 +0100

gstep-core (0.5.0.981222-1) frozen unstable; urgency=low

  * Moved symlink patches upstream.
  * Built with debhelper 1.1.24 and provide the needed debhelper-1.2.18 files.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Mon, 22 Dec 1998 21:41:54 +0200

gstep-core (0.5.0.981218-1) frozen unstable; urgency=low

  * New maintainer.
  * Previous builds included GNUSTEP_SYSTEM_ROOT, if GNUstep packages
    were installed.
  * Fixed build error on the alpha architecture (forwarding still doesn't
    work).
  * Install compiled guile modules in /usr/lib/guile1.3; don't know, if
    this is correct, but better than /usr/share/guile.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Sat, 19 Dec 1998 01:53:27 +0200

gstep-core (0.5.0.981215-0.1) frozen unstable; urgency=low

  * Finally recompiled with correct libc.
  * Finished db and guile packages (db already was in 0.5.0.980820-0.1).

 -- Matthias Klose <doko@cs.tu-berlin.de>  Mon, 14 Dec 1998 16:15:27 +0200

gstep-core (0.5.0.981207-0.1) frozen unstable; urgency=low

  * Recompiled with correct libc.
  * Removed dependencies on dpsclient.
  * Fixed dependencies of gstep-*-dev packages.
  * debian/rules: Removed explicit ix86 dependencies (again!).
  * Added debian/patches directory for Debian specific patches.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Mon,  7 Dec 1998 14:38:47 +0200

gstep-core (0.5.0.981106cvs-1) frozen unstable; urgency=low

  * New upstream CVS snapshot.o
    With the new anon CVS server, we can now track the GNUstep
    development much faster.
  * Don't build gstep-xdps until there's a free DPS system in Debian.
  * Instead, we have the X/RAW backend. With X/RAW, gstep doesn't any
    longer depend on non-free components and can go into main.
  * gstep-gui now has a working NSText class.
  * debian/rules: Rewritten again.

 -- Gregor Hoffleit <flight@debian.org>  Sat,  7 Nov 1998 12:08:45 +0100

gstep-core (0.5.0.980820-0.1) unstable; urgency=low

  * New upstream snapshot.
  * Built with X/RAW as backend; still depends on dgs.
  * New postinst/postrm scripts.
  * debian/rules: Rewritten.
  * debian/control.in: Tightened dependencies.
  * Keep NEXTSTEP files.

 -- Matthias Klose <doko@cs.tu-berlin.de>  Tue, 25 Aug 1998 13:48:48 +0200

gstep-core (0.5.0.980806-1) unstable; urgency=low

  * New upstream snapshot.
  * GNUstep is now built from a single source package, gstep-core.

 -- Gregor Hoffleit <flight@debian.org>  Fri,  7 Aug 1998 13:33:43 +0200