File: changelog

package info (click to toggle)
manpages-fr 3.07.1-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 20,492 kB
  • ctags: 5
  • sloc: makefile: 137
file content (1009 lines) | stat: -rw-r--r-- 35,006 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
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
manpages-fr (3.07.1-1) unstable; urgency=low

  * New upstream versions.
    + Translation statistics: 25921t12f278u
    + missing capabilities(7) and cpuset(7)
  * Fixed typo in sched_setscheduler(2). Closes: #498148
  * Fixed typo in proc(5). Closes: #495088

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Sun, 28 Sep 2008 16:43:01 +0200

manpages-fr (3.04.1-1) unstable; urgency=low

  * New upstream versions. 

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Fri, 25 Jul 2008 01:33:35 +0200

manpages-fr (3.03.1-1) unstable; urgency=low

  * New upstream versions. 

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Thu, 17 Jul 2008 23:43:29 +0200

manpages-fr (3.02.1-1) unstable; urgency=low

  * New upstream versions.

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Sun, 13 Jul 2008 18:24:06 +0200

manpages-fr (3.01.2-1) unstable; urgency=low

  * New upstream versions.

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Sun, 13 Jul 2008 17:59:44 +0200

manpages-fr (2.80.1-2) unstable; urgency=low

  * Add the TRANSLATION section in the random_r manpage.

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Thu, 12 Jun 2008 22:09:49 +0200

manpages-fr (2.80.1-1) unstable; urgency=low

  * New upstream versions.
  * po4a/*: Updated translations.
  * debian/control: Bump Standards-Version to 3.8.0 (no changes needed).

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Thu, 12 Jun 2008 21:19:16 +0200

manpages-fr (2.79.4-1) unstable; urgency=low

  * New upstream versions.
  * debian/rules: sort the link files.
  * debian/rules: create links to the final target. This avoid links to be
    ignored because the target is created later in the build process.
  * Harmonize translation of common strings. Remove obsolete translations.

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Fri, 02 May 2008 19:19:15 +0200

manpages-fr (2.79.3-1) unstable; urgency=low

  * New upstream versions. 

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Sat, 19 Apr 2008 14:20:26 +0200

manpages-fr (2.79.2-1) unstable; urgency=low

  * New upstream versions.

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Fri, 04 Apr 2008 23:22:29 +0200

manpages-fr (2.79.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New upstream versions
  * Add debian/watch file
  * debian/control: add Vcs information
  * Untranslate 'files' in the example of nsswitch.conf.5 (Closes: #469120)
  * Install manpages in utf-8

  [ Florentin Duneau ]
  * Update man3a-f
  * Fix iconv.3 translation (Closes: #464381)

  [ Simon Paillard ]
  * Update man4

  [ Nicolas François ]
  * Makefile: Make the build fail if po4a fails.
  * Finish to update all the translations to reach 100%
  * Change Maintainer to myself. Added Thomas Huriaux to the Uploaders.
    (With Thomas agreement).

 -- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net>  Tue, 25 Mar 2008 14:44:07 +0100

manpages-fr (2.67.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New upstream versions (Closes: #417596)
  * Bump Standards-Version (no changes needed)

  [ Julien Cristau ]
  * Typo fix in readahead(2).  Thanks, Samuel Thibault
  * Update man7.

  [ Florentin Duneau ]
  * Update man3a-f, man3g-m
  * Fix memmove translation (Closes: #447632)

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sat, 29 Dec 2007 11:32:35 +0100

manpages-fr (2.64.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New upstream versions
  * elf.5: Add verbatim of initial translation notice (Closes: #445452)

  [ Simon Paillard ]
  * Update man4

  [ Florentin Duneau ]
  * Update man3a-f, man3g-m

  [ Nicolas François ]
  * Update man2n-z with the help of Stephane Blondon
  * Update man2a-m, man3n-s, man3t-z, man5, man7a-l, man7m-z
  * Cleaning after upstream fixes (see #404364)

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sat, 13 Oct 2007 11:32:02 +0200

manpages-fr (2.62.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New upstream versions

  [ Julien Cristau ]
  * Update man2 from 2.55 to 2.61, man7 from 2.55 to 2.61.

  [ Nicolas François ]
  * Add --previous to the po4a calls, and update the build dependency of po4a
    to version 0.31
  * Update man3n-s and man3t-z

  [ Simon Paillard ]
  * Update man4

  [ Florentin Duneau ]
  * Update man3g-m

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sat, 01 Sep 2007 12:00:03 +0200

manpages-fr (2.57.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New upstream versions

  [ Julien Cristau ]
  * Update man2 and man7.

  [ Simon Paillard ]
  * Update man4

  [ Florentin Duneau ]
  * Update man3a-f and man3g-m

  [ Nicolas François ]
  * Update man3n-s and man3t-z as well as some part of the other sections

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sat, 14 Jul 2007 13:45:15 +0200

manpages-fr (2.45.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New upstream versions
  * Rework addenda

  [ Julien Cristau ]
  * Update man2a-m, man2n-z, man7a-l, man7m-z.

  [ Florentin Duneau ]
  * Update man3a-f, man3g-m.

  [ Nicolas François ]
  * Update man3n-s and man3t-z

  [ Simon Paillard ]
  * Update man4

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sat, 12 May 2007 17:28:49 +0200

manpages-fr (2.43.0-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New upstream version
  * Unfuzzy man3n-s
  * Proofread man3t-z
  * Move manpages-fr-dev and manpages-fr-extra from Depends to Suggests

  [ Julien Cristau ]
  * Update man2a-m, man2n-z, man7a-l and man7m-z.

  [ Florentin Duneau ]
  * atexit(3): Fix posix implementation. Thanks to Julien Cristau.
  * Update man3a-f, man3g-m.

  [ Simon Paillard ]
  * Update man4

  [ Nicolas François ]
  * Update man3n-s and man3t-z

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sun, 15 Apr 2007 16:27:23 +0200

manpages-fr (2.39.1-5) unstable; urgency=low

  * Various fixes, thanks to contributors of debian-l10n-french (especially
    Nicolas François)

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sat,  3 Feb 2007 12:58:09 +0100

manpages-fr (2.39.1-4) unstable; urgency=low

  [ Nicolas François ]
  * Do not translate parameters' name (`stream' in fwide.3).
  * accept(2): The O_ASYNC flag is not inherited from the listening socket.
  * gethostbyname(3): herror -> hstrerror
  * ip(7): IP_RECVTTL -> IP_TTL
  * socket(7): SO_RCVBUF -> SO_SNDBUF
  * tcp(7): missing parenthesis
  * tcp(7): tcp_fack is enabled by default, not disabled.
  * tcp(7): SOL_IP -> IPPROTO_IP
  * Check usage of E<.SM ...>, which should not be followed by dots. This
    fixes issues in rpc(3) and des_crypt(3).
  * Review based on the comparison of formatting tags (I<...>, B<...>, E<...>,
    etc) between English and French strings: man2a-m, man2n-z, man3a-f,
    man3g-m, man3t-z, man3n-s, man4, man5, man7a-l, man7m-z, man8.

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sun, 10 Dec 2006 22:34:10 +0100

manpages-fr (2.39.1-3) unstable; urgency=low

  [ Thomas Huriaux ]
  * Fix an inconsistency in scandir.3, thanks to Remi Denis-Courmont
     (Closes: #397971)
  * Fix a typo in networks.5, thanks to Kevin Baradon
     (Closes: #399262)
  * Add a missing space in adjtimex.2
  * Fix a typo in mkdtemp.3

  [ Nicolas François ]
  * Quick review of man2a-m, man2n-z, man3a-f, man3n-s, man3t-z,
    man4, man5.

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Sun, 26 Nov 2006 21:46:35 +0100

manpages-fr (2.39.1-2) unstable; urgency=low

  * New maintainer.
  * getopt.3: Typo.  Closes: #392208  Thanks Rémi Denis-Courmont.

 -- Thomas Huriaux <thomas.huriaux@gmail.com>  Tue, 10 Oct 2006 22:03:54 +0200

manpages-fr (2.39.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New original version: 2.39-1
    Manual pages are fully translated.

  [ Denis Barbier ]
  * Update man3n-s.
    The following translations are copied from man-pages-fr 2.39.0:
      program_invocation_name.3 ptsname.3 queue.3 rcmd.3 remquo.3
      resolver.3 rexec.3 rpmatch.3 scalb.3 scanf.3 sem_close.3
      sem_destroy.3 sem_getvalue.3 sem_init.3 sem_open.3 sem_post.3
      sem_unlink.3 sem_wait.3 setnetgrent.3 sigpause.3 sigset.3
      sigsetops.3 sigvec.3 sockatmark.3 stdin.3 strerror.3
      strftime.3 strtok.3

  [ Nicolas François ]
  * Profread man2a-m and man2n-z
  * Update man2a-m
    update based on man-pages-fr 2.39.0 for: mq_getsetattr.2, futimesat.2,
    fchownat.2, fchmodat.2, faccessat.2.
  * Update man2n-z
    Update based on man-pages-fr 2.39.0 for: nice.2, readlinkat.2,
    remap_file_pages.2, sync_file_range.2, vfork.2.
  * Update man7m-z
    Update based on man-pages-fr 2.39.0 for: standards.7, tcp.7, uri.7.
  * Update man7a-l

  [ Jean-Luc Coulon]
  * Update man5

 -- Denis Barbier <barbier@debian.org>  Sun, 10 Sep 2006 00:08:48 +0200

manpages-fr (2.38.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * New original version: 2.38-1
  * New version of po4a:
    - build-depends on 0.27.2
    - fully rebuild PO files to take new changes in account
    - add newly supported manpages (man.7, rpc.3, xdr.3, remap_file_pages.2)

  [ Julien Cristau ]
  * Update man2a-m, man2n-z, man7a-l, man7m-z.

  [ Denis Barbier ]
  * Update man3t-z

 -- Denis Barbier <barbier@debian.org>  Sun, 13 Aug 2006 13:59:16 +0200

manpages-fr (2.34.1-2) unstable; urgency=low

  [ Julien Cristau ]
  * Update man2a-m, man7a-l and man7m-z.

  [ Florentin Duneau ]
  * Fix no-break-space in man3a-f and man3g-m.

  [ Simon Paillard ]
  * Update man4.

 -- Denis Barbier <barbier@debian.org>  Tue, 18 Jul 2006 22:32:50 +0200

manpages-fr (2.34.1-1) unstable; urgency=low

  [ Denis Barbier ]
  * Update man3g-m and man3n-s.

  [ Thomas Huriaux ]
  * New original version: 2.34-1
  * Build-Depends on po4a 0.26 and integrate newly supported manpages
  * Split man7 into man7a-l and man7m-z

  [ Julien Cristau ]
  * Update man2n-z.

  [ Florentin Duneau ]
  * Update man3a-f.

  [ Simon Paillard ]
  * Update man4.

 -- Denis Barbier <barbier@debian.org>  Thu, 13 Jul 2006 23:42:39 +0200

manpages-fr (2.33.2-2) experimental; urgency=low

  [ Denis Barbier ]
  * Fix packaging, manpages-fr-dev was broken.
  * man2n-z updated by Julien Cristau.

 -- Denis Barbier <barbier@debian.org>  Mon, 26 Jun 2006 22:34:06 +0200

manpages-fr (2.33.2-1) experimental; urgency=low

  [ Thomas Huriaux ]
  * New original version
  * Add versioned Build-Depends on po4a

  [ Denis Barbier ]
  * Split manpages-fr into two source packages:
    + manpages-fr:
      The two binary packages manpages-fr and manpages-fr-dev contain
      respective translations of manpages and manpages-dev packages.
    + manpages-fr-extra:
      All other manual pages which were previously shipped by manpages-fr.

 -- Denis Barbier <barbier@debian.org>  Wed,  7 Jun 2006 23:40:06 +0200

manpages-fr (2.31.1-1) unstable; urgency=low

  [ Denis Barbier ]
  * Fork man-pages-fr.  Translations are now managed by po4a and maintained
    by Debian translators on our debian-l10n-french mailing list.
    Many pages have already been updated to manpages 2.31, including
    waitpid.2.  Closes: #350886.  Thanks Samuel Thibault.
    Current statistics are roughly 75% strings translated.
  * debian/control: Add Build-Depends: po4a.  Closes: #370130.  Thanks
    Daniel Schepler.

  [ Thomas Huriaux ]
  * Sync coreutils translations with 5.96
  * Add new translations:
    fsck.minix.8, thanks to Jean-Luc Coulon
    setterm.1, thanks to Philippe Piette

 -- Denis Barbier <barbier@debian.org>  Tue, 16 May 2006 01:13:13 +0200

manpages-fr (1.69.1-1) unstable; urgency=low

  [ Thomas Huriaux ]
  * Add new translations for programs which are modified in Debian:
    blockdev.8, thanks to Yves Rutschle;
    cfdisk.8, w.procps.1, thanks to Jean-Luc Coulon;
    mcookie.1, dmesg.8, thanks to Julien Cristau;
    skill.1, thanks to Jean-Baka Domelevo-Entfellner;
    mkrescue.8, thanks to Luc Froidefond;
    namei.1, fdformat.8, thanks to Thomas Huriaux.
  * Move exportfs.8 translation into a complete infrastructure for nfs-utils
  * Remove the workaround needed to use dh_installman with manpages
    containing a dot, as this problem has been fixed in debhelper 5.0.35.
    Bump version in debian/control.

  [ Denis Barbier ]
  * New upstream release.
  * debian/control:  Bump Standards-Version: 3.7.2, no changes are needed

 -- Denis Barbier <barbier@debian.org>  Sat, 13 May 2006 23:34:14 +0200

manpages-fr (1.67.1-1) unstable; urgency=low

  [ Denis Barbier ]
  * New upstream release.
  * man3/scanf.3: Typos.  Closes: #362260.  Thanks Filipus Klutiero.
  * man8/ld.so.8: Fix description of LD_LIBRARY_PATH and LD_AOUT_LIBRARY_PATH.
    Closes: #363594.  Thanks Vincent Ricard.
  * debian/control:  Bump Standards-Version: 3.7.0, no changes are needed
  * debian/control:  As reported by lintian, move debhelper dependency on
    Build-Depends.

  [ Thomas Huriaux ]
  * Add new translations for programs which are modified in Debian.
    Thanks to contributors from debian-l10n-french:
      crontab.1 xargs.1 kill.1 pgrep.1 pmap.1 pwdx.1 tload.1 uptime.1
      pkill.1 tar.1 arch.1 crontab.5 sysctl.conf.5 cron.8 sysctl.8 vmstat.8
      diff.1 diff3.1 cmp.1 sdiff.1
    Closes: #363135
  * Fix translation of grep manpage, thanks to Raphael Hertzog.
    Closes: #364133

 -- Denis Barbier <barbier@debian.org>  Wed, 10 May 2006 00:08:47 +0200

manpages-fr (1.67.0-5) unstable; urgency=low

  [ Thomas Huriaux ]
  * Add new translations for programs which are modified in Debian.
    Thanks to contributors from debian-l10n-french:
      at.1 atq.1 atrm.1 batch.1 locate.1 updatedb.1
      at.allow.5 at.deny.5 locatedb.5
      atd.8 activate.8 keytab-lilo.8 liloconfig.8 lilo_find_mbr.8 update-lilo.8

 -- Denis Barbier <barbier@debian.org>  Wed, 12 Apr 2006 21:58:44 +0200

manpages-fr (1.67.0-4) unstable; urgency=low

  [ Thomas Huriaux ]
  * Add more updated coreutils manual pages.  Thanks to many contributors
    from debian-l10n-french:
      nice.1 pr.1 pwd.1 runcon.1 sleep.1 split.1 sum.1 sync.1 tac.1
      tail.1 tee.1 test.1 touch.1 tr.1 true.1 tsort.1 tty.1 uname.1
      unexpand.1 uniq.1 unlink.1 users.1 wc.1 who.1 whoami.1 yes.1
  * Update to coreutils 5.94-1

  [ Denis Barbier ]
  * man1/intro.1: Fix path to translated HOWTOs.  Thanks Pierre Machard.
    Closes: #353972

 -- Denis Barbier <barbier@debian.org>  Sat, 11 Mar 2006 22:49:50 +0100

manpages-fr (1.67.0-3) unstable; urgency=low

  [ Thomas Huriaux ]
  * Add more coreutils manual pages.  Thanks to many contributors from
    debian-l10n-french:
      id.1 install.1 join.1 link.1 ln.1 logname.1 ls.1 md5sum.1
      md5sum.textutils.1 mkdir.1 mkfifo.1 mknod.1 mv.1 nl.1 nohup.1
      od.1 paste.1 pathchk.1 pinky.1 printenv.1 printf.1 ptx.1
      readlink.1 rm.1 rmdir.1 seq.1 sha1sum.1 sort.1 shred.1 stat.1
      stty.1 vdir.1

  [ Denis Barbier ]
  * man3/mbstowcs.3: Fix the description of the third parameter.  Closes: #352888.
    Thanks Rémi Denis-Courmont.

 -- Denis Barbier <barbier@debian.org>  Sun, 19 Feb 2006 22:22:13 +0100

manpages-fr (1.67.0-2) unstable; urgency=low

  * This package is now maintained on svn.debian.org
  * Use quilt to manage patches.
  * Coreutils manual pages are translated into French with po4a. Thomas Huriaux
    collects translations from debian-l10n-french contributors.
    The following manual pages have been updated:
      basename.1 cat.1 chcon.1 chgrp.1 chmod.1 chown.1 cksum.1 comm.1
      cp.1 csplit.1 cut.1 date.1 dd.1 df.1 dir.1 dircolors.1 dirname.1
      du.1 echo.1 env.1 expand.1 expr.1 factor.1 false.1 fmt.1 fold.1
      groups.1 head.1 hostid.1
      chroot.8
  * exportfs.8: New translation, by Sylvain Cherrier.

 -- Denis Barbier <barbier@debian.org>  Sun,  5 Feb 2006 17:34:32 +0100

manpages-fr (1.67.0-1) unstable; urgency=low

  * New upstream release.

 -- Denis Barbier <barbier@debian.org>  Thu, 29 Dec 2005 01:33:21 +0100

manpages-fr (1.66.0-1) unstable; urgency=low

  * New upstream release.
  * Minor changes in packaging to consider manual pages from packages
    with priority required or important rather than of section base.

 -- Denis Barbier <barbier@debian.org>  Thu, 29 Dec 2005 00:22:00 +0100

manpages-fr (1.64.0-3) unstable; urgency=low

  * man1/hostid.1: Replace current translation by a new one generated
    by help2man.  Closes: #339499. Thanks Farzad FARID.
  * man1/tr.1: Replace current translation by a new one generated
    by help2man.  Closes: #337216. Thanks Filipus Klutiero.
  * man2/poll.2: Typos.  Closes: #338558. Thanks Benoît Dejean.
  * man3/pthread_mutexattr_init.3thr: Rename pthread_mutexattr_[sg]ettype_np
    to pthread_mutexattr_[sg]ettype.  Closes: #337456.  Thanks Samuel Thibault.
  * man3/strftime.3 man3/strptime.3: Add missing links in SEE ALSO section.
    Closes: #339765.  Thanks Samuel Thibault.
  * man8/ld.so.8: Typo.  Thanks Mohammed Adnène Trojette.

 -- Denis Barbier <barbier@debian.org>  Wed,  7 Dec 2005 23:35:02 +0100

manpages-fr (1.64.0-2) unstable; urgency=low

  * man1/join.1: Default field separator is a dot, not a colon.
    Thanks Marc Chantreux.  Closes: #329790
  * man3/getcwd.3: Fix wrong description for some corner case.
    Thanks Benoît Dejean.  Closes: #334826
  * man1/dnsdomainname.1 man1/hostname.1 man1/iconv.1 man8/halt.8
    man8/poweroff.8 man8/rdev.8 man8/reboot.8 man8/swapon.8 man8/tune2fs.8:
    Copy updated translations from traducmanfr.
  * man5/modules.conf.5: Drop this translation which is too outdated.
  * debian/compat: Bump debhelper compat level to 4.

 -- Denis Barbier <barbier@debian.org>  Sat, 22 Oct 2005 22:13:22 +0200

manpages-fr (1.64.0-1) unstable; urgency=low

  * New upstream version.
  * debian/rules: upstream translations are now UTF-8 encoded, they
    are converted into ISO-8859-1 when building the package.
  * man3/alloca.3: Fix description of failing allocations.  Closes: #325896
    Thanks Benoît Dejean.
  * man8/mount.8: Typo.  Closes: #324980  Thanks Pierre Machard.
  * man1/uname.1: Update flags to coreutils 5.2.1.  Closes: #325552
    Thanks Jean-Luc Coulon
  * debian/watch: update upstream URL.

 -- Denis Barbier <barbier@debian.org>  Sun,  4 Sep 2005 00:24:29 +0200

manpages-fr (1.58.1-4) unstable; urgency=low

  * man1/split.1: Fix typo.
  * man3/swab.3: Fix 3rd argument type in synopsis.  Closes: #308676
    Thanks Thomas Girard
  * man2/sendfile.2: Fix return value type in synopsis.
    Thanks Benoît Dejean
  * Fix lots of typos, many thanks to blurgk.  Closes: #321234
    Modified files:
     bash.1 intro.1
     fcntl.2 select_tut.2 sigaction.2 signal.2 sysctl.2 times.2
     gethostbyname.3 index.3 Index.3 malloc.3 memmem.3 mtrace.3 netlink.3
     pthread_atfork.3thr pthread_mutex_init.3thr pthread_sigmask.3thr
     rand.3 scanf.3 strchr.3 strpbrk.3 strstr.3 syslog.3 wcschr.3
     wcscspn.3 wcsncmp.3 wcspbrk.3 wcsrchr.3 wcsspn.3 wcsstr.3 wmemchr.3
     epoll.4
     proc.5
     boot.7 tcp.7
     mount.8

 -- Denis Barbier <barbier@debian.org>  Wed, 10 Aug 2005 23:40:15 +0200

manpages-fr (1.58.1-3) unstable; urgency=low

  * man2/stat.2: Proofread.  Closes: #306437  Thanks Olivier Guilyardi.

 -- Denis Barbier <barbier@debian.org>  Thu, 28 Apr 2005 22:46:08 +0200

manpages-fr (1.58.1-2) unstable; urgency=low

  * man1/last.1: Fix typo.  Closes: #305685 Thanks Filipus Klutiero
  * man1/cp.1: Replace current translation by output of
    "help2man -L fr_FR cp" after manual editing.  Closes: #292763
    Thanks Nicolas STRANSKY.
  * man7/locale.7: Improve translation.
  * man2/sched_setaffinity.2 man3/basename.3 man3/ccos.3: The first .SH
    section was missing.
  * man8/sync.8 is now shipped by manpages-fr since English version
    is found in the manpages package.

 -- Denis Barbier <barbier@debian.org>  Tue, 26 Apr 2005 00:30:30 +0200

manpages-fr (1.58.1-1) unstable; urgency=low

  * New upstream version.
    This version includes most of Debian patches, plus fixes in
     pathchk.1 tr.1
     accept.2 getsockopt.2 kill.2 open.2 pause.2 select_tut.2 sync.2 wait4.2
     alloca.3 cabs.3 fclose.3 getopt.3 malloc.3 setbuf.3 strsep.3
     epoll.4 initrd.4 random.4
     shells.5
    New man pages:
     clearerr_unlocked.3 conj.3
     intro.6
     iso-8859-2.7 iso-8859-7.7 iso-8859-9.7 iso-8859-16.7
  * Project page has moved to http://www.blaess.fr/christophe/man/
    Update debian/copyright and debian/watch accordingly.
  * man3/ttyslot.3:  Fix typo.  Closes: #285227 Thanks Nicolas Bonifas
  * man1/bash.1 man2/open.2 man4/epoll.4 man5/lilo.conf.5
    man6/intro.6 man8/mount.8:  Typos

 -- Denis Barbier <barbier@debian.org>  Mon, 27 Dec 2004 00:11:48 +0100

manpages-fr (1.58.0-8) unstable; urgency=low

  * man3/setbuf.3:  Fix description of return values.  Closes: #284640
    Thanks Frédéric Boiteux.

 -- Denis Barbier <barbier@debian.org>  Wed,  8 Dec 2004 21:06:15 +0100

manpages-fr (1.58.0-7) unstable; urgency=low

  * Fix the --noleaf option in man1/find.1; thanks Cyril Olivier MARTIN.
  * debian/copyright: Minor changes
  * debian/watch: New file

 -- Denis Barbier <barbier@debian.org>  Sat, 13 Nov 2004 22:01:07 +0100

manpages-fr (1.58.0-6) unstable; urgency=low

  * Urgency set to high to reach sarge, this package only contains
    manual pages and causes no conflicts.
  * Include more translations from
      http://www.delafond.org/traducmanfr/mansupfr.tar.bz2
    initscript.5 inittab.5 modules.conf.5 sysctl.conf.5
    intro.6
    term.7
    badblocks.8 cfdisk.8 chat.8 mkfs.8 mkfs.minix.8 mklost+found.8
    pidof.8 pppdump.8 pppstats.8 ramsize.8 rdev.8 rootflags.8
    shutdown.8 swapoff.8 swapon.8 sysctl.8 vidmode.8 vmstat.8
    Closes: Bug#271704  Thanks Samuel Thibault

 -- Denis Barbier <barbier@debian.org>  Tue, 19 Oct 2004 00:09:29 +0200

manpages-fr (1.58.0-5) unstable; urgency=high

  * Urgency set to high to reach sarge, this package only contains
    manual pages and causes no conflicts.
  * Fix man3/iconv.3  Closes: Bug#273349  Thanks Samuel Thibault
  * man8/ld.so.8:  Many spelling fixes, and update translation.
    Closes: Bug#270289  Thanks Remi Moyen
  * man1/find.1 man1/ls.1 man1/mkdir.1 man1/mkfifo.1 man1/rmdir.1:
    Replace section number 1L by 1.
  * Include translations from
      http://www.delafond.org/traducmanfr/mansupfr.tar.bz2
    The same rules apply for these pages; in order to avoid conflicts
    with other packages, only manuel pages shipped by manpages,
    manpages-dev and packages in base without translations are shipped.
    The following translations are included:
      bashbug.1 clear.1 factor.1 free.1 gettext.1 gunzip.1 gzexe.1
      gzip.1 hostname.1 iconv.1 last.1 lsattr.1 mesg.1 ptx.1 seq.1
      sync.1 tsort.1 uptime.1 watch.1 xargs.1 zcat.1 zcmp.1 zdiff.1
      zforce.1 zgrep.1 zmore.1 znew.1
    Minor changes were made in some manual pages, a patch is available
    in the source package, see the pagesdeman.patch file.
    Thanks to Gérard Delafond and all translators for providing these
    translations.

 -- Denis Barbier <barbier@debian.org>  Mon, 11 Oct 2004 21:41:00 +0200

manpages-fr (1.58.0-4) unstable; urgency=medium

  * Provide a symlink environ(5) -> environ(7) because translated
    man page is not displayed otherwise.
  * Fix typos in man7/charsets.7
  * Translate fixes to man7/man.7 and man5/hosts.5 applied in
    manpages 1.67-2
  * Fix man8/ldconfig.8  Closes: Bug#265015  Thanks Remi Moyen
  * debian/control: Adds man-db as an alternative to man-browser in
    order to comply with policy 7.4

 -- Denis Barbier <barbier@debian.org>  Tue, 24 Aug 2004 23:09:48 +0200

manpages-fr (1.58.0-3) unstable; urgency=low

  * Finally ship translated pthread_* man pages, it is unlikely that
    glibc-doc will include them in sarge.  Closes: Bug#168360
  * Add missing symlinks
    + man1:
       at.1 -> atq.1 atrm.1 batch.1
       grep.1 -> egrep.1 fgrep.1 rgrep.1
    + man2:
       select.2 -> FD_CLR.2 FD_ISSET.2 FD_SET.2 FD_ZERO.2
       unimplemented.2 -> ftime.2 profil.2 putmsg.2 ulimit.2
    + man3:
       encrypt.3 -> encrypt_r.3 setkey_r.3
       ether_aton.3 -> ether_hosttonn.3
       sincos.3 -> sincosf.3 sincosl.3
       sinh.3 -> sinhf.3 sinhl.3
       stdarg.3 -> va_copy.3
       tzset.3 -> daylight.3 timezone.3 tzname.3
    + man7:
       icmp.7 -> IPPROTO_ICMP.7
       ipv6.7 -> PF_INET6.7
       netlink.7 -> PF_NETLINK.7
       packet.7 -> PF_PACKET.7
       raw.7 -> SOCK_RAW.7
       rtnetlink.7 -> NETLINK_ROUTE.7
       units.7 -> kibi.7 kilo.7 mebi.7 mega.7 gibi.7 giga.7
       unix.7 -> AF_LOCAL.7 AF_UNIX.7 PF_LOCAL.7 PF_UNIX.7
       x25.7 -> PF_X25.7
  * Some symlinks were present in the source tarball, but removed during
    the build process because they had no English counterpart.  They
    are no more removed.
    + man2:
       klogctl.2 vm86old.2
    + man3:
       CIRCLEQ_ENTRY.3 CIRCLEQ_HEAD.3 CIRCLEQ_INIT.3
       CIRCLEQ_INSERT_AFTER.3 CIRCLEQ_INSERT_BEFORE.3
       CIRCLEQ_INSERT_HEAD.3 CIRCLEQ_INSERT_TAIL.3
       CIRCLEQ_REMOVE.3 LIST_ENTRY.3 LIST_HEAD.3
       LIST_INIT.3 LIST_INSERT_AFTER.3 LIST_INSERT_HEAD.3
       LIST_REMOVE.3 NLMSG_ALIGN.3 NLMSG_DATA.3
       NLMSG_LENGTH.3 NLMSG_NEXT.3 NLMSG_OK.3 NLMSG_PAYLOAD.3
       NLMSG_SPACE.3 TAILQ_ENTRY.3 TAILQ_HEAD.3 TAILQ_INIT.3
       TAILQ_INSERT_AFTER.3 TAILQ_INSERT_HEAD.3 TAILQ_INSERT_TAIL.3
       TAILQ_REMOVE.3 __after_morecore_hook.3 __free_hook.3
       __malloc_initialize_hook.3 __memalign_hook.  cacosf.3
       cacosl.3 cosf.3 cosl.3 frexpf.3 frexpl.3 mpool_close.3
       mpool_filter.3 mpool_get.3 mpool_new.3 mpool_open.3
       mpool_put.3 mpool_sync.3 tanhf.3 tanhl.3
  * Fix __realloc_hook.3 file name
  * Fix nroff formatting in
     man1/killall.1 man1/stty.1 man2/getrlimit.2 man2/sched_setscheduler.2
     man3/envz_add.3 man3/shm_unlink.3 man7/signal.7
  * Fix typos in
     man2/signal.2 man3/exec.3 man3/getopt.3 man3/getrpcent.3
  * Add a MANIFEST file in the source package to keep track of shipped
    man pages.

 -- Denis Barbier <barbier@debian.org>  Sun, 30 Nov 2003 21:20:39 +0100

manpages-fr (1.58.0-2) unstable; urgency=low

  * Fix description of return value in strsep(3).
    Closes: Bug#215078  Thanks Fred Boiteux.

 -- Denis Barbier <barbier@debian.org>  Thu, 30 Oct 2003 22:07:18 +0100

manpages-fr (1.58.0-1) unstable; urgency=low

  Julien Louis:
  - New upstream release.  Version numbering has changed, it now
    reflects the version upon which these translations are based.
  Denis Barbier:
  - Regenerate the list of original man pages against manpages 1.60-2.
  - ps.1 was removed in this release.  As it was marked as obsolete in
    #139011, it is also removed from the Debian package.
    (Closes: Bug#139011)
  - All translations shipped in manpages-fr contain a note by Christophe
    Blaess telling that he reviewed them in July 2003, except bash.1,
    find.1, grep.1 and mailaddr.7.  Only the first one seems to be
    outdated, so flag it.
  - Remove conjf.3 and conjl.3 since conj.3 is missing
  - Dh_installman does not like trailing spaces in .so lines, so clean
    up man3/c*.3
  - Bump Standards-Version: 3.6.1, no changes needed except recoding
    this changelog into UTF-8.

 -- Denis Barbier <barbier@debian.org>  Thu,  4 Sep 2003 23:08:00 +0200

manpages-fr (0.9.8-3) unstable; urgency=low

  * Fix typos in catopen(3), printf(3), regex(3), strsep(3), wcsnrtombs(3)
    and pppd(8).  These fixes were part of #194725, but I missed them.
    Many thanks to Xavier Venient for pointing my mistake out.
  * The man7/outdated.inc.7 fragment can be included to add a warning
    into outdated translated man pages, explaining how to display original
    ones.
  * Flag ps(1) as obsolete.

 -- Denis Barbier <barbier@debian.org>  Wed,  9 Jul 2003 23:04:12 +0200

manpages-fr (0.9.8-2) unstable; urgency=low

  * Fix typo in umask(2).  Thanks to Mickael Marchand (Closes: #198227)
  * Fix typo in fread(3).  Thanks to Xavier Venient (Closes: #194725)
  * Fix typo in man(7)
  * Update grep(1).  Thanks to Ludovic Rousseau (Closes: #115730)
  * debian/control:  Bump Standards-Version 3.5.10  (no changes needed)
  * debian/control:  Add a versioned build-dependency against debhelper

 -- Denis Barbier <barbier@debian.org>  Fri, 27 Jun 2003 00:03:43 +0200

manpages-fr (0.9.8-1) unstable; urgency=low

  * New upstream version

 -- Denis Barbier <barbier@debian.org>  Sun,  9 Mar 2003 23:23:27 +0100

manpages-fr (0.9.7-3) unstable; urgency=low

  * Fix typo in accept(2), reported by Julien Danjou (Closes: #182346)

 -- Denis Barbier <barbier@debian.org>  Mon, 24 Feb 2003 23:12:47 +0100

manpages-fr (0.9.7-2) unstable; urgency=low

  * Many developers of packages from base dislike shipping translated
    manpages in order not to bloat the base system.  I assume that if
    such a package does not ship translated manpages, this is
    deliberate and these manpages can be shipped by manpages-fr.
  * Add pppconfig.8  (Closes: #92202)
    Thanks Bruno Treguier.

 -- Denis Barbier <barbier@debian.org>  Fri,  3 Jan 2003 23:43:57 +0100

manpages-fr (0.9.7-1) unstable; urgency=low

  * New upstream release.
  * Bump Standards-Version: 3.5.8

 -- Denis Barbier <barbier@debian.org>  Sat,  7 Dec 2002 18:02:49 +0100

manpages-fr (0.9.5-2) unstable; urgency=low

  Julien Louis:
    - Add undocumented(7)   (Closes: #156477)
  Denis Barbier:
    - Change priority from extra to optional to prevent override disparity
    - Set Suggests: man-browser
    - Add translations of the devel man pages shipped in manpages-dev
    - Fix typos in man3/pthread_mutex_init.3thr (Closes: #160962)
      and man3/difftime.3 (bugreport 135227 reassigned to manpages-dev)
    - Add lintian overrides because upstream changelog is written in
      French and named changements.gz

 -- Denis Barbier <barbier@debian.org>  Wed,  6 Nov 2002 08:15:45 +0100

manpages-fr (0.9.5-1) unstable; urgency=low

  * New upstream release.  (Closes: #161884)
  * New maintainer, with permission from Vincent.
    A public CVS repository has been set up to help collaborative efforts on
       http://cvsweb.tuxfamily.org/cvs/?cvsroot=manpages-fr
  * New or updated translated manpages.  (Closes: #97466)
  * Only provide translations of man pages found in the manpages package.
    (Closes: #154796, #156222, #162077, #48562, #154701)
    We will see later how to reintroduce translated man pages without
    conflicting with other packages.
  * Move environ(5) to environ(7) (Closes: #140768)
  * Remove links from fr_XX.
  * Converted to debhelper.

 -- Denis Barbier <barbier@debian.org>  Wed,  6 Nov 2002 00:42:17 +0100

manpages-fr (0.9.3-3) unstable; urgency=low

  * remove lpq manpage.
    (Closes: #154796, #156222).

 -- Vincent Renardias <vincent@debian.org>  Mon, 12 Aug 2002 14:06:21 +0200

manpages-fr (0.9.3-2) unstable; urgency=low

  * 347 new/updated pages from Gérard Delafond.

 -- Vincent Renardias <vincent@debian.org>  Fri,  8 Mar 2002 19:30:20 +0100

manpages-fr (0.9.3-1) unstable; urgency=low

  * New upstream version.
  * New upstream package location.

 -- Vincent Renardias <vincent@debian.org>  Thu, 21 Feb 2002 11:26:39 +0100

manpages-fr (0.9-2) unstable; urgency=low

  * Fix another dangling symlink.
    (Closes: #125912).

 -- Vincent Renardias <vincent@debian.org>  Thu, 21 Feb 2002 11:01:20 +0100

manpages-fr (0.9-1) unstable; urgency=low

  * New upstream version (~200 additional pages).
  * Remove extra Index files (Closes: #65669).

 -- Vincent Renardias <vincent@debian.org>  Thu,  6 Dec 2001 18:15:08 +0100

manpages-fr (0.8-1) frozen unstable; urgency=low

  * New upstream version (fixes + more translations)
    closes: #39206: /usr/man/fr_FR also used by netbase thus manpages-fr does not install properly
    (That bug should have been flagged as important BTW)
    closes: #56537: manpages should be in /usr/share/man/ not /usr/man (it seems..) 
    (also partly fixes bug #48562)

 -- Vincent Renardias <vincent@debian.org>  Sat, 25 Mar 2000 12:46:01 +0100

manpages-fr (0.7-1) unstable; urgency=low

  * New upstream version: Many new translated pages.

 -- Vincent Renardias <vincent@waw.com>  Wed,  2 Jun 1999 12:38:59 +0200

manpages-fr (0.6-2) unstable; urgency=low

  * lintian clean:
    - no more lengthy symlinks.

 -- Vincent Renardias <vincent@waw.com>  Mon, 25 Jan 1999 05:42:31 +0100

manpages-fr (0.6-1) unstable; urgency=low

  * New upstream version.

 -- Vincent Renardias <vincent@waw.com>  Wed, 30 Dec 1998 20:02:30 +0100

manpages-fr (0.5-3) unstable; urgency=low

  * Now only "Suggests:" 'man-db | man' (Fix bug #22483).

 -- Vincent Renardias <vincent@waw.com>  Mon, 18 May 1998 20:22:39 +0200

manpages-fr (0.5-2) unstable; urgency=low

  * Lintian Bug Report #19365:
  * Update to standards 2.4.0.0.
  * fix md5sums, copyright file. 
  * Fix #15893: translation buglet.

 -- Vincent Renardias <vincent@waw.com>  Sat, 14 Mar 1998 20:03:18 +0100

manpages-fr (0.5-1) unstable; urgency=low

  * Upstream upgrade.
  * Many new translation including pages from section 1.

 -- Vincent Renardias <vincent@waw.com>  Sat, 8 Nov 1997 12:14:48 +0100

manpages-fr (0.4-1) unstable; urgency=low

  * Upstream upgrade (#11527).
  * Many new translation including pages from section 1.

 -- Vincent Renardias <vincent@waw.com>  Wed, 30 Jul 1997 21:27:21 +0200

manpages-fr (0.3-2) unstable; urgency=low

  * Cosmetic change (fix Bug #9635).

 -- Vincent Renardias <vincent@waw.com>  Fri, 9 May 1997 15:32:49 +0200

manpages-fr (0.3-1) unstable; urgency=low

  * Upstream upgrade (73 new pages).

 -- Vincent Renardias <vincent@waw.com>  Sun, 27 Apr 1997 16:33:24 +0200

manpages-fr (0.2-2) unstable; urgency=low

  * Updated dependency to 'man-db|man'.

 -- Vincent Renardias <vincent@waw.com>  Mon, 21 Apr 1997 15:17:23 +0200

manpages-fr (0.2-1) unstable; urgency=low

  * Upstream upgrade (translation on section 3 added + many other updates).

 -- Vincent Renardias <vincent@waw.com>  Sat, 19 Apr 1997 13:16:27 +0200

manpages-fr (0.1-6) unstable; urgency=low

  * Added cfdisk.8 manpage.

 -- Vincent Renardias <vincent@waw.com>  Thu, 10 Apr 1997 21:03:10 +0200

manpages-fr (0.1-5) unstable; urgency=low

  * Removed postinst script. (Corrects Bug #5223)

 -- Vincent Renardias <vincent@waw.com>  Tue, 17 Dec 1996 22:03:30 +0100 

manpages-fr (0.1-4) unstable; urgency=low

  * Corrected bad example in accept(2).   (Corrects Bug #5835)

 -- Vincent Renardias <vincent@waw.com>  Sat, 14 Dec 1996 04:13:33 +0100

manpages-fr (0.1-3) frozen unstable; urgency=low

  * Changed some incorrect paths in /usr/doc. 
  (Corrects Bug #5748)

 -- Vincent Renardias <vincent@waw.com>  Thu, 5 Dec 1996 02:25:55 +0100

manpages-fr (0.1-2) unstable; urgency=low

  * Bug #5223 correction part 1 : 
  Added fr_CA, fr_CH, fr_BE, fr_LU aliases.
  * Changed debian/rules to follow debstd evolution.

 -- Vincent Renardias <vincent@waw.com>  Sat, 2 Nov 1996 02:50:23 +0100

manpages-fr (0.1-1) unstable; urgency=low

  * Initial Release.

 -- Vincent Renardias <vincent@waw.com>  Wed, 23 Oct 1996 00:54:40 +0200