-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathlirc-python3.10.patch
3528 lines (3522 loc) · 134 KB
/
lirc-python3.10.patch
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
diff -ruN a/debian/changelog b/debian/changelog
--- a/debian/changelog 1970-01-01 03:00:00.000000000 +0300
+++ b/debian/changelog 2022-10-15 15:04:44.364723812 +0300
@@ -0,0 +1,1719 @@
+lirc (0.10.1-6-e2pc) unstable; urgency=medium
+
+ * Patch for e2pc by '1455'
+
+ -- Gianfranco Costamagna <[email protected]> Sat, 28 Dec 2019 13:26:09 +0300
+
+lirc (0.10.1-6) unstable; urgency=medium
+
+ * Team upload
+ * debian/patches/lirc-gpio-ir-0.10.patch:
+ - fix for kernel 4.19 (Closes: #931078, 930485).
+
+ -- Gianfranco Costamagna <[email protected]> Thu, 04 Jul 2019 16:43:06 +0200
+
+lirc (0.10.1-5.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Revert removal of liblircclient{0,-dev} (Closes: #925477)
+ * Revert "Do not install conffiles in a dummy location" (Closes: #925066)
+
+ -- Tobias Frost <[email protected]> Sat, 06 Apr 2019 15:12:52 +0200
+
+lirc (0.10.1-5.1) unstable; urgency=medium
+
+ * Non-maintainer upload
+
+ * debian/rules
+ + Remove rdfind-based dedup (Closes: #919843)
+ Using dh_installdocs --link-docs was investigated, and rejected due to
+ - limited benefits;
+ - interactions between lirc-docs shipping files under /usr/share/doc/lirc,
+ but liblirc0 being the obvious candidate due to dependencies.
+
+ + Do not install conffiles in a dummy location
+ dpkg will, by default, not overwrite users' conffiles,
+ so shipping them in a different location is superfluous.
+
+ * Removed liblircclient{0,-dev}
+ They were obsolete transitional packages that predated the stretch release.
+
+ * Rename debian/post{inst,rm} to lirc.post{inst,rm}
+ * debian/lirc.{postinst,prerm}: Recompile and remove Python bytecode as needed
+ Closes: #924158
+
+ * debian/control: Fix relationships on liblirc{,client}-dev.
+ This should be Breaks+Replaces, not Conflict+Replaces.
+ Using the former should ensure that upgrading from stretch works smoothly.
+
+ * debian/changelog: Fix spelling in v0.10.1-4
+
+ -- Nicolas Braud-Santoni <[email protected]> Tue, 12 Mar 2019 01:33:40 +0100
+
+lirc (0.10.1-5) unstable; urgency=medium
+
+ * Fix upstream #343, --connect parsing error.
+ * Add systemd-notify call -> lircd won't start with invalid config files.
+ * Move VCS repository (now separate from upstream).
+ * Fix lintian command-with-path-in-maintainer-script warning.
+ * Fix lintian warning for duplicate files; new rdfind(1) build dep.
+
+ -- Alec Leamas <[email protected]> Tue, 01 Jan 2019 09:19:01 -0500
+
+lirc (0.10.1-4) unstable; urgency=medium
+
+ [ Alec Leamas ]
+ * Don't use broken LOG_CONS syslog flag, closes: #872749.
+
+ [ Pino Toscano ]
+ * Fix build on !linux OS, restrict systemd only to linux OS. closes: #912400
+
+ [ Gianfranco Costamagna ]
+ * Team upload
+ * Restrict postinst systemd calls only if systemd is installed
+
+ [ Helmut Grohne ]
+ * Remove multiarch-annotation fom liblirc-dev (Closes: #874246)
+
+ -- Alec Leamas <[email protected]> Fri, 23 Nov 2018 23:41:01 -0500
+
+lirc (0.10.1-3) unstable; urgency=medium
+
+ * Remove links created in postinst, closes: #911548.
+ * Add missing Recommends: systemd.
+ * Fix insecure URIs in d/control vcs-git: and d/copyright Format:.
+ * Add rudimentary upstream/metadata.
+
+ -- Alec Leamas <[email protected]> Thu, 25 Oct 2018 13:05:49 -0400
+
+lirc (0.10.1-2) unstable; urgency=medium
+
+ * Team upload.
+ * Update maintainer email address (Closes: #899981)
+
+ -- Gianfranco Costamagna <[email protected]> Mon, 15 Oct 2018 18:01:50 +0200
+
+lirc (0.10.1-1) unstable; urgency=medium
+
+ * New minor upstream release.
+ * Add fix for lirc-setup(1) crash on startup.
+ * Services besides lircd.socket disabled after install.
+ * Bump standards-version to 4.2.1 without changes.
+ * Drop 0001-build... patch now upstreamed.
+ * Obsolete priority: extra => optional.
+
+ -- Alec Leamas <[email protected]> Fri, 12 Oct 2018 16:51:50 -0400
+
+lirc (0.10.0-2) unstable; urgency=medium
+
+ * Fixed missing media/lirc.h, closes: #872074
+ * Fixed VCS browser path
+ * Fixed upstream bug #294 (VPATH build issues, in -1).
+ * Fixed upstream bug #295 - lircmd non-existing socket writes, in -1.
+
+ -- Alec Leamas <[email protected]> Sun, 13 Aug 2017 09:45:34 +0200
+
+lirc (0.10.0-1) unstable; urgency=medium
+
+ * New upstream release
+ * Upload to unstable
+ * Bump std-version to 4.0.1
+ * Drop dh-autoreconf, useless with compat level 10
+
+ -- Alec Leamas <[email protected]> Sat, 12 Aug 2017 06:34:57 +0200
+
+lirc (0.10.0~rc3-1) experimental; urgency=medium
+
+ * New upstream release.
+ * kfreebsd build fixes.
+ * Remove lingering /etc/init.d/lirc, closes: #865376.
+ * Fix absolute path config files, closes: #860065 (rc1).
+ * Suggest stopping lircd in devinput "No device available" message,
+ closes: #860551 (rc1).
+
+ -- Alec Leamas <[email protected]> Thu, 22 Jun 2017 12:22:52 +0200
+
+lirc (0.10.0~rc2-3) experimental; urgency=medium
+
+ * Fix broken dh_python3 invocation.
+ * Don't build plugins with runtime linkage errors on kfreebsd.
+ * Disable failing python unit tests on kfreebsd and hurd.
+
+ -- Alec Leamas <[email protected]> Wed, 14 Jun 2017 16:35:02 +0200
+
+lirc (0.10.0~rc2-2) experimental; urgency=medium
+
+ * Don't hardcode paths to socat and expect (test tools).
+ * Don't require socat for hurd builds.
+ * Don't run tests if socat is missing (e. g., hurd).
+ * Limit plugin load tests to look for errors.
+
+ -- Alec Leamas <[email protected]> Tue, 13 Jun 2017 23:24:50 +0200
+
+lirc (0.10.0~rc2-1) experimental; urgency=medium
+
+ * New upstream release
+ * Fixes upstream #290, lirc-setup does not start.
+ * Copyright changes reflecting excluded files in attic/
+ * Minimal testsuite.
+
+ -- Alec Leamas <[email protected]> Tue, 13 Jun 2017 11:51:06 +0200
+
+lirc (0.10.0~rc1-1) experimental; urgency=medium
+
+ * New upstream release.
+ * Most 0.9.4 patches upstreamed
+ * debian/rules update and debian/copyright
+
+ -- Alec Leamas <[email protected]> Fri, 19 May 2017 16:57:42 +0200
+
+lirc (0.9.4c-9) unstable; urgency=medium
+
+ * Fix missing systemd socket activation (Closes: #859491).
+ * Fix package purge (Closes: #852118).
+
+ -- Alec Leamas <[email protected]> Thu, 06 Apr 2017 05:23:20 +0200
+
+lirc (0.9.4c-8) unstable; urgency=medium
+
+ * Fix missinng deps for lirc-setup (Closes: #858144).
+
+ -- Alec Leamas <[email protected]> Tue, 21 Mar 2017 17:50:54 +0100
+
+lirc (0.9.4c-7) unstable; urgency=medium
+
+ * Fix lirc_options.conf upgrade regression in 0.9.4c-6
+ * Actually add the hurd build patch missing in 0.9.4c-6
+ * Fix segfault on SET_INPUTLOG socket command (upstream #252).
+ * Fix bad handling of ircat --config options (upstream #251).
+
+ -- Alec Leamas <[email protected]> Thu, 05 Jan 2017 00:05:35 +0100
+
+lirc (0.9.4c-6) unstable; urgency=medium
+
+ * Fix unsecure permissions for /run/lirc. Closes: #848135
+ * Fix missing config.h header (Upstream #250).
+ * Fix HURD build (Closes: #845499)
+ - Fix from Samuel Thibault
+ * Add missing Suggests: for lirc-compat-remotes.
+ * Fix --listen option parsing bug (upstream #249).
+ * Fix bad update handling of lirc_options.conf (see: #849266).
+
+ -- Alec Leamas <[email protected]> Tue, 20 Dec 2016 12:36:19 +0100
+
+lirc (0.9.4c-5) unstable; urgency=medium
+
+ * Team upload.
+ * Updated README.debian, new package lirc-compat-remotes info.
+ * Added patch for missing lircd-setup.service file.
+ * Removed work-around for nowadays fixed #801719.
+ * Added fix for remove --purge not purging all files.
+ * lirc-old2new fixes for default device.
+ * Fixed to build on freebsd platforms.
+
+ -- Alec Leamas <[email protected]> Wed, 02 Nov 2016 19:36:19 +0100
+
+lirc (0.9.4c-4) unstable; urgency=low
+
+ * Team upload.
+ * Upload to unstable.
+ * Resolves (new bugs) LP: #1636355, LP: #1636353
+ * Resolves (old bugs) LP: #1497266, LP: #1565070, LP: #1395570,
+ LP: #1393056, LP: #1310508, LP: #1203483, LP: #1438381,
+
+ -- Alec Leamas <[email protected]> Fri, 28 Oct 2016 15:46:34 +0200
+
+lirc (0.9.4c-3) experimental; urgency=medium
+
+ * debian/control: Fix bad upgrade paths.
+ * Fix bad library specification in lirc.pc (#236)
+
+ -- Alec Leamas <[email protected]> Tue, 25 Oct 2016 21:46:06 +0200
+
+lirc (0.9.4c-2) experimental; urgency=medium
+
+ * Fix unconfigured clients build errors.
+
+ -- Alec Leamas <[email protected]> Tue, 25 Oct 2016 10:32:39 +0200
+
+lirc (0.9.4c-1) experimental; urgency=medium
+
+ * New upstream release.
+ * New tool irtext2udp.
+ * Resolves build errors on kernels > 4.8.0A.
+ * Most of patches upstreamed.
+
+ -- Alec Leamas <[email protected]> Sat, 22 Oct 2016 14:52:05 +0200
+
+lirc (0.9.4b-0.3) experimental; urgency=medium
+
+ * Non-maintainer upload.
+
+ [ Gianfranco Costamagna ]
+ * fix arch:all build.
+
+ [ Alec Leamas ]
+ * Fix build errors on non-linux kernels.
+ (conditionalize udev dependency)
+
+ -- Gianfranco Costamagna <[email protected]> Wed, 05 Oct 2016 19:30:47 +0200
+
+lirc (0.9.4b-0.2) experimental; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix build errors on non-linux kernels.
+ * Declare liblirc0 as multi-arch; Closes: #812947.
+
+ -- Alec Leamas <[email protected]> Wed, 05 Oct 2016 06:07:40 +0200
+
+lirc (0.9.4b-0.1) experimental; urgency=medium
+
+ * Non-maintainer upload.
+ * First shot on major upstream updates.
+ - Re-packaged from scratch based on new dh primitives.
+ - Thanks for help on debian-mentors!
+ * New upstream release 0.9.4
+ - Release 0.9.1 .. 0.9.3 was never packaged.
+ - Old 'lirc' service split into separate systemd services:
+ lircd.service, lircmd.service and irexec.service.
+ - Remote definitions moved out of lirc to new project
+ lirc-remotes; affects large number of LP issues.
+ - Builds also on FreeBSD 10.3.
+ - Fixes "Not updated to last version" (Closes: #777199),
+ LP: #1443590.
+ - Fixes "Default device for mode2 is /dev/lirc" (Closes: #702140).
+ - Fixes "/var/run/lirc contents disappear..." (Closes: #676343).
+ - Fixes "lircrcd segfaults" (Closes: #780062).
+ - Fixes "'/etc/init.d/lirc restart' is broken" (Closes: #782091).
+ - Fixes "Prompting due to modified conffiles..." (Closes: #655969).
+ - Fixes "LIRC installs bad udev rule" (Closes: #804397),
+ users depending on this rule will need to explicitly start lircd.
+ - Fixes "lirc init script can create circular symlinks", LP: #698007.
+ - Fixes "Update Uploaders List (Closes: #762554).
+ - Fixes "Please switch to libftdi1" (Closes: #810370).
+ - Fixes LP: #153457 "iguanaIR support not functional".
+ - Fixes LP: #460027 "using lirc init script restart function fails
+ sometimes".
+ - Fixes LP: #499588 "lirc udev rule causes unreliable startup".
+ - Fixes LP: #567519 "lircd(8) mentions non-existent
+ /dev/input/uinput".
+ - Fixes LP: #1029604 "mce remote doesn't work due to out of date
+ lircd.conf.devinput".
+ - Fixes LP: #1312287 "lircd start problem".
+ * The built-in irman support is moved to the lirc-drv-irman package.
+ * Revised package structure: keep old liblircclient0 (renamed to
+ liblirc-client0). Adding new packages liblirc0, liblirc-dev and
+ lirc-doc. Former liblircclient-dev merged into new liblirc-dev.
+ * Don't overwrite existing lircd.conf file.
+ * Ship sysV scripts from the svn tree [Stefan Lippers-Hollmann]
+ * Add handling of obsolete 0.9.0 udev rule restarting lircd
+ * Old lircd output socket link /dev/lirc dropped. Use
+ /var/run/lirc/lircd.
+ * Updated copyright
+ * Update compiler flags: -Wl,as-needed + hardening
+ [Stefan Lippers-Hollmann]
+ * Avoid negative architecture deps like [!hurd] (Closes: #634807)
+ [Stefan Lippers-Hollmann]
+ * Add patch 0007-tools-remove-configs-symlink.patch + explicit link
+ to walk around #801719 (dh_python3 shortcomings).
+ * Last parts of libirman dependencies removed.
+ * Changing Vcs-* headers to point to upstream packaging branch.
+ * Fixes existing large number of upgrade bugs.
+ * Enhance hardening flags.
+ * Add a lintian pbuilder test, this requires --hookdir and B92-test-pkg
+ therein.
+ * Tested (build-wise) on stretch and sid.
+
+ -- Alec Leamas <[email protected]> Thu, 26 May 2016 11:14:25 +0100
+
+lirc (0.9.0~pre1-1.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Fix "unhandled symlink to directory conversion: /usr/share/doc/PACKAGE":
+ - add "Pre-Depends: ${misc:Pre-Depends}" to lirc-x stanza in
+ debian/control
+ - add debian/lirc-x.maintscript with symlink_to_dir instruction
+ (Closes: #774867)
+
+ -- gregor herrmann <[email protected]> Sat, 17 Jan 2015 19:51:55 +0100
+
+lirc (0.9.0~pre1-1.1) unstable; urgency=low
+
+ * Non-maintainer upload with maintainers permission.
+ * Add dh-autoreconf to fix FTBFS on ppc64el. Closes: #746505
+
+ -- Andreas Barth <[email protected]> Thu, 11 Sep 2014 09:18:17 +0000
+
+lirc (0.9.0~pre1-1) unstable; urgency=low
+
+ [ Sven Mueller ]
+ * remove myself from uploaders
+
+ [ Stefan Lippers-Hollmann ]
+ * new upstream version 0.9.0~pre1:
+ - rediff patches against 0.8.6:
+ + drop 20_kcompat-2.6.26.patch, applied upstream.
+ + drop 21_silence-LIRC_MODE_LIRCCODE-logmessage.patch, it's no longer
+ necessary due to udev & hal acting upon hotplug events.
+ + drop 22_kcompat-2.6.27.patch, applied upstream.
+ + drop 23_man_pages_style_fixes.patch, mostly applied upstream.
+ + drop 24_kcompat-2.6.29.patch, applied upstream.
+ + drop 25_kcompat-2.6.31.patch, applied upstream.
+ - fixed by the new upstream version:
+ + lirc: Please update to version 0.8.4a (Closes: #517507).
+ + lirc: The version upstream is now at 0.8.6. Please upgrade this
+ package as it's a show stopper for me (Closes: #548826).
+ + lirc-modules-source: lirc_imon doesnt find hardware (Closes: #500714).
+ + lirc: Please add support for blaster of Hauppauge PVR150
+ (Closes: 505049).
+ - rediff patches against 0.8.7:
+ + drop 23_kcompat-2.6.32.patch, merged upstream
+ + drop kcompat-2.6.33.patch, merged upstream
+ + drop kcompat-2.6.35.patch, merged upstream
+ + add fix-kfreebsd-ftbs.patch
+ - fixes FTBS on Debian/ kFreeBSD, introduced in 0.8.6
+ - rediff patches against 0.9.0~pre1:
+ + import upstream changes (lirc-0.8.7-63-g77c9429):
+ ~ Remove-a-few-more-CVS-relics
+ ~ add-release-process-notes-for-my-own-sanity
+ ~ add-lirc-encoder-decoder-regression-test
+ ~ make-all-remote-names-unique
+ ~ updated-firefly-remote-definition-from-Bastien-Nocer
+ ~ try-to-standardize-remote-key-names-a-fair-bit
+ ~ lirc_serial-fill-in-dev-pointer
+ ~ Attempt-to-make-lirc_sir-behave-a-bit-better
+ ~ lirc_serial-resync-with-in-kernel-bits
+ ~ commandir-send_status-vs.-packetCounter-bug-fix
+ ~ lirc_serial-fix-tx-support-and-a-memory-leak
+ + drop 99_linux-input-layer_config, it should be obsolete now.
+ + drop lirc-in-kernel-ioctls, merged upstream.
+ + drop 18_pinsys-keycodes.
+ + update fix-kfreebsd-ftbs.patch to fix newly introduced __u32/ __u64
+ breakage on kFreeBSD; extend this change to all non-linux
+ architectures, given that it fails on hurd as well. Use stdint.h and
+ ISO C99 uint32_t/ uint64_t.
+ + drop 11_cheklib_fix.patch; while it is technically correct, it doesn't
+ actually have a real effect and is not upstreamable.
+ + drop 90_make-module-defines-unique.patch and warning-cleanup.patch,
+ lirc-modules-source doesn't get built anymore.
+ + avoid patching generated Makefiles by ensuring identical dates to avoid
+ autofoo/ libtool; this allows dropping 02_Makefiles.patch.
+ + drop 12_enodev_on_read.patch, it doesn't appear to be required anymore.
+ * suggest setserial (Closes: #546247).
+ * drop the udevadm settle call from the init script, it can lead to a
+ deadlock in combination with hotpluggable/ udev aware devices.
+ * fix conditional branches for 22_kcompat-2.6.27.patch (Closes: #547359).
+ * switch to Debian source format 3.0 (quilt).
+ * adapt watch file for bzip2 tarballs.
+ * drop debian/TODO, most entries are obsolete.
+ * create /var/run/lirc/ as needed.
+ * use --oknodo for start-stop-daemon.
+ * lirc 0.8.6 moves the lircd socket from /dev/ to /var/run/lirc/, create a
+ symlink to retain compatibility with old clients.
+ * partial sync with Ubuntu's lirc 0.8.6-0ubuntu2:
+ [ Mario Limonciello ]
+ - debian/control: add build-depends on libftdi-dev to prevent FTBFS.
+ - [PATCH 8/8] Add udev support to lirc and init script
+ - remove build time debug messages for kernel drivers
+ * add compatibility for kernel 2.6.32 (Closes: #562512, #588027).
+ * add compatibility for kernel 2.6.33/ 2.6.34.
+ * add maintainerclean target to debian/rules, to ease dealing with the
+ current way of maintaining the lirc package with svn-buildpackage's
+ mergeWithUpstream mode.
+ * document the kernel/ userspace ABI breakage between lirc 0.8.6 and earlier
+ versions in NEWS.
+ * debian/rules: fix stanza dependencies for parallel building (FTBS on
+ buildds with activated build concurrency).
+ * fix lintian complaint about "lirc: conflicts-with-version makedev
+ (<< 2.3.1-88)", a recent enough makedev (or none at all, if using udev) is
+ only required by postinst, not at unpack time.
+ * debian/NEWS: fix cosmetic formatting issues as pointed out by lintian:
+ - lirc: debian-news-entry-uses-asterisk
+ - lirc: debian-news-entry-without-blank-line line 13
+ * add compatibility for kernel 2.6.35.
+ * bump compat level to 8, supported by debhelper >=7.9.3 in squeeze.
+ - replace dh_clean -k by dh_prep.
+ * drop silent clobbering of the lirc configuration with misplaced files.
+ * make syntax check for hardware.conf more robust.
+ * drop obsolete lirc-svga package, its functionality is also provided by
+ lirc-x and has only been built for x86.
+ * drop and conflict with (using breaks) lirc-modules-source, starting with
+ kernel 2.6.36 lirc has been merged mainline and this package targets
+ post-squeeze anyways - this indirectly fixes:
+ - Failed to attach i2c client PV951 IR at 0x4b (-17) (Closes: #500429)
+ - lirc 0.8.3-5 breaks mceusb2 remote (Closes: #551706), replaced by new
+ in-kernel RC_CORE module "mceusb".
+ - lirc_sir: device fails to resume after suspend (Closes: #414014)
+ - sysfs: duplicate filename '0-0018' can not be created (Closes: #496681)
+ * rename patches for upstream submission:
+ - 04_man_pages_syntax_fixes.patch --> man-pages_syntax-fixes.patch
+ - 05_non_linux.patch --> lirc_fix-build-on-non-Linux-architectures.patch
+ - 22_fix-spelling-errors.patch --> lirc_fix-spelling-errors.patch
+ - 13_hurd_define_iotbase_u32.patch --> hurd_define-iotbase_u32.patch
+ * external ABI between kernel modules broke between 0.8.3 --> 0.8.4 and
+ 0.8.7 --> 0.9.0, break lirc-modules-source (<<0.9.0~).
+ * drop obsolete debconf configuration:
+ - lirc should use debconf more fully (Closes: #162933)
+ - [INTL:nl] Updated Dutch po-debconf translation (Closes: #605610).
+ - [INTL:da] Danish translation of the debconf templates (Closes: #607575)
+ * drop pre-woody compatibility.
+ * don't try to install the upstream "ChangeLog", it's empty since upstream
+ moved to git.
+ * don't symlink /usr/share/doc/<package>/ anymore.
+ * declare a build-conflicts with libsvga1-dev.
+ * suggest "ir-keytable", it is required to configure scancodes for in-kernel
+ modules using the new RC_CORE subsystem.
+ * bump standards version to 3.9.1, now that the major roadblocks are finally
+ fixed.
+ * document that lirc uses syslog for all logging functionality since 0.6.5-1,
+ (Closes: #580666).
+ * use current maintainer script syntax.
+ * drop pre-squeeze versioned depends.
+
+ -- Stefan Lippers-Hollmann <[email protected]> Sun, 20 Feb 2011 22:32:56 +0100
+
+lirc (0.8.3-5) unstable; urgency=low
+
+ * fix override disparity by moving lirc-modules-source to section kernel.
+ * update 05_non_linux.patch to fix an FTBS on kFreeBSD, thanks to Petr
+ Salinger <[email protected]> and Aurelien Jarno
+ <[email protected]> (Closes: #540742). This allows dropping
+ 06_libtool_kfreebsd, thanks to Aurelien Jarno.
+ * use *.patch suffix consistently for all patches, no patch changes.
+ * clarify patch names for manpages.
+ * refresh patch series.
+
+ -- Stefan Lippers-Hollmann <[email protected]> Mon, 10 Aug 2009 16:00:21 +0200
+
+lirc (0.8.3-4) unstable; urgency=medium
+
+ [ Stefan Lippers-Hollmann ]
+ * add kernel 2.6.27 compatibility (Closes: #506693).
+ * update italian debconf translation, thanks to Vincenzo Campanella
+ <[email protected]> (Closes: #502602).
+ * add kernel 2.6.29 compatibility (Closes: #537197).
+ * s/(C)/©/ in copyright information.
+ * add kernel 2.6.31 compatibility.
+ * updating Basque debconf translation update, thanks to Piarres Beobide
+ <[email protected]> (Closes: #513433).
+ * sync with Ubuntu, where possible - thanks to Mario Limonciello
+ <[email protected]> (Closes: #500384):
+ - [PATCH 2/8] Cleanup whitespace in lirc.postinst
+ - [PATCH 7/8] Source lsb init functions in init script
+ - apply this patch first, we can't use any LSB function without
+ sourcing it first.
+ - depend on lsb-base.
+ - [PATCH 3/8] Update load_modules to use LSB functions
+ - keep the udevadm settle call, we need it for now.
+ - local var=foo is neither allowed by SUSv3, nor by Debian's special
+ excemptions; fix this bashism/ dashism.
+ - continue to use tab to indent.
+ - [PATCH 4/8] Update build_args to only check a single device
+ - local var=foo is neither allowed by SUSv3, nor by Debian's special
+ excemptions; fix this bashism/ dashism.
+ - continue to use tab to indent.
+ - [PATCH 5/8] Use LSB functions to show errors when conf files are missing
+ - continue to use tab to indent.
+ - remove commented out tests.
+ - [PATCH 6/8] Cleanup case statement to use LSB functions and whitespace
+ cleanup
+ - continue to use tab to indent.
+ - fix newly introduced syntax errors.
+ * employ standard line wrapping in debian/control stanzas.
+ * refer to GPL-2 explicitly in debian/copyright.
+ * make lintian happy and don't call ucf with its full path (policy 6.1).
+ * install upstream changelog also into arch-indep packages.
+ * severity medium, as this fixes lirc-modules-source FTBS against
+ kernel >= 2.6.27.
+
+ [ Matthew Johnson ]
+ * update some manpage patches (04_man_pages/22_man_pages2). Patches thanks
+ to Philipp Matthias Hahn <[email protected]>. (Closes: #513675)
+
+ -- Stefan Lippers-Hollmann <[email protected]> Fri, 07 Aug 2009 00:38:08 +0200
+
+lirc (0.8.3-3) unstable; urgency=low
+
+ * update swedish translation, thanks to Martin Bagge <[email protected]>
+ (Closes: #491772).
+ * add italian debconf translation, thanks to Vincenzo Campanella
+ <[email protected]>.
+ * silence LIRC_MODE_LIRCCODE log message, as it is not rate limited and
+ tends to overflow syslog in case IR receivers get removed without
+ stopping lirc or removing the configuration; this is a temporary
+ band-aid for lenny and no long term solution (Closes: #500421).
+
+ -- Stefan Lippers-Hollmann <[email protected]> Tue, 30 Sep 2008 01:28:27 +0200
+
+lirc (0.8.3-2) unstable; urgency=medium
+
+ * remove dead code (modutils has only been used for kernel 2.4 and the
+ affected code blocks weren't reachable since 0.8.3-1 anyways, as the
+ conffile wasn't shipped in the first place).
+ * conflict with makedev << 2.3.1-88, lirc either needs a fixed version or
+ none at all (Closes: #477063).
+ * 0.8.3-1 hasn't transitioned to testing yet, so keep the urgency at medium
+ as it fixes several serious bugs (oops in lirc_i2c on kernel 2.6.25, FTBS
+ against 2.6.26, missing module versions rejected by kernel >= 2.6.26,
+ custom mknod replaced by proper makedev calls, if installed).
+
+ -- Stefan Lippers-Hollmann <[email protected]> Wed, 16 Jul 2008 13:35:32 +0200
+
+lirc (0.8.3-1) unstable; urgency=medium
+
+ [ Stefan Lippers-Hollmann ]
+ * new upstream release 0.8.3 (Closes: #481649).
+ * rediff patches:
+ - 02_Makefile.in
+ - 04_man_pages
+ - 05_non_linux
+ - 06_libtool_kfreebsd
+ * drop patches merged upstream:
+ - 16_kcompat-2.6.23
+ - 17_kcompat-2.6.24
+ - 20_kcompat-2.6.25
+ - 19_enable-macmini-as-userspace-driver
+ * remove local scope definition for variables in lirc.init.d following
+ SUSv3, its current use for MODULES_MISSING and ARGS doesn't justify
+ making use of the exceptions specified in Debian policy 10.4
+ (Closes: #471422).
+ * fix copy and paste error in lirc-modules-source.README.Debian.
+ * lirc_i2c: fix kernel oops on 2.6.25, patch taken from upstream CVS.
+ * change debconf defaults for lirc-modules-source:
+ - drop lirc_gpio, it is affected by API changes in bttv and FTBS since
+ 2.6.23.
+ - enable atiusb.
+ - enable bt829.
+ - enable cmdir.
+ - enable igorplugusb.
+ - enable imon.
+ - enable it87.
+ - enable mceusb/ mceusb2.
+ - keep lirc_parallel disabled, it is not SMP safe.
+ - enable sasem.
+ - enable streamzap.
+ - enable sir, keep the defaults at generic sir controller (other) port
+ 0x2f8 and irq 3, which seems to be supported by a short poll among
+ notebook owners.
+ - enable serial, keep defaulting to generic (home-brewed) IR receivers,
+ change to ttyS0 (port 0x3f8, irq 4) as most concurrently sold systems
+ only ship one serial port.
+ * replace custom mknod usage by using makdev's newly added lirc support and
+ add a versioned dependency on a fixed makedev version instead. This
+ dependency can be relaxed to udev | makedev, once makedev (>= 2.3.1-88)
+ has been shipped in a stable release. Given that Breaks support isn't
+ usable until lenny+1, this conservative approach is the safer variant for
+ etch --> lenny upgrades (Closes: #393575, #477063).
+ * drop debian/lirc.config.in, which was added as a bandaid for #329897
+ alltogether, neither it nor setup-driver.sh are used anywhere on the end
+ user's system; this allows dropping the pre-dependency on dialog and
+ lirc.config.md5sum as well.
+ * add a sanity check to debian/rules' clean target to ensure that
+ liblirclient0's pkg-config file is up to date.
+ * add compatibility code for udev >= 0.117, avoid flag day changes or a hard
+ dependency on udev; inspired by Scott James Remnant <[email protected]>
+ (Closes: #456325).
+ * restructure lirc-modules-source package to dump all module sources
+ directly into the toplevel directory (omit upstream's Makefiles from
+ module subdirectories) and replace custom toplevel Makefile with a simple
+ in-kernel style buildsystem. This fixes symbol versioning for the kernel
+ modules and, as a side effect, the clean target of the top-level Makefile
+ and doesn't allow empty port/ IRQ settings.
+ (Closes: #450521, #483089, #369076)
+ * add compatibility patch for kernels >= 2.6.26, based on upstream CVS.
+ * drop debian/lirc.modules, modutils is obsolete (kernel 2.4).
+ * make lirc-modules-source compatible with linux-modules-extra-2.6:
+ - use bzip2 to compress the source tarball.
+ - change path names to correspond with the package name.
+ * fix LIRC_IRQ redefinition.
+
+ [ Matthew Johnson ]
+ * Add pkg-config file (Closes: #421881)
+
+ [ Sven Mueller ]
+ * Add swedish translation (Closes: #483766)
+
+ [ Matthew Johnson ]
+ * Raise priority to medium since it fixes kernel-related bugs
+
+ -- Matthew Johnson <[email protected]> Tue, 15 Jul 2008 18:56:26 +0100
+
+lirc (0.8.2-2) unstable; urgency=low
+
+ [ Sven Mueller ]
+ * Add some additional checks to the init script (Closes: #394663)
+ * Update lirc-modules-source README.Debian to refer to module-assistant
+ (Closes: #429249)
+ * New upstream closes: #409394,#432801,434569,#350318,#399135,#400494,#368075
+ * dpkg-reconfigure lirc-modules-source will now make
+ /etc/lirc/lirc-modules-source.conf world-readable. This should not be a
+ security risk, but allows building modules as a user via fakeroot. This
+ closes: #445324
+
+ [ Matthew Johnson ]
+ * New translations (Closes: #443470)
+ - cs (Closes: #451793)
+ - fr (Closes: #445587)
+ - fi (Closes: #445650)
+ - pt_BR (Closes: #445736)
+ - es (Closes: #459267,#463737)
+ - nb (Closes: #443470,#470104)
+ - ru (Closes: #445426)
+ - de (Closes: #445556,#446378)
+ - pt (Closes: #445653)
+ - cs (Closes: #451793)
+ * Add slh to uploaders, remove old developers.
+ * Refactor patches to use quilt and update dependencies
+ * Add Linux Input Layer remote config (Closes: #297290)
+
+ [ Stefan Lippers-Hollmann ]
+ * remove devfs support, it got removed in mainline linux for 2.6.18 so
+ neither etch nor lenny are affected.
+ * add LSB header to lirc initscript as suggested by Petter Reinholdtsen
+ <[email protected]> (Closes: #460212).
+ * add LSB Description and Short-Description to initscript LSB stanza,
+ borrowed from Ubuntu's lirc packages by Mario Limonciello
+ <[email protected]>.
+ * apply patch from Václav Ovsík <[email protected]> to fix Makefile
+ mangling for lirc-source, evaluating utsrelease.h instead of the no longer
+ existing version.h and recommend linux-image-$KVERS instead of the
+ obsolete kernel-image-$KVERS (Closes: #447172).
+ * drop no longer existing dpatch suffix from patch series and refresh
+ existing patches.
+ * add compatibility patch for kernels >= 2.6.24, based on upstream CVS
+ (Closes: #399135, #434569, #457858, #463388, #464777).
+ * fix lirc.conf template for pinsys remotes, shortly before lirc 0.8.2 the
+ keymapping got broken.
+ * remove versioned download location from debian/copyright, it's always
+ outdated and the base path will point to the download location just as
+ well.
+ * apply useful indention from Ubuntu to debian/rules.
+ * Recommend module-assistant | kernel-package for lirc-modules-source.
+ * add watch file pointing to lirc.org, not sourceforge.
+ * restore author information and short descriptions for debian/patches/*.
+ * add Basque translation "eu", thanks to Christian Perrier
+ <[email protected]> and Piarres Beobide <[email protected]>
+ (Closes: #470363).
+ * fix debian/copyright to refer to "GPL v2 or later", not a single source
+ file seems to be licensed under the GPL v1.
+ * rewrite debian/modules-source/debian/rules from scratch and rely on common
+ kernel module handling based in module-assistant, this allows bumping the
+ standards version to 3.7.3 (Closes: #372815, #440514).
+ * add Homepage, Vcs-Svn and Vcs-Browser tags.
+ * modules-source/README.make is obsolete, as it only talks about kernel 2.2
+ and 2.4 specifics, while kernel 2.6 is covered by the other READMEs.
+ * drop bogus Recommends from lirc-modules-source, build-essentials are an
+ implicit requirement by definition.
+ * drop no longer valid statements from the module READMEs.
+ * no longer try to install etc/modutils/*, lenny will not support kernel
+ 2.4.
+ * bump compat level to 5, which is supported by etch (backports), but lets
+ dh_install error out if wildcards expand to nothing.
+ * drop 03_extra_files, shipping private copies of bttv headers for random
+ kernels doesn't work.
+ * run debconf-updatepo, confirm that no strings get lost.
+ * remove informal_module_building(), while it may look convenient to the
+ user, the results were unpackaged modules of questionable quality that
+ cannot be removed on purge. module-assistant or make-kpkg are the
+ preferred way of module building (Closes: #404505).
+ * Update and partly rewrite the module source documentation to the new
+ packaging and explicitly mention the full source requirement for gio
+ (Closes: #429249).
+ * add patch based on upstream CVS to include the macmini driver in the
+ hw_list used for calculating the userspace daemon config options
+ (Closes: #448637).
+ * set doc-base section to "Help", which seems to be suited best for a
+ collection of pointers about how to work with the LIRC package.
+ * fix broken whatis headers in shipped manpages.
+
+ -- Stefan Lippers-Hollmann <[email protected]> Sat, 15 Mar 2008 02:18:01 +0100
+
+lirc (0.8.2-1) experimental; urgency=low
+
+ * Initial release of new upstream
+
+ -- Sven Mueller <[email protected]> Tue, 16 Oct 2007 18:28:57 +0200
+
+lirc (0.8.0-14) unstable; urgency=low
+
+ [ Christian Perrier ]
+ * Debconf templates and debian/control reviewed by the debian-l10n-
+ english team as part of the Smith review project. Closes: #443270, #443470
+ (the latter bug is about outdated translations)
+
+ [Debconf translation updates]
+
+ * Japanese. Closes: #444091
+ * Vietnamese. Closes: #444436
+ * Galician. Closes: #444752
+ * Russian. Closes: #445426
+ * German. Closes: #445556, #446378
+ * French. Closes: #445587
+ * Finnish. Closes: #445650
+ * Portuguese. Closes: #445653
+ * Brazilian Portuguese. Closes: #445736
+ * Czech. Closes: #445655
+
+ [ Sven Mueller ]
+ * Add compatibility patch for kernels >= 2.6.23 (closes: #446650)
+
+ -- Sven Mueller <[email protected]> Tue, 16 Oct 2007 17:02:54 +0200
+
+lirc (0.8.0-13) unstable; urgency=low
+
+ [ Loic Minier ]
+ * Update 14_no_linux_config_h patch to also drop <linux/config.h> include
+ from lirc_atiusb/lirc_atiusb.c, lirc_bt829/lirc_bt829.c,
+ lirc_cmdir/lirc_cmdir.c, lirc_igorplugusb/lirc_igorplugusb.c,
+ lirc_imon/lirc_imon.c, lirc_it87/lirc_it87.c, lirc_mceusb/lirc_mceusb.c,
+ lirc_mceusb2/lirc_mceusb2.c, lirc_parallel/lirc_parallel.c,
+ lirc_sasem/lirc_sasem.c, lirc_serial/lirc_serial.c, lirc_sir/lirc_sir.c,
+ lirc_streamzap/lirc_streamzap.c; thanks Florent Rougon; see #400494 and
+ #436166.
+
+ [ Sven Mueller ]
+ * add patch to replace SLAB_ATOMIC usage with the more current equivalent
+ GFP_ATOMIC.
+ * incorporate update to debconf templates, thanks to Christian Perrier and
+ the english l10n team. (Closes: #443270)
+ * Update german translation
+ * Add option to start irexec in daemon mode from /etc/init.d/lirc (Closes:
+ #184245)
+ * Add myself to the Uploaders field
+ * Update galician (Closes: #444752), vietnamese (Closes: #444436) and
+ japanese (Closes: #444091) debconf translations.
+
+ -- Sven Mueller <[email protected]> Wed, 3 Oct 2007 15:04:58 +0200
+
+lirc (0.8.0-12) unstable; urgency=medium
+
+ * Fix bashism in rules; thanks Martin F Krafft; closes: #437530.
+
+ -- Loic Minier <[email protected]> Mon, 13 Aug 2007 09:55:28 +0200
+
+lirc (0.8.0-11) unstable; urgency=low
+
+ * Update config.guess and .sub with autotools-dev's versions before running
+ configure.
+
+ -- Loic Minier <[email protected]> Sun, 12 Aug 2007 11:04:48 +0200
+
+lirc (0.8.0-10) unstable; urgency=low
+
+ * Add myself to uploaders for some QA work.
+ * Cleanup changelog.
+ * Wrap build-deps, deps, and uploaders.
+ * Use ${binary:Version} instead of ${Source-Version}.
+ * Cleanup rules.
+ * Merge diff from 0.8.0-9.3 NMU; thanks Steffen Joeris.
+ * Merge diff from 0.8.0-9.2 (and 0.8.0-9.1?!) NMUs; thanks
+ Christian Perrier.
+ * Merge 0.8.0-9.1 changelog entry into 0.8.0-9.2 as it seems there never was
+ a 0.8.0-9.1 upload.
+ * Update Vietnamese Debconf translation; thanks Clytie Siddall;
+ closes: #427007.
+ * Drop funny "set -e" from rules.
+ * Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE
+ differ.
+ * Honor make clean errors.
+ * Add Russian Debconf translation; thanks Yuri Kozlov; closes: #432743.
+ * Check whether $START_LIRCMD and $START_LIRCD equals true instead of
+ checking whether it's non-empty as the init script sets these to "false"
+ in some cases; thanks Achim Lobbert; closes: #424912.
+ * New dpatch, 12_enodev_on_read, close device if read() returns ENODEV;
+ fixes infinite loop; thanks Alexander V. Inyukhin; closes: #430898.
+ * Drop -k flag to modprobe in init scripts; is undocumented and seems to be
+ a noop.
+ * New dpatch, 13_hurd_define_iotbase_u32, define _IOT__IOTBASE___u32 if
+ missing; fixes build failure on hurd; thanks Samuel Thibault;
+ closes: #436570.
+ * Do not build-dep on libusb-dev on hurd-i386; thanks Samuel Thibault;
+ closes: #436570.
+ * New dpatch, 14_no_linux_config_h, drops linux/config.h include which isn't
+ available anymore, but doesn't seem necessary either; parly fixes #436166,
+ it seems to also require bttv.h which went missing from linux-headers-*.
+
+ -- Loic Minier <[email protected]> Fri, 10 Aug 2007 15:11:20 +0200
+
+lirc (0.8.0-9.3) unstable; urgency=high
+
+ * Non-maintainer upload during BSP
+ * Fix unconditional use of debconf in postrm (Closes: #416930)
+
+ -- Steffen Joeris <[email protected]> Sat, 19 May 2007 22:24:22 +1000
+
+lirc (0.8.0-9.2) unstable; urgency=low
+
+ * Non-maintainer upload to fix pending l10n issues.
+ * Debconf translations:
+ - German. Closes: #399304
+ - Galician. Closes: #407277
+ - Swedish. Closes: #408289
+ - Spanish. Closes: #393864
+
+ -- Christian Perrier <[email protected]> Sat, 17 Feb 2007 18:05:06 +0100
+
+lirc (0.8.0-9) unstable; urgency=low
+
+ * Rebuilding to fix and erroneous depend. (Closes: #393316, #393297, #393351)
+
+ -- Hector Garcia <[email protected]> Mon, 16 Oct 2006 11:18:21 +0200
+
+lirc (0.8.0-8) unstable; urgency=low
+
+ [ Hector Garcia ]
+ * Added 09_lirc_drivers_2.6.18_compatibility patch by Thomas Creutz
+ (Closes: #387715)
+ * Fixed 03_extra_files to support 2.6.17 and 2.6.18. By Thomas Creutz
+ (Closes: #387715, #378395)
+ * Updated cs.po by Miroslav Jezbera. (Closes: #389248)
+ * Added patch to lirc_i2c from upstream CVS. By Jim Heck
+ * Added patch 11_cheklib_fix to remove extra depends.
+ * Updated po/es.po
+
+ [ Amaya Rodrigo Sastre ]
+ * Use debian/compat instead of DH_COMPAT=4 in debian/rules. Thanks Guillem
+ Jover for pointing this out.
+
+ -- Amaya Rodrigo Sastre <[email protected]> Tue, 10 Oct 2006 10:31:48 +0200
+
+lirc (0.8.0-7) unstable; urgency=low
+
+ * Update french debconf template (Closes: #384619)
+ * Update logcheck file (Closes: #385025)
+
+ -- Julien Danjou <[email protected]> Mon, 18 Sep 2006 14:00:57 +0200
+
+lirc (0.8.0-6) unstable; urgency=low
+
+ [ Amaya Rodrigo Sastre ]
+ * Added debconf templates translation update:
+ - French (Closes: #370479).
+ - Portuguese (Closes: #373129).
+ - Dutch (Closes: #373828).
+ - Japanese (Closes: #379937).
+ * Use DH_COMPAT=4 in debian/rules. Got rid of debian/compat.
+ * Added debconf-updatepo to de debian/rules clean target (Closes: 372911).
+
+ [ Hector Garcia ]
+ * Updated debian/patches/04_man_pages.dpatch
+
+ -- Hector Garcia <[email protected]> Fri, 18 Aug 2006 22:23:46 +0200
+
+lirc (0.8.0-5) unstable; urgency=low
+
+ [ Aurelien Jarno ]
+ * debian/modules-source/debian/rules: simplify the call to
+ dpkg-architecture.
+ * debian/modules-source/debian/rules: take account of old dpkg-architecture
+ output. (Closes: #371050).
+ * debian/control: Recommends dpkg-dev (>= 1.13). Drop the recommends on
+ dpkg (>= 1.13).
+
+ [ Julien Danjou ]
+ * Don't create udev queue in init script (Closes: #370745)
+
+ -- Julien Danjou <[email protected]> Sun, 11 Jun 2006 14:18:07 +0200
+
+lirc (0.8.0-4) unstable; urgency=low
+
+ * Wait for devices to be up using udevsettle (Closes: #362217)
+ * Updated dutch po-debconf translation (Closes: #370218)
+ * Fix lintian warning about lirc and lirc-modules-source templates
+
+ -- Julien Danjou <[email protected]> Sun, 4 Jun 2006 16:44:13 +0200
+
+lirc (0.8.0-3) unstable; urgency=low
+
+ [ Cyril Lacoux ]
+ * Added 08_min_code_repeat.dpatch, to allow proper interpretation of repeat
+ signals for Creative RM-900 (Closes: #367521).
+
+ [ Aurelien Jarno ]
+ * Updated German debconf templates translation. Thanks to Franz Pletz
+ (Closes: #367874).
+
+ -- Julien Danjou <[email protected]> Tue, 23 May 2006 11:01:08 +0200
+
+lirc (0.8.0-2) unstable; urgency=low
+
+ [ Julien Danjou ]
+ * Include etc/lirc in lirc-modules-source.dirs (Closes: #342568)
+ * Fix compilation for non-root users (Closes: #297170)
+
+ [ Aurelien Jarno ]
+ * Updated German debconf templates translation. Thanks to Franz Pletz
+ (Closes: #367274).
+ * Fixed typos in debconf templates (Closes: #312498).
+
+ -- Julien Danjou <[email protected]> Tue, 16 May 2006 12:45:59 +0200
+
+lirc (0.8.0-1) experimental; urgency=low
+
+ [ Hector Garcia ]
+ * New upstream release. (Closes: #349641, #352573)
+ - Added support up to for 2.6.15 kernels.
+ - dvico driver is enabled by default (Closes: #348753)
+ * Removed 02_aclocal.dpatch, not needed anymore.
+ * Ported 04_man_pages to this release.
+ * Ported 01_irxevent.dpatch to this release.
+ * Changed with-drivers to userspace to build only the userspace drivers
+ and keep only the kernel-space on the modules package.
+ * Added 02_Makefile.in.dpatch, to prevent autotools from getting run on
+ every build.
+ * Recompile with driver=userspace (Closes: #352767, #351723, #348390)
+
+ [ Julien Danjou ]
+ * Add lirc_dev dependency to it87
+ * Fix build-depends on libsvga1-dev rather than svgalibg1-dev
+ (Closes: #350791)
+ * Add lircrcd
+ * Add a patch to allow some drivers to compile with linux 2.6.16
+ * Add patches from Cyril Lacoux <[email protected]>
+ - Compile all modules
+ - Support 2 flavors for it87 (standard/digimatrix)
+ - Improve debconf template
+ - module-assistant works fine
+ - Add missing files for gpio
+
+ [ Aurelien Jarno ]
+ * Added Swedish debconf templates translation. Thanks to Daniel Nylander
+ (Closes: #339544)
+ * Added Dutch debconf templates translation. Thanks to Kurt De Bree
+ (Closes: #364033)
+ * Enable lirc-svga on amd64.
+ * Added support for non-Linux architectures:
+ - Don't build-depends on libasound2-dev on hurd-i386, kfreebsd-i386 and
+ kfreebsd-amd64.
+ - Added 05_non_linux.dpatch, to make lirc buildable on non-Linux
+ architectures.
+ - Added 06_libtool_kfreebsd.dpatch, to update libtool for GNU/kFreeBSD.
+ * Changed lirc-modules-source from Arch: any to Arch: all.
+
+ -- Julien Danjou <[email protected]> Wed, 10 May 2006 13:40:57 +0200
+
+lirc (0.7.2-2) unstable; urgency=low
+