~ubuntu-branches/ubuntu/lucid/ardour/lucid-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
ardour (1:2.5-0ubuntu1) intrepid; urgency=low

  * New upstream release.
  * debian/patches/s390-FTBFS.patch: Dropped, as it fails to apply, and
    Ubuntu doesn't concern itself with s390.
  * debian/control:
    - Fix package description, thanks to the patch in Debian bug #485892.
    - Metadata cleanup and sync control/control.in files.
    - Add libaubio-dev to Build-Depends.

 -- Luke Yelavich <themuso@ubuntu.com>  Tue, 29 Jul 2008 11:27:04 +1000

ardour (1:2.4.1-2build1) intrepid; urgency=low

  * Rebuild for liblo0 -> liblo0dbl transition

 -- Emmet Hikory <persia@ubuntu.com>  Sun, 29 Jun 2008 20:56:55 +0900

ardour (1:2.4.1-2) unstable; urgency=low

  * Fixed import window size in ardourino patch
  * Fixed FTBFS Built-in libsigc++ broken  (Closes: #474422), thanks
    to Roland Stigge <stigge@antcom.de>
  * Fixed FTBFS if build twice in a row (Closes: #442495), thanks
    to Sandro Tosi <matrixhasu@gmail.com>
  * Applied .desktop files patch from Marco Rodrigues (Closes: #463003)
  * Fixed syntax errors in package description (Closes: #485891), thanks
    to  Juan Ricart <juangabriel.ricart@gmail.com>

 -- Free Ekanayaka <freee@debian.org>  Mon, 16 Jun 2008 14:44:48 +0100

ardour (1:2.4.1-1) unstable; urgency=low

  * New upstream release

 -- Free Ekanayaka <freee@debian.org>  Mon, 14 Apr 2008 14:54:45 +0100

ardour (1:2.4-2) unstable; urgency=low

  * Re-included ardourino patch, to fix mixer strip display at 1024x600

 -- Free Ekanayaka <freee@debian.org>  Tue, 01 Apr 2008 13:50:07 +0200

ardour (1:2.4-1) unstable; urgency=low

  * New upstream release
  * Dropped ardourino patch, it's not needed anymore as Ardour
    now behaves well at 1024x600 resolution
  * Set FREEDESKTOP to "no", as the source fails to build

 -- Free Ekanayaka <freee@debian.org>  Tue, 01 Apr 2008 13:50:07 +0200

ardour (1:2.3.1-1) unstable; urgency=low

  * New upstream release
  * debian/control:
     - build-depend on libfftw3-dev (Closes: #463803)
     - added Homepage, Vcs-Svn, Vcs-Browser
  * debian/patches
     - dropped 50-soundtouch.patch (fixed upstream)
     - updated 80_ardourino.patch
     - dropped unused patches from source package

 -- Free Ekanayaka <freee@debian.org>  Thu,  7 Feb 2008 20:51:55 +0000

ardour (1:2.2-1) unstable; urgency=low

  * New upstream release
  * Fixed watch file (Closes: #449921)
  * debian/patches:
     - resolved rejects in 80_ardourino.patch
     - re-added buttons to 80_ardourino.patch, best viewed at 1024x600
     - dropped 90_fix-ftbfs-for-abs.patch (fixed upstream)

 -- Free Ekanayaka <freee@debian.org>  Thu, 13 Dec 2007 12:19:13 +0000

ardour (1:2.1-1.1) unstable; urgency=high

  * Non-maintainer upload by testing-security team.
  * Fix FTBFS caused by type casting by adding a patch by
    Thiemo Seufer (90_fix-ftbfs-for-abs.patch; Closes: #446597).
  * Fix heap-based buffer overflow possibly leading to arbitrary code
    execution in embedded copy of libsndfile (CVE-2007-4974; Closes: #445889).

 -- Nico Golde <nion@debian.org>  Tue, 04 Dec 2007 17:37:42 +0100

ardour (1:2.1-1) unstable; urgency=low

  * New upstream release
  * Resolved conflicts in the ardourino patch

 -- Free Ekanayaka <freee@debian.org>  Sun, 30 Sep 2007 09:42:40 +0100

ardour (1:2.0.5-1) unstable; urgency=low

  * New upstream release
  * Conflicts with the old 0.99 packages (Closes: #424412)
  * Hide master track in ardourino template (this saves some space for
    the other tracks

 -- Free Ekanayaka <freee@debian.org>  Fri,  3 Aug 2007 15:17:43 +0100

ardour (1:2.0.4-1) unstable; urgency=low

  * New upstream release
  * Include pre-redirect in ardourino
  * Added ardourino template

 -- Free Ekanayaka <freee@debian.org>  Wed,  1 Aug 2007 00:21:08 +0200

ardour (1:2.0.3-2) unstable; urgency=low

  * Added "ardourino" patch, for displays with 800x600 resolutions

 -- Free Ekanayaka <freee@debian.org>  Thu, 12 Jul 2007 14:44:31 +0200

ardour (1:2.0.3-1) unstable; urgency=low

  * New upstream release (Closes: #427739). Note that the source is still
    built without SHLIBS=1, so that the third party libraries shipped with
    the upstream tarball are used, instead of the system libraries (which
    is what the upstream developers recommend). At the moment this is the
    only available workaround to #425507, but we should eventually fix it
    in the relevant system libraries
  * Added 70_DARCH patch to prevent setting DARCH=x86 on amd64
  * Rebuilt against flac 1.1.4 (Closes: #426634)

 -- Free Ekanayaka <freee@debian.org>  Tue,  3 Jul 2007 21:42:15 +0200

ardour (1:2.0.2-2) unstable; urgency=low

  * Drop SHLIBS=1 scons flag, which makes ardour run at 100%
    on some hw, thanks to ken at restivo dot org (closes: #425507)

 -- Free Ekanayaka <freee@debian.org>  Thu, 24 May 2007 12:51:27 +0200

ardour (1:2.0.2-1) unstable; urgency=low

  * New upstream release
  * debian/control:
     - build-depend on libcairomm-1.0-dev (>= 1.2.4)
     - ardour conflicts with ardour-gtk (>= 1:0.99.3+2.0beta12)
     - recommend also iceweasel as real-package alternative to www-browser
  * debian/patches:
     - added 60-libdir.patch, we don't want files in /usr/lib64

 -- Free Ekanayaka <freee@debian.org>  Wed,  9 May 2007 21:21:23 +0000

ardour (1:2.0-1) unstable; urgency=low

  * New upstream release
  * Mention third-party files and libs in debian/copyright
  * Drop ardour-gdb, we got stable!

 -- Free Ekanayaka <freee@debian.org>  Mon,  7 May 2007 15:34:36 +0200

ardour (1:2.0~rc1-1) unstable; urgency=low

  * Imported changes from Ubuntu
  * Upstream provides now a menu icon (Closes: #369978)
  * Build-Depend on libjack-dev instead of libjack0.100.0-dev

 -- Free Ekanayaka <freee@debian.org>  Mon, 16 Apr 2007 10:41:39 +0200

ardour (1:2.0~rc1-0ubuntu1) feisty; urgency=low

  * New upstream release.
  * Rename ardour-gtk to ardour, allowing for a parallel install with
    previous ardour version.
  * debian/ardour-gtk*: Rename to ardour*, and edit where necessary.
  * Merge contents of ardour-doc and ardour-session-exchange into the
    ardour package.
  * debian/control* debian/opt-control:
    - Change all ardour-gtk references to ardour.
    - Fixed a few typos.
    - Updated maintainer field.
    - Add jackd as a dependency for ardour.
    - Remove ardour-doc and ardour-session-exchange packages.
  * debian/rules: Removed all references to ksi.
  * Move session_exchange.py into debian directory.
  * debian/README.Debian:
    - Change executable for debugging to ardour2.
    - Added a note about the renaming of session_exchange.py.

 -- Luke Yelavich <themuso@ubuntu.com>  Sat, 14 Apr 2007 08:09:34 +1000

ardour (1:0.99.3+2.0beta12-1) experimental; urgency=low

  * New upstream release

 -- Free Ekanayaka <freee@debian.org>  Sat, 17 Mar 2007 17:47:38 +0100

ardour (1:0.99.3+2.0beta11.1-1) experimental; urgency=low

  * New upstream pre-release
  * Added libboost-dev, liblo0-dev, libsoundtouch1-dev to Build-Depends
  * Merged changes between 0.99.2-2 and 0.99.3-1
  * Added icon to .desktop files
  * Bumped Standards-Version to 3.7.2
  * Removed useless build-essential build dependency
  * Updated FSF address
  * Fixed broken watch file
  * Added epoch to let the version be greater than the current version 
    in experimental (1+2.0alpa2-1)
  
 -- Free Ekanayaka <freee@debian.org>  Tue, 16 Jan 2007 19:53:47 +0100

ardour (1+2.0alpa2-1) experimental; urgency=low

  * new upstream pre-release
  * merge ardour 0.99.2-2 changes.
    + debian/rules: don't build SSE stuff on altivec.

 -- Robert Jordens <jordens@debian.org>  Wed, 15 Mar 2006 15:33:31 +0100

ardour (1+2.0alpa1-1) experimental; urgency=low

  * new upstream alpha snapshot

 -- Robert Jordens <jordens@debian.org>  Sun,  5 Mar 2006 19:34:15 +0100

ardour (0.99.3-1) unstable; urgency=low

  * New upstream release (Closes: #386384).
  * New maintainer Debian Multimedia Team
  * Bug fix: "ardour-gtk: Typos in package description", thanks to daniel
    (Closes: #304351).
  * Bug fix: "ardour-gtk-i686: Spelling mistake in package description",
    thanks to Simon Waters (Closes: #362736).
  * Bug fix: "ardour-gtk: Spelling mistake in package description", thanks
    to Simon Waters (Closes: #362737).
  * Bug fix: "ardour-gtk-i686: Spelling mistake in package description",
    thanks to Simon Waters (Closes: #362736).

 -- Free Ekanayaka <freee@debian.org>  Tue, 17 Oct 2006 12:36:02 +0200

ardour (0.99.2-2) unstable; urgency=low

  * debian/rules: don't build SSE stuff on altivec.

 -- Robert Jordens <jordens@debian.org>  Thu,  9 Mar 2006 13:52:43 +0100

ardour (0.99.2-1) unstable; urgency=low

  * new upstream maintenance version 0.99.2.
  * debian/patches/40_use_shipped_soundtouch.patch: use the libsoundtouch
    version from the tarball and compile it statically as a workaround for
    Bug#333432 and Bug#341299.
    from Guenter Geiger.
  * include newer french translation from Christophe Combelles
    <ccomb@free.fr>; closes: Bug#335999
  * shorten the common description significantly and refer to ardour-gtk for
    more; closes: Bug#333966
  * debian/watch: update

 -- Robert Jordens <jordens@debian.org>  Sat,  4 Mar 2006 16:37:51 +0100

ardour (0.99-3) unstable; urgency=low

  * debian/ardour-gtk*.install: install i18n files; closes: Bug#332418
    (ardour-gtk: no l10n in the package)
  * upload to unstable

 -- Robert Jordens <jordens@debian.org>  Sat,  8 Oct 2005 09:50:15 +0200

ardour (0.99-2) experimental; urgency=low

  * debian/control*, debian/*.desktop: don't use xterm anymore since there are
    now meaningful error dialogs and automatic starting of jackd; 
    closes: Bug#325046

 -- Robert Jordens <jordens@debian.org>  Wed,  5 Oct 2005 15:17:49 +0200

ardour (0.99-1) experimental; urgency=low

  * new upstream release

 -- Robert Jordens <jordens@debian.org>  Thu, 29 Sep 2005 14:43:47 +0200

ardour (0.9beta30-1) experimental; urgency=low

  * new upstream rlease
    + 05_gcc40-fixes.patch, 06_fastlog-gcc4.patch, 07_more-gcc4.patch, 
      08_cast-precision.patch, 27_ardour.rc.patch: applied upstream
    + 31_add-O2-to-DEBUG-CFLAGS.patch: updated
  * uploading to experimental to not onterfere with the ongoing JACK/CXX
    transition.

 -- Robert Jordens <jordens@debian.org>  Thu, 15 Sep 2005 14:42:19 +0200

ardour (0.9beta29-5) unstable; urgency=low

  * debian/control: ardour-gtk-dbg is priority extra
  * debian/patches/08_cast-precision.patch; fix a few void* to int casts on
    64bit archs.

 -- Robert Jordens <jordens@debian.org>  Mon,  8 Aug 2005 14:01:57 +0200

ardour (0.9beta29-4) unstable; urgency=medium

  * CXX transition; closes: Bug#321004: ardour-gtk uninstallable: dependency
    broken)
    + debian/control: build against newer libgtkmm1.2-0c2, libsoundoutch1c2,
      libsigc++0c2
    + urgency medium because this is RC
  * debian/patches/05_gcc40-fixes.patch: from ardour--ao--0--patch-681 (Fix
    for gcc4 and memory leak in libardour's Stateful.  Added virtual
    destructors.)
  * debian/patches/06_fastlog-gcc4.patch: from ardour--ao--0--patch-693 (This
    patch stops the warning about type-punned pointers in fastlog.h when
    compiling with gcc4.  it also stops the meters from wobbling and the gain
    readouts from displaying incorrect levels, as seems to happen on fedora
    core 4's gcc4.)
  * debian/patches/07_more-gcc4.patch: from ardour--ao--0--patch-714 (Minor
    gcc4 fixes.)

 -- Robert Jordens <jordens@debian.org>  Sun,  7 Aug 2005 16:02:27 +0200

ardour (0.9beta29-3) unstable; urgency=low

  * upload 0.9beta29-2 unchanged to unstable, thus rebuilding against
    libjack0.100.0 and twisted 2.0 (closes: Bug#315879:
    ardour-session-exchange: Dependencies broken)
  * debian/*.desktop: add items to the desktopr files;
    closes: Bug#313366: ardour-gtk: Non XDG-compliant .desktop file

 -- Robert Jordens <jordens@debian.org>  Sat,  2 Jul 2005 15:06:00 +0200

ardour (0.9beta29-2) experimental; urgency=low

  * rebuild against jack 0.100.0

 -- Robert Jordens <jordens@debian.org>  Tue, 21 Jun 2005 22:49:41 +0200

ardour (0.9beta29-1) unstable; urgency=low

  * new upstream release
    + 33_dont-append-version.patch: applied upstream
  * upload to unstable because this release contains purely fixes (see
    http://ardour.org/news.php)

 -- Robert Jordens <jordens@debian.org>  Mon, 18 Apr 2005 11:28:44 +0200

ardour (0.9beta28-scons-1-1) experimental; urgency=low

  * new upstream cvs snapshot
    + 33_fix-config-prefix.patch: applied uptream
    + 33_dont-append-version.patch: added to not build "ardour-$version" but
      simply "ardour"
  * debian/common-description: fix long description; closes: Bug#304351

 -- Robert Jordens <jordens@debian.org>  Tue, 12 Apr 2005 21:00:59 +0200

ardour (0.9beta28-scons-2) experimental; urgency=low

  * debian/control: ardour-gtk*: conflict, replace libardour0; 
    closes: Bug#303670
  * debian/common-description: add ${Neweline}s; closes: Bug#303641

 -- Robert Jordens <jordens@debian.org>  Fri,  8 Apr 2005 08:59:17 +0200

ardour (0.9beta28-scons-1) experimental; urgency=low

  * new upstream release using scons
  * a lot of shiny new things that were meade incredibly easy by upstream
    switching to scons (thanks a lot by the way!):
    + no split-off of libraries; since these libraries are highly
      fluctuating in their API and only used in ardour, it makes no sense
      to carry around 8 packages on each arch for them. Drop the -dev
      packages in that go as well and build ardour-gtk static WRT
      libardour, libpbd, libmidi++ and libgtkmmext
    + added optimized packages -altivec and -i686 on powerpc and i386.
      Done by rebuilding with scons and template based generation of the
      snippet in control and ardour-gtk-@optarch@.*
    + added -dbg packages with detached debugging symbols (thanks to dh_strip!)
      for the generic non-optimized build; I hope they are not too large...
    + add rewriting of debian/control with cdbs for automatic addition of
      @cdbs@ Build-Depends
    + all the patches we used to need to build against libsoundtouch,
      libgtkmm, libgtk-canvas, libsigc++ are now included in aequivalent
      versions upstream and nicely hidden under the DEBIAN option to scons
    + only install all the docs into ardour-doc
    + most other #include-related patches also accepted upstream

 -- Robert Jordens <jordens@debian.org>  Wed, 16 Mar 2005 09:40:35 +0100

ardour (0.9beta28-1) unstable; urgency=low

  * new upstream release

 -- Robert Jordens <jordens@debian.org>  Thu, 10 Mar 2005 08:36:57 +0100

ardour (0.9beta27-1) unstable; urgency=low

  * new upstream release
    + adapted patches: 
       debian/patches/15_use-system-libs-buildsys.patch
       debian/patches/18_build-against-system-soundtouch.patch
    + deleted patches applied upstream:
       debian/patches/06_install-templates-into-DESTDIR.patch

 -- Robert Jordens <jordens@debian.org>  Tue,  1 Mar 2005 16:56:41 +0100

ardour (0.9beta26-1) unstable; urgency=low

  * new upstream release

 -- Robert Jordens <jordens@debian.org>  Thu, 10 Feb 2005 10:38:48 +0100

ardour (0.9beta25-1) unstable; urgency=low

  * new upstream release
    + debian/patches/15_use-system-libs-buildsys.patch,
      debian/patches/18_build-against-system-soundtouch.patch: adapted

 -- Robert Jordens <jordens@debian.org>  Tue,  8 Feb 2005 15:11:22 +0100

ardour (0.9beta24-1) unstable; urgency=low

  * new upstream release
    + debian/patches/23_fix-cycles-mips.patch: applied upstream

 -- Robert Jordens <jordens@debian.org>  Fri, 21 Jan 2005 09:01:37 +0100

ardour (0.9beta23-2) unstable; urgency=low

  * dont build libardour0, libpbd0, libgtkmmext0, libmidi++0 shared; dont
    build lib*0-dev, lib*0-dbg

 -- Robert Jordens <jordens@debian.org>  Tue, 18 Jan 2005 22:04:03 +0100

ardour (0.9beta23-1) unstable; urgency=low

  * new upstream release
  * debian/control: Build-Depends: libgtk-canvas (>= 0.1.1-7) which 
    has the _NO_AUTO_REDRAW flag

 -- Robert Jordens <jordens@debian.org>  Wed, 12 Jan 2005 11:00:09 +0100

ardour (0.9beta22-2) unstable; urgency=high

  * debian/patches/23_fix-cycles-mips.patch: fixes superflous newline in
    cycles.h for mips; urgency high because this is an FTBFS

 -- Robert Jordens <jordens@debian.org>  Mon, 20 Dec 2004 23:33:21 +0100

ardour (0.9beta22-1) unstable; urgency=high

  * new upstream release; urgency high because the intermediate release
    0.9beta21 contains quite desastrous bugs and has been -- ex posteriori --
    declared as "not to be released"; list of changes
    <http://ardour.org/news.html>; examples:
      + fixes in RT buffer handling
      + fixes in JACK transport
      + fixes in template path handling; closes: Bug#283711
      + fixes in diskstream file handling

 -- Robert Jordens <jordens@debian.org>  Sun, 19 Dec 2004 23:32:45 +0100

ardour (0.9beta21-3) unstable; urgency=low

  * ardour-session-exchange release 0.1.1

 -- Robert Jordens <jordens@debian.org>  Tue, 16 Nov 2004 23:50:16 +0100

ardour (0.9beta21-2) unstable; urgency=low

  * readd debian/patches/06_install-templates-into-DESTDIR.patch; I trusted
    the upstream changelog without checking. Hrmmmm
    closes: Bug#279226 again

 -- Robert Jordens <jordens@debian.org>  Tue,  2 Nov 2004 08:50:06 +0100

ardour (0.9beta21-1) unstable; urgency=low

  * new upstream release
    + debian/patches/05_midipp-use-alsa.diff,
      debian/patches/06_install-templates-into-DESTDIR.patch: incorporated
      upstream

 -- Robert Jordens <jordens@debian.org>  Tue,  2 Nov 2004 00:07:37 +0100

ardour (0.9beta20-3) unstable; urgency=low

  * debian/patches/05_midipp-use-alsa.diff: added: fixes alsa midi

 -- Robert Jordens <jordens@debian.org>  Mon,  1 Nov 2004 22:11:01 +0100

ardour (0.9beta20-2) unstable; urgency=low

  * debian/patches/06_install-templates-into-DESTDIR.patch:
    install templates under DESTDIR; closes: Bug#279226

 -- Robert Jordens <jordens@debian.org>  Mon,  1 Nov 2004 17:35:51 +0100

ardour (0.9beta20-1) unstable; urgency=low

  * new upstream release, packaging-relevant stuff:
    + no libglib-dev needed
    + templates shipped with ardour-gtk
    + fixes thread handling on exit
    + automake 1.7 required (libmidi++)
  * debian/{control,rules}: use quilt for patch management
  * debian/patches/15_use-system-libs-buildsys.patch: adapted
  * ardour-doc: removed djcj stuff; licensing unclear, maintaining mirrors of
    web pages is not something I want to do in debian packages

 -- Robert Jordens <jordens@debian.org>  Mon,  1 Nov 2004 07:48:41 +0100

ardour (0.9beta19-3) unstable; urgency=low

  * upload to unstable because 0.9beta19-1 has entered testing
  * debian/control: remove ardour-ksi traces

 -- Robert Jordens <jordens@debian.org>  Thu,  2 Sep 2004 11:53:32 +0200

ardour (0.9beta19-2) experimental; urgency=low

  * 18_build-against-system-soundtouch.patch, 18_dont-build-soundtouch.patch,
    debian/control, debian/rules, debian/libsoundtouch0*: 
    don't build libsoundtouch but compile against the official
    libsoundtouch1; closes: Bug#252892

 -- Robert Jordens <jordens@debian.org>  Wed, 18 Aug 2004 15:35:14 +0200

ardour (0.9beta19-1) unstable; urgency=low

  * new upstream release
  * djcj-ardour-doc-20040807.1446.tar.bz2: updated from the web

 -- Robert Jordens <jordens@debian.org>  Sat,  7 Aug 2004 14:46:25 +0200

ardour (0.9beta18.4-1) unstable; urgency=low

  * new upstream release
    + debian/patches/06_gtk-gui-configure-fix.patch: disabled
    + debian/patches/14d_force-run-all-autotools.patch: added
  * increment debhelper dependency to make sure Bug#228272 does not occur
  * debian/watch: added
  * debian/copyright: updated with new URL

 -- Robert Jordens <jordens@debian.org>  Mon,  2 Aug 2004 11:01:55 +0200

ardour (0.9beta17.1-4) unstable; urgency=low

  * debian/patches/14c_force-use-automake-1.7.patch: factor out changes of
    previous revisions into a separate patch
  * correct superfluous replacements of aclocal with aclocal-1.7 where the
    former was a directory

 -- Robert Jordens <jordens@debian.org>  Tue,  6 Jul 2004 17:28:13 +0200

ardour (0.9beta17.1-3) unstable; urgency=low

  * debian/patches/14a_add-autogens-and-m4-files-cvs.patch,
    debian/patches/14b_modify-autogen-sh.patch: use aclocal1.7 to
    regenerate the files

 -- Robert Jordens <jordens@debian.org>  Wed, 30 Jun 2004 21:17:56 +0200

ardour (0.9beta17.1-2) unstable; urgency=low

  * debian/patches/14a_add-autogens-and-m4-files-cvs.patch,
    debian/patches/14b_modify-autogen-sh.patch: use automake1.7 to
    regenerate the files

 -- Robert Jordens <jordens@debian.org>  Wed, 30 Jun 2004 11:12:29 +0200

ardour (0.9beta17.1-1) unstable; urgency=low

  * new upstream tarball
    + debian/patches/05_fix-manpage-install-local.patch: integrated upstream 
  * upload going to unstable again now that JACK 0.98.1 is there

 -- Robert Jordens <jordens@debian.org>  Wed, 30 Jun 2004 01:53:30 +0200

ardour (0.9beta16.1-3) experimental; urgency=low

  * add easier support for enabling detached debugging symbols, just replace
    "anydebug" with "any" in debian/control

 -- Robert Jordens <jordens@debian.org>  Wed,  9 Jun 2004 17:10:44 +0200

ardour (0.9beta16.1-2) experimental; urgency=low

  * this is not a native package, upload with correct orig tarball

 -- Robert Jordens <jordens@debian.org>  Mon,  7 Jun 2004 17:06:29 +0200

ardour (0.9beta16.1-1) experimental; urgency=low

  * new upstream tarball

 -- Robert Jordens <jordens@debian.org>  Sat,  5 Jun 2004 21:32:54 +0200

ardour (0.9beta16-1) experimental; urgency=low

  * new upstream tarball
  * debian/patches/15_use-system-libs-buildsys.patch: link against libcurl
  * debian/control: b-d on libidn11-dev, libcurl2-dev is missing that
    dependency

 -- Robert Jordens <jordens@debian.org>  Fri,  4 Jun 2004 17:54:53 +0200

ardour (0.9beta14-3-1) experimental; urgency=low

  * new upstream tarball 0.9beta14-3
  * debian/control: revert Build-Depends on g77

 -- Robert Jordens <jordens@debian.org>  Sun, 23 May 2004 22:50:19 +0200

ardour (0.9beta13-1) experimental; urgency=low

  * new upstream release
    + 05_fix-manpage-install-local.patch: added
    + debian/{control,rules}, 17_dont-autogen-ksi.patch:
      ksi is not included upstream, dead upstream, doesnt compile
    + debian/control: needs libjack0.80.0-dev (>= 0.98), libardour0 also
      depends on jackd (>= 0.98)
    + debian/patches: split a few, reorganized others
    + 14_add-autogens-and-m4-files-cvs.patch: split into:
      14a_add-autogens-and-m4-files-cvs.patch, 14b_modify-autogen-sh.patch,
      15_gen-pkg-configs.patch
    + 07_force-gtkmmext-install.patch: added. somehow libgtkmmext was not
      installed
    + 06_gtk-gui-configure-fix.patch: added, small effectless oneliner
    + 05_fix-manpage-install-local.patch: install with DESTDIR
  * debian/control: real-package alternative to audio-mixer
  * packaged session_exchange.py from
    http://www.piratesvsninjas.com/software/sex/
  * debian/control: Build-Depends: g77

 -- Robert Jordens <jordens@debian.org>  Thu, 20 May 2004 14:28:39 +0200

ardour (0.9beta11.2-2) unstable; urgency=low

  * replaced ardour.sourceforge.net with ardour.org
  * debian/patches/05_fix-void-cast-in-soundtouch.patch: added, 
    closes: Bug#237572

 -- Robert Jordens <jordens@debian.org>  Fri, 12 Mar 2004 10:52:09 +0100

ardour (0.9beta11.2-1) unstable; urgency=low

  * new upstream release
  * debian/patches/04_fix-gtk-canvas-include-in-automation_edit.patch: removed
  * debian/patches/15_use-system-libs-buildsys.patch: updated to new upstream
  * debian/patches/04_fix-gtk-canvas-include-in-crossfade_edit.patch,
    debian/patches/14_install-libardour-in-usr-lib.patch: added, do what they 
    say
  * debian/docs: updated to new locations in upstream tarball

 -- Robert Jordens <jordens@debian.org>  Mon,  1 Mar 2004 15:53:58 +0000

ardour (0.9beta10.2-1) unstable; urgency=low

  * new upstream release
  * debian/patches/01_0.9beta9-cvs040203.patch: removed
  * disable optimization (for i386) because it fails on k6 (probably others as
    well); probably really finishes with Bug#219672 but anyway 
    closes: Bug#234371
  * debian/patches/16_cdbs-cflags-am_cflags.patch: updated to new upstream
    source
  * debian/patches/04_fix-gtk-canvas-include-in-automation_edit.patch: added,
    fixes the inclusion path for gtk-canvas.h

 -- Robert Jordens <jordens@debian.org>  Wed, 25 Feb 2004 20:55:49 +0100

ardour (0.9beta9+3-2+cvs20040203) unstable; urgency=low

  * Build-Depends-Indep cleaned up
  * debian/patches/01_0.9beta9-cvs040203.patch: update to current cvs
  * debian/control: Depends: jackd (>= 0.80.0)

 -- Robert Jordens <jordens@debian.org>  Tue,  3 Feb 2004 15:52:41 +0100

ardour (0.9beta9+3-2) unstable; urgency=low

  * distribute detached debugging symbols in *-dbg packages with the help from
    dh_strip's new feature new packages: ardour-gtk-dbg, ardour-ksi-dbg,
    libardour0-dbg, libgtkmmext0-dbg, libpbd0-dbg, libsoundtouch0-dbg,
    libmidi++0-dbg, these packages only recommend gdb (>= 6.0) because the
    symbols could also be used with older versions. - the feature is disabled 
    so far because the packages are surprisingly huge and because it would 
    delay the propagation of the JACK packages to testing
  * debian/control: ladspa-plugin is recommended
  * rebuild against new libraptor1-dev

 -- Robert Jordens <jordens@debian.org>  Sat, 24 Jan 2004 22:33:51 +0100

ardour (0.9beta9+3-1) unstable; urgency=low

  * new upstream release
    + obsoletes 04_0.9beta9+2-cvs040103.patch, 
      04_add-newsavedialog_h-from-cvs.patch,
      05_cvs20040103-cvs20040113.patch, 24_add-editor_xpms-from-cvs.patch

 -- Robert Jordens <jordens@debian.org>  Fri, 16 Jan 2004 02:01:25 +0100

ardour (0.9beta9+2-1+cvs20030113) unstable; urgency=low

  * rewrote urls as <http://...> as recommended in RFC 2396, Appendix E
  * added: debian/patches/04_0.9beta9+2-cvs040103.patch: minor fixes
  * uploading to unstable as JACK 0.80.0 or above is there
  * removed the old remains of the manual; the new one will be sold; scrambled
    version may be available from http://ardour.sourceforge.net
  * added: debian/patches/05_cvs20040103-cvs20040113.patch: i18n and minor
    fixes

 -- Robert Jordens <jordens@debian.org>  Sat,  3 Jan 2004 13:16:09 +0100

ardour (0.9beta9+2-1) experimental; urgency=low

  * new upstream prerelease tarball
    (0.9beta9+1-1 never made it to the Debian archive)
    + added: debian/patches/23_add-newsavedialog_h-from-cvs.patch

 -- Robert Jordens <jordens@debian.org>  Tue, 30 Dec 2003 22:59:48 +0100

ardour (0.9beta9+1-1) experimental; urgency=low

  * new upstream prerelease tarball
    + debian/control: needs libjack0.91.1-dev

 -- Robert Jordens <jordens@debian.org>  Wed,  3 Dec 2003 19:06:59 +0100

ardour (0.9beta9-1) experimental; urgency=low

  * new upstream release
  * debian/patches/16_cdbs-cflags-am_cflags.patch: fixed conflicts
  * debian/ReleaseNotes-1.0betaX: removed, use ReleaseNotes-0.9betaX 
    from the tarball
  * debian/rules: disable optimization for !i386 explicitly

 -- Robert Jordens <jordens@debian.org>  Wed, 29 Oct 2003 11:53:51 +0000

ardour (0.9beta8-1) experimental; urgency=low

  * new upstream release

 -- Robert Jordens <jordens@debian.org>  Tue, 28 Oct 2003 18:07:52 +0000

ardour (0.9beta7-1) experimental; urgency=low

  * new upstream release
  * debian/patches/16_cdbs-cflags-am_cflags.patch: fixed conflicts

 -- Robert Jordens <jordens@debian.org>  Mon, 27 Oct 2003 10:14:20 +0000

ardour (0.9beta6-1) experimental; urgency=low

  * new upstream release

 -- Robert Jordens <jordens@debian.org>  Fri, 24 Oct 2003 14:27:06 +0200

ardour (0.9beta5-1) experimental; urgency=low

  * upload to experimental because of the required newer JACK
  * new upstream release
    + obsoltese: debian/patches/01_0.9beta3-to-20030922-upstream-cvs.patch,
      debian/patches/02_cvs-200309302007-daily.patch
  * debian/control: 
    + build with new JACK transport API: Build-Depends: libjack0.80.0-dev
    + cleaned up Build-Depends.
  * added debian/ReleaseNotes-1.0betaX from CVS again

 -- Robert Jordens <jordens@debian.org>  Sat, 11 Oct 2003 14:56:09 +0200

ardour (0.9beta3-99cvs20031001) experimental; urgency=low

  * debian/patches/02_cvs-200309302007-daily.patch: from cvs. obsoletes 
    debian/patches/32_fix-non-c-locale-pans.patch

 -- Robert Jordens <jordens@debian.org>  Wed,  1 Oct 2003 11:54:42 +0200

ardour (0.9beta3-99cvs20030930) experimental; urgency=low

  * debian/patches/32_fix-non-c-locale-pans.patch:
    fixes the non-C-locale bug in ardour.rc; closes: Bug#207896

 -- Robert Jordens <jordens@debian.org>  Tue, 30 Sep 2003 18:09:38 +0200

ardour (0.9beta3-99cvs20030923) experimental; urgency=low

  * debian/patches/01_0.9beta3-to-20030922-upstream-cvs.patch: added from cvs
    + a new session file format
  * debian/patches/23_cycles.h-other-archs.patch,
    debian/patches/24_64-bit-arches.patch,
    debian/patches/21_atomic-ops-on-other-archs.patch,
    debian/patches/30_nick-mainsbridge-smoother-scroll.patch,
    debian/patches/31_jack-0.80-type-fix.patch:
    removed because integrated upstream
  * debian/patches/02_cvs-200309232007-daily.patch: added from cvs
  * debian/patches/03_cvs-200309232007-fix-gtk-canvas-includes.patch: added
  * debian/patches/15_use-system-libs-buildsys.patch: split of
    debian/patches/14_add-autogens-and-m4-files-cvs.patch

 -- Robert Jordens <jordens@debian.org>  Wed, 24 Sep 2003 20:48:34 +0200

ardour (0.9beta3-6) unstable; urgency=medium

  * debian/patches/22_remove-atomic-impl-sparc.patch: remove the 
    implementation of atomic ops for sparc and take the generic one.
    this fixes the FTBFS on sparc

 -- Robert Jordens <jordens@debian.org>  Sat, 20 Sep 2003 09:26:54 +0200

ardour (0.9beta3-5) unstable; urgency=low

  * debian/control: remove libjack0.80.0-dev from Build-Depends

 -- Robert Jordens <jordens@debian.org>  Wed, 17 Sep 2003 23:24:56 +0200

ardour (0.9beta3-4) unstable; urgency=low

  * debian/rules:
    + specify parallel building via DEB_BUILD_OPTIONS
    + let a failure during building of ardour-doc not become fatal; 
      saves autobuilders from installing TeX and building the manual
  * debian/control:
    + Suggests: jamin for mastering
    + versioned Build-Depends on netbase
    + added prospective libjack0.80.0-dev
    + removed Eric from Uploaders
  * debian/ReleaseNotes-1.0betaX: added from CVS
  * debian/patches/15_use-system-libs-buildsys.patch: 
    + link libardour against glib

 -- Robert Jordens <jordens@debian.org>  Thu, 11 Sep 2003 19:48:00 +0200

ardour (0.9beta3-3) unstable; urgency=low

  * debian/control:
    + ardour-gtk: Depends: xterm; closes: #207397
    + libardour0: Recommends: audio-mixer | x-audio-mixer
    + changed rjo@gmx.de to jordens@debian.org
    + Standards-Version: 3.6.1; no changes
  * debian/ardour-*.{menu,desktop}: added hint "JACK" to start grouping
    all JACK apps (Guenter Geiger's idea)
  * debian/rules: changed order of inclusion of cdbs rules to stop running
    configure and build twice
  * debian/docs: add README.Debian to all packages

 -- Robert Jordens <jordens@debian.org>  Tue,  2 Sep 2003 22:18:00 +0200

ardour (0.9beta3-2) unstable; urgency=low

  * debian/ardour-{ksi,gtk}.menu: added hints
  * debian/rules:
      + don't optimize if DEB_BUILD_OPTS contains noopt, as per policy.
  * 24_64-bit-arches.patch: update from Takashi Iwai for 64bit archs
  * removed 26_gtk-canvas.h.patch
  * debian/README.Debian: updated to contain information about compiling
    unoptimized and unstripped for debugging
  * debian/ardour-gtk.menu: start ardour in an xterm (with hold) 
    until upstream stops killing the entire process group on exit: 
    closes: #203447; the messages on the console are too important anyway,
    especially if they remind the user of starting jackd!
  * debian/ardour-gtk.desktop: added Gnome menu entry

 -- Robert Jordens <rjo@gmx.de>  Mon, 18 Aug 2003 00:43:40 +0200

ardour (0.9beta3-1) unstable; urgency=low

  * New upstream release.
      + sane (no) default window-sizes: closes: #204956, #205218
  * cycles.h, atomic.h: working: closes: #204096
  * switched to cdbs... had to become a new upstream source
      + 16_cdbs-cflags-am_cflags.patch: fix CFLAGS being overriden by cdbs
      + debian/*.docs: rationalized and adapted to cdbs
      + ardour-doc: djcj-docs, manual: adapted to cdbs
      + debian/control: include Build-Depends-Indep into Build-Depends again
        until these are fixed: #148932 #203097 #205395
      + cdbs invokes configure and make during dpkg-buildpackage's 
        invocation of binary even if already build before: #205396
  * debian/control:
      + use dh-buildinfo
      + debian/control: add more useful information to the descriptions and
        corrected them
  * debian/README.Debian: added mailinglists and more info about correctly
    invoking jackd: closes: #204983, #203897
  * debian/rules: added a few maintainance rules
  * 30_nick_mainsbridge_smoother_scroll.patch allows smoother scrolling in the
    editor

 -- Robert Jordens <rjo@gmx.de>  Wed, 13 Aug 2003 14:31:25 +0200

ardour (0.9beta2-8) unstable; urgency=low

  * libs/ardour/ardour/cycles.h: added mips, hppa and s390 code
  * debian/rules: Call make with -j<number of CPU's>, if USE_NJOBS is set
    and non-empty in the environment (stolen from #199782)
  * libs/pbd/pbd/atomic.h:
      + apply patch from Ryan Murray <rmurray@debian.org>
        fixing atomic functions on mips/mipsel; closes: #204222
      + next go for arm and hppa. Use simple C; will close: #204096 
        if confirmed
      + define HAVE_SMP by default
  * debian/control: 
     + Build-Depends: cleanup, sorting
     + ardour needs gettext, which includes autopoint, which 
       needs cvs, which uses update-inetd, which has a problem (#183960) 
        on those autobuilders, that run without stdin
     + -dev packages depend on libc-dev
     + use libart-2.0-dev instead of libart-dev
     + libraptor0-dev and libgtk-canvas1-dev are fixed 
       (#204539) and depend on libglib2.0-dev resp. gdk-imlib1-dev
     + removed libhoard. It was of no value
     + try building with libsigc++-1.2-dev

 -- Robert Jordens <rjo@gmx.de>  Wed,  6 Aug 2003 09:20:56 +0200

ardour (0.9beta2-7) unstable; urgency=low

  * libs/ardour/ardour/cycles.h: fix the workaround: #include <sys/time.h>,
    closes: #203951
  * The workaround from 0.9beta2-6 closes: #203891 for now. Work is still
    needed though.
  * debian/control: Build-Depends: libglib2.0-dev

 -- Robert Jordens <rjo@gmx.de>  Sun,  3 Aug 2003 14:37:25 +0200

ardour (0.9beta2-6) unstable; urgency=low

  * libs/ardour/ardour/cycles.h: use debian/patches/03_cycles-h.dpatch from
    jack-audio-connection-kit as a workaround to a missing cycles
    implementation on other architectures
  * libs/pbd/pbd/atomic.h: use the implementation from m68k for other
    architectures that don't have an implementation of atomic operations
    in userspace available
  * debian/control: added suitable dependencies for the *-dev packages
  * debian/control: removed myself from Uploaders.

 -- Robert Jordens <rjo@gmx.de>  Tue, 29 Jul 2003 20:41:53 +0200

ardour (0.9beta2-5) unstable; urgency=low

  * debian/control: Build-Depends: cvs, autopoint needs it, cleaned up
  * debian/control: added Uploader Eric van Buggenhaut <ericvb@debian.org>
  * debian/rules, debian/control: better workaround for #203097: build is alias
    for build-arch

 -- Robert Jordens <rjo@gmx.de>  Tue, 29 Jul 2003 13:55:57 +0200

ardour (0.9beta2-4) unstable; urgency=low

  * debian/control: libstdc++-dev is a virtual alternative to libstdc++5-dev
    automake is an alternative to automake1.6
    libjack-dev is a virtual alternative to libjack0.72.2-dev
    all of which are preparations for a woody backport
  * optimizes for i386 only.
  * patch from Takashi Iwai <tiwai@suse.de> to fix compilation on 64bit
    architecures
  * debian/control: Build-Depend on the same things from Build-Depends-Indep
    because otherwise the buildds don't satisfy them resp dpkg-buildpackage
    doesn't comply with policy 7.3 (have to be satisfied during build)
    bug#203097 has been reassigned to dpkg-dev
  * debian/control: Standards-Version: 3.6.0: no changes
  * debian/control: co-maintainer Guenter Geiger <geiger@debian.org> added
  * debian/control: removed Build-Depends on libstdc++5 | libstdc++.
    it's build-essential
  * first try to port atomic.h to other architectures
    there is no usable implementation of atomic operations in userspace
    for arm and hppa

 -- Robert Jordens <rjo@gmx.de>  Sun, 20 Jul 2003 22:08:20 +0200

ardour (0.9beta2-3) unstable; urgency=low

  * disabled parallel building
  * cured the LOCK defined in gtk--/menushell.h conflicting with the LOCK
    defined in libs/pbd/pbd/atomic.h 

 -- Robert Jordens <rjo@gmx.de>  Tue, 16 Jul 2003 12:17:13 +0000

ardour (0.9beta2-2) unstable; urgency=low

  * removed strange libjack-dev dependencies and perl (to perl-base)
  * shortened extensive description
  * now we have a uuencoded djcj documentation in the diff

 -- Robert Jordens <rjo@gmx.de>  Mon,  7 Jul 2003 20:15:48 +0000

ardour (0.9beta2-1) unstable; urgency=low

  * New upstream release

 -- Robert Jordens <rjo@gmx.de>  Tue,  1 Jul 2003 10:18:29 +0000

ardour (0.9beta1-1) unstable; urgency=low

  * New upstream release
  * changed pixmaps location to upstream default
  * moved libardour.mo to libardour0
  * sorry for the decreasing versions

 -- Robert Jordens <rjo@gmx.de>  Thu, 26 Jun 2003 18:05:15 +0200

ardour (1.0beta1-1) unstable; urgency=low

  * New upstream release

 -- Robert Jordens <rjo@gmx.de>  Thu, 26 Jun 2003 09:01:00 +0200

ardour (1.0beta1-f-1) unstable; urgency=low

  * New upstream release

 -- Robert Jordens <rjo@gmx.de>  Wed, 25 Jun 2003 07:47:05 +0200

ardour (1.0beta1-e-2) unstable; urgency=low

  * pixmaps fixed with link
  * sysconfdir fixed

 -- Robert Jordens <rjo@gmx.de>  Mon, 23 Jun 2003 21:52:52 +0200

ardour (1.0beta1-e-1) unstable; urgency=low

  * New upstream release
  * moved the manpage to ardour-gtk
  * current Stadnards-Version
  * debhelper ( >>4)

 -- Robert Jordens <rjo@gmx.de>  Thu, 19 Jun 2003 09:06:46 +0200

ardour (1.0beta1-d-1) unstable; urgency=low

  * New upstream release

 -- Robert Jordens <rjo@gmx.de>  Wed, 18 Jun 2003 22:30:32 +0200

ardour (1.0beta1-c-1) unstable; urgency=low

  * New upstream release
  * put splash.ppm into the right place

 -- Robert Jordens <rjo@gmx.de>  Tue, 17 Jun 2003 18:44:42 +0200

ardour (1.0beta1-b-1) unstable; urgency=low

  * New upstream release
  * rename the executable ardour-gtk to ardour

 -- Robert Jordens <rjo@gmx.de>  Tue, 17 Jun 2003 07:33:21 +0200

ardour (1.0beta1-a-1) unstable; urgency=low

  * first tarball release
  * truckloads of small changes

 -- Robert Jordens <rjo@gmx.de>  Mon, 16 Jun 2003 07:56:37 +0200

ardour (0.0.0.20030614.1336.0.cvs) unstable; urgency=low

  * cvs up
  * debian/ardour-gtk.install i18n
  * cvs-snapshotting in place http://cojobo.bonn.de/~jordens/ardour-cvs
  * debian/control: stricter sections
  * remove *-dbg
  * ardour.rc midi improved
  * fixed interdeps of libraries

 -- Robert Jordens <rjo@gmx.de>  Sun, 11 May 2003 09:37:06 +0200

ardour (0.0.0.20030507.01) unstable; urgency=low

  * cvs up
  * new jack (0.70.5)
  * new pixmaps (2.6)
  * moving towards g++ 3.2
  * a way to create the tarballs

 -- Robert Jordens <rjo@gmx.de>  Wed,  2 Apr 2003 22:17:45 +0200

ardour (0.0.0.20030217.01) unstable; urgency=low

  * cvs up
  * libsoundtouch introduced
  * linking against lrdf and raptor
  * ksi builds again

 -- Robert Jordens <rjo@gmx.de>  Mon, 17 Feb 2003 12:52:02 +0100

ardour (0.0.0.20030121.01) unstable; urgency=low

  * cvs up
  * new jack

 -- Robert Jordens <rjo@gmx.de>  Wed, 11 Dec 2002 11:59:10 +0100

ardour (0.0.0.20021206.01) unstable; urgency=low

  * cvs up
  * DH_OPTIONS="-Nardour-ksi" since it doesn't build

 -- Robert Jordens <rjo@gmx.de>  Fri,  6 Dec 2002 15:48:28 +0100

ardour (0.0.0.20020911.01) unstable; urgency=low

  * cvs up
  * ardour/pixmaps -> pixmaps/ardour

 -- Robert Jordens <rjo@gmx.de>  Wed, 11 Sep 2002 09:37:49 +0200

ardour (0.0.0.20020905.01) unstable; urgency=low

  * cvs up
  * new <Config> format

 -- Robert Jordens <rjo@gmx.de>  Thu,  5 Sep 2002 02:01:16 +0200

ardour (0.0.0.20020903.01) unstable; urgency=low

  * cvs up
  * Build-depends: libsndfile-dev (>= 1.0)
  * Build-Conflicts: libardour0, libpbd0, libmidi++0, gtkmmext0 for obvious
    reasons..

 -- Robert Jordens <rjo@gmx.de>  Tue,  3 Sep 2002 18:25:20 +0200

ardour (0.0.0.20020821.01) unstable; urgency=low

  * cvs up
  * lintian: spelling, -dbg menus
  * libjack build-dependency
  * g++-3.2

 -- Robert Jordens <rjo@gmx.de>  Wed, 21 Aug 2002 15:46:28 +0200

ardour (0.0.0.20020807.01) unstable; urgency=low

  * cvs up
  * --enable-static in configure

 -- Robert Jordens <rjo@gmx.de>  Wed,  7 Aug 2002 03:39:23 +0200

ardour (0.0.0.20020629.01) unstable; urgency=low

  * cvs up
  * changed window default sizes
  * really -lhoard.
  * and disable it again because of hard RT lockups

 -- Robert Jordens <rjo@gmx.de>  Sat, 29 Jun 2002 16:41:52 +0200

ardour (0.0.0.20020628.01) unstable; urgency=low

  * cvs up
  * link to ncurses, not to curses

 -- Robert Jordens <rjo@gmx.de>  Fri, 28 Jun 2002 00:04:21 +0200

ardour (0.0.0.20020624.01) unstable; urgency=low

  * cvs up
  * had a try at DBS; didn't like it.

 -- Robert Jordens <rjo@gmx.de>  Mon, 24 Jun 2002 21:32:46 +0200

ardour (0.0.0.20020619.01) unstable; urgency=low

  * fooling around with ardour.rc midi
  * ardour-gtk-dbg ardour-ksi-dbg bah... :-(
  * cvs up
  * g++-3.0 (set it in rules; you have to have _all_ C++ libs 
    (gtkmm, sigc++, stdc++...) compiled by 3.0 resp. 3.1)

 -- Robert Jordens <rjo@gmx.de>  Wed, 19 Jun 2002 18:50:18 +0200

ardour (0.0.0.20020611.01) unstable; urgency=low

  * header target fixed. $(includedir)
  * cvs up

 -- Robert Jordens <rjo@gmx.de>  Tue, 11 Jun 2002 14:24:05 +0200

ardour (0.0.0.20020609.01) unstable; urgency=low

  * libmidi++.pc fix
  * ardour-doc is only build at binary-indep
  * doc-base ardour-doc
  * cvs up

 -- Robert Jordens <rjo@gmx.de>  Sun,  9 Jun 2002 10:06:17 +0200

ardour (0.0.0.20020608.01) unstable; urgency=low

  * more descriptions
  * fixed lintian problems
  * pkgconfig files installed
  * cvs up

 -- Robert Jordens <rjo@gmx.de>  Sat,  8 Jun 2002 21:53:01 +0200

ardour (0.0.0.20020607.01) unstable; urgency=low

  * CVS snapshot
  * updated control

 -- Robert Jordens <rjo@gmx.de>  Fri,  7 Jun 2002 22:13:48 +0200

ardour (0.0.0.20020606.01) unstable; urgency=low

  * CVS snapshot build at Thu Jun  6 16:50:21 2002
  * Build-Depends: hoard, flex, ncurses
  * tested build in chroot

 -- Robert Jordens <rjo@gmx.de>  Thu,  6 Jun 2002 16:50:21 +0200

ardour (0.0.0.20020605.01) unstable; urgency=low

  * CVS snapshot build at Wed Jun  5 17:01:42 2002
  * trying to use libgtkmm, libart, libsigc, libxml2 from debian, not from
    Paul
  * make libmidi++ libpbd libgtkmmext shared and split

 -- Robert Jordens <rjo@gmx.de>  Wed,  5 Jun 2002 17:01:42 +0200

ardour (0.0.0.20020603.01) unstable; urgency=low

  * CVS snapshot build at Mon Jun  3 22:07:58 2002

 -- Robert Jordens <rjo@gmx.de>  Mon,  3 Jun 2002 22:07:58 +0200

ardour (0.0.200205151747-1) unstable; urgency=low

  * CVS snapshot
  * update README.Debian

 -- Robert Jordens <rjo@gmx.de>  Wed, 15 May 2002 17:47:56 +0200

ardour (0.0.200205121939-1) unstable; urgency=low

  * CVS snapshot
  * split into libardour, libardour-dev, ardour-gtk, ardour-ksi

 -- Robert Jordens <rjo@gmx.de>  Sun, 12 May 2002 19:39:48 +0200

ardour (0.0.200205031615-1) unstable; urgency=low

  * CVS snapshot
  * CVS-versioning

 -- Robert Jordens <rjo@gmx.de>  Fri,  3 May 2002 16:14:19 +0200

ardour (0.514.4-1) unstable; urgency=low

  * Initial Release.

 -- Robert Jordens <rjo@gmx.de>  Sat, 27 Apr 2002 14:24:32 +0200