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
|
pulseaudio (0.9.15-1maemo17) unstable; urgency=low
* Get rid of gdbm usage and crashes. Fixes: NB#120362
-- Maemo Multimedia <multimedia@maemo.org> Mon, 06 Jul 2009 19:14:59 +0300
pulseaudio (0.9.15-1maemo16) unstable; urgency=low
* BT streaming irregularities fixes. Fixes: NB#115334
(and NB#120873, NB#124140, NB#125120, NB#124109, NB#116679)
-- Maemo Multimedia <multimedia@maemo.org> Tue, 30 Jun 2009 12:53:12 +0300
pulseaudio (0.9.15-1maemo15) unstable; urgency=low
* Limit volume to -20dB for unkown route. Fixes: NB#120216
* Remember volume per route. Fixes: NB#116930
* Enable NEON by default on armel (do not rely on vfp flag).
* Tune mixer delay. Fixes: NB#114849
* Set default source to source.record (help NB#110033), and use
source.voice.raw as master_source.
* Disable restore_device from stream-restore.
-- Maemo Multimedia <multimedia@maemo.org> Thu, 18 Jun 2009 17:28:09 +0300
pulseaudio (0.9.15-1maemo14) unstable; urgency=low
* Set hw0 reference volume to 0 to avoid annoying glitch. Fixes: NB#121115
-- Maemo Multimedia <multimedia@maemo.org> Tue, 16 Jun 2009 20:45:19 +0300
pulseaudio (0.9.15-1maemo13) unstable; urgency=low
* Add pulseaudio-doc. Fixes: NB#122423
* Fix audio getting silent when routing to BTHS.
* Modify policy-enforcement to use sink.null.
-- Maemo Multimedia <multimedia@maemo.org> Mon, 15 Jun 2009 15:17:34 +0300
pulseaudio (0.9.15-1maemo12) unstable; urgency=low
* Start with alsa-sink suspended. Fixes: NB#119028
* Improve latency computation.
* Improve mixer changes delay.
* Should finally report coredumps.. Fixes: NB#119929
* Disable shm in client side too. Fixes: NB#122104
-- Maemo Multimedia <multimedia@maemo.org> Wed, 10 Jun 2009 16:08:49 +0300
pulseaudio (0.9.15-1maemo11) unstable; urgency=low
* Recursively update stream volume level (help: NB#118988)
* Limit HP to -30dB.
-- Maemo Multimedia <multimedia@maemo.org> Fri, 05 Jun 2009 19:04:57 +0300
pulseaudio (0.9.15-1maemo10) unstable; urgency=low
* Delay mixer change, avoiding some volume jumps.
-- Maemo Multimedia <multimedia@maemo.org> Fri, 05 Jun 2009 14:40:23 +0300
pulseaudio (0.9.15-1maemo9) unstable; urgency=low
* Classify using "application.name".
* Don't open SCO channel unconditionally. Fixes: NB#117454
* Disable IPv6 support. Fixes: NB#117852
* Use monotonic time. Fixes: NB#112134
* Classify vengine as "phone" role.
* Changed default volume for phone and general. Fixes: NB#116935
-- Maemo Multimedia <multimedia@maemo.org> Wed, 03 Jun 2009 18:21:45 +0300
pulseaudio (0.9.15-1maemo8) unstable; urgency=low
* Add match table to classify unclassified streams in "x-maemo" role.
* Add a source.record. Fixes: NB#110033
* Disable device/card restore for now.
* Suspend on idle timeout property has been changed. Fixes: NB#106649
* Default volume set to -18dB for phone, -32dB for general. Fixes: NB#116935
-- Maemo Multimedia <multimedia@maemo.org> Wed, 13 May 2009 21:45:37 +0300
pulseaudio (0.9.15-1maemo7) unstable; urgency=low
* Fix sound distortion introduced in previous version.
-- Maemo Multimedia <multimedia@maemo.org> Tue, 12 May 2009 19:43:59 +0300
pulseaudio (0.9.15-1maemo6) unstable; urgency=low
* stream-restore: add volume_is_absolute in rule info.
* don't fail when session bus is not there. Fixes: NB#115682
-- Maemo Multimedia <multimedia@maemo.org> Tue, 12 May 2009 14:45:06 +0300
pulseaudio (0.9.15-1maemo5) unstable; urgency=low
* Use snd_pcm_htimestamp instead of sysfs to calculated delay
-- Maemo Multimedia <multimedia@maemo.org> Mon, 08 May 2009 17:12:29 +0300
pulseaudio (0.9.15-1maemo4) unstable; urgency=low
* Lower overall suspend-on-idle timeout. Fixes: NB#106649
* Fixes: NB#111554 - delay calculated sysfs timestamps in alsa-*-old
-- Maemo Multimedia <multimedia@maemo.org> Mon, 04 May 2009 18:43:29 +0300
pulseaudio (0.9.15-1maemo3) unstable; urgency=low
* Removed module-cli.so from preopen-mods to break pulseaudio dependency
to it.
-- Maemo Multimedia <multimedia@maemo.org> Fri, 28 Apr 2009 12:16:50 +0300
pulseaudio (0.9.15-1maemo2) unstable; urgency=low
* Workaround snd_pcm_drain() on sink.hw1.
-- Maemo Multimedia <multimedia@maemo.org> Fri, 24 Apr 2009 14:46:50 +0300
pulseaudio (0.9.15-1maemo1) unstable; urgency=low
* Rebased on v0.9.15.
* Give sidetone access to PulseAudio.
-- Maemo Multimedia <multimedia@maemo.org> Fri, 24 Apr 2009 13:15:12 +0300
pulseaudio (0.9.15-1) unstable; urgency=low
* debian/control: Build-Depend on libcap-dev instead of libcap2-dev
* New Upstream Version
* Fixes building on HPPA (Closes: #520378)
* Fixes building with recent libtool (Closes: #522716)
* Update copyright file
* Updated pulseaudio-module-hal.install, dbus-util became part of pulsecore
* Move debug package to the debug Section
* Done make shlibs files for modules in /usr/lib/pulse-0.9.15
* Update standards-version to 3.8.1, no further changes
* Set priority of pulseaudio-module-raop-dbg to extra
* Change build-depend on libltdl7-dev to recent versions libltdl-dev
* Add Breaks to libpulse0 for old version of pavucontrol
* Temporarily disable bluetooth support as the needed bluez version is stuck
in the NEW queue
-- Sjoerd Simons <sjoerd@debian.org> Sun, 19 Apr 2009 14:43:41 +0100
pulseaudio (0.9.15~test7-0maemo2) unstable; urgency=low
* Altenate mixer added to volume module: Fixes NB#110041
* Increase RTLIMIT_RTTIME to 10000000: Fixes NB#109816
-- Maemo Multimedia <multimedia@maemo.org> Wed, 20 Apr 2009 19:36:35 +0300
pulseaudio (0.9.15~test7-0maemo1) unstable; urgency=low
* Various bluetooth fixes (new A2DP loop, check connected state before
switching profile, volume support back on HSP, delayed
initialization, new #NOKIA define for SCO over PCM).
-- Maemo Multimedia <multimedia@maemo.org> Wed, 01 Apr 2009 13:36:35 +0300
pulseaudio (0.9.15~test5-0maemo3) unstable; urgency=low
* Turn CPU watchdog off
- This is a dangerous change, but DVFS dont work without it
* Change alternate number of fragments for alsa source old to 4 from 2
- Having more fragments for capture does not add latency
-- Maemo Multimedia <multimedia@maemo.org> Fri, 27 Mar 2009 16:06:34 +0200
pulseaudio (0.9.15~test5-0maemo2) unstable; urgency=low
* Volume and bluetooth fixes.
* Use 10ms * 4 buffers.
-- Maemo Multimedia <multimedia@maemo.org> Fri, 20 Mar 2009 12:32:34 +0200
pulseaudio (0.9.15~test5-0maemo1) unstable; urgency=low
* Rebase on -test5.
* Merge with debian/master.
-- Maemo Multimedia <multimedia@maemo.org> Wed, 18 Mar 2009 15:46:41 +0200
pulseaudio (0.9.15~test5-1) experimental; urgency=low
* New Upstream Version
* debian/copyright: Updated
* debian/control: Build-Depends on libltdl7-dev
* debian/control: Build-Depends on libasound2-dev (>= 1.0.19)
* debian/rules: Use git format-patch instead of git-format-patch
* debian/patches/0001-load-module-gconf-earlier.patch:
- Removed. Merged upstream
* debian/pulseaudio.install: Update for new modules
* debian/pulseaudio-module-x11.install: Update for new modules
* Move libpulscore into the pulseaudio package
* debian/pulseaudio-module-bluetooth.install: Add the bluetooth-util module
library
* debian/pulseaudio.install: Add new modules
* debian/control: Add bulid-depends on libgtk2.0-dev and libxtst-dev
* debian/pulseaudio.shlibs, debian/libpulse0.shlibs: Update shlib files
* debian/pulseaudio.install: Add liboss-util.so oss module helper library
* debian/control, debian/pulseaudio-module-raop.install: Add RAOP module
-- Sjoerd Simons <sjoerd@debian.org> Sun, 22 Mar 2009 23:06:50 +0000
pulseaudio (0.9.14-2) unstable; urgency=low
[ Sjoerd Simons ]
* Build against libcap2-dev (Closes: #489060)
* Bump shlibs of libpulse0 (Closes: #514645)
* Bump soname of libpulsecore to 9
* Wait up to 5 seconds for pulseaudio to stop. Fix suggested by Aron Griffis
(Closes: #488754, #498457)
* Don't put stop links in rc0 and rc6. Pulse doens't really need it. Patch
supplied by James Westby (Closes: #494959)
* Make the start option of the init script report the right status. Fix
suggested by Aron Griffis (Closes: #488752)
* Use per user esound sockets instead of a single one for all users
[ Baptiste Mille-Mathias ]
* debian/control:
- create a separate package for bluetooth module (Closes: #513832)
* debian/pulseaudio-module-bluetooth.install
- put files for the separate bluetooth module package
* debian/pulseaudio.install
- remove files of the separate bluetooth module package
[ Sjoerd Simons ]
* debian/control: Don't build the bluetooth module on non-linux systems
(Closes: #502837)
* debian/control: Make the bluetooth module conflict with older pulseaudio
versions
* Update standards version, no changes needed
* debian/copyright: Big update
-- Sjoerd Simons <sjoerd@debian.org> Sun, 01 Mar 2009 15:53:27 +0000
pulseaudio (0.9.14-1) experimental; urgency=low
* New Upstream Version
* 0002-load-module-gconf-earlier.patch renamed to
0001-load-module-gconf-earlier.patch and updated
* 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch
- Removed, no longer applicable
* 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch
- Removed, fixed upstream
* 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch
- Removed, fixed upstream
* debian/patches/series
- Updated
-- Sjoerd Simons <sjoerd@debian.org> Sun, 01 Feb 2009 12:47:55 +0000
pulseaudio (0.9.13-2) experimental; urgency=low
* Rename libpulsecore5 to libpulsecore8 to correctly reflect the soname
(Closes: #503612)
* 0003-make-sure-to-use-64bit-rounding-even-on-32bit-machin.patch
- Fix rounding errors on 32 bit machines. From upstream git
* 0004-properly-remove-dbus-matches-an-filters-when-unloadi.patch
- Properly remove dbus filters when unloading the bluetooth module
* 0005-Fix-two-typos-that-broke-tunnels.patch
- Fix tunnels. From upstream git
-- Sjoerd Simons <sjoerd@debian.org> Sun, 16 Nov 2008 18:13:05 +0000
pulseaudio (0.9.15~git20090219-0maemo2) unstable; urgency=low
* Try to reduce poll() usage significantly during load.
-- Maemo Multimedia <multimedia@maemo.org> Tue, 03 Mar 2009 18:27:50 +0200
pulseaudio (0.9.15~git20090219-0maemo1) unstable; urgency=low
* Earphone is not working with this release.
* debian/pulseaudio.upstart:
+ Still run on ACT_DEAD.
* debian/pulseaudio.install, debian/default.pa.maemo:
+ Add module-augment-proprties
+ Add module-card-restore
+ Add module-esound-protocol
* debian/pulseaudio-module-extra.install:
+ Add module-cork-music-on-phone, not useful in maemo, since we have a
full-fledged module for that.
* debian/default.pa.maemo:
+ Overall cleaning, to make it usable with regular x86 desktop.
* debian/rules:
+ Remove broken -ftree-vectorize.
+ Add --disable-legacy-runtime-dir. Fixes NB#101620
* debian/pulseaudio.upstart:
+ Revert back TMPDIR=/var/run, it causes too much issue yet.
* Lower pool usage to 16MB (experimental try for 96692).
* Remove pulseaudio-esound-compat (dropped esound compatibility).
-- Maemo Multimedia <multimedia@maemo.org> Tue, 03 Mar 2009 14:45:20 +0200
pulseaudio (0.9.15~git20090203-0maemo1) unstable; urgency=low
* Use TMPDIR=/var/run. Fixes NB#100291.
-- Maemo Multimedia <multimedia@maemo.org> Tue, 03 Feb 2009 17:09:51 +0200
pulseaudio (0.9.15~git20090113-0maemo1) unstable; urgency=low
* Rebased on upstream git 0.9.15, since 0.9.14, released today, does not
contains Bluez fixes and so forth.
* Disable locale support. Fixes: NB#94144
* Ship a system upstart script, and disable user auto-spawning. Fixes NB#98840
* Add module-card-restore in pulseaudio-module-extra package.
* Move module-combine in pulseaudio package.
* Disable X11 dependency.
* Remove flat-volume temporarily (in core next release).
* Remove default sink.music to pass integration before next release with
music module.
-- Maemo Multimedia <multimedia@maemo.org> Wed, 21 Jan 2009 16:45:03 +0200
pulseaudio (0.9.14~git20090107-0maemo1) unstable; urgency=low
* Rebased on upstream git for Bluez API changes.
* debian/control:
+ Remove libltdl3-dev and bump libbluetooth3-dev dependency
* debian/pulseaudio.install, debian/pulseaudio-module-extra.install,
debian/pulseaudio-module-x11.install, debian/pulseaudio-dev.install:
+ Removed libraries from usr/lib/pulse-*/modules/lib, which have been
merged in libpulsecommon and libpulsecore.
* debian/libpulse-dev.install:
+ Removed static .a library.
-- Maemo Multimedia <multimedia@maemo.org> Wed, 07 Jan 2009 11:57:20 +0200
pulseaudio (0.9.13git~20081020-0maemo9) unstable; urgency=low
* debian/default.pa.maemo:
+ Add a null source "source.null" at 8kHz mono.
+ Renamed module eap to music.
* More friendly patch series.
-- Maemo Multimedia <multimedia@maemo.org> Thu, 04 Dec 2008 18:41:08 +0200
pulseaudio (0.9.13git~20081020-0maemo8) unstable; urgency=low
* debian/default.pa.maemo:
+ Change to 2 fragments, use alternative confiuration sink/src.
+ Move policy enforcement loading to the end.
+ Add a null sink "sink.null".
-- Maemo Multimedia <multimedia@maemo.org> Fri, 14 Nov 2008 16:47:34 +0200
pulseaudio (0.9.13git~20081020-0maemo7) unstable; urgency=low
* Use speex-fixed-2, now that we have a speex NEON-enabled resampler.
-- Maemo Multimedia <multimedia@maemo.org> Tue, 11 Nov 2008 21:51:35 +0200
pulseaudio (0.9.13git~20081020-0maemo6) unstable; urgency=low
* debian/patches:
+ Add virtual_volume on sink
+ Only transfer full periods in module-alsa-sink-old and
module-alsa-source-old.
* debian/default.pa.maemo:
+ Set default sink to music, and source to voice.
* Change maintainer to Maemo Multimedia <multimedia@maemo.org>
-- Maemo Multimedia <multimedia@maemo.org> Wed, 05 Nov 2008 15:43:40 +0200
pulseaudio (0.9.13git~20081020-0maemo5) unstable; urgency=low
* Update git command to use non-dash version for git 1.6.
* Update patch series with the sink/source properties hooks patches.
-- Maemo Multimedia <multimedia@maemo.org> Mon, 03 Nov 2008 19:14:00 +0200
pulseaudio (0.9.13git~20081020-0maemo4) unstable; urgency=low
* Fix location of pulsecore-config.h
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Fri, 24 Oct 2008 13:34:28 +0300
pulseaudio (0.9.13git~20081020-0maemo3) unstable; urgency=low
* Add pulsecore/pulsecore-config.h from config.h (very dangerous!)
* Remove null-sink, it's no longer needed.
* Uncomment flat-module.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Thu, 23 Oct 2008 18:39:38 +0300
pulseaudio (0.9.13git~20081020-0maemo2) unstable; urgency=low
* debian/patches/0008-Fix-a-crash-for-special-loop-case.patch:
+ Add a fix for sink-input loop case.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Mon, 20 Oct 2008 15:53:42 +0300
pulseaudio (0.9.13git~20081020-0maemo1) unstable; urgency=low
* Import d6750583, which has few bluetooth fixes.
* Comment out flat-volume, which conflict with policy atm.
* Add a null sink for policy convenience.
* Load policy module at first.
* Remove policy module from this PulseAudio packaging, it is now
packaged sperately.
* Do not start PulseAudio under scratchbox, people are complaining.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Mon, 20 Oct 2008 13:10:06 +0300
pulseaudio (0.9.13git~20081010-0maemo1) unstable; urgency=low
* Import 8e3e88df, which has flat-volume.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Fri, 10 Oct 2008 17:18:25 +0300
pulseaudio (0.9.13-0maemo1) unstable; urgency=low
* New Upstream Release
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Mon, 06 Oct 2008 15:42:58 +0300
pulseaudio (0.9.12git~20080930-0maemo2) unstable; urgency=low
* Load module-policy-enforcement currently fails to load.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Thu, 02 Oct 2008 20:42:39 +0300
pulseaudio (0.9.12git~20080930-0maemo1) unstable; urgency=low
* Import new version from git a84b72bf...
+ It should fix the automatic configuration of bluetooth devices
* Include module-policy-enforcement.
* default.pa.maemo:
+ Load module-policy-enforcement
+ Load module-simple-protocol-unix (used by Flash)
+ Change number of fragments to 4
+ Load module-suspend-on-idle
* Include pulsecore.pc from Ismo in pulseaudio-dev.
* Include suspend patch workaround.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Tue, 30 Sep 2008 12:03:06 +0300
pulseaudio (0.9.12git~20080915-0maemo2) unstable; urgency=low
* control, pulseaudio.install, pulseaudio-module-extra.install:
+ Move some unused module to pulseaudio-module-extra package
* default.pa.maemo:
+ Update configuration file.
* debian/rules:
+ use --disable-per-user-esound-socket to create /tmp/.esd/socket
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Fri, 26 Sep 2008 20:41:39 +0300
pulseaudio (0.9.12git~20080915-0maemo1) unstable; urgency=low
* Imported git version 618873, including 0.9.12 + Bluez + fix.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Wed, 24 Sep 2008 17:39:28 +0300
pulseaudio (0.9.11-0maemo5) unstable; urgency=low
* Add missing system.pa, now should start fine.
* debian/default.pa.maemo:
+ Add Jyri configuration
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Fri, 12 Sep 2008 15:48:44 +0300
pulseaudio (0.9.11-0maemo4) unstable; urgency=low
* pulseaudio-dev depends on pulseaudio (for modules library)
* remove adduser depedency on x86.
* add libatomic-ops-dev dependency to pulseaudio-dev on x86.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Thu, 11 Sep 2008 16:26:05 +0300
pulseaudio (0.9.11-0maemo3) unstable; urgency=low
[ Jyri Sarha ]
* pulseaudio-dev.install:
+ install pulscore/*.h in /usr/include/pulsecore
+ install modules*-util.h in /usr/include/pulsecore/modules
[ Marc-Andre Lureau ]
* pulseaudio.install, pulseaudio-module-hal.install:
+ move libdbus-util.so to pulseaudio package.
* default.pa.maemo:
+ updates according to Jyri voice configuration.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Mon, 08 Sep 2008 16:49:48 +0300
pulseaudio (0.9.11-0maemo2) unstable; urgency=low
* Add missing alsa-source-old.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Thu, 04 Sep 2008 17:17:28 +0300
pulseaudio (0.9.11-0maemo1) unstable; urgency=low
* New Upstream Version
* Start the PulseAudio sound server in system mode.
* Use custom maemo configuration files.
* Give "user" pulse-access permissions.
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Wed, 30 Jul 2008 16:51:10 +0300
pulseaudio (0.9.11~git8885dd-0maemo1) unstable; urgency=low
* Import git master 8885dd (0.9.11).
* Add me as Maintainer, and move Debian maitainer to the
XSBC-Original-Maintainer.
* Update libpulsecore SOVERSION to 6 (oups)
-- Marc-Andre Lureau <marcandre.lureau@gmail.com> Thu, 26 Jun 2008 19:59:34 +0300
pulseaudio (0.9.11~svn2521-0maemo1) unstable; urgency=low
* Import trunk r2521.
* Add pulseaudio-module-dev packaging pulsecore headers.
* bootstrap during build (svn version).
* Added libgdbm-dev build dependency required by module-restore.
* Put Marc-Andre Lureau as a maemo Maintainer.
-- Marc-Andre Lureau <marc-andre.lureau@nokia.com> Thu, 12 Jun 2008 18:24:39 +0300
pulseaudio (0.9.10-2maemo1) unstable; urgency=low
* Debian update.
-- Marc-Andre Lureau <marc-andre.lureau@nokia.com> Wed, 04 Jun 2008 16:21:08 +0300
pulseaudio (0.9.13-1) experimental; urgency=low
[ Bas Zoetekouw ]
* debian/control: Build-Depend on libasound2-dev (>= 1.0.17)
* debian/pulseaudio-module-x11.install: No longer install an xdg autostart
file
* debian/pulseaudio.install: Install system.pa config file and various new
pulseaudio modules
* debian/rules: Add --disable-per-user-esound-socket to configure flags
[ Sjoerd Simons ]
* New Upstream Version
* Fixes FTBTS on GNU/kFreeBSD (Closes: #497624)
* Dropped patches for things that have been fixed upstream:
- 0003-Define-PULSE_INTERNAL.patch
- 0005-Reduce-RT-prio-logging-severity.patch
- 0006-fix-iteration-over-random-devices.patch
* rename 0003-load-module-gconf-earlier.patch to
0002-load-module-gconf-earlier.patch
* rename 0002-Fix-library-search-path-to-include-lib-and-usr-lib.patch
to 0001-Fix-library-search-path-to-include-lib-and-usr-lib.patch
* rename 0004-load-module-gconf-earlier.patch to
0003-load-module-gconf-earlier.patch
* 0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch
- Dropped, not necessary anymore, the --disable-per-user-esound-socket
configure flag now has the same result
* debian/control: Add libspeexdsp-dev (>= 1.2~rc1) to Build-Depends
* debian/control: Add Build-Depends on libpolkit-dbus-dev and
libbluetooth-dev
* debian/pulseaudio.install: Install various new modules. Including bluetooth
and polkit, which will move into a separate package later.
* debian/pulseaudio.install: Install the new pulseaudio xdg autostart file
* debian/control: add a depend on consolekit. Might be downgrade to a
recommend later
* debian/control: Set the maintainer to the pkg-pulseaudio mailinglist
* debian/control: Add libgdbm-dev to build-depends
* debian/control: Add intltool to build-depends
-- Sjoerd Simons <sjoerd@debian.org> Sun, 19 Oct 2008 21:05:13 +0100
pulseaudio (0.9.10-3) unstable; urgency=low
* debian/patches/0006-fix-iteration-over-random-devices.patch
- Added. Iterate over the various random devices if opening fails
(Closes: #491270)
-- Sjoerd Simons <sjoerd@debian.org> Sat, 30 Aug 2008 14:24:51 +0100
pulseaudio (0.9.10-2) unstable; urgency=low
* debian/patches/0003-Define-PULSE_INTERNAL.patch
- Added. Let the daemon put PULSE_INTERNAL in its environment so things
can detect when called from within pulseaudio
* debian/patches/0004-load-module-gconf-earlier.patch
- Added. Load module-gconf before module-volume-restore and
module-device-restore. Otherwise setting virtual sinks/sources as default
won't be persistent
* debian/patches/0005-Reduce-RT-prio-logging-severity.patch
- Added. Reduce the priority of the RT warnings. Not running with RT
priorities is the default.
-- Sjoerd Simons <sjoerd@debian.org> Sat, 10 May 2008 22:16:12 +0200
pulseaudio (0.9.10-1maemo1) unstable; urgency=low
* UNRELEASED.
* Removed Jyri's patch, it's in upstream.
* Remove libatomic-dev, libcap-dev, libavahi-client-dev,
libjack0.100.0-dev, libwrap0-dev, liblircclient-dev, libasyncns-dev,
libatomic-ops-dev build dependencies on all architectures.
-- Marc-Andre Lureau <marc-andre.lureau@nokia.com> Mon, 17 Mar 2008 19:27:37 +0200
pulseaudio (0.9.10-1) unstable; urgency=low
[ CJ van den Berg ]
* New Upstream Version
* debian/patches: Drop patches merged upstream
- 0002-Double-esound-maximum-sample-size.patch
- 0003-fix-uploading-of-samples-into-PA.-Problem-discovered.patch
- 0004-make-sure-to-create-.pulse-before-using-any-config.patch
- 0005-Don-t-add-protocol-fields-introduced-in-version-12-w.patch
- 0006-Implement-opcodes-added-in-version-12-in-the-tunnel.patch
- 0007-Change-config-to-not-fail-if-loading-of-esd-gconf-o.patch
- 0008-Fix-compilation-on-non-linux-platforms.patch
* debian/patches: Add patch to fix RPATHs.
+ 0002-Fix-library-search-path-to-include-lib-and-usr-lib.patch
* debian/control:
+ Make libpulsecore5-dbg depend on libpulsecore5, instead of pulseaudio.
+ Make libpulse-browse0-dbg depend on libpulse-browse0.
* Update Standards-Version to 3.7.3 (no changes required).
pulseaudio (0.9.9-2) UNRELEASED; urgency=low
[ Petter Reinholdtsen ]
* debian/pulseaudio.init: Fix problems with LSB header in init.d script.
(Closes: #470934)
-- CJ van den Berg <cj@vdbonline.com> Sun, 30 Mar 2008 20:11:02 +0200
pulseaudio (0.9.9-1maemo3) unstable; urgency=low
* Remove libsamplerate, the Sekret Rabbit code, for good on maemo.
-- Marc-Andre Lureau <marc-andre.lureau@nokia.com> Thu, 14 Feb 2008 15:21:49 +0200
pulseaudio (0.9.9-1maemo2) unstable; urgency=low
* Add Kernel helper atomic operations for arm based Linux
-- Jyri Sarha <jyri.sarha@nokia.com> Wed, 6 Feb 2008 15:59:10 +0200
pulseaudio (0.9.9-1maemo1) unstable; urgency=low
* maemo port.
* Lower compat and debhelper to version 4.
* Add libltdl3-dev >= 1.5.24 to satisfy scratchbox!
* Remove build depedency (using [!armel]!)
* Remove avahi stuffs (browse module, pabrowse..)
* debian/pulseaudio.postinst:
+ use groupadd and useradd instead of debian adduser tools.
* Add maemo omap2 dsp.
-- Marc-Andre Lureau <marc-andre.lureau@nokia.com> Thu, 24 Jan 2008 16:28:34 +0200
pulseaudio (0.9.9-1) unstable; urgency=high
* New Upstream Version.
* Fixes CVE-2008-008: Assert that dropping permissions succeeds.
* Priority high because it fixes a security issue.
-- Sjoerd Simons <sjoerd@debian.org> Thu, 24 Jan 2008 12:44:55 +0100
pulseaudio (0.9.8-2) unstable; urgency=low
* Bump shlibs of libpulse and libpulse-browse. Upstream has started
versioning symbols.
* debian/p.../0005-Don-t-add-protocol-fields-introduced-in-version-12-w.patch
- Added. Don't send fields/opcodes adding in protocol version 12 to
clients using version 11. (Closes: #458556)
* debian/p.../0006-Implement-opcodes-added-in-version-12-in-the-tunnel.patch
- Added. Add dummy implementations of the opcodes added in protocol
version 12.
* debian/patches/0004-Force-module-tunnel-to-use-protocol-version-11.patch
- Removed. Obsoleted by the two previous patches
* debian/p.../0005-make-sure-to-create-.pulse-before-using-any-config.patch
- Renamed to 0004-make-sure-to-create-.pulse-before-using-any-config.patch
* debian/p.../0007-Change-config-to-not-fail-if-loading-of-esd-gconf-o.patch
- Added. Don't fail to load if esd, gconf or x11-publish fail.
(Closes: 456590, #456505)
* debian/patches/0008-Fix-compilation-on-non-linux-platforms.patch
- Added. Fixes compliation on non-linux platforms such as GNU/kFreeBSD.
Thanks to Aurelien Jarno for the patch (Closes: #454197)
-- Sjoerd Simons <sjoerd@debian.org> Fri, 04 Jan 2008 16:12:27 +0100
pulseaudio (0.9.8-1) unstable; urgency=low
[ CJ van den Berg ]
* New upstream version.
* debian/overrides/pulseaudio: Remove override for setuid-binary.
* debian/control:
+ Change the priority of all -dbg packages to extra.
+ Stop recommending libao-pulse. libao2 has built-in pulseaudio support.
+ Make pulseaudio conflict libltdl3 < 1.5.24-1 (Closes: #451638)
+ Change XS-Vcs-* tags to Vcs-*.
+ Add libpulsecore5-dbg package.
+ Rename gstreamer plugin package in recommends.
+ Add Homepage field.
+ Bump libpulsecore so version number to 5.
+ Conflict with all pre libpulsecore split packages.
* debian/patches/0002-Fix-pa_readlink-to-put-a-0-in-the-right-location.patch:
- Dropped, merged upstream.
* debian/p..s/0003-Define-__NR_eventfd-on-arm-if-it-wasn-t-defined-yet.patch:
- Dropped, merged upstream.
* debian/patches/0002-Double-esound-maximum-sample-size.patch:
+ Added, from Ubuntu.
* debian/p..s/0003-fix-uploading-of-samples-into-PA.-Problem-discovered.patch:
+ Added, svn commit r2074 from upstream.
* debian/patches/0004-Force-module-tunnel-to-use-protocol-version-11.patch:
+ Added, fixes protocol errors in module-tunnel.
* debian/pa..es/0005-make-sure-to-create-.pulse-before-using-any-config.patch:
+ Added, fixes module-volume-restore so that volumes are restored across
daemon restarts.
* debian/pulseaudio.manpages: Add manpages default.pa.5, pulse-client.conf.5
and pulse-daemon.conf.5
* debian/pulseaudio-utils.manpages: Add manpages pabrowse.1, pacat.1,
pacmd.1, pactl.1, padsp.1, paplay.1, pasuspender.1 and pax11publish.1
* debian/pulseaudio.default: Add a description of the preferred method of
running the daemon.
[Daniel T Chen]
* debian/control: Add lsb-base (>= 3) to pulseaudio's dependencies.
* debian/pulseaudio.init: LSB-ify.
-- CJ van den Berg <cj@vdbonline.com> Thu, 22 Nov 2007 02:33:51 +0100
pulseaudio (0.9.7-3) unstable; urgency=low
[ CJ van den Berg ]
* debian/control: Add depends on -utils to -module-x11. (Closes: #450840)
[ Sjoerd Simons ]
* Set pulseaudio setuid in postinst if the permissions aren't overriden by
dpkg-statoverride, instead of having the binary with suid perms in the deb
-- Sjoerd Simons <sjoerd@debian.org> Fri, 16 Nov 2007 18:41:28 +0100
pulseaudio (0.9.7-2) unstable; urgency=low
* Use pulseaudio (<< 0.9.7) instead of pulseaudio (< 0.9.7) in
-esound-compat
* debian/patches/0002-Fix-pa_readlink-to-put-a-0-in-the-right-location.patch:
+ Added. Fix pa_readlink to put a \0 directly after the link string. Fixes
issues with clients using the alsa compatibility layer
* deb/patches/0003-Define-__NR_eventfd-on-arm-if-it-wasn-t-defined-yet.patch:
+ Added. Define __NR_eventfd. Fixes FTBS on arm, because libc6-dev does
define SYS_eventfd but older versions of linux-libc-dev don't define
__NR_eventfd yet.
-- Sjoerd Simons <sjoerd@debian.org> Sun, 04 Nov 2007 13:53:09 +0100
pulseaudio (0.9.7-1) unstable; urgency=low
* New Upstream Version. (Closes: #446026, #436409)
* Drop all patches. All patches are merged upstream.
* debian/control:
+ Replace ${Source-Version} with ${binary:Version}.
+ Add XS-Vcs-* tags.
+ Conflict pulseaudio < 0.9.7 in -esound-compat due to moved manpage.
* debian/rules:
+ Add list-missing to catch new modules
+ Remove all .la files.
* debian/overrides/pulseaudio: Update libpulsecore so version.
* debian/pulseaudio.install:
+ Add new module-default-device-restore.so.
+ Add new module-suspend-on-idle.so.
+ Add new module-remap-sink.so.
+ Add new module-ladspa-sink.so.
- Remove module-oss-mmap.so, removed upstream.
* debian/pulseaudio-module-x11.install: Add new module-x11-xsmp.so.
* debian/pulseaudio-module-zeroconf.install: Add new module-zeroconf-
discover.so.
* debian/pulseaudio-utils.install: Add pasuspender utility.
* debian/pulseaudio-esound-compat.links: Move esd link to pulseaudio-
esound-compat.
* debian/pulseaudio-esound-compat.manpages: Move esdcompat manpage to
pulseaudio-esound-compat.
* debian/libpulse0.shlibs: Add minimum version of 0.9.7 to libpulse0 shlibs.
* debian/patches:
+ Added 0001-Set-ESD-socket-to-tmp-.esd-socket-to- match-up-with.patch
-- CJ van den Berg <cj@vdbonline.com> Wed, 31 Oct 2007 15:31:44 +0100
pulseaudio (0.9.6-2) unstable; urgency=low
* debian/control:
- Add -dbg packages.
- Make libcap-dev and libasound-dev arch specific build deps.
- Add recommends gnome-audio to pulseaudio-module-x11. (Closes: #437393)
- Make pulseaudio-module-zeroconf recommend avahi-daemon.
- Make pulseaudio-utils suggest avahi-daemon. (for pabrowse)
* debian/rules:
- Generate arch specific install files. (Closes: #430366)
- Install init script to start at 25 and stop at 15. (Closes: #428046)
* debian/overrides/pulseaudio: Update libpulsecore override to new
soversion.
* debian/copyright: Update e-mail address for Lennart Poettering.
* debian/patches: Reformat patch series. Add two new patches.
+ 0003-Backported-padsp-improvements-from-upstream-trunk.patch
+ 0004-New-realtime-safe-and-transport-free-JACK-module.patch
-- CJ van den Berg <cj@vdbonline.com> Sun, 02 Sep 2007 20:22:19 +0200
pulseaudio (0.9.6-1) unstable; urgency=low
* New Upstream Version.
+ Fix remote DOS vulnerabilities. (CVE-2007-1804)
+ Add support for suspended alsa sinks and sources.
+ Correct parameter handling in esdcompat. (Closes: #414355)
+ Handle ALSA frame size changes. (Closes: #423887)
+ Don't unload module-hal-detect if HAL doesn't report any devices.
(Closes: #395893)
* debian/patches: Remove all patches merged upstream.
- 02_ifexists_else_endif.dpatch
- 03_r1352_firefox_workaround.dpatch
- 04_r1373_JavaSound_support.dpatch
- 05_t28_wrong-endian-convert.dpatch
- 06_pulseaudio-0.9.5-suspend.dpatch
* debian/rules: Port to CDBS.
* debian/patches: Rework patch series for quilt.
* debian/control: Add libatomic-ops-dev to Build-Depends.
-- CJ van den Berg <cj@vdbonline.com> Mon, 28 May 2007 00:53:28 +0200
pulseaudio (0.9.5-7) unstable; urgency=low
* debian/control: Make pulseaudio-module-hal depend on hal, not just
libhal. (Closes: #411501)
-- CJ van den Berg <cj@vdbonline.com> Mon, 19 Feb 2007 22:11:48 +0100
pulseaudio (0.9.5-6) unstable; urgency=low
* debian/patches/06_pulseaudio-0.9.5-suspend.dpatch:
+ Added. Handle -ESTRPIPE correctly. Allows pulseaudio to survive suspend
operations on ALSA devices (e.g. s2disk). Thanks to Tobias Diedrich.
(Closes: #406768)
-- CJ van den Berg <cj@vdbonline.com> Mon, 12 Feb 2007 11:24:50 +0100
pulseaudio (0.9.5-5) unstable; urgency=low
* debian/control: Make Build-deps more specific. (Closes: #401111)
* debian/pulseaudio.init: Make sure files in /var/run/pulse exist before
calling chown and chmod. (Closes: #405869)
-- CJ van den Berg <cj@vdbonline.com> Mon, 8 Jan 2007 23:02:53 +0100
pulseaudio (0.9.5-4) unstable; urgency=low
* Add comment about resampling methods and CPU consumption to
README.Debian (Closes: #391455)
* debian/patches/03_r1352_firefox_workaround.dpatch:
+ Added. Fix padsp to work with firefox. Patch created from
SVN revision 1352.
* debian/patches/04_r1373_JavaSound_support.dpatch:
+ Added. Fix padsp to work with JavaSound. Patch created from
SVN revision 1373.
* debian/patches/05_t28_wrong-endian-convert.dpatch:
+ Added. Add additional sample conversions to sconv.c to support
BE <-> LE network audio.
Patch from http://www.pulseaudio.org/ticket/28
-- CJ van den Berg <cj@vdbonline.com> Wed, 18 Oct 2006 23:10:47 +0200
pulseaudio (0.9.5-3) unstable; urgency=low
* Add support for .ifexists configuration directive.
* Make default.pa use ifexists when loading optional modules.
* Recommend instead of Depend on pulseaudio-module-hal. (Closes: #391232)
* Recommend libasound2-plugins instead of -plugins-pulse. (Closes: #391254)
-- CJ van den Berg <cj@vdbonline.com> Fri, 6 Oct 2006 01:12:05 +0200
pulseaudio (0.9.5-2) unstable; urgency=low
* Add myself to uploaders
* Put libpulse-dev and libpulse0 in the right sections.
-- Sjoerd Simons <sjoerd@debian.org> Tue, 3 Oct 2006 15:49:12 +0200
pulseaudio (0.9.5-1) unstable; urgency=low
* Initial release (Closes: #378626)
-- CJ van den Berg <cj@vdbonline.com> Mon, 28 Aug 2006 00:31:10 +0200
|