File: changelog

package info (click to toggle)
libextractor 1%3A1.11-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 15,380 kB
  • sloc: ansic: 21,496; sh: 6,273; makefile: 780; cpp: 405; sed: 16
file content (978 lines) | stat: -rw-r--r-- 35,135 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
libextractor (1:1.11-2) sid; urgency=medium

  * Uploading to sid.
  * New maintainer, thank you Marc for all your work.
  * Updating vcs fields.

 -- Daniel Baumann <daniel.baumann@progress-linux.org>  Sat, 27 Feb 2021 07:16:34 +0100

libextractor (1:1.11-1) unstable; urgency=medium

  * New upstream version 1.11.
  * Drop debian/patches, both are included upstream.

 -- Bertrand Marc <bmarc@debian.org>  Sat, 06 Feb 2021 17:52:49 +0100

libextractor (1:1.10-2) unstable; urgency=medium

  * Add a patch taken upstream to fix test failure with latest exiv2
    library (Closes: #971164).
  * Disable apparmor support on !linux archs, thanks to Pino Toscano
    (Closes: #968522).
  * Fix typos in debian/control: recommend libextractor-plugins-all
    instead of libextractor-plugin-all, thanks to John Scott (Closes:
    #971877).

 -- Bertrand Marc <bmarc@debian.org>  Fri, 30 Oct 2020 18:34:34 +0100

libextractor (1:1.10-1) unstable; urgency=medium

  * Make libextractor-plugins-all Architecture: all and Multi-arch:
    foreign.
  * Make libextractor-plugins-all depends on libextractor-plugin-exiv2
    (fix typo, Closes: #964508).
  * Fix typo in debian/tests/control: depend on libextractor-plugins-all
    (Closes: #964507).
  * Remove debian/patches/*, included upstream.
  * Add a patch to fix the soname.
  * Update years in debian/copyright.
  * Simplify debian/rules with execute_after_* rules.
  * Install the static libraries in libextractor-dev.

 -- Bertrand Marc <bmarc@debian.org>  Wed, 08 Jul 2020 21:31:10 +0200

libextractor (1:1.9-4) unstable; urgency=medium

  * Use wrap-and-sort -as.
  * debian/control:
    + update the homepage field to https.
    + suggest python3-extractor instead of python-extractor.
    + build-depend on libapparmor-dev to enable apparmor support.
    + build-depend on libgdk-pixbuf2.0-dev (>= 2.4) instead of libgtk-3-dev
      and libgtk2.0-dev. Thanks to Simon McVittie for noticing
      (Closes: #959083).
    + add Rules-Requires-Root: no.
  * Remove trailing whitespaces in debian/rules and debian/changelog.
  * Update years in debian/copyright.
  * Bump debhelper-compat to 13 and remove override_dh_missing.
  * Enabling all hardening flags as libextractor handles untrusted data.
  * Move info documentation to libextractor-dev and localisation to
    libextractor3. Add the necessary Breaks and Replaces. Drop unnecessary
    and obsolete doc in libextractor3.docs.
  * Split the plugins into separate binary packages to avoid pulling heavy
    dependencies (Closes: #768055).
  * Add debian/upstream/metadata.
  * Add a patch to use UTC in test_rpm.c to ensure test validation no
    matter the timezone.
  * Enable tests in debian/rules.
  * Add autopkgtest in debian/tests.

 -- Bertrand Marc <bmarc@debian.org>  Sat, 27 Jun 2020 20:05:25 +0200

libextractor (1:1.9-3) unstable; urgency=medium

  * Import patch from upstream to fix build with libexiv2-27, thanks
    to Peter Green (Closes: #950171).
  * Standards-version: 4.5.0, no changes needed.
  * Move debhelper compat to version 12:
    + debian/control: build-depends on debhelper-compat (=12).
    + debian/control: remove build-dep on dh-autoreconf.
    + debian/rules: remove --with autoreconf.
    + debian/rules: replace dh_install --fail-missing with dh_missing.
    + remove debian/compat.
  * debian/rules: remove old dbgsym-migration.

 -- Bertrand Marc <bmarc@debian.org>  Sat, 29 Feb 2020 15:50:38 +0100

libextractor (1:1.9-2) unstable; urgency=high

  * Add a patch from upstream to fix heap-based buffer over-read
    (Closes: #935553, CVE-2019-15531).

 -- Bertrand Marc <bmarc@debian.org>  Sat, 31 Aug 2019 17:47:24 +0200

libextractor (1:1.9-1) unstable; urgency=medium

  * New upstream version 1.9.
  * Remove CVE-2018-20430.patch and CVE-2018-20431.patch, applied upstream.
  * Standards-version: 4.4.0, no changes needed.
  * Unused symbols are now hidden, removing them from symbols file.

 -- Bertrand Marc <bmarc@debian.org>  Thu, 15 Aug 2019 17:57:55 +0200

libextractor (1:1.8-2) unstable; urgency=high

  * Fix out-of-bounds read vulnerability in common/convert.c (Closes: #917214,
    CVE-2018-20430).
  * Fix NULL pointer dereference in OLE2 extractor (Closes: #917213,
    CVE-2018-20431).
  * Standards-version: 4.3.0, no changes needed.

 -- Bertrand Marc <bmarc@debian.org>  Thu, 27 Dec 2018 19:45:49 +0100

libextractor (1:1.8-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * d/changelog: Remove trailing whitespaces.

  [ Bertrand Marc ]
  * Update debian/watch to version 4.
  * New upstream version 1.8.
  * Remove debian/patches, included upstream.
  * debian/copyright: update years.
  * Add the Build-Depends-Package field to libextractor3.symbols.
  * debian/control: remove conflicts, breaks and replace from pre-oldstable.

 -- Bertrand Marc <bmarc@debian.org>  Tue, 27 Nov 2018 12:07:53 +0100

libextractor (1:1.7-1) unstable; urgency=medium

  * New upstream version 1.7:
    + fix stack-buffer-underflow (Closes: #904903, CVE-2018-14346).
    + fix infinite loop in extract (Closes: #904905, CVE-2018-14347).
    + fix build with FFmpeg 4.0 (Closes: #888373).
  * Move the package to salsa and update Vcs-browser and Vcs-git accordingly.
  * Remove build-dependency on mp4v2, as the plugin is not working anyway.
  * Remove CVE-2017-15922.patch and CVE-2017-17440.patch, included upstream.
  * Add a patch to fix missing 0-terminator on corrupted ZIP files
    (Closes: #907987, CVE-2018-16430).
  * Standards-version: 4.2.1.

 -- Bertrand Marc <bmarc@debian.org>  Sun, 09 Sep 2018 07:15:53 +0200

libextractor (1:1.6-2) unstable; urgency=medium

  * Add patches from upstream to fix CVE-2017-15922 (Closes: #880016) and
    CVE-2017-17440 (Closes: #883528).
  * Standards-version: 4.1.3.

 -- Bertrand Marc <bmarc@debian.org>  Thu, 28 Dec 2017 18:10:52 +0100

libextractor (1:1.6-1) unstable; urgency=medium

  * New upstream version 1.6: fixes CVE-2017-15266, CVE-2017-15267,
    CVE-2017-15600, CVE-2017-15601, CVE-2017-15602 (Closes: #878314).
  * Standards-version: 4.1.1.
  * Use https instead of ftp in debian/watch.

 -- Bertrand Marc <bmarc@debian.org>  Sat, 21 Oct 2017 19:21:55 +0200

libextractor (1:1.4-1) unstable; urgency=medium

  * debian/control: fix Vcs-git and Vcs-browser fields.
  * Use my @debian.org address for the maintainer field and in debian/copyright.
  * Migrate from a manual "-dbg" package to an automatic generated debug symbol
    package:
    + debian/control: remove libextractor-dbg.
    + debian/rules: use --dbgsym-migration in override_dh_strip.
  * Make libextractor3 and libextractor-dev multiarch: same.
  * Use an armored upstream signing key and add the new upstream key in
    debian/upstream/signing-key.asc.
  * New upstream version 1.4.
  * debian/copyright:
    + use copyright format 1.0.
    + update years.
  * Standards-version: 4.1.0.
  * Remove ffmpeg2.9 and libgiflib5.1 patches, applied upstream.
  * Add one new symbol to debian/libextractor3.symbols.
  * Add a patch updating m4/ax_create_pkgconfig_info.m4 to fix libextractor.pc,
    thanks to Sven Joachim (Closes: #876554).

 -- Bertrand Marc <bmarc@debian.org>  Sun, 24 Sep 2017 09:26:18 +0200

libextractor (1:1.3-4) unstable; urgency=medium

  * Update debian/patches/ffmpeg2.9.patch with a new commit taken from upstream
    svn, to make libextractor build with FFmpeg 2.9 (Closes: #803835).
  * Standards-version: 3.9.8.
  * debian/control: use secure URI for the Vcs-* fields.

 -- Bertrand Marc <beberking@gmail.com>  Tue, 26 Apr 2016 22:57:06 +0200

libextractor (1:1.3-3) unstable; urgency=medium

  * Update long description to list the supported formats.
  * Add a patch cherry-picked from upstream to fix FTBFS with FFmpeg 2.9
    (Closes: #803835).
  * Add a patch cherry-picked from upstream to support GIF 5.1
    (Closes: #803282).
  * debian/control: pre-depends on ${misc:Pre-Depends} instead of
    multiarch-support.
  * Standards-version: 3.9.6.

 -- Bertrand Marc <beberking@gmail.com>  Sun, 15 Nov 2015 17:12:45 +0100

libextractor (1:1.3-2) unstable; urgency=medium

  * Build-depend on libmagic-dev and libavresample-dev to enable additional
    plugins, thanks to Andreas Cadhalpun and update libexctractor3.symbols
    accordingly (Closes: #755810).
  * Build-depend on libjpeg-dev instead of libjpeg8-dev, thanks to Ondřej Surý
    (Closes: #763478).

 -- Bertrand Marc <beberking@gmail.com>  Tue, 30 Sep 2014 22:56:51 +0200

libextractor (1:1.3-1) unstable; urgency=medium

  * Make uscan check the archive signature:
    + add the upstream key to debian/upstream-signing-key.pgp.
    + add the binary key to debian/source/include-binaries.
    + add pgpsigurlmangle to debian/watch.
  * Imported Upstream version 1.3.
  * Standards version 3.9.5:
    + remove dependency on dpkg (>= 1.15.4) | install-info.
  * Build-depend on libtiff-dev instead of libtiff4-dev (Closes: #736021).
  * Add a missing build-dependency on texinfo.

 -- Bertrand Marc <beberking@gmail.com>  Sun, 19 Jan 2014 09:54:16 +0100

libextractor (1:1.2-1) unstable; urgency=low

  * Imported Upstream version 1.2

 -- Bertrand Marc <beberking@gmail.com>  Mon, 28 Oct 2013 11:53:20 +0100

libextractor (1:1.1-1) unstable; urgency=low

  * Imported Upstream version 1.1 (Closes: #690095).
  * Move the git repository to collab-maint.
  * Remove the underscore_in_plugin_path patch, included upstream.
  * debian/control: Update build dependencies according to README.
  * debian/rules: remove override_dh_configure to enable all plugins.
  * Merge libextractor and libextractor-plugins. Keeping them separated is
    difficult to maintain and does not worth it.
  * debian/rules: remove .a files.
  * debian/rules: remove useless override_dh_builddeb.
  * debian/control: remove duplicate section field.
  * Add a symbols file for libextractor3.
  * Remove useless debian/source/options.
  * Standards version 3.9.4.
  * debian/copyright: the licence is now GPL-3+, update years.

 -- Bertrand Marc <beberking@gmail.com>  Sat, 13 Jul 2013 11:19:57 +0200

libextractor (1:0.6.3-5) unstable; urgency=low

  * debian/control: add Vcs-Git and Vcs-browser fields.
  * Switch the libpoppler-dev build dependency to libpoppler-private-dev
    (Closes: #673304).
  * Include a patch to load plugins from path with underscore, thanks to Harun
    Trefry (Closes: #675063).

 -- Bertrand Marc <beberking@gmail.com>  Sat, 23 Jun 2012 18:45:49 +0200

libextractor (1:0.6.3-4) unstable; urgency=low

  * New maintainer (Closes: #660442).
  * Upload to unstable.
  * Hardened build flags are enabled with dh v9 (Closes: #656780).
  * Standards version 3.9.3.
  * Add a dependency on dpkg (>= 1.15.4) | install-info for extract,
    see Policy section 12.2.
  * Add debian/watch.
  * Move to autoreconf:
    + build-depends on autoconf, automake, autopoint, dh-autoreconf.
    + debian/rules: use dh --with autoreconf.

 -- Bertrand Marc <beberking@gmail.com>  Sat, 17 Mar 2012 19:03:16 +0100

libextractor (1:0.6.3-3) experimental; urgency=low

  * Orphaning package.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 19 Feb 2012 09:02:05 +0000

libextractor (1:0.6.3-2) experimental; urgency=low

  * Updating package to debhelper version 9.
  * Updating years in copyright file.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Wed, 15 Feb 2012 22:35:31 +0100

libextractor (1:0.6.3-1) experimental; urgency=low

  * Updating homepage field.
  * Using compression level 9 also for binary packages.
  * Merging upstream version 0.6.3.
  * Updating packaging for mkv plugin addition.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 29 Nov 2011 20:06:13 +0100

libextractor (1:0.6.2-3) experimental; urgency=low

  * Updating maintainer and uploaders fields.
  * Removing vcs fields.
  * Updating to standards version 3.9.2.
  * Removing references to my old email address.
  * Including changelog entry for 0.5.23+dfsg-7.1.
  * Removing some useless whitespaces from Glenns entries.
  * Updating ImageMagick build-depends.
  * Dropping pre-squeeze depends on dpkg.
  * Switching to source format 3.0 (quilt).
  * Compacting copyright file.
  * Updating year in copyright file.
  * Stripping leading slash from debhelper install files.
  * Simplify autotools handling in rules.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Fri, 09 Sep 2011 15:45:45 +0200

libextractor (1:0.6.2-2) experimental; urgency=low

  * Updating standards version to 3.9.0.
  * Updating to standards version 3.9.1.
  * Updating to debhelper version 8.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 17 Oct 2010 21:47:22 +0200

libextractor (1:0.6.2-1) experimental; urgency=low

  * Merging upstream version 0.6.2.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 17 Jun 2010 13:17:26 +0200

libextractor (1:0.6.1-1) experimental; urgency=low

  * Merging upstream version 0.6.1.
  * Adding changelog entries for 0.5.23+dfsg-6 and 0.5.23+dfsg-7.
  * Updating year in copyright file.
  * Removing dfsg target in rules, not needed for 0.6 anymore.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 14 Mar 2010 10:56:03 +0100

libextractor (0.6.0-2) experimental; urgency=low

  [ Daniel Baumann ]
  * Adding conflics/replaces to libextractor1c2a (Closes: #570879).

  [ Paul Menzel ]
  * Fixing typo in package long-description of libextractor-plugins
    (Closes: #571071).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sat, 06 Mar 2010 10:44:08 +0100

libextractor (0.6.0-1) experimental; urgency=low

  * Merging upstream version 0.6.0.
  * Removing libtool.patch, not required anymore.
  * Updating debhelper files for soname version 3.
  * Adding build-depends to poppler.
  * Updating debhelper files for upstream version 0.6.0.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 21 Feb 2010 16:44:05 +0100

libextractor (1:0.5.23+dfsg-7.1) unstable; urgency=low

  * Non-maintainer upload.
  * Build-depends on libmagick++-dev instead of libmagick++9-dev (Closes:
    #625609, #629727).

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 20 Aug 2011 19:34:46 +0200

libextractor (1:0.5.23+dfsg-7) unstable; urgency=low

  * Adding patch from Ralph Siemsen <ralphs@netwinder.org> to fix proc
    parsing (Closes: #531864).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 07 Mar 2010 18:55:45 +0100

libextractor (1:0.5.23+dfsg-6) unstable; urgency=low

  * Reuploading 0.5 to unstable - somehow, the 0.6.0 for experimental
    made it to unstable (Closes: #571373, #571344, #571364).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sat, 06 Mar 2010 10:34:16 +0100

libextractor (0.5.23+dfsg-5) unstable; urgency=low

  * Updating year in copyright file.
  * Updating to standards 3.8.4.
  * Changing dh call to more common scheme.
  * Removing not required depends of libextractor-dev.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 21 Feb 2010 15:52:14 +0100

libextractor (0.5.23+dfsg-4) unstable; urgency=low

  * Adding explicit debian source version 1.0 until switch to 3.0.
  * Adding patch from Vincent Danen <vdanen@redhat.com> to fix flaw in
    embedded libtool [CVE-2009-3736] (Closes: #559819).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 27 Dec 2009 14:44:18 +0100

libextractor (0.5.23+dfsg-3) unstable; urgency=low

  * Building against libltdl7.
  * Updating to standards version 3.8.3.
  * Adding maintainer homepage field to control.
  * Marking maintainer homepage field to be also included in binary
    packages and changelog.
  * Adding README.source.
  * Simplifying autotools handling in rules.
  * Updating README.source.
  * Moving maintainer homepage field from control to copyright.
  * Dropping la files.
  * Simplyfing debhelper install files.
  * Bumping versioned build-depends on debhelper.
  * Adding depends to dpkg install info.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 17 Nov 2009 20:27:32 +0100

libextractor (0.5.23+dfsg-2) unstable; urgency=low

  * Updating maintainer field.
  * Updating vcs fields.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Mon, 10 Aug 2009 22:12:32 +0200

libextractor (0.5.23+dfsg-1) unstable; urgency=low

  * Merging upstream version 0.5.23+dfsg.
  * Renabling rpm plugin, new upstream is compatible with new rpm
    version now.
  * Minimizing rules file.
  * Building with external exiv2 support.
  * Updating section of the debug package.
  * Removing useless dir info file.
  * Disabling automatic run of test suite.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 02 Aug 2009 17:14:37 +0200

libextractor (0.5.22+dfsg-1) unstable; urgency=low

  * Merging upstream version 0.5.22+dfsg.
  * Updating upstream target in rules.
  * Removing shlibs file.
  * Updatin package to standards version 3.8.2.
  * Wrapping build-depends.
  * Adding misc depends.
  * Wrapping depends.
  * Updating section of the source package.
  * Updating year in copyright file.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 02 Aug 2009 16:42:55 +0200

libextractor (0.5.21+dfsg-3) unstable; urgency=medium

  * Currently building without rpm plugin (Closes: #533167).
  * Using correct rfc-2822 date formats in changelog.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 30 Jun 2009 10:47:01 -0300

libextractor (0.5.21+dfsg-2) unstable; urgency=low

  * Updating year in copyright.
  * Removing Arnaud from uploaders, he is MIA (Closes: #513166).
  * Updating rules to current state of the art.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 05 Feb 2009 00:49:00 +0100

libextractor (0.5.21+dfsg-1) unstable; urgency=low

  * Updating vcs fields in control file.
  * Replacing obsolete dh_clean -k with dh_prep.
  * Merging upstream version 0.5.21+dfsg.
  * Adding upstream target in rules file.
  * Adding librpm-dev to build-depends and depends.
  * Updating shlibs.
  * Updating install debhelper files to cover newly added plugins.
  * For the moment building without thumbnailffmpeg plugin.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Fri, 07 Nov 2008 22:48:00 +0100

libextractor (0.5.20c-1) unstable; urgency=medium

  * Merging upstream version 0.5.20c:
    - Fixed endianess issues in mp3 extractor.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Mon, 14 Jul 2008 10:48:00 +0200

libextractor (0.5.20b-3) unstable; urgency=low

  * Removing forgotten wildcard entry in libextractor1c2a install file
    (Closes: #489350).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sat, 05 Jul 2008 10:49:00 +0200

libextractor (0.5.20b-2) unstable; urgency=low

  * Also installing extract info page.
  * Installing manpages through install debhelper, not manpage debhelper.
  * Not using dh_movefiles anymore as a hack to build the libextractor-plugins
    sub-package.
  * Reordering rules file.
  * Removing watch file.
  * Using lintian debhelper to install lintian overrides.
  * Updating shlibs.
  * Rewriting copyright file in machine-interpretable format.
  * Adding vcs fields to control file.
  * Upgrading package to standards 3.8.0.
  * Upgrading package to debhelper 7.
  * Adding changelog entries for etch-security uploads 0.4.2-2sarge1 to
    0.4.2-2sarge6.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 03 Jul 2008 13:52:00 +0200

libextractor (0.5.20b-1) unstable; urgency=low

  * New upstream release:
    - This release fixes a security issue in the embedded xpdf code.
      However in Debian the xpdf code is not used in favour for the
      alternative pdf code from libextractor itself.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sat, 26 Apr 2008 10:30:00 +0200

libextractor (0.5.20-1) unstable; urgency=low

  * New upstream release.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 01 Apr 2008 15:35:00 +0200

libextractor (0.5.19a-1) unstable; urgency=low

  * Maintainer upload from BSP Zurich.
  * New upstream release:
    - This releases fixes a security problem in the embedded xpdf code.
      However in Debian the xpdf is not used in favour for the alternative
      pdf code from libextractor itself.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 13 Jan 2008 09:43:00 +0100

libextractor (0.5.19-1) unstable; urgency=low

  * New upstream release:
    - supports flac now (Closes: #457856).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Mon, 07 Jan 2008 20:31:00 +0100

libextractor (0.5.18a-3) unstable; urgency=low

  * Bumped to new policy.
  * Using new homepage field in control.
  * Updated email addresses in copyright.
  * Don't hide make errors in clean target of rules.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 23 Dec 2007 23:38:00 +0100

libextractor (0.5.18a-2) unstable; urgency=low

  * Added debug package.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 05 Jul 2007 13:53:00 +0200

libextractor (0.5.18a-1) unstable; urgency=medium

  * New upstream release:
    - Fixes a problem with libgsf (Closes: #430876).
    - Dropped 01-include.dpatch, included in upstream.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 05 Jul 2007 13:52:00 +0200

libextractor (0.5.18-3) unstable; urgency=low

  * Fixed lintian warning.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 15 May 2007 15:19:00 +0200

libextractor (0.5.18-2) unstable; urgency=low

  * Added patch from Martin Michlmayr <tbm@cyrius.com> to add missing includes
    required to build with GCC 4.3 (Closes: #417326).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Mon, 02 Apr 2007 13:08:00 +0200

libextractor (0.5.18-1) unstable; urgency=low

  * New upstream release.
  * Bumping to debhelper 5.
  * Minor cleanups.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Mon, 12 Mar 2007 08:15:00 +0100

libextractor (0.5.17a-1) unstable; urgency=low

  * New upstream release.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Wed, 03 Jan 2007 13:32:00 +0100

libextractor (0.5.17-1) unstable; urgency=low

  * New upstream release.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 02 Jan 2007 13:11:00 +0100

libextractor (0.5.16-2) unstable; urgency=medium

  * Added -dev packages to depends of libextractor-dev (Closes: #400174).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sat, 25 Nov 2006 17:25:00 +0100

libextractor (0.5.16-1) unstable; urgency=low

  * New upstream release.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 12 Nov 2006 09:42:00 +0100

libextractor (0.5.15-2) unstable; urgency=medium

  * Fixed broken plugin symlink.
  * Including extracts locales.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 19 Sep 2006 02:30:00 +0200

libextractor (0.5.15-1) unstable; urgency=low

  * New upstream release.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 07 Sep 2006 09:04:00 +0200

libextractor (0.5.14-4) unstable; urgency=low

  * Adjusted suggests for new libextractor-python binary package name.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 05 Sep 2006 07:46:00 +0200

libextractor (0.5.14-3) unstable; urgency=medium

  * Added libextractor-plugins depends for extract.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 13 Aug 2006 21:28:00 +0200

libextractor (0.5.14-2) unstable; urgency=low

  * New email address.
  * Removed pre-sarge Conflicts/Replaces.
  * Splittet libextractor into libextractor and libextractor-plugins, whereas
    the plugins package contains the plugins with the long depends chain.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 27 Jul 2006 12:32:00 +0200

libextractor (0.5.14-1) unstable; urgency=high

  * New upstream release:
    - fixes heap overflow in src/plugins/asfextractor.c.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Wed, 17 May 2006 23:22:00 -0500

libextractor (0.5.12-1) unstable; urgency=low

  * New upstream release:
    - no longer using xpdf code: Christian wrote a PDF extractor himself, so we
      do not longer import security problems from xpdf.
  * Removed GCC version enforcement from the transition (Closes: #357886).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 23 Apr 2006 08:06:00 +0100

libextractor (0.5.11-1) unstable; urgency=low

  * New upstream release.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sat, 11 Mar 2006 22:50:00 +0100

libextractor (0.5.10-1) unstable; urgency=high

  * New upstream release:
    - fix security-problem with imported flows from xpdf code: CVE-2006-0301

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 19 Feb 2006 13:21:00 +0100

libextractor (0.5.9-1) unstable; urgency=high

  * New upstream release:
    - fix security-problem with imported flows from xpdf code.
  * Adjusted previous changelog entry.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 25 Dec 2005 12:20:00 +0100

libextractor (0.5.8-1) unstable; urgency=high

  * New upstream release:
    - fix security-problem with imported heap-overflows from xpdf code:
      CVE-2005-3191.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 06 Dec 2005 22:55:00 +0100

libextractor (0.5.7-2) unstable; urgency=low

  * Using newer libtool to fix FTBS on kFreeBSD (Closes: #340369).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Mon, 28 Nov 2005 08:57:00 +0100

libextractor (0.5.7-1) unstable; urgency=low

  * New upstream release.
  * Rebuild and rename due to new libstdc++ configuration (Closes: #339202).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 20 Nov 2005 15:58:00 +0200

libextractor (0.5.6a-2) unstable; urgency=low

  * Updated build-depends to libmagick++9-dev (Closes: #331447).
  * Removed wrong provides of libextractor1c2.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Mon, 03 Oct 2005 18:24:00 +0200

libextractor (0.5.6a-1) unstable; urgency=low

  * New upstream release.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Wed, 19 Sep 2005 10:45:00 +0200

libextractor (0.5.4-1) unstable; urgency=low

  * New upstream release.
  * Corrected provides.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 28 Aug 2005 09:33:00 +0200

libextractor (0.5.3-1) unstable; urgency=low

  * New upstream release (Closes: #324093):
    - fixes issues with glib-related plugins, removed README.Debian
      and --disable-glib hack in rules (Closes: #282342, #295459).
  * Added lintian overrides.
  * Formal cleanups and updates in debian/.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 21 Aug 2005 12:56:00 +0200

libextractor (0.4.2-4) unstable; urgency=low

  * Enforced gcc-4 with $(CC)/$(CXX) instead of build-conflicting against
    gcc-3.3 (Closes: #321096).
  * Bumped policy version.
  * Corrected dependencies for libextractor-dev.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Wed, 03 Aug 2005 18:01:00 +0200

libextractor (0.4.2-3) unstable; urgency=low

  * C++ ABI change.
  * Added build-conflict to gcc-3.3; otherwise libextractor would still uses the
    old compiler.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Wed, 13 Jul 2005 15:19:00 +0200

libextractor (0.4.2-2sarge6) oldstable-security; urgency=high

  * Fix integer overflow in stream predictor (CVE-2007-3387)

 -- Moritz Muehlenhoff <jmm@debian.org>  Fri, 03 Aug 2007 18:41:43 +0200

libextractor (0.4.2-2sarge5) stable-security; urgency=high

  * Non-maintainer upload by the Security Team
  * Only applied upstream patch to fix heap overflow
    [src/plugins/asfextractor.c, CVE-2006-2458]

 -- Martin Schulze <joey@infodrom.org>  Fri, 26 May 2006 10:50:37 +0200

libextractor (0.4.2-2sarge4) stable-security; urgency=high

  * Applied patch to fix heap overflow in src/plugins/asfextractor.c.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Wed, 17 May 2006 23:26:00 -0500

libextractor (0.4.2-2sarge3) stable-security; urgency=high

  * Applied patch to fix security-problem with imported code from xpdf:
    CVE-2006-0301.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 19 Feb 2006 13:20:00 +0100

libextractor (0.4.2-2sarge2) stable-security; urgency=high

  * fixed additional security-problem with imported flows from xpdf code.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 25 Dec 2005 13:45:00 +0100

libextractor (0.4.2-2sarge1) stable-security; urgency=high

  * Applied patch to fix security-problem with imported heap-overflows from
    xpdf code: CVE-2005-3191.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 06 Dec 2005 22:55:00 +0100

libextractor (0.4.2-2) unstable; urgency=low

  * disabled glib related plugins on amd64, read README.Debian for more
    information.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 15 Mar 2005 13:35:00 +0100

libextractor (0.4.2-1) unstable; urgency=high

  * New upstream release.
  * debian/* redone.
  * disabled glib related plugins on powerpc, read README.Debian for more
    information.
  * debian/control: added conflicts/replaces for old version (Closes: #296051).

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Fri, 25 Feb 2005 14:09:00 +0100

libextractor (0.4.1-1) unstable; urgency=high

  * New upstream release: fixes security problem imported from xpdf
    (CAN-2005-0064).
  * disabled glib related plugins on hppa, read README.Debian for more
    information.
  * debian/control: formal cleanups.
  * debian/copyright updated.
  * debian/watch updated.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 23 Jan 2005 18:31:00 +0100

libextractor (0.3.11-1) unstable; urgency=low

  * New upstream release.
  * debian/control: descriptions updated, conflict to tigr-glimmer fixed to version.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 14 Nov 2004 09:57:00 +0100

libextractor (0.3.10-2) unstable; urgency=high

  * Added fix from cvs for various Sparc64 problems (Closes: #278905).
  * Added workaround from cvs for re-load glib problem of OLE2 extractor.
  * debian/watch added.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sat, 30 Oct 2004 23:50:00 +0200

libextractor (0.3.10-1) unstable; urgency=low

  * New upstream release.
  * debian/libextractor0.files: added entries for new plugins.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 24 Oct 2004 01:00:00 +0200

libextractor (0.3.8-1) unstable; urgency=low

  * New upstream release.
  * Moved libextract man-page from the libextractor0-dev to libextractor.
  * debian/control: added conflict to tigr-glimmer (Closes: #274780).
  * debian/libextractor0.files: added entries for new plugins and updated the plugin path.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Sun, 10 Oct 2004 06:37:00 +0200

libextractor (0.3.6-2) unstable; urgency=medium

  * debian/libextractor0.files: added entry for libextractor_oo.so

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 14 Sep 2004 12:14:00 +0200

libextractor (0.3.6-1) unstable; urgency=medium

  * New upstream release (Closes: #268012)

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Fri, 10 Sep 2004 19:40:00 +0200

libextractor (0.3.5-2) unstable; urgency=medium

  * debian/control: used ${Source-Version} for dependency libextractor0-dev.
  * debian/libextractor0.shlibs: used ${Source-Version}.
  * src/plugins/htmlextractor.c: applied segfault fix for html-parser from cvs.

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Thu, 9 Sep 2004 13:05:00 +0200

libextractor (0.3.5-1) unstable; urgency=low

  * New upstream release
  * New maintainer (Closes: #225689)
  * debian/control: start descriptions lowercase, deleted final point
  * debian/control: updated to new policy
  * debian/control: fixed build dependencies (libglib2.0-dev, pkg-config)
  * debian/libextractor0.files: added entry for libextractor_ole2.so

 -- Daniel Baumann <daniel.baumann@progress-technologies.net>  Tue, 7 Sep 2004 15:27:00 +0200

libextractor (0.3.3-1) unstable; urgency=low

  * New upstream release

 -- Glenn McGrath <bug1@debian.org>  Sat, 26 Jun 2004 12:59:02 +1000

libextractor (0.3.1-1) unstable; urgency=low

  * New upstream release

 -- Glenn McGrath <bug1@debian.org>  Sun, 02 May 2004 11:07:02 +1000

libextractor (0.3.0-1) unstable; urgency=low

  * New upstream release

 -- Glenn McGrath <bug1@debian.org>  Tue, 20 Apr 2004 20:11:01 +1000

libextractor (0.2.6-1) unstable; urgency=low

  * New upstream release
  * Fix inter-library depenency problem (Closes: #201003)
  * Declare dependency on libltdl3-dev (Closes: #215281)

 -- Glenn McGrath <bug1@debian.org>  Tue, 14 Oct 2003 23:14:09 +0000

libextractor (0.2.5.0+cvs.20030822-2) unstable; urgency=low

  * If (host == build) only mention huild to configure (Closes: #206898)

 -- Glenn McGrath <bug1@debian.org>  Mon, 25 Aug 2003 03:33:59 +0000

libextractor (0.2.5.0+cvs.20030822-1) unstable; urgency=low

  * CVS release, reduces compiler memory requirements (Closes: #204791)

 -- Glenn McGrath <bug1@debian.org>  Fri, 22 Aug 2003 21:09:38 +0000

libextractor (0.2.5-2) unstable; urgency=low

  * Change section of libextractor0-dev to libdevel

 -- Glenn McGrath <bug1@debian.org>  Mon, 21 Jul 2003 06:06:49 +0000

libextractor (0.2.5-1) unstable; urgency=low

  * New upstream release
  * Update to standards version 3.6.0
  * Include .la files in libextractor0
  * Include .0 symlinks in libextractor0 (Closes: #200912)
  * Fix spelling mistake in extract description (Closes: #201480)

 -- Glenn McGrath <bug1@debian.org>  Sun, 20 Jul 2003 08:26:32 +0000

libextractor (0.2.3-3) unstable; urgency=low

  * Initial upload to unstable (Closes: #180337)
  * Make the descriptions more verbose.
  * Add a sharedlib entry

 -- Glenn McGrath <bug1@debian.org>  Fri, 27 Jun 2003 15:04:54 +0000

libextractor (0.2.3-2) unstable; urgency=low

  * Fix lintian warnings
  * Produce a diff against upstream tarball.
  * Fix build dependencies.
  * Merge the ogg package in with the rest.

 -- Glenn McGrath <bug1@debian.org>  Thu, 17 Apr 2003 22:47:11 +1000

libextractor (0.2.3-1) unstable; urgency=low

  * New upstream release

 -- Glenn McGrath <bug1@debian.org>  Tue, 15 Apr 2003 22:20:02 +1000

libextractor (0.2.2-1) unstable; urgency=low

  * New upstream release

 -- Glenn McGrath <bug1@debian.org>  Thu, 27 Feb 2003 15:45:53 +1100

libextractor (0.2.1-1) unstable; urgency=low

  * New upstream release

 -- Glenn McGrath <bug1@debian.org>  Fri, 07 Feb 2003 14:02:26 +1100

libextractor (0.2.0-1) unstable; urgency=low

  * Initial Release.

 -- Glenn McGrath <bug1@debian.org>  Wed, 05 Feb 2003 13:28:56 +1100