File: changelog

package info (click to toggle)
matplotlib 1.1.1~rc2-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 66,076 kB
  • sloc: python: 90,600; cpp: 69,891; objc: 5,231; ansic: 1,723; makefile: 171; sh: 7
file content (955 lines) | stat: -rw-r--r-- 34,549 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
matplotlib (1.1.1~rc2-1) unstable; urgency=low

  * New upstream release candidate
  * debian/control
    - remove some unnecessary build-depends; thanks to Michael Droettboom from
      upstream for the review of the b-d packages list
    - remove Qt3 dependencies, not required since a long time, easying Qt3
      removal from Debian; thanks to Ana Guerrero for report; Closes: #673399
    - add python-nose to b-d, needed to run tests
  * debian/rules
    - enable tests at build time

 -- Sandro Tosi <morph@debian.org>  Sun, 10 Jun 2012 16:21:11 +0200

matplotlib (1.1.1~rc1-2) unstable; urgency=low

  * debian/patches/60_new_syntax_to_load_searchindex.patch
    - use new Sphinx syntax to load searchindex.js so dh_sphinxdoc is able to
      recognize search.html as a valid Sphinx search page
  * debian/{control, rules}
    - use dh_sphinxdoc
  * debian/rules
    - set MPLCONFIGDIR to a writable directory; thanks to Lucas Nussbaum for the
      report; Closes: #669549

 -- Sandro Tosi <morph@debian.org>  Sat, 12 May 2012 18:05:15 +0200

matplotlib (1.1.1~rc1-1) unstable; urgency=low

  * New upstream (release candidate) release
    - provide ipython 0.11 compatibility; thanks to Julian Taylor for the
      report; Closes: #636464
  * debian/control
    - replace ttf-lyx with fonts-lyx (package rename); thanks to Ryo IGARASHI
      for the report; Closes: #664048
    - bump required numpy version to 1.4 at least
    - bump Standards-Version to 3.9.3 (no changes needed)
  * debian/{control, rules}
    - use dh_numpy

 -- Sandro Tosi <morph@debian.org>  Sun, 25 Mar 2012 14:45:00 +0200

matplotlib (1.1.0-1) unstable; urgency=low

  * New upstream release
  * debian/control
    - remove Alexandre from Uploaders: thanks for all the work!
  * debian/rules
    - install debug files where gdb looks for them
    - removed some doc files no more present in upstream tarball
    - don't install baseline_images dir, contains images only needed for tests
      and takes a lot of disk space
  * debian/copyright
    - updated to new release
  * debian/patches/*
    - updated/deleted/refreshed as per new code

 -- Sandro Tosi <morph@debian.org>  Sat, 08 Oct 2011 17:32:16 +0200

matplotlib (1.0.1-3) unstable; urgency=low

  * debian/patches/80_fix_tkinter_version_detection.patch
    - fix tkinter version detection; Closes: #632963

 -- Sandro Tosi <morph@debian.org>  Mon, 11 Jul 2011 20:53:08 +0200

matplotlib (1.0.1-2) unstable; urgency=low

  * Upload to unstable
    - fixed a FTBFS since the failing code (unicode vs byte-string) is rewritten
      in 1.0.x branch; thanks to Lucas Nussbaum for the report and to Stefano
      Rivera for the analysis; Closes: #625150
  * debian/rules
    - remove verbose logging for debhelper
    - remove compiled python code from documentation
  * debian/patches/70_search_new_tkdir.patch
    - added patch to look for the updated location of 'tkConfig.sh' script;
      thanks to Julian Taylor for the report and patch; Closes: #621700
  * debian/control
    - bump Standards-Version to 3.9.2 (no changes needed)
    - removed XB-P-V/Conflicts/Replaces/Provides, no more needed

 -- Sandro Tosi <morph@debian.org>  Sat, 07 May 2011 11:14:24 +0200

matplotlib (1.0.1-1) experimental; urgency=low

  * New upstream release; Closes: #606116
  * debian/patches/{10_build_fix.patch, 20_matplotlibrc_path_search_fix.patch}
    - updated to new upstream code
  * debian/patches/30_doc_pass_dpi.patch
    - removed, merged upstream
  * debian/rules
    - don't compress objects.inv; thanks to Michael Fladischer for the report;
      Closes: #608760
  * debian/rules, debian/patches/30_disable_sample_downloads.patch
    - bypass examples data download from internet, but use local copy instead
  * debian/python-matplotlib-data.install
    - install examples sample data
  * debian/control
    - bump Standards-Version: to 3.9.1 (no changes needed)
    - removed DM-U-A flag, no more needed
    - added python-xlwt to b-d, needed to build doc examples
    - Benjamin Drung removed himself from the Uploaders list
  * debian/copyright
    - updated debian packaging copyright
  * debian/patches/40_bts608939_draw_markers_description.patch
    - fix a glitch (missing reference to documentation page) in draw_markers()
      description; thanks to Jakub Wilk for report and patch; Closes: #608939
  * debian/patches/50_bts608942_spaces_in_param_args.patch
    - don't separate param and its argument with a space, new sphinx consider
      the first argument as the type; thanks to Jakub Wilk for the report;
      Closes: #608942
  * debian/patches/60_doc_output_format.patch
    - obtain the documentation output format even if the value is a unicode (as
      returned by recent sphinx); thanks to Jakub Wilk for the tip on IRC

 -- Sandro Tosi <morph@debian.org>  Tue, 25 Jan 2011 18:17:56 +0100

matplotlib (0.99.3-1) unstable; urgency=low

  * New upstream release
  * debian/patches/05-find-tcl-tk-directory.patch
    - removed, now merged upstream
  * debian/patches/10_build_fix.patch
    - adapted to new upstream code
  * debian/pycompat
    - removed, not needed
  * debian/mkcopyright.sh
    - removed, not needed anymore

 -- Sandro Tosi <morph@debian.org>  Tue, 22 Jun 2010 00:32:30 +0200

matplotlib (0.99.1.2-3) unstable; urgency=low

  [ Sandro Tosi ]
  * debian/control
    - Recommends python-tk directly and Suggests all other other Python
      bindings (changes from Ubuntu); this way the default backend ('TkAgg')
      will work out-of-the-box and the others will need manual bindings
      installation; Closes: #563137

  [ Benjamin Drung ]
  * Bump Standards-Version to 3.8.4 (no changes required).
  * Add trailing blank line to debian/NEWS.
  * Add platform entry for GNU/Hurd to 10_build_fix.patch; thanks to Pino
    Toscano for the patch (Closes: #568599).

 -- Benjamin Drung <bdrung@ubuntu.com>  Sat, 06 Feb 2010 09:34:01 +0100

matplotlib (0.99.1.2-2) unstable; urgency=low

  * Build depend on texlive-latex-recommended instead of latex-ucs to fix FTBFS
    (Closes: #562346).
  * Bump python-numpy dependency to version 1.3.0 (Closes: #559990).
  * Add ${misc:Depends} to Depends.
  * Switch to 3.0 (quilt) source format.
  * Refresh patches.

 -- Benjamin Drung <bdrung@ubuntu.com>  Mon, 28 Dec 2009 15:57:32 +0100

matplotlib (0.99.1.2-1) unstable; urgency=low

  * New upstream release.
  * Fix spelling error in doc-base abstract field.
  * Add missing section field to doc-base file.
  * Convert patch system back to quilt and use DEP-3 patch tagging guidelines.

 -- Benjamin Drung <bdrung@ubuntu.com>  Sun, 15 Nov 2009 22:17:31 +0100

matplotlib (0.99.1.1-1) unstable; urgency=low

  [ Sandro Tosi ]
  * New upstream release
  * debian/control
    - added python-wxgtk2.8-dbg to b-d (needed to build -dbg package)
    - added python-imaging to b-d (needed for -doc package)
    - added librsvg2-common to Suggests of python-matplotlib, needed by GTKAgg
      backend; thanks to Jonas for the report and suggestion; Closes: #548874
    - moved python-excelerator from Depends to Suggests; thanks to W. Martin
      Borgert for the report; Closes: #547437
    - removed Ondrej from Uploaders: thanks for your work!
  * debian/patches/30_doc_pass_dpi.dpatch
    - pass DPI when building doc images
  * debian/python-matplotlib-doc.doc-base
    - added doc-base

  [ Benjamin Drung ]
  * wrote 05-find-tcl-tk-directory.dpatch
  * strip not working parts from 10_build_fix.dpatch
  * debian/rules
    - refresh clean target
  * link to fonts in ttf-lyx to make lintian happy
  * Add latex-ucs and texlive-fonts-recommended to Build-Depends
    (Closes: #551248).
  * Demote GUI toolkits from Depends to Recommends; thanks to Thomas Bechtold
    for this hint (Closes: #547437).
  * Install lib/matplotlib/mpl-data/lineprops.glade; thanks to Ambrose Andrews
    for the report (Closes: #518488).

 -- Benjamin Drung <bdrung@ubuntu.com>  Sun, 08 Nov 2009 21:58:23 +0100

matplotlib (0.99.0-1) unstable; urgency=low

  * New upstream release
    - thanks to Michael S. Gilbert for the report; Closes: #541146
  * debian/control
    - removed Marco Presi from uploaders: thanks for your work!
    - bump Standards-Version to 3.8.3 (no changes needed)

 -- Sandro Tosi <morph@debian.org>  Thu, 17 Sep 2009 12:46:17 +0200

matplotlib (0.98.5.3-2) unstable; urgency=medium

  [ Benjamin Drung ]
  * Build with tcl/tk8.5 as python-tk was build with tcl/tk8.5; thanks to Lucas
    Nussbaum for the report; Closes: #536985 (RC bug, hence urgency=medium)
  * Bump Standards-Version to 3.8.2 (no changes).

 -- Sandro Tosi <morph@debian.org>  Wed, 15 Jul 2009 10:16:45 +0200

matplotlib (0.98.5.3-1) unstable; urgency=low

  [ Benjamin Drung ]
  * debian/control
    - Rename python-enthought-traits to python-traits
    - Move python-matplotlib-dbg to section debug
    - Build depends on python-qt4
    - Update my e-mail address.
    - Sort build depends and break depends.
  * debian/rules
    - In clean target use rm -rf instead dh_clean for removing build directory;
      thanks Andrew Straw for the patch
    - Let all stamp files end with -stamp for automatically cleaning by dh_clean
    - Remove generated doc files in clean target; upstreams doc clean target
      only runs svn-clean, which is useless without a repository
  * Switch to debhelper 7
  * Install egg-info files and add python-setuptools to build depends; thanks to
    Gediminas Paulauskas

  [ Sandro Tosi ]
  * New upstream release (ready to be uploaded in unstable)
    - ensure WX examples use version >= 2.8, thanks to giacomo boffi for the
      report; Closes: #518150
  * debian/control
    - removed Vittorio Palmisano from uploaders (mia); thanks for your work!
    - bump Standards-Version to 3.8.1 (no changes needed)
  * debian/copyright
    - completely rewritten to match new upstream code
  * debian/{rules, *.lintian-overrides}
    - added these lintian overrides:
      + arch-dep-package-has-big-usr-share
        . python-matplotlib has large arch-indep with some arch-dep code
      + copyright-should-refer-to-common-license-file-for-lgpl
        . false warning, since it greps for LGPL that's in the license text as
          example
      + extra-license-file
        . license embedded in the documentation, will break links if removed
      + font-in-non-font-package
        . we ship fonts, so no need to warning for this
  * debian/{control, rules, python-matplotlib.preinst}
    - switch to python-support (adding preinst for the migration)

 -- Sandro Tosi <morph@debian.org>  Fri, 29 May 2009 08:40:48 +0200

matplotlib (0.98.5.2-1) experimental; urgency=low

  [ Benjamin Drung ]
  * debian/control
    - Added python-pkg-resources to build dependency for version detection of
      python-enthought-traits
    - merged python-tk into GUI Python packages alternative dependency list
    - add myself to uploaders
  * Move content of debian/patches/setup.cfg.patch to
    debian/setup.cfg to set the default backend to TkAgg

  [ Sandro Tosi ]
  * New upstream release
    - Fixed histogram autoscaling bug when bins or range are given
      explicitly; Closes: #503148
    - fix a FTBFS if built with GCC 4.4; thanks to Martin Michlmayr for the
      report and the patch; Closes: #505618
  * debian/control
    - switch Vcs-Browser field to viewsvn
    - removed python from Depends since introduced by python:Depends
    - depending on python-all-dbg for -dbg package (to install all dbg
      interpreters)
    - moved python-tk to the first position of multiple GUI bindings Depends
      line
    - moved 'dvipng' from Recommends to Suggests (to avoid texlive to be
      automatically taken in); Closes: #490992
    - bump build-depends in python-sphinx to at least 0.5.1 (upstream doc build
      system requires it)
  * debian/NEWS
    - added to notify users about default backend (TkAgg)
    - added note about 'dvipng' not installed automatically anymore
  * debian/README.debian
    - added information about changing backend
  * debian/rules
    - merging all "rm" calls into "dh_clean" call
    - removed 'API_CHANGES' installation, since removed upstream
    - doc building with '--small' option, to reduce doc size (removing hi-res
      and pdf gallery images)
  * debian/{control,rules,patches/*,README.source}
    - moved from quilt to dpatch
  * debian/patches/{matplotlibrc.template-typo.patch,
             doc_graphviz_errors_fix.patch,bts-498229_axes3d_typo.patch}
    - removed since merged upstream
  * debian/docs
    - removed since not needed (the same files were listed in debian/rules)

 -- Sandro Tosi <morph@debian.org>  Wed, 14 Jan 2009 22:09:58 +0100

matplotlib (0.98.3-5) unstable; urgency=medium

  [ Benjamin Drung ]
  * debian/patches/matplotlibrc.template-typo.patch
    - fix typo in matplotlibrc.template

  [ Sandro Tosi ]
  * debian/control
    - updated my email address
    - replaced python-wxgtk2.6 with python-wxgtk2.8
  * debian/patches/setup.cfg.patch
    - added to create "setup.cfg" file to guide building (in particular for
      "backend" configuration); Closes: #502976
  * debian/patches/bts-498229_axes3d_typo.patch
    - added to fix a typo when importing "axes3d"; thanks to Tiziano Zito for
      the report; Closes: #498229

 -- Sandro Tosi <morph@debian.org>  Fri, 31 Oct 2008 13:51:20 +0100

matplotlib (0.98.3-4) unstable; urgency=low

  [ Sandro Tosi ]
  * Release in collaboration with Benjamin Drung, from Ubuntu
  * debian/control
    - applied Benjamin Drung patch to split dep fields a package per line;
      thanks to him; Closes: #495287
    - replaced dep on python-dev with python; thanks to Benjamin Drung for the
      notice
    - depends reorganization: dvipng moved to recommends (optional tex
      depends), python-configobj and python-enthought-traits to suggests
      (experimental support); Closes: #490992
    - added python-matplotlib-dbg package and python-all-dbg, python-numpy-dbg
      to build-dep
    - removed python-gd depends since no more needed
  * debian/README.debian
    - removed outdated info, added notice for MATPLOTLIBDATA env variable
  * debian/python-matplotlib-data.install
    - added matplotlib.conf installation
  * debian/patches/matplotlibrc_fix.patch
    - refreshed to match new upstream code
  * debian/rules
    - added build, clean and install for -dbg package

  [ Ondrej Certik ]
  * debian/patches/build_fix.patch updated thanks to Thiemo Seufer.
      Closes: #501618

 -- Sandro Tosi <matrixhasu@gmail.com>  Mon, 25 Aug 2008 23:28:30 +0200

matplotlib (0.98.3-3) unstable; urgency=medium

  * debian/control
    - moved depends on libjs-jquery from binary to -doc package; thanks to
      Nicolas Évrard for the report; part of #490992 resolution
  * debian/rules
    - used distutils to retrieve the build directory for matplotlib, needed
      for doc generation; thanks to Lucas Nussbaum for the report and to
      Piotr for the fix; Closes: #494236

 -- Sandro Tosi <matrixhasu@gmail.com>  Mon, 11 Aug 2008 20:51:52 +0200

matplotlib (0.98.3-2) unstable; urgency=low

  * debian/patches/build_fix.patch
    - added kfreebsd7/8 based systems; thanks to Petr Salinger for the patch;
      Closes: #493858

 -- Sandro Tosi <matrixhasu@gmail.com>  Tue, 05 Aug 2008 19:39:18 +0200

matplotlib (0.98.3-1) unstable; urgency=medium

  * New upstream release
    - fixed memory leaks; Closes: #492735 (RC bug, hence urgency=medium)
  * debian/control
    - added python-sphinx (versioned to easy Lenny entrance), graphviz,
      ipython, texlive-latex-extra build-deps in order to build documentation
    - added Suggests on python-scipy; thanks to Chris Walker for the report;
      Closes: #488138
    - added Vcs-{Browser,Svn} fields
    - added depend on libjs-jquery to replace embedded one
  * debian/rules
    - build and install documentation; Closes: #401629
    - symlinked jquery.js from libjs-jquery instead of the embedded one
    - added dh_link -i call for indep packages
  * debian/watch
    - removed comment lines since not needed
  * debian/patches/doc_graphviz_errors_fix.patch
    - added to fix graphviz errors during doc build (from upstream svn r5962)
  * debian/copyright
    - shortened some long line (to make lintian happy)

 -- Sandro Tosi <matrixhasu@gmail.com>  Mon, 04 Aug 2008 21:42:05 +0200

matplotlib (0.98.1-1) unstable; urgency=low

  * New upstream release; Closes: #486074

 -- Sandro Tosi <matrixhasu@gmail.com>  Mon, 23 Jun 2008 21:13:50 +0200

matplotlib (0.98.0-1) experimental; urgency=low

  * New upstream release; Closes: #486074
  * debian/rules
    - changed doc name
  * debian/control
    - bump build-dep to python-numpy to at least 1.1.0
    - added python-excelerator to Depends
  * debian/patches/build_fix.patch
    - updated to match new upstream source code

 -- Sandro Tosi <matrixhasu@gmail.com>  Thu, 19 Jun 2008 20:40:43 +0200

matplotlib (0.91.3-1) unstable; urgency=low

  * New upstream release; Closes: #485950
  * debian/patches/bts-468977_memory_api_usage.patch
    - removed since merged upstream
  * debian/patches/bts-478237_ftbfs_gcc43.patch
    - removed since merged upstream
  * debian/patches/build_fix.patch
    - updated to match new upstream code
  * debian/control
    - bump Standards-Version to 3.8.0
    - removed build-dep on xbase-clients; it was a lintian error, but the
      package works fine without it
    - added python-pyparsing, python-cairo and python-glade2 to Depends
  * debian/README.source
    - added to reflect Policy 3.8.0

 -- Sandro Tosi <matrixhasu@gmail.com>  Fri, 13 Jun 2008 20:52:01 +0200

matplotlib (0.91.2-2) unstable; urgency=medium

  * debian/patches/bts-478237_ftbfs_gcc43.patch
    - added (Closes: #478237)
  * debian/rules
    - removed some files changes during build
  * debian/control
    - removed Depends on python-numeric-ext, python-numarray-ext (Closes:
      #478451)

 -- Sandro Tosi <matrixhasu@gmail.com>  Tue, 29 Apr 2008 19:09:08 +0200

matplotlib (0.91.2-1) unstable; urgency=low

  [ Piotr Ożarowski ]
  * Replace libwxgtk2.4-python with python-wxgtk2.6 in Depends
    (closes: #466470)

  [ Sandro Tosi ]
  * New upstream release (Closes: #459200, #474001, #447741, #408955)
  * debian/patches/build_fix.patch
    - edited to match new code
  * debian/rules
    - adjusted doc files installation
  * debian/docs
    - removed since the same files were already in debian/rules
  * debian/patches/matplotlibrc_fix.patch
    - edited to match new code (sync from Ubuntu)
  * debian/control
    - added "dvipng, python-configobj, python-enthought-traits (>= 2.0),
      python-qt-dev, python-qt4-dev, python-wxgtk2.6" as build-dep (sync from
      Ubuntu)
    - bump depends on python-numpy (sync from Ubuntu)
    - added "python-qt4, dvipng, python-configobj, python-enthought-traits (>=
      2.0)" to Depends (sync from Ubuntu)
    - merged Recommends into Depends
    - removed Depends on python-pypaint since that package is unavailable
    - added myself to Uploaders
  * debian/patches/bts-468977_memory_api_usage.patch
    - fixes Python API memory usage (Closes: #468977)

 -- Sandro Tosi <matrixhasu@gmail.com>  Wed, 23 Apr 2008 17:37:03 +0200

matplotlib (0.90.1-4) unstable; urgency=low

  * Maintainer changed to Debian Python Modules Team
  * Vittorio Palmisano and Ondrej Certik added to Uploaders
  * "DM-Upload-Allowed: yes" field added
  * Standards-Version bumped to 3.7.3
  * python-numarray and python-numeric removed from build-depends and
    debian/rules fixed to make the package compile
  * debian/rules polished
  * patches moved under a quilt control
  * Package descriptions fixed (python -> Python)
  * Homepage field added (and removed from description)
  * python-matplotlib-doc package moved to the "doc" Section
  * /usr/share/matplotlib/mpl-data/images/*.svg made chmod 644 (i.e. not
    executable)
  * debian/watch uncommented, as it seems to work (and last line removed)
  * python2.3-matplotlib removed from Conflicts/Replaces 

 -- Ondrej Certik <ondrej@certik.cz>  Sun, 09 Mar 2008 20:39:04 +0100

matplotlib (0.90.1-3.1) unstable; urgency=medium

  * Non-maintainer upload to fix an RC bug. python-numpy conflicts with
    python-matplotlib (<< 0.90.1-3), that's why we use 0.90.1-3.1 instead of
    0.90.1-2.1.
  * Rebuilt against python-numpy 1:1.0.4-6 (Closes: #467099)

 -- Ondrej Certik <ondrej@certik.cz>  Sun, 24 Feb 2008 14:36:08 +0100

matplotlib (0.90.1-2) unstable; urgency=low

  * Upload to unstable and not experimental (closes: #411709)
  * New version can coexist with python-numpy (closes: #426953)
  * Removed spurious dependency on python-gst (closes: #422711)
  * New package correctly detects numpy, numeric and numarray (closes: #425906)
  * applied debian/rules patch for the check that plugins were built (closes: #422475)
  * Changed dependency on dvipng to a recommendation (closes: #403198)
  * use texlive instead of tetex (closes:  #406176)
  * added suggests on texlive-latex-extra (closes: #410777)
  * reworded the description bit about "publication quality" (closes: #421593) 
  
 -- Alexandre Fayolle <afayolle@debian.org>  Thu, 19 Jul 2007 11:58:24 +0200

matplotlib (0.90.1-1) experimental; urgency=low

  * New upstream release
  * updated debian/copyright file
  
 -- Alexandre Fayolle <afayolle@debian.org>  Fri, 06 Jul 2007 17:49:05 +0200

matplotlib (0.90.0-2) experimental; urgency=low

  * Changed dvipng dependency to a recommends (Closes: #403198)
  * Added to suggests tetex-extra | texlive-extra-utils (Closes: 406176)
  * Added to suggests texlive-latex-extra (Closes: #410777)
  * Changed python-gst dependency to python-gobject
  * Already closed bug: (Closes: #396386)

 -- Vittorio Palmisano <redclay81@gmail.com>  Thu, 26 Apr 2007 11:00:02 +0200

matplotlib (0.90.0-1) experimental; urgency=low

  * New upstream release
  * Added depend on python-tk (Closes: #408944)

 -- Marco Presi (Zufus) <zufus@debian.org>  Thu,  1 Mar 2007 22:32:45 +0000

matplotlib (0.87.7-0.2) unstable; urgency=high

  * Non-maintainer upload.
  * Using patch provided by Mark Hymers <mark@hymers.org.uk>
    - Add check to debian/rules to prevent builds silently failing to build
      one of the plugins.  (Closes: #411925)

 -- Martin Zobel-Helas <zobel@ftbfs.de>  Wed, 28 Feb 2007 10:39:43 +0100

matplotlib (0.87.7-0.1) unstable; urgency=medium

  * Remove build dependency on python-numpy-ext.
  * Prefer python-numpy over (python-numeric as a dependency. Closes: #389669.
  * Already fixed:
    - Build dependency on python-numpy. Closes: #375558.
  * Readd dependency on python-gst. Closes: #385590.
  * Mention pylab in the package description. Closes: #403723.

 -- Matthias Klose <doko@debian.org>  Sun,  7 Jan 2007 21:30:23 +0000

matplotlib (0.87.7-0) experimental; urgency=low

  * New upstream version (compatible with python-numpy-1.0). Closes: #361181.
  * (Build-)depend on python-numpy (>= 1:1.0.1).
  * Remove redundant (build-)dependencies.
  * Remove references to explicit python versions. Closes: #405611.

 -- Matthias Klose <doko@debian.org>  Wed,  3 Jan 2007 22:52:34 +0100

matplotlib (0.87.5-2.2) unstable; urgency=low

  * Non-maintainer upload.
  * Also Depend: on python-dateutil (closes: #396335)

 -- Mark Hymers <mark@hymers.org.uk>  Tue, 31 Oct 2006 18:05:10 +0000

matplotlib (0.87.5-2.1) unstable; urgency=low

  * Non-maintainer upload.
  * Build-Depend on python-dateutil so that we don't supply our internal copy.
    Closes: #393074.

 -- Mark Hymers <mark@hymers.org.uk>  Sun, 29 Oct 2006 01:57:17 +0100

matplotlib (0.87.5-2) unstable; urgency=low

  * Fixed python-numpy dependency. Closes: #387440
  * python-gtk2 includes gobject module and it is an optional dependency for
    those who use an X server.
    Closes: #382400, #385590

 -- Vittorio Palmisano <redclay81@gmail.com>  Sat, 16 Sep 2006 18:14:25 +0200

matplotlib (0.87.5-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay81@gmail.com>  Fri, 08 Sep 2006 15:46:46 +0200

matplotlib (0.87.4-3) unstable; urgency=low

  * Removed wrong "Section: doc" from python-matplotlib-doc package

 -- Vittorio Palmisano <redclay81@gmail.com>  Wed, 09 Aug 2006 16:15:44 +0200

matplotlib (0.87.4-2) unstable; urgency=low

  * Removed pytz files. Closes: #335991, #377275
  * Added numpy support. Closes: #353342
  * Removed duplicate README.debian. Closes: #380102

 -- Vittorio Palmisano <redclay81@gmail.com>  Wed, 02 Aug 2006 18:28:22 +0200

matplotlib (0.87.4-1) unstable; urgency=low

  * New upstream release

 -- Marco Presi (Zufus) <zufus@debian.org>  Wed, 12 Jul 2006 09:27:16 +0200

matplotlib (0.87.3-1) unstable; urgency=low

  * New upstream version. Closes: #361181
  * Added numpy support. Closes: #375558
  * Added depends on python-tz. Closes: #376715
  
 -- Marco Presi (Zufus) <zufus@debian.org>  Thu,  6 Jul 2006 09:54:55 +0200

matplotlib (0.86.2-6.1) unstable; urgency=low
  
    * Depend on python-tz, remove the pytz files. Closes: #376715.
  
 -- Matthias Klose <doko@debian.org>  Fri,  7 Jul 2006 18:38:43 +0000
  
matplotlib (0.86.2-6) unstable; urgency=low

  * Added a note about numeric/numarray deps in README.debian. Closes: #376198
  * Added PYVERS to debian/rules (Carlo Segre <segre@iit.edu> patch). Closes: #376239
  * Modified Vittorio Palmisano e-mail address.

 -- Marco Presi (Zufus) <zufus@debian.org>  Tue,  4 Jul 2006 15:35:38 +0200

matplotlib (0.86.2-5) unstable; urgency=low

  * Updated to new Python policy (closes: #373462)
  * fixed dependency on python-numarray (closes: #373165)

 -- Alexandre Fayolle <afayolle@debian.org>  Thu, 15 Jun 2006 18:27:18 +0200

matplotlib (0.86.2-4) unstable; urgency=low

  * Added Build-Deps on python-setuputils. Closes: #358597

 -- Marco Presi (Zufus) <zufus@debian.org>  Wed, 29 Mar 2006 16:26:27 +0200

matplotlib (0.86.2-3) unstable; urgency=low

  * Fix the previuos BAD Non-maintaner upload. Closes: #357459

 -- Marco Presi (Zufus) <zufus@debian.org>  Mon, 20 Mar 2006 23:00:38 +0100

matplotlib (0.86.2-2.1) unstable; urgency=high

  * Non-maintainer upload.
  * Fix FTBFS 'rm: cannot remove ...: No such file ... (Closes: #354370).

 -- Luk Claes <luk@debian.org>  Thu, 16 Mar 2006 18:52:47 +0100

matplotlib (0.86.2-2) unstable; urgency=low

  * Packages now depend both on python-numarray and python-numeric. Closes: #353043

 -- Marco Presi (Zufus) <zufus@debian.org>  Thu, 16 Feb 2006 19:19:42 +0100

matplotlib (0.86.2-1) unstable; urgency=low

  * New upstream release. Closes: #341730
  * Added ${shlibs:Depends}. Closes: #345366
  * python-matplotlib-doc is suggested by python-matplotlib and enhances it. 
    Closes: #341610
  * Replaced latex dependency with tetex-extra. Closes: #337361
  * subplot() behavior fixed. Closes: #346285
  * Added users_guide in -doc package. Closes: #341399
  
 -- Vittorio Palmisano <vpalmisano@gmail.com>  Sat, 28 Jan 2006 19:29:15 +0100

matplotlib (0.85-1) unstable; urgency=low

  * New upstream release. Closes: #341730

  * Added ipython among Enhanced packages.

 -- Marco Presi (Zufus) <zufus@debian.org>  Sat, 10 Dec 2005 22:53:24 -0500

matplotlib (0.82-5) unstable; urgency=low

  * Added documentation package. Closes: #338622
  * Added python-epydoc dependency for documentation generation.

 -- Vittorio Palmisano <vpalmisano@gmail.com>  Sat, 12 Nov 2005 21:26:16 +0100

matplotlib (0.82-4) unstable; urgency=low

  * Fixed FTBFS on hppa: added patch to build on systems without X server 
    (autobuilders) also in the clean stage. Closes: 338423.
  * The same patch fix the build also on GNU/kFreeBSD. Closes: #336953

 -- Marco Presi (Zufus) <zufus@debian.org>  Fri, 11 Nov 2005 20:51:08 -0500

matplotlib (0.82-3) unstable; urgency=low

  * Fixed deps on python-matplotlib (was depending on 0.82-1)

 -- Marco Presi (Zufus) <zufus@debian.org>  Thu, 10 Nov 2005 23:46:04 -0500

matplotlib (0.82-2) unstable; urgency=low

  [Marco Presi]
  
  * Included patch by Aurelien Jarno <aurel32@debian.org> to fix build on
    GNU/kFreeBSD. Closes: #336953
  * Added latex as Suggested dependency. Closes: #337361

 -- Marco Presi (Zufus) <zufus@debian.org>  Sun,  6 Nov 2005 21:49:45 -0500

matplotlib (0.82-1) unstable; urgency=low

  * New upstream release
  * First Debian release. Closes: #206691
  * Removed doc package, added notes in README.debian
  * Added dvipng dependency
  * Added python2.3-qt3, python2.4-qt3 optional dependency
  * Added API_CHANGES, INTERACTIVE, KNOWN_BUGS, NUMARRAY_ISSUES to docs
  * Removed import gtk/tk from setup.py for building on systems without X
    server (buildd)
  * Moved .matplolibrc to /etc/matplolibrc and patched lib/__init__.py in
    order to make the package compliant with Debian Policy

 -- Vittorio Palmisano <vpalmisano@gmail.com>  Sat, 15 Oct 2005 22:42:01 +0200

matplotlib (0.81-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sat, 11 Jun 2005 13:16:37 +0200

matplotlib (0.80-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Mon, 25 Apr 2005 19:16:59 +0200

matplotlib (0.74-1) unstable; urgency=low

  * New upstream release
  * Aurelien Jarno:
    - python-matplotlib does not need to depends on python-matplotlib-data
    - remove README.Debian file
    - README and TODO also in python2.3-matplotlib and python2.4-matplotlib
    - keep the name matplotlib for the source package only
    - remove generation of html docs, using User's Guide pdf

 -- Vittorio Palmisano <redclay@email.it>  Sun, 10 Apr 2005 09:53:51 +0200

python-matplotlib (0.72-4) unstable; urgency=low

  * Added support for different python versions

 -- Vittorio Palmisano <redclay@email.it>  Sat, 26 Feb 2005 22:05:40 +0100 

python-matplotlib (0.72-3) unstable; urgency=low

  * Aurelien Jarno:
    - fixed find_tcltk() error if X display is not accessible
    - changed matlab to Matlab in debian/control file

 -- Vittorio Palmisano <redclay@email.it>  Wed, 23 Feb 2005 16:17:36 +0100

python-matplotlib (0.72-2) unstable; urgency=low

  * Aurelien Jarno:
    - Fixed debhelper(>=4.1.67) dependency
    - removed debian/postinst and debian/preinst
    - removed gunzip of example/data

 -- Vittorio Palmisano <redclay@email.it>  Sun, 20 Feb 2005 21:44:17 +0100

python-matplotlib (0.72-1) unstable; urgency=low

  * New upstream release
  * Added python-dev dependency

 -- Vittorio Palmisano <redclay@email.it>  Fri, 18 Feb 2005 15:16:26 +0100

python-matplotlib (0.71-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sat, 22 Jan 2005 15:19:56 +0100

python-matplotlib (0.70.1-2) unstable; urgency=low

  * Added python-numeric-ext | python-numarray-ext dependency

 -- Vittorio Palmisano <redclay@email.it>  Mon, 17 Jan 2005 11:16:01 +0100

python-matplotlib (0.70.1-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sun, 02 Jan 2005 23:35:30 +0100

python-matplotlib (0.65.1-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Thu, 23 Dec 2004 21:58:31 +0100

python-matplotlib (0.65-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sat, 18 Dec 2004 15:22:58 +0100

python-matplotlib (0.64-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sat, 13 Nov 2004 22:28:00 +0100

python-matplotlib (0.63.4-3) unstable; urgency=low

  * Jochen Voss:
    - fix the dependencies and build-dependencies
    - remove the Vera*.ttf files and depend on ttf-bitstream-vera instead
  * added Recommends: ipython(>=0.6.3)

 -- Vittorio Palmisano <redclay@email.it>  Sat, 23 Oct 2004 10:48:27 +0200

python-matplotlib (0.63.4-2) unstable; urgency=low

  * Updated copyright file (autogenerated)
  * Changed Description
  * Removed libttf-dev depends (thanks to Jochen Voss)

 -- Vittorio Palmisano <redclay@email.it>  Sun, 03 Oct 2004 23:05:06 +0200

python-matplotlib (0.63.4-1) unstable; urgency=low

  * New upstream release (closes: #206691)
  * fixed .svg files perms
  * removed Recommends: libwxgtk2.4-python

 -- Vittorio Palmisano <redclay@email.it>  Fri, 01 Oct 2004 22:31:28 +0200

python-matplotlib (0.62.4-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Mon, 30 Aug 2004 22:30:50 +0200

python-matplotlib (0.61.0-2) unstable; urgency=low

  * John Hunter:
    - Removed python-ttfquery dependency

 -- Vittorio Palmisano <redclay@email.it>  Sun, 15 Aug 2004 20:25:00 +0200

python-matplotlib (0.61.0-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Mon, 09 Aug 2004 23:40:44 +0200

python-matplotlib (0.60.2-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sun, 11 Jul 2004 10:24:01 +0200

python-matplotlib (0.54.2-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Fri, 11 Jun 2004 22:48:50 +0200

python-matplotlib (0.54.1-1) unstable; urgency=low

  * New upstream release
  * Seo Sanghyeon:
    - Fixed python-numeric | python-numarray dependency
    - Fixed python-gtk2 dependency

 -- Vittorio Palmisano <redclay@email.it>  Sun, 30 May 2004 10:14:08 +0200

python-matplotlib (0.54-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sat, 22 May 2004 22:47:59 +0200

python-matplotlib (0.53.1-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sat,  1 May 2004 23:19:40 +0200

python-matplotlib (0.53-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Fri, 23 Apr 2004 20:49:25 +0200

python-matplotlib (0.52-2) unstable; urgency=low

  * Fixed python-gd dependency 

 -- Vittorio Palmisano <redclay@email.it>  Fri, 26 Mar 2004 11:40:37 +0100

python-matplotlib (0.52-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Sat, 20 Mar 2004 17:40:06 +0100

python-matplotlib (0.51-1) unstable; urgency=low

  * New upstream release

 -- Vittorio Palmisano <redclay@email.it>  Fri,  5 Mar 2004 14:27:08 +0100

python-matplotlib (0.50-2) unstable; urgency=low

  * Removed python2.3-numeric-ext dependency

 -- Vittorio Palmisano <redclay@email.it>  Thu, 26 Feb 2004 15:27:30 +0100

python-matplotlib (0.50-1) unstable; urgency=low

  * Initial Release.

 -- Vittorio Palmisano <redclay@email.it>  Sat, 21 Feb 2004 23:52:10 +0100