File: changelog

package info (click to toggle)
openscenegraph 3.6.5%2Bdfsg1-7
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 39,988 kB
  • sloc: cpp: 392,058; ansic: 21,495; java: 1,020; yacc: 548; makefile: 430; objc: 406; xml: 155; lex: 151; javascript: 34
file content (1009 lines) | stat: -rw-r--r-- 35,660 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
openscenegraph (3.6.5+dfsg1-7) unstable; urgency=medium

  [ Alberto Luaces ]
  * Added patch for spelling fixes submitted upstream.

  [ Debian Janitor ]
  Apply multi-arch hints.

  * libopenscenegraph-dev, libopenthreads-dev: Add Multi-Arch: same.
  * openscenegraph-doc, openscenegraph-examples: Add Multi-Arch: foreign.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Mon, 09 Nov 2020 17:06:41 +0100

openscenegraph (3.6.5+dfsg1-6) unstable; urgency=low

  * Replace avresample by swresample.  No modifications are needed since
    it is not used directly in the code. (Closes: #971320)
  * Update Doxygen configuration file according to the warnings it issues.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Tue, 29 Sep 2020 13:17:01 +0200

openscenegraph (3.6.5+dfsg1-5) unstable; urgency=low

  [ Debian Janitor ]
  * Trim trailing whitespace.
  * debian/copyright: use spaces rather than tabs to start continuation lines.
  * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository,
    Repository-Browse.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Tue, 01 Sep 2020 16:57:29 +0200

openscenegraph (3.6.5+dfsg1-4) unstable; urgency=medium

  * Backported patch for reducing console verbosity.  Thanks Bret Curtis!
  * Upload only the source package to be able to migrate to testing
    (Closes: #961997).

 -- Alberto Luaces Fernández <aluaces@udc.es>  Thu, 04 Jun 2020 18:03:36 +0200

openscenegraph (3.6.5+dfsg1-3) unstable; urgency=medium

  * Re-upload with a signature from a non-expired key.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Sun, 03 May 2020 19:31:09 +0200

openscenegraph (3.6.5+dfsg1-2) unstable; urgency=medium

  * Backport a patch from 3.6.6 to deal with malformed TGA files.  Thanks
    Bret Curtis!
  * Remove -Wl,--as-needed as per lintian recommendation.
  * Hardening flags are now set with dpkg-buildflags.
  * Move to unstable.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Fri, 01 May 2020 13:12:04 +0200

openscenegraph (3.6.5+dfsg1-1) experimental; urgency=medium

  [ Alberto Luaces Fernández ]
  * xine plugin is not needed anymore.
  * New upstream version 3.6.5+dfsg1 (Closes: #945875).
  * Soname bumped for new version.
  * Discard ffmpeg patch, already in upstream.
  * Update to debhelper 12.  Some install files had to be adjusted.
  * Doxygen configuration file updated.
  * debian/rules: remove --parallel since it is now redundant.
  * Update policy to 4.5.0.
  * Update spelling fixes patch.

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Tue, 14 Apr 2020 23:50:53 +0200

openscenegraph (3.6.4+dfsg1-3) unstable; urgency=medium

  * Patch: make osg consider ffmpeg for opening video files.  Thanks Arnab
    Rana for reporting (Closes: #945598).

 -- Alberto Luaces Fernández <aluaces@udc.es>  Thu, 05 Dec 2019 12:25:58 +0100

openscenegraph (3.6.4+dfsg1-2) unstable; urgency=medium

  * Address the compilation warnings about risky implicitly defined copy
    constructors and operators.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Thu, 07 Nov 2019 18:18:48 +0100

openscenegraph (3.6.4+dfsg1-1) experimental; urgency=medium

  [ Alberto Luaces Fernández ]
  * New upstream release.
  * Dependency on Qt upgraded from version 4 to 5 (Closes: #875075).

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Thu, 17 Oct 2019 00:10:47 +0200

openscenegraph (3.2.3+dfsg1-3) unstable; urgency=medium

  * Use the new version of libcoin (Closes: #917082, #912866).

 -- Alberto Luaces Fernández <aluaces@udc.es>  Mon, 07 Jan 2019 11:52:00 +0100

openscenegraph (3.2.3+dfsg1-2) unstable; urgency=medium

  * Fix FTBFS on Hurd.  Thanks Bas Couwenberg (Closes: #824395).
  * Update standards to 3.9.8.  No changes required.
  * Corrected copyright file according to lintian.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Mon, 16 May 2016 14:23:26 +0200

openscenegraph (3.2.3+dfsg1-1) unstable; urgency=medium

  * Remove jasper dependency (Closes: #818211).
  * Fixed source retrieval rule when using DFSG versions.
  * Imported Upstream version 3.2.3+dfsg1

 -- Alberto Luaces Fernández <aluaces@udc.es>  Tue, 22 Mar 2016 16:25:39 +0100

openscenegraph (3.2.2+dfsg1-1) unstable; urgency=medium

  * Updated to new stable release (Closes: #814555).
  * Debug packages are now generated automatically (Closes: #775368).
  * Fixed my name in uploaders so lintian no longer triggers a warning
    about NMUs.
  * Fix doxygen configuration when reading header files.
  * De-embed copies of jquery.js found on doxygen configuration.
  * Update Vcs-Browser URL in debian/control.
  * Update debian/copyright file.
  * Fix FTBFS with ffmpeg 2.9 (Closes: #803849).  Thanks to Andreas
    Cadhalpun.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Fri, 11 Mar 2016 21:12:21 +0000

openscenegraph (3.2.1-9) unstable; urgency=medium

  * Added a compatibility fix for building with giflib5.  Thanks
    Sebastiaan Couwenberg and Matthias Klose. (Closes: 803300)

  * Modified debian/rules to set HTML_TIMESTAMP=NO for doxygen to make the
    package reproducible.  Thanks to Maria Valentina Marin (Closes:
    789264)

 -- Alberto Luaces Fernández <aluaces@udc.es>  Sat, 19 Dec 2015 11:16:24 +0100

openscenegraph (3.2.1-8) unstable; urgency=medium

  * Adding upstream patch for GDAL 2.0 support, needed by upcoming
    transition.  Thanks to Bas Couwenberg. (Closes: 802266)

  [ Matthias Klose ]
  * Re-add a copy of the xine_xmalloc_aligned function, removed in
    newer upstream versions. (Closes: 792320)

 -- Alberto Luaces Fernández <aluaces@udc.es>  Mon, 19 Oct 2015 13:51:23 +0200

openscenegraph (3.2.1-7) unstable; urgency=medium

  [ Martin Pitt ]
  * Rename libopenscenegraph100 to -v5 for gcc5 transition (Closes: #791231)
    Note that libopenthreads20 can keep its name, its symbols don't change
    under g++ 5.

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Sun, 30 Aug 2015 15:13:43 +0100

openscenegraph (3.2.1-6) unstable; urgency=medium

  [ Andreas Beckmann ]
  * libopenscenegraph100: Add Breaks: libgdal1 for smooth upgrades from
    wheezy. A little incentive that helps apt to take the right decision
    between libgdal1 and libgdal1h.  (Closes: 777026)

 -- Alberto Luaces Fernández <aluaces@udc.es>  Wed, 04 Feb 2015 18:27:21 +0100

openscenegraph (3.2.1-5) unstable; urgency=medium

  * Update fix for correctly loading plugins on platforms other than amd64.
    (Closes: 763821)
  * Cherry-pick bug fix from upstream, SVN revision 14400.
    Thanks to Rebecca N. Palmer (Closes: 765855)
  * Update Standards version to 3.9.6.  No further changes required.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Fri, 31 Oct 2014 11:13:06 +0100

openscenegraph (3.2.1-4) unstable; urgency=medium

  * A preprocessor substitution was interferring with the architecture name for loading plugins.
    (Closes: 763816)

 -- Alberto Luaces Fernández <aluaces@udc.es>  Fri, 03 Oct 2014 16:30:41 +0200

openscenegraph (3.2.1-3) unstable; urgency=medium

  * Refresh libav patches.
  * One more fix for building on FreeBSD.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Fri, 05 Sep 2014 13:54:28 +0200

openscenegraph (3.2.1-2) experimental; urgency=medium

  * Fix FTBFS on FreeBSD.
  * Enabled multiarch.
    Thanks to Saikrishna Arcot (Closes: 759593)
  * Updated debian/copyright file to machine readable format 1.0, and
    addition of missing license from file AndroidExample/EGLview.java.
    Thanks to Thorsten Alteholz (Closes: 757106)

 -- Alberto Luaces Fernández <aluaces@udc.es>  Mon, 01 Sep 2014 18:03:23 +0200

openscenegraph (3.2.1-1) experimental; urgency=medium

  * Acknowledge NMU.
  * New upstream version.
  * Removal of old patches.
  * Confirmation that (LP: #1339264) is already closed.
  * Removed obsolete conflict rules.

 -- Alberto Luaces Fernández <aluaces@udc.es>  Fri, 01 Aug 2014 20:41:55 +0200

openscenegraph (3.2.0~rc1-5.1) unstable; urgency=low

  * Non-maintainer upload.
  * Add libav10.patch by Anton Khirnov and compile against Libav10
    (Closes: #739460)

 -- Reinhard Tartler <siretart@tauware.de>  Sat, 17 May 2014 16:52:38 -0400

openscenegraph (3.2.0~rc1-5) unstable; urgency=medium

  * Updated standards to 3.9.5.  No changes required.
  * Removed unused libpangox-dev dependency.
    Thanks to Saikrishna Arcot (Closes: #740129)
  * Restored compilation of the FreeType plugin.
    Thanks to Rebecca N. Palmer (Closes: #743169)

 -- Alberto Luaces Fernández <aluaces@udc.es>  Thu, 10 Apr 2014 20:41:55 +0200

openscenegraph (3.2.0~rc1-4) unstable; urgency=low

  * Added patch for fixing a multithreading initialization bug in the
    inventor plugin (LP: #1211993).
  * Closing bug about conflicting files in 3.2.0-rc1 and 3.2.0 since next
    version to be packaged is 3.2.1 (Closes: #722674).

 -- Alberto Luaces Fernández <aluaces@udc.es>  Mon, 17 Feb 2014 23:36:07 +0100

openscenegraph (3.2.0~rc1-3) unstable; urgency=low

  * Fix for texture corruption. Thanks Rebecca Palmer for the patch and
    testing and Markus Wanner for additional testing (Closes: #736350).
  * Now depends on xinelib 1.2 (Closes: #724753).

 -- Alberto Luaces <aluaces@udc.es>  Fri, 24 Jan 2014 21:09:56 +0100

openscenegraph (3.2.0~rc1-2) unstable; urgency=medium

  * Add osg_libav9.patch to fix a FTBFS with newer ffmpeg/libav.  Thanks
    Rebecca N. Palmer for the report and the patch. (Closes: #720816)
  * Refresh all patches

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Wed, 15 Jan 2014 20:16:35 +0000

openscenegraph (3.2.0~rc1-1) unstable; urgency=low

  [Alberto Luaces]
  * New upstream release.
  * Updated standards version (3.9.4).
  * Updated SVN URL.
  * Removed the static version of the libraries since they impose a huge
    load on the build servers, add additional complexity on the build
    scripts, and make a great impact on the size of the packages, given
    the very small cases where they are useful.
  * Acknowledge NMU.

  [ Manuel A. Fernandez Montecelo ]
  * Switch to @debian.org address

 -- Manuel A. Fernandez Montecelo <mafm@debian.org>  Tue, 30 Jul 2013 13:07:57 +0000

openscenegraph (3.0.1-4.1) unstable; urgency=low

  * Non-maintainer upload.
  * Replace libocin60-dev by libcoin80-dev for transition.

 -- Anton Gladky <gladk@debian.org>  Sun, 09 Jun 2013 11:49:44 +0200

openscenegraph (3.0.1-4) unstable; urgency=low

  [ Alberto Luaces ]
  * Upgraded standards version to 3.9.3.
  * Append options to LDFLAGS instead of replacing its value.
  * Use of hardening flags for building.
  * Added a manpage for the osgviewerWX executable.
  * Changes in the build prefix in order to fix the pkg-config files
    (Closes: #690878).
  * Removal of unused LINKER_FLAGS variable in debian/rules.

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Thu, 22 Nov 2012 22:07:57 +0000

openscenegraph (3.0.1-3) unstable; urgency=low

  * Depend on libpng-dev instead of libpng12-dev for libpng15-transition
    (Closes: #662455)
  * Reformat dependencies in debian/control to show one per line, I think that
    subsequent changes will be much more clear from now on

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Wed, 14 Mar 2012 11:18:59 +0000

openscenegraph (3.0.1-2) unstable; urgency=low

  [ Alberto Luaces ]
  * Fixed ffmpeg FTBFS with 0.8 version (Closes: #654233).

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Sun, 08 Jan 2012 19:38:17 +0000

openscenegraph (3.0.1-1) unstable; urgency=low

  * New upstream fixes release.
  * Fixed ffmpeg FTBFS (Closes: #640339).

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 08 Sep 2011 16:06:16 +0200

openscenegraph (3.0.0-2) unstable; urgency=low

  [ Alberto Luaces ]
  * Use --as-needed option of the linker in order to cut unused dependencies
    down.
  * Adjust C{,XX}FLAGS to be independent of the build mode.
  * Removed the dpatch dependency at build time since it is not needed anymore.
  * Updated standards version to 3.9.2 as lintian requested (no changes needed).

  [ Manuel A. Fernandez Montecelo ]
  * Adding "Alberto Luaces <aluaces@udc.es>" as Uploader to try to quell lintian
    warnings (source-nmu-has-incorrect-version-number and
    changelog-should-mention-nmu).  He's been maintaining the packages for more
    than a year now.
  * Remove Section entries for some binary packages (quell lintian warning
    binary-control-field-duplicates-source)

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Fri, 15 Jul 2011 01:28:06 +0200

openscenegraph (3.0.0-1) unstable; urgency=low

  * New upstream release.
  * Updated to quilt format.
  * Fixed FTBFS by checking __FreeBSD_kernel__ (Closes: #621880).
  * Removed CMakeLists.txt files in `openscenegraph-examples'. An
    explanatory README was written with simple instructions for compiling
    the examples those sources if desired (Closes: #612954, #612957).

 -- Alberto Luaces <aluaces@udc.es>  Fri, 01 Jul 2011 22:07:13 +0200

openscenegraph (2.9.11-1) experimental; urgency=low

  * Removed bug-555869-ftbfs_with_binutils_gold.dpatch since upstream has
    already taken care of the issue.
  * Removed bug-528229.dpatch since the pkgconfig files are now also split
    in upstream.
  * Removed explicit dependency on GLU.
  * Upstream no longer includes osgIntrospection (Closes: #592420).
  * Disabled zip plugin as its implementation stores an embedded copy of
    zlib.
  * Enabled Qt support. Thanks James Goppert.
  * Enabled SVG and PDF plugins. Thanks James Goppert.

 -- Alberto Luaces <aluaces@udc.es>  Sat, 29 Jan 2011 11:36:29 +0100

openscenegraph (2.8.5-1) unstable; urgency=low

  * New upstream stable release.

 -- Alberto Luaces <aluaces@udc.es>  Sat, 11 Jun 2011 09:57:41 +0200

openscenegraph (2.8.3-7) unstable; urgency=low

  * Rearranged headers to compile with ffmpeg 0.6. This is solved in current SVN. (Closes: #614467).

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 13 Mar 2011 01:27:54 +0100

openscenegraph (2.8.3-6) unstable; urgency=low

  * Bump Standards-Version to 3.9.1 (no changes needed)
  * Added Vcs fields to the control file
  * Put myself in the Uploaders field, add DM-Upload-Allowed: yes
  * Quelling lintian warnings:
    - debian-changelog-line-too-long (line 2)
    - out-of-date-standards-version (bumped from 3.8.4 to 3.9.1)

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Thu, 26 Aug 2010 12:28:06 +0200

openscenegraph (2.8.3-5) unstable; urgency=low

  * ffmpeg plugin enabled.
  * Build osgIntrospection on {,kfreebsd}-{amd64,i386} architectures
    (Closes: #586256).
  * Also build static libraries (Closes: #517273).

 -- Alberto Luaces <aluaces@udc.es>  Wed, 21 Jul 2010 11:19:33 +0200

openscenegraph (2.8.3-4) unstable; urgency=low

  * re-submit because of incorrect libtiff5 dependency in the -3 upload

 -- Loic Dachary (OuoU) <loic@debian.org>  Wed, 02 Jun 2010 10:55:06 +0200

openscenegraph (2.8.3-3) unstable; urgency=low

  * Added README.source. Thanks Manuel Montecelo.
  * Removed FindGDAL.cmake file supplied by upstream since it does not
    detect current libgdal1-1.6.0. The script provided by CMake works
    fine.
  * Removed openthreads-doc since OpenThreads documentation is shared with
    OpenSceneGraph's, hence this package was empty.
  * Now ccache handling is being done automatically by CMake.
  * Drop conflict dependencies with previous versions to let them coexist
    with current ones (Closes: #580079 #580081).

 -- Alberto Luaces <alberto@udc.es>  Mon, 03 May 2010 21:42:01 +0200

openscenegraph (2.8.3-2) unstable; urgency=low

  * Added missing conflict dependency with libopenthreads12 to clear
    updating errors. (Closes: #579760 #579731).

 -- Alberto Luaces <aluaces@udc.es>  Fri, 30 Apr 2010 20:30:39 +0200

openscenegraph (2.8.3-1) unstable; urgency=low

  * New upstream release
  * Updated package descriptions
  * Removed dependence from giflib-dev, doesn't seem to be there anymore
  * Created a package for examples sources previously in openscenegraph binary
    package, the sources of examples are quite big (4MiB+ and growing) and
    architecture independent.
  * Updated Doxygen configuration file (had some obsolete options).

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Thu, 22 Apr 2010 16:03:58 +0200

openscenegraph (2.8.2-2) unstable; urgency=low

  * Fixed problem in armel, failing to build due to linking problems.
    According to Alberto Luaces this could be caused by a previous workaround
    introduced to deal with a GCC bug, and fixed since then, see #529091 and
    #530388
  * Added 'watch' file
  * Updated lintian overrides regarding package-name-doesnt-match-sonames
  * Removed the duplicated entries in man pages as examples and apps
  * Removed lintian overrides about man pages
  * Removed duplicated patch bug-555869-ftbfs_with_binutils_gold.diff (it was
    repeated in dpatch form)
  * Quelling lintian warnings:
    - package-lacks-versioned-build-depends-on-debhelper (updated to >= 7.0.0)
    - debhelper-but-no-misc-depends
    - out-of-date-standards-version (updated from 3.8.0 to 3.8.4)
    - patch-system-but-no-source-readme
    - dh-clean-k-is-deprecated (using 'dh_prep' instead of 'dh_clean -k')
    - manpage-has-bad-whatis-entry (trick to avoid warning and get whatis
      program working, removing related overrides as said above)
    - debian-watch-file-is-missing (adding 'watch' file as said above)

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Wed, 03 Feb 2010 10:44:56 +0100

openscenegraph (2.8.2-1) unstable; urgency=low

  * New upstream release
  * Changed debhelper compat to level 7 (level 4 is deprecated)
  * Build-Depend on libcoin60-dev instead of libcoin40-dev (Closes: #535250)
  * Build-Depend on freeglut3-dev instead of libglut*-dev (Closes: #552157)
  * Added patch from Alberto Luaces to allow using binutils-gold (Closes: #555869)
  * Dropped patch (fixed upstream already in 2.8.1):
     - bug-497933.dpatch

 -- Manuel A. Fernandez Montecelo <manuel.montezelo@gmail.com>  Sat, 12 Dec 2009 21:25:40 +0100

openscenegraph (2.8.1-1.1) unstable; urgency=high

  * Non-maintainer upload.
  * Build-Depend on freeglut3-dev instead of freeglut-dev as someone
    "cleaned up" provides of that package. Closes: #544648

 -- Andreas Barth <aba@not.so.argh.org>  Wed, 02 Sep 2009 12:35:42 +0200

openscenegraph (2.8.1-1) unstable; urgency=low

  * New upstream release
  * osg soversion from 55 to 56, openthreads from 11 to 12 and patch
    to allow overriding the soversion when the upstream forgets to change it.
  * Alberto Luaces patch applied to add new pkg-config files (Closes: #528229).
  * Alberto Luaces linker flags to cope with armel specific problems (Closes: #529091).

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 31 May 2009 12:07:05 +0200

openscenegraph (2.8.0-4) unstable; urgency=low

  * rules prevent lib64 with -D LIB_POSTFIX="" (Closes: #517671)

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 23 Mar 2009 14:08:20 +0100

openscenegraph (2.8.0-3) unstable; urgency=low

  * gcc-4.4 are already in upstream
  * use lib*/ instead of lib/ to capture lib64 (Closes: #517671)

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue, 03 Mar 2009 13:07:40 +0100

openscenegraph (2.8.0-2) unstable; urgency=low

  * unstable instead of experimental
  * remove lib64 dirty hack that failed
  * apply GNU/kFreeBSD patch (Closes: #517354)

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 01 Mar 2009 14:06:21 +0100

openscenegraph (2.8.0-1) experimental; urgency=low

  * New upstream release (Closes: #516622)
  * update download location in copyright file
  * add support for intrepid & jaunty
  * remove extra conflict on openthreads7 (Closes: #504113)
  * apply GNU/kFreeBSD patch (Closes: #497933)
  * apply GCC-4.4 portability patch (Closes: #504888)
  * add missing libraries to openscenegraph.pc (Closes: #512316)
  * update libopenscenegraph short description (Closes: #493613)
  * use libgl1-mesa-dev and libgif-dev (Closes: #494553)

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue, 24 Feb 2009 12:04:02 +0100

openscenegraph (2.6.1-1) experimental; urgency=low

  * New upstream release.
  * Updated rules file to complete the instruction on how to make an orig
    file.
  * Corrected rules file when it comes to versions.
  * libopenscenegraph44 bumped to 48.
  * remove obsolete xlibmesa-gl-dev

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 25 Dec 2008 18:27:16 +0100

openscenegraph (2.6.0-1) experimental; urgency=low

  * New upstream release.
  * Debian patches are no longer needed with the new upstream sources and
    are therefore removed.
  * libopenscenegraph7 bumped to 44.
  * libopenthreads7 bumped to 11.
  * Added myself to Uploaders to clarify that I'm involved at request
    by Loic. Loic may remove it later when needed.

 -- Ola Lundqvist <opal@debian.org>  Wed, 20 Aug 2008 07:47:50 +0200

openscenegraph (2.4.0-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * No longer try to detect (using /proc/cpuinfo when available) how many
    CPUs are available, fixing the FTBFS (due to -j0) on various platforms
    (Closes: #477353). The right way to do it is to support parallel=n in
    DEB_BUILD_OPTIONS (see Debian Policy §4.9.1), and adequate support has
    been implemented.
  * Add patch to fix FTBFS due to the build system now refusing to handle
    whitespaces (Policy CMP0004 say the logs), thanks to Andreas Putzo who
    provided it (Closes: #482239):
     - debian/patches/fix-cmp0004-build-failure.dpatch
  * Remove myself from Uploaders, as requested a while ago, done by Luk in
    his 2.2.0-2.1 NMU, which was never acknowledged.

 -- Cyril Brulebois <kibi@debian.org>  Tue, 29 Jul 2008 04:34:38 +0200

openscenegraph (2.4.0-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 28 Apr 2008 11:04:18 +0200

openscenegraph (2.3.7-1) experimental; urgency=low

  * New upstream release.
  * Added libxine-dev build-dep.
  * Bumped SONAME from 6 to 7.
  * Updated version (from 2.1.0 to 2.2.0) in debian/*.pc files.
  * SMP dynamically chosen in debian/rules.

 -- Loic Dachary (OuoU) <loic@debian.org>  Wed, 10 Oct 2007 00:23:08 +0200

openscenegraph (2.2.0-2.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Remove Cyril Brulebois from Uploaders on his request.
  * Fix FTBFS with GCC 4.3 (Closes: #454854).

 -- Luk Claes <luk@debian.org>  Sun, 16 Mar 2008 16:13:52 +0000

openscenegraph (2.2.0-2) unstable; urgency=low

  * Add optimization flags to compilation (closes: 446017).

  [ Cyril Brulebois ]
  * Add -mlong-calls to C(XX)FLAGS when building with DEB_BUILD_HOST=hppa
    to avoid FTBFS due to an error during the final link (closes: #425837).
    Many thanks to the <http://www.parisc-linux.org/> folks for the access to
    their cluster, which helped a lot!

 -- Loic Dachary (OuoU) <loic@debian.org>  Wed, 10 Oct 2007 00:23:08 +0200

openscenegraph (2.2.0-1) unstable; urgency=low

  * 64bit hack is supposed to fix the problem (closes: 425837)

  * Add gdal in Build-Depends

  * Remove conflicts with libopenthreads5 and libopenscenegraph5 (both can
    peacefully coexist)

  * Add micro release number

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 07 Oct 2007 09:58:03 +0200

openscenegraph (2.2-1) experimental; urgency=low

  * New upstream release.
  * Update debian/patches/openscenegraph.dpatch accordingly.
  * Fix installation of .so according to the SONAME bump:
     - debian/libopenscenegraph6.files still contained libosg*.so.6*
       references, which are now bumped. That problem was introduced in
       2.1.9-1.
  * Move from dh_movefiles to dh_install:
     - debian/*.files renamed as debian/*.install.
     - use “dh_install --sourcedir=debian/tmp” instead of “dh_movefiles”.
     - remove the previous “dh_install -p openscenegraph” call accordingly.
     - modify debian/rules to copy OpenSceneGraph/examples under debian/tmp,
       and update debian/openscenegraph.install accordingly.
     - also use “--fail-missing” to catch files not installed anywhere, and
       avoid the kind of errors mentioned above.
  * Add lintian override:
     - located under debian/lintian/, the only one being there is for
       libopenscenegraph6, which holds multiple shared objects.
     - adapted debian/rules a bit to install it (eventually them) easily.
  * Adjust clean rule:
     - upstream ships an executable C++ source file, which permission is
       removed in the clean target.
  * Adjust manpages (debian/*.1):
     - use “\-\-help” instead of “--help” to fix hyphen-used-as-minus-sign
       reported by lintian.
     - add osgdepthpeeling.1 to MANEXAMPLES.

 -- Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>  Sat, 06 Oct 2007 11:47:50 +0200

openscenegraph (2.1.9-1) experimental; urgency=low

  * New upstream release.
  * Bumped SONAME from 5 to 6:
     - debian/rules: updated CURRENT accordingly.
     - debian/control: updated to transition.
     - debian/libopenthreads5.files: renamed; content updated.
     - debian/libopenscenegraph5.files: renamed.
  * Updated version (from 2.0.0 to 2.1.9) in debian/*.pc files.
  * Disabled patch (merged upstream):
     - display.dpatch
  * Refreshed patch (context modified due to changed version numbers):
     - openscenegraph.dpatch
  * Cleanup:
     - commented out unused "version" and "major" variable in debian/rules.
     - replaced "Source-Version" with "binary:Version" in debian/control to
       make the packages binNMU-safe.

 -- Cyril Brulebois <cyril.brulebois@enst-bretagne.fr>  Thu, 20 Sep 2007 01:00:52 +0200

openscenegraph (2.0.0-4) unstable; urgency=low

  * AnimationPath protected is removed to cope with gcc-4.2 bug

  * libopenscenegraph-dev depends on GL dev packages

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 09 Sep 2007 02:17:22 +0200

openscenegraph (2.0.0-3) unstable; urgency=low

  * libopenscenegraph-dev does not depend on libproducer-dev

 -- Loic Dachary (OuoU) <loic@debian.org>  Fri, 07 Sep 2007 11:50:49 +0200

openscenegraph (2.0.0-2) unstable; urgency=low

  [ Cyril Brulebois ]
  * Added a 64 bit hack in debian/rules
  * Added myself to the Uploaders.

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 30 Jul 2007 22:16:19 +0200

openscenegraph (2.0.0-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary <loic@debian.org>  Tue, 19 Jun 2007 11:06:58 +0200

openscenegraph (1.9.7-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary <loic@debian.org>  Tue,  5 Jun 2007 20:20:58 +0200

openscenegraph (1.9.6-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary <loic@debian.org>  Mon, 28 May 2007 23:34:41 +0200

openscenegraph (1.9.5-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue, 22 May 2007 10:07:00 +0200

openscenegraph (1.9.4-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue, 15 May 2007 20:03:19 +0200

openscenegraph (1.9.3-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue,  8 May 2007 10:45:32 +0200

openscenegraph (1.9.1-1) unstable; urgency=low

  * New upstream release

  * control: libglu1-mesa-dev added before virtual package

  * copyright: fix FSF address

  * osgapplications.1: manual page for osgviewer and other applications

  * rules: list and create applications manpages

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 29 Apr 2007 11:07:07 +0200

openscenegraph (1.2.0-3) unstable; urgency=low

  * libgl-dev dependency in edgy break build

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue,  7 Nov 2006 13:57:14 +0100

openscenegraph (1.2.0-2) unstable; urgency=low

  * control files for backports + ubuntu

  * s/peformance/performance/ (closes: #390239)

  * rules: AVI variable no longer needed

  * rules: set COMPILE_USING_TWO_PARAM_sched_setaffinity for OpenThreads when needed

  * rules: expand all _INSTALLED variables in the file for clarity

 -- Loic Dachary (OuoU) <loic@debian.org>  Sat, 30 Sep 2006 08:48:57 +0200

openscenegraph (1.2.0-1) experimental; urgency=low

  * New upstream release (closes: #387931)

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 17 Sep 2006 15:50:55 +0200

openscenegraph (1.1.0-4) unstable; urgency=low

  * edgy fixes

 -- Loic Dachary (OuoU) <loic@debian.org>  Sat, 16 Sep 2006 15:55:17 +0200

openscenegraph (1.1.0-3) unstable; urgency=low

  * patch for mips

  * edgy & etch control files

 -- Loic Dachary (OuoU) <loic@debian.org>  Fri,  8 Sep 2006 11:37:40 +0200

openscenegraph (1.1.0-2) unstable; urgency=low

  * version number for other debian distributions

  * rules checks binutils version >= 2.17 before trying
    to compile introspection

  * add missing conflicts for dapper / breezy

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 27 Aug 2006 00:33:09 +0200

openscenegraph (1.1.0-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary (OuoU) <loic@debian.org>  Wed, 16 Aug 2006 12:41:57 +0200

openscenegraph (1.0.0-9) unstable; urgency=low

  * Depend on gdal 1.3.2 (closes: #383141)

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue, 15 Aug 2006 12:25:56 +0200

openscenegraph (1.0.0-8) unstable; urgency=low

  * add missing dependency to libproducer-dev package (libgl1-mesa-dev)

 -- Loic Dachary (OuoU) <loic@debian.org>  Fri, 26 May 2006 12:58:22 +0200

openscenegraph (1.0.0-7) unstable; urgency=low

  * remove explicit references to mesa

  * kfreebsd patch applied (closes: #368786)

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 25 May 2006 10:14:30 +0200

openscenegraph (1.0.0-6) unstable; urgency=low

  * libxi

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun,  7 May 2006 01:01:13 +0200

openscenegraph (1.0.0-5) unstable; urgency=low

  * xlib/gl-dev depends for producer-dev

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue, 28 Feb 2006 14:24:53 +0100

openscenegraph (1.0.0-4) unstable; urgency=low

  * restore gdal + xine dependencies since the packages are fixed

 -- Loic Dachary (OuoU) <loic@debian.org>  Sat, 18 Feb 2006 23:07:19 +0100

openscenegraph (1.0.0-3) unstable; urgency=low

  * depends on libgl-dev for -dev also (closes: #348735)

 -- Loic Dachary (OuoU) <loic@debian.org>  Fri, 17 Feb 2006 10:37:21 +0100

openscenegraph (1.0.0-2) unstable; urgency=low

  * depends on libgl-dev (closes: #348735)

  * conflicts with lib{openscenegraph,producer,openthreads}

 -- Loic Dachary (OuoU) <loic@debian.org>  Wed, 18 Jan 2006 20:20:52 +0100

openscenegraph (1.0.0-1) unstable; urgency=low

  * upstream sync

  * switch to dpatch

  * find . -name GNUmakefile | xargs perl -pi -e 's/([^\s])\\$/\1 \\/' and in */Make/*
    in order to conform to POSIX http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=343088

  * update API and library number (closes: #339243)

  * changed dependencies (closes: #330723)

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue,  3 Jan 2006 18:05:26 +0100

openscenegraph (0.9.9-7) unstable; urgency=low

  * conflicts with libopenthreads, libopenscenegraph and libproducer (closes: #326425)

  * acknowledge old NMU (closes: #314201)

  * fix libcoin40 dependency (closes: #322740)

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu,  8 Sep 2005 10:26:19 +0200

openscenegraph (0.9.9-6) unstable; urgency=low

  * gcc-4.0 package conformance

 -- Loic Dachary (OuoU) <loic@debian.org>  Sun, 21 Aug 2005 16:57:24 +0000

openscenegraph (0.9.9-5) unstable; urgency=low

  * gcc-4.0 compilation fixes from Andreas Jochens <aj@andaco.de> (closes: #314763)

 -- Loic Dachary (OuoU) <loic@debian.org>  Sat, 18 Jun 2005 16:17:38 +0200

openscenegraph (0.9.9-4) unstable; urgency=low

  * use X11R6/lib instead of X11R6/lib64 on amd64, depend on libungif (closes: #314510)

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 16 Jun 2005 22:41:30 +0200

openscenegraph (0.9.9-3) unstable; urgency=low

  * Restrict compilation of introspection and xine
    plugin to i386 because Introspection breaks the compiler (gcc-3.3)
    and xine contains i386 assembly that cannot be rewrote right
    away.
    http://openscenegraph.net/pipermail/osg-users/2005-June/054120.html

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 16 Jun 2005 20:29:57 +0200

openscenegraph (0.9.9-2) unstable; urgency=low

  * Removed avifile dependency (closes: #314201)

 -- Loic Dachary (OuoU) <loic@debian.org>  Wed, 15 Jun 2005 10:01:31 +0200

openscenegraph (0.9.9-1) unstable; urgency=low

  * Incremented CURRENT shared lib version from 0 to 1 since upstream does not
    maintain shared lib versions.
  * Only activate CCACHE if the string ccache is in DEB_BUILD_OPTIONS
  * Fix harmless bug in OpenSceneGraph/Make/instexamplesrc that printed
    error messages that may induce someone to think a real problem has
    occured
  * New upstream release

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 13 Jun 2005 13:00:54 +0200

openscenegraph (0.9.8-4.1) unstable; urgency=low

  * NMU
  * debian/rules: Do not use ccache to avoid problems with buildd with
    invalid $HOME variable.
  * debian/control: Do not Build-Depends on ccache.

 -- Bill Allombert <ballombe@debian.org>  Wed, 11 May 2005 00:38:23 +0200

openscenegraph (0.9.8-4) unstable; urgency=low

  * rebuild package on new sid root (closes: #304537)

 -- Loic Dachary (OuoU) <loic@debian.org>  Sat, 16 Apr 2005 16:45:08 +0200

openscenegraph (0.9.8-3) unstable; urgency=low

  * libjpegg is now libjpeg (closes: #303896)

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 11 Apr 2005 09:24:26 +0200

openscenegraph (0.9.8-2) unstable; urgency=low

  * Patch to fix FTBFS on amd64 (closes: #286674)

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon,  7 Feb 2005 18:34:41 +0100

openscenegraph (0.9.8-1) unstable; urgency=low

  * New upstream release

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon,  6 Dec 2004 19:01:31 +0100

openscenegraph (0.9.7-7) unstable; urgency=low

  * Add ARCH='' in rules to avoid hierarchy handling problems. May also disable
    some architecture dependent optimizations flags. (closes: #282816)

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 25 Nov 2004 12:00:57 +0100

openscenegraph (0.9.7-6) unstable; urgency=low

  * Fix asm for timer architecture compatibility issue, sent to
    upstream.

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 15 Nov 2004 13:40:20 +0100

openscenegraph (0.9.7-5) unstable; urgency=low

  * Add pointer to LGPL in copyright file as requested by Randall Donald <ftpmaster@debian.org>

 -- Loic Dachary (OuoU) <loic@debian.org>  Tue,  2 Nov 2004 10:38:25 +0100

openscenegraph (0.9.7-4) unstable; urgency=low

  * missing dependencies in .pc

 -- Loic Dachary (OuoU) <loic@debian.org>  Fri, 22 Oct 2004 22:28:42 +0200

openscenegraph (0.9.7-3) unstable; urgency=low

  * missing usr/include/osgProducer

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 21 Oct 2004 17:33:31 +0200

openscenegraph (0.9.7-2) unstable; urgency=low

  * change more to cat in install process

  * fix conflicts mistakes

 -- Loic Dachary (OuoU) <loic@debian.org>  Wed, 20 Oct 2004 14:29:27 +0200

openscenegraph (0.9.7-1) unstable; urgency=low

  * New upstream version (Closes: #172189)

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 18 Oct 2004 23:40:07 +0200

openscenegraph (0.9.6-4) unstable; urgency=low

  * billboard patch

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 11 Mar 2004 17:45:19 +0100

openscenegraph (0.9.6-2) unstable; urgency=low

  * binaries package

 -- Loic Dachary (OuoU) <loic@debian.org>  Mon, 16 Feb 2004 12:12:56 +0100

openscenegraph (0.9.6-1) unstable; urgency=low

  * Initial Release.

 -- Loic Dachary (OuoU) <loic@debian.org>  Thu, 29 Jan 2004 13:39:19 +0100