1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
|
manpages-fr-extra (20151231+nmu1) unstable; urgency=medium
* Non-maintainer upload.
* Disable links in d/control to obsolete alioth repository
* Remove Nicolas FRANCOIS (Nekral) as maintainer. Thanks for your work!
(Closes: #832383)
* Remove Simon Paillard as uploader. Thanks for your work!
(Closes: #873267)
* Set David Prévot as maintainer, as he's done the last upload
and is still active within Debian.
* Use debhelper-compat 12
* Disable override_dh* targets
* Convert package stanza to a transitional package
- Move manpages-fr and manpages-fr-dev to Depends
- Turn all Makefile targets into a no-operation
- Use section: oldlibs instead of doc
- Fix Lintian warning: Remove d/source/options
* Update Standards-Version to 4.5.0
-- Dr. Tobias Quathamer <toddy@debian.org> Fri, 10 Apr 2020 16:52:51 +0200
manpages-fr-extra (20151231) unstable; urgency=medium
[ David Prévot ]
* bash: Sync with 4.3-14
* coreutil: Sync with 8.23-4
* cron: Sync with 3.0pl1-128
* diffutils: Sync with 1:3.3-2
* dosfstools: Sync with 3.0.28-2
* e2fsprogs: Sync with 1.42.13-1
* findutils: Sync with 4.4.2-10
* glibc: Sync with 2.21-6
* grep: Sync with 2.20-4.1
* openssl:
- Sync with 1.0.2c-1
- New pages:
+ ASN1_TIME_set.3ssl
+ d2i_CMS_ContentInfo.3ssl
+ d2i_ECPKParameters.3ssl
+ d2i_ECPrivateKey.3ssl
+ OPENSSL_instrument_bus.3ssl
+ SSL_CTX_add1_chain_cert.3ssl
+ SSL_CTX_set1_curves.3ssl
+ SSL_CTX_set1_verify_cert_store.3ssl
+ SSL_CTX_set_cert_cb.3ssl
+ SSL_CTX_set_custom_cli_ext.3ssl
+ SSL_CTX_set_read_ahead.3ssl
+ SSL_CTX_use_serverinfo.3ssl
+ SSLeay_version.3ssl
+ X509_check_host.3ssl
- New upstream pages not yet translated:
+ ec.3ssl
+ EC_GFp_simple_method.3ssl
+ EC_GROUP_copy.3ssl
+ EC_GROUP_new.3ssl
+ EC_KEY_new.3ssl
+ EC_POINT_add.3ssl
+ EC_POINT_new.3ssl
+ SSL_CONF_cmd_argv.3ssl
+ SSL_CONF_cmd.3ssl
+ SSL_CONF_CTX_new.3ssl
+ SSL_CONF_CTX_set1_prefix.3ssl
+ SSL_CONF_CTX_set_flags.3ssl
+ SSL_CONF_CTX_set_ssl_ctx.3ssl
- Update asn1
- Update ciphers
- Update d2i
- Update dh
- Update dsa
- Update openssl
- Update pkey
- Update smime
* procps: Sync with 2:3.3.9-9
* reiser4progs: Sync with 1.1.0-1.1
* reiserfsprogs: Sync with 1:3.6.24-3.1
* sysvinit: Sync with 2.88dsf-59.2
* util-linux:
- Sync with 2.26.2-7
- Update translation
* util-linux: Sync with 2.25.2-6
* x11-xserver-utils: Sync with 7.7+5
* Move pages from syslinux to util-linux (Closes: #786461)
- last.1
- mesg.1
- mountpoint.1
- sulogin.8
* Force new po4a (tbl handling changed)
[ Jean-Pierre Giraud ]
* openssl:
- Complete SSL_CTX translation
- New translation of some pages:
+ SSL_CTX_add_session.3ssl
+ SSL_CTX_load_verify_locations.3ssl
+ SSL_CTX_new.3ssl
+ SSL_CTX_sess_number.3ssl
+ SSL_CTX_sess_set_get_cb.3ssl
+ SSL_CTX_use_certificate.3ssl
- Complete evp translation
- New translation of some pages:
+ EVP_DigestInit.3ssl
+ EVP_DigestSignInit.3ssl
+ EVP_DigestVerifyInit.3ssl
+ EVP_EncryptInit.3ssl
+ EVP_SealInit.3ssl
+ EVP_SignInit.3ssl
+ EVP_VerifyInit.3ssl
- Update crypto
- Proofread asn1
[ Baptiste Jammet ]
* openssl:
- Update x509
- Proofread apps
- Proofread asn1
- Proofread openssl
[ Jean-Paul Guillonneau ]
* openssl:
- Proofread asn1
- Proofread ciphers
- Proofread d2i
- Proofread openssl
- Proofread x509
* util-linux: Proofread
[ JP Guillonneau ]
* openssl:
- Update evp
- Update SSL_CTX_set
[ Thomas Blein ]
* openssl : Update pkcs
[ Jean-Paul Guilloneau ]
* openssl:
- Update apps
- Proofread bn
[ Vincent Danjean ]
* coreutils: tfix join.1 (Closes: #798897)
-- David Prévot <taffit@debian.org> Thu, 31 Dec 2015 12:57:37 -0400
manpages-fr-extra (20150130) unstable; urgency=medium
[ David Prévot ]
* dosfstools: Sync with 3.0.27-1
* findutils: tfix (Closes: #776405)
* glibc: Sync with 2.19-13
* openssl: Sync with 1.0.1k-1
* sysvinit: Sync with 2.88dsf-58
* util-linux: Sync with 2.25.2-4.1
[ Vincent Danjean ]
* bash: tfix (Closes: #690883)
-- David Prévot <taffit@debian.org> Fri, 30 Jan 2015 16:47:59 -0400
manpages-fr-extra (20141109) unstable; urgency=medium
[ David Prévot ]
* Replace realpath (Closes: #768224)
* glibc: Sync with 2.19-12
* lilo:
- Sync with version 1:24.1-1
- Update translation.
* coreutils:
- Sync with 8.23-3
- Trivial unfuzzy
* cron:
- Sync with 3.0pl1-127
- Update translation
* Add ddate (restore ddate.1)
* util-linux:
- Sync with 2.25.2-2
- Update translation
* sysvinit:
- Sync with 2.88dsf-57
- Trivial unfuzzy
[ Jean-Paul Guillonneau ]
* lilo: Proofread
[ Jean-Pierre Giraud ]
* cron: Proofread
* util-linux: Proofread
* lilo: Proofread
-- David Prévot <taffit@debian.org> Sun, 09 Nov 2014 10:28:47 -0400
manpages-fr-extra (20141022) unstable; urgency=medium
[ David Prévot ]
* bash: Sync with 4.3-11
* dosfstools: Sync with version 3.0.26-4
* glibc:
- Re-add pages (not yet shipped in manpages-fr actually):
+ iconv.1
+ localedef.1
+ sprof.1
+ iconvconfig.8
- Remove validlocale(8) (shipped directly by glibc)
* grep: Sync with 2.20-4
* openssl:
- Sync with 1.0.1j-1
- Update translation
* util-linux: Sync with 2.24.2-1
- New pages:
+ nsenter.1
+ prlimit.1
+ runuser.1
+ utmpdump.1
+ terminal-colors.d.5
+ blkdiscard.8
+ chcpu.8
+ fsck.cramfs.8
+ lslocks.8
+ mkfs.cramfs.8
+ readprofile.8
+ resizepart.8
+ wdctl.8
- Deleted pages:
+ chkdupexe.1
+ ddate.1
+ readprofile.1 (replaced by readprofile.8)
+ cytune.8
+ getty.8 (replaced by a symlink to agetty.8)
+ clock.8 (no longer a symlink to hwclock.8)
- Update translation
- Proofread by Jean-Paul Guillonneau and Jean-Pierre Giraud
[ Jean-Paul Guillonneau ]
* openssl: Proofread
* lilo: Proofread
-- David Prévot <taffit@debian.org> Wed, 22 Oct 2014 12:29:48 -0400
manpages-fr-extra (20141008) unstable; urgency=medium
* at: Sync with 3.1.16-1
* bash: Sync with 4.3-10
* procps: Sync with 2:3.3.9-8
* util-linux: Sync with 2.20.1-5.11
[ Cédric Boutillier ]
* e2fsprogs: update translation
[ Jean-Paul Guillonneau ]
* coreutils: Proofread
[ David Prévot ]
* Bump standards version to 3.9.6
-- David Prévot <taffit@debian.org> Wed, 08 Oct 2014 18:51:03 -0400
manpages-fr-extra (20140930) unstable; urgency=medium
* bash: Sync with 4.3-9.2
* coreutils: Sync with 8.23-2
- Add new realpath.1
* e2fsprogs: Sync with 1.42.12-1
* glibc: Sync with 2.19-11
- Deleted pages (soon to be moved to manpages-fr):
+ iconv.1
+ localedef.1
+ sprof.1
+ iconvconfig.8
* grep: Sync with 2.20-3
[ David Prévot ]
* coreutils: Update translation
[ Baptiste Jammet ]
* coreutils: Proofread
[ Jacques Defelice ]
* e2fsprogs: Proofread
[ Jean-Paul Guillonneau ]
* openssl: Update SSL_CTX_set translation
- New translations:
+ SSL_CTX_set_cert_verify_callback.3
+ SSL_CTX_set_client_CA_list.3
+ SSL_CTX_set_client_cert_cb.3
+ SSL_CTX_set_default_passwd_cb.3
+ SSL_CTX_set_generate_session_id.3
+ SSL_CTX_set_info_callback.3
+ SSL_CTX_set_max_cert_list.3
+ SSL_CTX_set_mode.3
+ SSL_CTX_set_msg_callback.3
+ SSL_CTX_set_options.3
+ SSL_CTX_set_quiet_shutdown.3
+ SSL_CTX_set_session_cache_mode.3
+ SSL_CTX_set_session_id_context.3
+ SSL_CTX_set_tlsext_ticket_key_cb.3
+ SSL_CTX_set_tmp_dh_callback.3
+ SSL_CTX_set_tmp_rsa_callback.3
+ SSL_CTX_set_verify.3
-- David Prévot <taffit@debian.org> Tue, 30 Sep 2014 18:02:27 -0400
manpages-fr-extra (20140831) unstable; urgency=medium
* at: Sync with version 3.1.15-1
* cron: Sync with version 3.0pl1-124.2
* bash: Sync with version 4.3-9
* dosfstools: Sync with 3.0.26-3
* glibc: Sync with 2.19-9
* grep: Sync with version 2.20-2
* nfs-utils: Sync with 1:1.2.8-9
* openssl: Sync with 1.0.1i-2
* reiser4progs: Sync with 1.0.9-2
* sysvinit: Sync with 2.88dsf-53.4
[ Baptiste Jammet ]
* reiser4progs: Proofread
* e2fsprogs: proofread
* openssl:
- Update x509
- New translations:
+ x509.1
+ x509v3_config.5
+ x509.3
+ X509_NAME_add_entry_by_txt.3
+ X509_NAME_get_index_by_NID.3
+ X509_NAME_print_ex.3
+ X509_STORE_CTX_get_error.3
+ X509_STORE_CTX_new.3
+ X509_VERIFY_PARAM_set_flags.3
[ Jean-Pierre Giraud ]
* reiser4progs: Proofread
-- David Prévot <taffit@debian.org> Sun, 31 Aug 2014 17:42:51 -0400
manpages-fr-extra (20140801) unstable; urgency=medium
* e2fsprogs: Sync with 1.42.11-2
* findutils: Sync with 4.4.2-9
* glibc: Sync with 2.19-7
* procps: Sync with 1:3.3.9-7
* x11-xserver-utils: Sync with 7.7+3
[ Cédric Boutillier ]
* e2fsprogs: Update translation
[ Oliver Hamm ]
* openssl:
- Update crypto
- New translations:
+ CONF_modules_load_file.3
+ OBJ_nid2obj.3
+ blowfish.3
+ buffer.3
+ crypto.3
+ des.3
+ engine.3
+ hmac.3
+ lh_stats.3
+ lhash.3
+ pem.3
+ rc4.3
+ threads.3
+ ui.3
[ Baptiste Jammet ]
* glibc: Proofread translation
* openssl: Proofread apps
[ Jean-Pierre Giraud ]
* openssl: Proofread apps, ciphers and crypto
-- David Prévot <taffit@debian.org> Fri, 01 Aug 2014 13:52:09 -0400
manpages-fr-extra (20140702) unstable; urgency=medium
[ David Prévot ]
* cron: Sync with 3.0pl1-124.1
* e2fsprogs: Sync with 1.42.10-1.1
* glibc:
- Source moved from eglibc
- Sync with 2.19.4
* openssl:
- Sync with 1.0.1h-3
- Proofread apps
- Update ciphers
* procps: Sync with 1:3.3.9-5
* sysvinit: Sync with 2.88dsf-53.2
* util-linux: Sync with 2.20.1-5.8
[ Celia Boudjemai ]
* openssl:
- Update apps
- New translations:
+ ocsp.1
+ ts.1
+ tsget.1
+ config.5
[ Thomas Blein ]
* eglibc:
- Update translation
- Proofread by Jean-Pierre Giraud
[ Jean-Paul Guillonneau ]
* openssl: Proofread apps and ciphers
-- David Prévot <taffit@debian.org> Wed, 02 Jul 2014 12:06:28 -0400
manpages-fr-extra (20140601) unstable; urgency=medium
* openssl: Sync with 1.0.1g-4
* e2fsprogs: Sync with 1.42.10-1
* eglibc:
- Sync with 2.18-7
- New page: sotruss.1
- Deleted page: locale.1 (now provided by manpages-fr)
[ Vincent Blut ]
* tar: Proofread tar.1 (Closes: #748135)
[ Lucas Laugier ]
* openssl:
- Update SSL_set translation
- New translation of SSL_set_shutdown.3
- Proofread by Baptiste Jamet and Jean-Paul Guillonneau
[ Thomas Blein ]
* eglibc:
- Update translation
- Proofread by Jean-Paul Guillonneau
[ Cédric Boutillier ]
* e2fsprogs:
- Update translation
- Proofread by Jean-Pierre Giraud
-- David Prévot <taffit@debian.org> Sun, 01 Jun 2014 11:31:26 -0400
manpages-fr-extra (20140506) unstable; urgency=medium
[ Jean-Paul Guillonneau ]
* openssl: Proofread pkcs
[ Laurent Lyaudet ]
* util-linux: tfix flock.1 (LP: #1315036)
[ David Prévot ]
* bash: Sync with version 4.3-7
* coreutils: Sync with 8.21-1.2
* eglibc: Sync with 2.18-5
* findutils: Sync with 4.4.2-8
* grep: Sync with 2.18-2
* openssl: Sync with version 1.0.1g-3
* startpar:
- Initial infrastructure
- Split from sysvinit
- Add manpages:
+ startpar-upstart-inject.8
+ startpar.8
* sysvinit:
- Sync with 2.88dsf-53.
- Delete manpages:
+ startpar-upstart-inject.8
+ startpar.8
-- David Prévot <taffit@debian.org> Tue, 06 May 2014 14:38:09 -0400
manpages-fr-extra (20140411) unstable; urgency=medium
[ Thomas Vincent ]
* sysvinit: proofread by Baptiste Jammet, Jean-Paul Guillonneau, and
Jean-Pierre Giraud.
[ David Prévot ]
* bash: Sync with version 4.3-5
* coreutils: Sync with version 8.21-1.1
* dosfstools:
- Sync with 3.0.26-2
- Remove pages (replaced by symlinks):
+ dosfslabel.8
+ dosfsck.8
+ mkdosfs.8
- Replace by:
+ fatlabel.8
+ fsck.fat.8
+ mkfs.fat.8
- Update translation
- proofread by Baptiste Jammet
* openssl:
- Sync with 1.0.1g-2
- Update translation
* tar: Sync with 1.27.1-2
* util-linux: Sync with version 2.20.1-5.7
-- David Prévot <taffit@debian.org> Fri, 11 Apr 2014 11:39:00 -0400
manpages-fr-extra (20140317) unstable; urgency=medium
[ David Prévot ]
* bash:
- Sync with 4.3-2
- Update translation
- Proofread by Baptiste Jammet, Jean-Paul Guillonneau, and
Jean-Pierre Giraud
* e2fsprogs: Sync with 1.42.9-3
* eglibc: Sync with 2.18-4
* grep: Sync with 2.18-1
* nfs-utils: Sync with 1:1.2.8-6
* procps:
- Sync with version 1:3.3.9-2
- Update translation
- Proofread by Baptiste Jammet, Jean-Paul Guillonneau, and
Jean-Pierre Giraud
* reiserfsprogs: Sync with 1.0.8-1
* sysvinit:
- Sync with 2.88dsf-51
- Add new manpages:
+ init-d-script.5
+ startpar-upstart-inject.8
* tar: Sync with 1.27.1-1
[ Thomas Blein ]
* tar:
- Update translation
- Proofread by Jean-Paul Guillonneau and Jean-Pierre Giraud
[ Thomas Vincent ]
* sysvinit: Update translation
[ Cédric Boutillier ]
* e2fsprogs
- Update translation
- Proofread by Jean-Pierre Giraud
-- David Prévot <taffit@debian.org> Mon, 17 Mar 2014 19:41:47 -0400
manpages-fr-extra (20140201) unstable; urgency=medium
[ Thomas Blein ]
* openssl:
- Complete pkcs translation
- New translation of PKCS7_verify.3
- Proofread by: Jean-Paul Guillonneau and Jean-Pierre Giraud
[ Cédric Boutillier ]
* e2fsprogs:
- Sync with 1.42.9-2
- Add ext4.5
- Update translation
- Proofread by: Baptiste Jammet and Jean-Pierre Giraud
[ David Prévot ]
* grep: Sync with version 2.16-1
* nfs-utils: Sync with version 1:1.2.8-5
* openssl: Sync with version 1.0.1f-1
* reiserfsprogs: Sync with 1:3.6.24-1
* sysvinit: Sync with 2.88dsf-45
* util-linux: Sync with version 2.20.1-5.6
* x11-xserver-utils: Sync with version 7.7+2
-- David Prévot <taffit@debian.org> Sat, 01 Feb 2014 12:15:02 -0400
manpages-fr-extra (20131231) unstable; urgency=medium
[ Jean-Paul Guillonneau, Baptiste Jammet, Jean-Pierre Giraud ]
* openssl: Proofread pkey
[ David Prévot ]
* eglibc: Sync with version 2.17-97
* findutils: Sync with version 4.4.2-7
* openssl: Sync with version 1.0.1e-6
-- David Prévot <taffit@debian.org> Tue, 31 Dec 2013 18:43:40 -0400
manpages-fr-extra (20131201) unstable; urgency=low
* eglibc: Sync with version 2.17-93
* grep: Sync with version 2.15-2
* most: Sync with version 5.0.0a-2.3
* openssl: Sync with version 1.0.1e-4
* openssl:
- Complete pkey translation
- New translation of some files:
+ genpkey.1
+ pkeyutl.1
+ EVP_PKEY_CTX_ctrl.3
+ EVP_PKEY_set1_RSA.3
* Bump standards version to 3.9.5
-- David Prévot <taffit@debian.org> Sun, 01 Dec 2013 19:05:47 -0400
manpages-fr-extra (20131002) unstable; urgency=low
[ Raphaël Bleuse ]
* tfix: s/vielle/vieille/ (Closes: #722386)
[ David Prévot ]
* at: Sync with version 3.1.14-1
* diffutils: Sync with version 1:3.3-1
* x11-xserver-utils:
- Sync with version 7.7+1
- Update translation
[ Proofread ]
* Thanks to Baptiste Jammet, Jean-Paul Guillonneau and Jean-Pierre Giraud
-- David Prévot <taffit@debian.org> Wed, 02 Oct 2013 15:25:01 -0400
manpages-fr-extra (20130901) unstable; urgency=low
[ David Prévot ]
* coreutils: Sync with version 8.21-1
- Add numfmt.1
* e2fsprogs: Sync with version 1.42.8-1
* eglibc: Sync with version 2.17-92
- Deleted pages:
- ldd.1
- zdump.1
- gai.conf.5
- ld.so.8
- ldconfig.8
- zic.8
* grep: Sync with version 2.14-3
* sysvinit: Sync with version 2.88dsf-42
* tar: Sync with version 1.26+dfsg-8
[ Cédric Boutillier ]
* e2fsprogs: Update translation
[ Thomas Vincent ]
* sysvinit: Update translation
[ Bastien Scher ]
* coreutils: Update translation
[ Proofread ]
* Thanks to Simon Paillard, Stéphane Blondon, Baptiste Jammet and Jean-Paul
Guillonneau
-- David Prévot <taffit@debian.org> Sun, 01 Sep 2013 10:22:23 -0400
manpages-fr-extra (20130721) unstable; urgency=low
[ David Prévot ]
* Bump compat to 9
* Convert to dh short rules
* Switch to dpkg-source 3.0 (native) format
* Switch to xz compression for the source package
* eglibc: Sync with version 2.17-7
* findutils: Sync with version 4.4.2-6
* lilo: Sync with version 1:24.0-2
* openssl:
- Complete ciphers and rand translations
- New translation of some pages:
+ s_client.1
+ s_server.1
+ rand.3
+ RAND_set_rand_method.3
* util-linux: Sync with version 2.20.1-5.5
[ Thomas Preud'homme ]
* coreutils: Fix typo in install.1 (Closes: #716704)
[ Proofread ]
Thanks to Baptiste and Jean-Paul Guillonneau
-- David Prévot <taffit@debian.org> Sun, 21 Jul 2013 19:11:41 -0400
manpages-fr-extra (20130618) unstable; urgency=low
[ David Prévot ]
* debian/control: Drop sysv-rc from Replaces
* debian/gbp.conf: Add a git-buildpackage configuration file
* eglibc:
- Sync with version 2.17-3
- Remove rpcinfo.8 (untranslated)
- Add pldd.1
* grep: Sync with version 2.14-2
* nfs-utils:
- Sync with version 1:1.2.8-4
- Add nfsdcltrack.8
* openssl:
- Sync with version 1.0.1e-3
- Update configuration into 27 PO files
- Complete asn1, dsa, openssl and smime translations
- New translation of some files:
+ smime.1
+ ASN1_STRING_length.3
+ ASN1_STRING_print_ex.3
+ DSA_generate_parameters.3
+ DSA_set_method.3
+ DSA_sign.3
+ dsa.3
+ ecdsa.3
+ EVP_PKEY_decrypt.3
+ EVP_PKEY_derive.3
+ EVP_PKEY_encrypt.3
+ EVP_PKEY_keygen.3
+ EVP_PKEY_sign.3
+ EVP_PKEY_verify.3
+ EVP_PKEY_verify_recover.3
+ OPENSSL_VERSION_NUMBER.3
+ OPENSSL_config.3
+ OpenSSL_add_all_algorithms.3
* tar: Sync with version 1.26+dfsg-6
* util-linux: Sync with version 2.20.1-5.4
[ Simon Paillard ]
* findutils: typo fix (Closes: #710392)
[ Cédric Boutillier ]
* nfsutils: Update translation
[ Bastien Scher ]
* openssl:
- Complete SSL_session translation
- New translation of:
+ SSL_SESSION_get_time.3
[ Proofread ]
* Thanks to Baptiste, Étienne Gilli, Jean-Paul Guillonneau, Jean-Pierre
Giraud
-- David Prévot <taffit@debian.org> Tue, 18 Jun 2013 16:53:53 -0400
manpages-fr-extra (20130508) unstable; urgency=low
[ David Prévot ]
* bash: Sync with version 4.2+dfsg-1
* coreutils: Proofread timeout.1, thanks to Vincent Danjean
(closes: #703400)
* diffutils: Sync with version 1:3.2-8
* dosfstools: Sync with version 3.0.16-2
* e2fsprogs:
- Add missing mkfs.ext4.8 symlink
- Sync with version 1.42.5-1.1
* findutils: Sync with version 4.4.2-5
* grep: Sync with version 2.14-1
* openssl:
- Sync with version 1.0.1e-2
- New translation of some files
+ BIO_new.3
+ BIO_new_CMS.3
+ BIO_push.3
+ BIO_read.3
+ BN_add_word.3
+ BN_bn2bin.3
+ BN_rand.3
+ BN_zero.3
+ SSL_COMP_add_compression_method.3
+ SSL_CTX_set_psk_client_callback.3
+ SSL_CTX_use_psk_identity_hint.3
+ SSL_get_psk_identity.3
* procps:
- Sync with version 1:3.3.4-2
- Update translation
* tar:
- Sync with version 1.26+dfsg-5
- Add tarcat.1
* debian/control:
- Bump Standards-Version to 3.9.4
- Remove duplicated Section and Priority entries
[ Cédric Boutillier ]
* grep: Update translation
[ Thomas Blein ]
* tar: Update translation
-- David Prévot <taffit@debian.org> Thu, 09 May 2013 00:30:41 -0400
manpages-fr-extra (20130226) unstable; urgency=low
* bash: Sync with version 4.2+dfsg-0.1
* coreutils: Sync with version 8.13-3.5
* eglibc: Sync with version 2.13-38
* openssl:
- Sync with version 1.0.1e-1
- EVP_PKEY_verifyrecover.3 renamed as EVP_PKEY_verify_recover.3
- Update translation:
+ CA.pl.3
+ EVP_PKEY_get_default_digest.3
+ verify.3
- New translation of some files.
+ BIO_f_buffer.3
+ BIO_s_null.3
+ BN_CTX_new.3
+ BN_CTX_start.3
+ BN_cmp.3
+ BN_new.3
+ BN_num_bytes.3
+ CMS_add1_recipient_cert.3
+ CMS_decrypt.3
+ CMS_get0_type.pod.po
+ CMS_get1_ReceiptRequest.3
+ CMS_uncompress.3
+ d2i_PKCS8PrivateKey.3
+ d2i_RSAPublicKey.3
+ d2i_SSL_SESSION.3
+ d2i_X509.3
+ DH_generate_key.3
+ DH_generate_parameters.3
+ DH_new.3
+ DH_set_method.3
+ DSA_do_sign.3
+ DSA_get_ex_new_index.3
+ DSA_SIG_new.3
+ ERR_GET_LIB.3
+ ERR_get_error.3
+ ERR_load_crypto_strings.3
+ ERR_load_strings.3
+ ERR_print_errors.3
+ ERR_put_error.3
+ ERR_remove_state.3
+ ERR_set_mark.3
+ evp.3
+ EVP_BytesToKey.3
+ EVP_OpenInit.3
+ EVP_PKEY_cmp.3
+ EVP_PKEY_CTX_new.3
+ EVP_PKEY_get_default_digest.3
+ EVP_PKEY_new.3
+ EVP_PKEY_print_private.3
+ i2d_CMS_bio_stream.3
+ i2d_PKCS7_bio_stream.3
+ OPENSSL_load_builtin_modules.3
+ PEM_write_bio_CMS_stream.3
+ PEM_write_bio_PKCS7_stream.3
+ PKCS7_decrypt.3
+ PKCS7_encrypt.3
+ PKCS7_sign.3
+ PKCS7_sign_add_signer.3
+ RAND_add.3
+ RAND_bytes.3
+ RAND_cleanup.3
+ RAND_egd.3
+ RAND_load_file.3
+ RSA_blinding_on.3
+ RSA_print.3
+ RSA_sign.3
+ RSA_sign_ASN1_OCTET_STRING.3
+ RSA_size.3
+ SMIME_read_CMS.3
+ SMIME_read_PKCS7.3
+ SMIME_write_CMS.3
+ SMIME_write_PKCS7.3
+ SSL_clear.3
+ SSL_CTX_add_extra_chain_cert.3
+ SSL_CTX_ctrl.3
+ SSL_CTX_flush_sessions.3
+ SSL_CTX_free.3
+ SSL_CTX_get_ex_new_index.3
+ SSL_CTX_set_cipher_list.3
+ SSL_CTX_set_ssl_version.3
+ SSL_CTX_set_timeout.3
+ SSL_get_ciphers.3
+ SSL_get_current_cipher.3
+ SSL_get_default_timeout.3
+ SSL_get_ex_new_index.3
+ SSL_get_peer_cert_chain.3
+ SSL_SESSION_get_ex_new_index.3
+ SSL_set_fd.3
+ SSL_set_verify_result.3
+ SSL_state_string.3
+ X509_NAME_ENTRY_get_object.3
+ X509_STORE_CTX_set_verify_cb.3
+ X509_STORE_set_verify_cb_func.3
+ X509_verify_cert.3
Thanks to Étienne Gilli, Stéphane Blondon, Jean Paul Guilloneau, Baptiste
and Jean-Baka Domelevo Entfellner for their proofread.
* sysvinit: Sync with version 2.88dsf-41
* tar: Sync with version 1.26+dfsg-0.1
* util-linux: Sync with version 2.20.1-5.3
-- David Prévot <taffit@debian.org> Tue, 26 Feb 2013 15:13:32 -0400
manpages-fr-extra (20121129) unstable; urgency=low
* openssl:
- Handle section 7 and 5 of manual pages
- New translation of some files:
+ CMS_final.3
+ CMS_sign_receipt.3
+ CMS_verify_receipt.3
+ d2i_DSAPublicKey.3
+ SSL_CTX_set_cert_store.3
+ SSL_set_session.3
+ ui_compat.3
+ des_modes.7
* sysvinit: Sync with version 2.88dsf-34
* eglibc: Sync with version 2.13-37
* util-linux, tar: Typo and format fixes
-- David Prévot <taffit@debian.org> Thu, 29 Nov 2012 11:25:01 -0400
manpages-fr-extra (20121027) unstable; urgency=low
[ Thomas Blein ]
* openssl: New translation of some files: PKCS12_create.3, PKCS12_parse.3,
and ssl.3
[ David Prévot ]
* openssl: Sync with version 1.0.1c-4
* openssl: Update translation of some files: ca.1, ciphers.1, dgst.1, enc.1,
openssl.1, pkcs12.1, req.1, and verify.1
* openssl: New translation of some files: pkey.1, pkeyparam.1,
CRYPTO_set_ex_data.3, SSL_accept.3, SSL_connect.3,
SSL_CTX_get_verify_mode.3, SSL_CTX_sess_set_cache_size.3,
SSL_do_handshake.3, SSL_get_client_CA_list.3,
SSL_get_ex_data_X509_STORE_CTX_idx.3, SSL_get_peer_certificate.3,
SSL_get_session.3, SSL_library_init.3, SSL_pending.3,
SSL_set_connect_state.3, SSL_want.3, and X509_STORE_CTX_get_ex_new_index.3
Special thanks to Jean-Paul Guilloneau and Stéphane Blondon for their
numerous proofreads.
* at: Fix AA instead of YY (LP: #1050426)
* tar: Proofread translation and formatting of tar.1
* sysvinit: Sync with version 2.88dsf-32
* util-linux: Sync with version 2.20.1-5.2
* util-linux: Fix formatting in fstab.5
-- David Prévot <taffit@debian.org> Sat, 27 Oct 2012 11:05:16 -0400
manpages-fr-extra (20120831) unstable; urgency=low
[ David Prévot ]
* Update translation of procps 1:3.3.3-2
* Update translation of bash 4.2-4
* Update translation of some files from openssl:
- CONF_modules_free.pod.po
- d2i_X509_CRL.pod.po
- d2i_X509_REQ.pod.po
- enc.pod.po
- verify.pod.po (added)
* Update translation of sysvinit 2.88dsf-31:
- add tmpfs.5
* Sync with util-linux 2.20.1-5.1
* Sync with dosfstools 3.0.13-1
* Sync with cron 3.0pl1-124
* Sync with nfs-utils 1:1.2.6-3
* Sync with eglibc 2.13-35
[ Cédric Boutillier ]
* Update translation of e2fsprogs 1.42.5-1
-- David Prévot <taffit@debian.org> Fri, 31 Aug 2012 18:49:32 -0400
manpages-fr-extra (20120623) unstable; urgency=low
[ David Prévot ]
* util-linux:
+ add hwclock.5;
+ update translation to 2.20.1-5.
* Update translation of e2fsprogs 1.42.4-3.
* Sync with coreutils 8.13-3.2.
* Sync with x11-xserver-utils 7.7~2.
* Sync with grep 2.12-2.
* Sync with eglibc 2.13-33.
* Sync with at 3.1.13-2.
[ Simon Paillard ]
* Fix double words in bash, e2fsprogs, findutils and x11-xserver-utils.
[ Cédric Boutillier ]
* Update translation of nfs-utils 1:1.2.6-2.
-- David Prévot <taffit@debian.org> Sat, 23 Jun 2012 18:51:45 -0400
manpages-fr-extra (20120505) unstable; urgency=low
[ David Prévot ]
* util-linux: typo fix. Closes: #665716
* Update translation of openssl (ASN1_generate_nconf).
* Update translation of lilo.
* Update translation of grep.
* eglibc:
+ remove getent.1
+ update translation
* Update version of sysvinit.
* Update version of bash.
* Update version of diffutils.
[ Cédric Boutillier ]
* Update translation of e2fsprogs.
-- David Prévot <taffit@debian.org> Sat, 05 May 2012 20:44:33 -0400
manpages-fr-extra (20120324) unstable; urgency=low
[ David Prévot ]
* util-linux:
+ add back ddate.1 and line.1
+ update translation
* Update translation of lilo.
* Update translation of e2fsprogs.
* procps:
+ adapt configuration to handle last version of top.1
+ update translation
* Update translation of eglibc.
* Update version of diffutils.
* Update version of coreutils.
* debian/control: Standards-Version bumped to 3.9.3 (no changes).
* debian/rules: Add build-arch and build-indep targets.
-- David Prévot <taffit@debian.org> Sat, 24 Mar 2012 11:31:03 -0400
manpages-fr-extra (20120212) unstable; urgency=low
[ Simon Paillard ]
* Fix typo: entête -> en-tête
[ Cédric Boutillier ]
* Update translation of grep.
* Update translation of e2fsprogs.
[ David Prévot ]
* Update translation of tar.
* Update translation of sysvinit.
* Update translation of dosfstools.
* Update translation of most.
* Update translation of nfs-utils.
* Update translation of eglibc.
* Update translation of bash.
* Update translation of findutils.
* util-linux:
+ add uuid_generate_time_safe.3 and x86_64.8
+ remove ddate.1 and line.1
+ update translation
* Quick proofread of coreutils (Closes: #659218).
* Update translation of cron.
-- Simon Paillard <spaillard@debian.org> Sun, 12 Feb 2012 13:58:25 +0100
manpages-fr-extra (20111118) unstable; urgency=low
[ Simon Paillard ]
* utils-linux: translate blkid 'device' when not a parameter. See #635737
* nfs-utils: add nfsidmap.5, blkmapd.8
[ David Prévot ]
* e2fsprog:
+ remove check-links
+ add new e4defrag.8 man page
* util-linux:
+ add indmnt.8, findmnt.8, fsfreeze.8, fstrim.8, lsblk.8, swaplabel.8
mkfs.bfs.8, raw.8, rtcwake.8, tunelp.8
+ update translation
* lilo:
+ global review (mainly lilo.conf.5)
+ update translation
* Update translation of at.
* Update translation of cron.
* Update translation of diffutils.
* Update translation of util-linux.
* Synchronize manpages against testing (instead of sid), to avoid situation
where English manpages didn't migrate to testing.
[ Thomas Blein ]
* Update translation of eglibc.
[ Cédric Boutillier ]
* Update translation of e2fsprogs.
[ Denis Mugnier ]
* Update translation of nfs-utils.
[ Bastien Scher ]
* Update translation of coreutils.
-- Simon Paillard <spaillard@debian.org> Fri, 18 Nov 2011 21:09:01 +0100
manpages-fr-extra (20110730) unstable; urgency=low
[ Simon Paillard ]
* Fix typos regarding plural. Closes: #619277
* Updated translation of the cron manpages.
* Updated translation of the e2fsprogs manpages.
* Updated translation of the sysvinit manpages (Romain Doumenc).
* debian/control: Update Vcs-* after git migration
* utils-linux: don't translate 'device' blkid parameter Closes: #635737
[ David Prévot ]
* Updated translation of the procps manpages.
* Updated translation of the x11-xserver-utils manpages.
* Updated translation of the eglibc manpages.
* Updated translation of the lilo manpages.
* Updated translation of the util-linux manpages.
* debian/control:
- drop version relationship of po4a in Build-Depends
(a higher version is already in oldstable);
- drop belocs-locales-bin (<< 2.4-3) in Replaces
(this version is not in oldstable anymore);
- Standards-Version bumped to 3.9.2.
* debian/copyright: add BSD license text.
* Fix expand(1) -t translation, thanks to Éric Araujo. Closes: #614157
[ Stéphane Blondon ]
* Updated translation of the most manpages.
[ Thomas Blein ]
* Updated translation of the tar manpages.
-- Simon Paillard <spaillard@debian.org> Sat, 30 Jul 2011 16:10:37 +0200
manpages-fr-extra (20101103) unstable; urgency=low
[ Denis Barbier ]
* eglibc: Add symlinks for ld-linux.8 and ld-linux.so.8,
those symlinks are shipped in the manpages Debian package
but cannot be set in manpages-fr, otherwise manpages-fr
should depend on manpages-fr-extra.
[David Prévot]
* --line-buffered definition, thanks to Nicolas Caval. Closes: #590206
* Provide UTF-8 manual pages.
* Updated translation of the bash manpages.
* Updated translation of the procps manpages.
* Updated translation of the sysvinit manpages.
* Updated translation of the x11-server-utils manpages.
* Updated translation of the cron manpages.
* Updated translation of the tar manpages (Thomas Blein).
* Updated translation of the util-linux manpages (Alexandre Normand).
* Updated translation of the e2fsprogs manpages (Romain Doumenc).
* Updated translation of the nfs-utils manpages (Romain Doumenc).
* Fix manpages titles for more consistency
[ Simon Paillard ]
* Fix typos in findutils.
-- Simon Paillard <spaillard@debian.org> Wed, 03 Nov 2010 00:40:25 +0100
manpages-fr-extra (20100723) unstable; urgency=low
[ Nicolas FRANCOIS ]
* Updated translation of the bash manpages.
The bash-minimal.1 man page is gone.
* Updated translation of the dosfstools manpages.
* Updated translation of the sysvinit manpages.
* Updated translation of the findutils manpages.
* Updated translation of the coreutils manpages.
* Updated translation of the diffutils manpages.
* Updated translation of the cron manpages.
* Updated translation of the grep manpages.
[ Florentin Duneau ]
* Updated translation of the util-linux manpages.
* Updated translation of the eglibc manpages.
[ Denis Barbier ]
* debian/control: Add missing trailing slash to Vcs-Browser
* debian/control: Remove Replaces: manpages-fr (<< 2.33.2-1).
This version is older than the one in oldstable.
* Proofread util-linux manpages. Closes: #583253
[ Simon Paillard ]
* debian/control: add myself as one of the Uploaders.
-- Simon Paillard <spaillard@debian.org> Fri, 23 Jul 2010 14:21:59 +0200
manpages-fr-extra (20091227) unstable; urgency=low
[ Nicolas FRANCOIS ]
* Fix encoding of openssl manpages.
* coreutils: Fixed wrong non breaking spaces. Closes: #558699
* findutils: Fixed typo in xargs(1) -O is -0. Closes: #566322
* x11-xserver-utils: New translations.
* debian/control: Standards-Version bumped to 3.8.4 (no changes).
* debian/control: Added dependency on ${misc:Depends}, even if I assume
there would be no dependencies for a manpages package.
[ Simon Paillard ]
* Fix [2-9]ème in [2-9]e
[ Christian Perrier ]
* Add "Replaces: sysv-rc (<< 2.87dsf-3)" to allow safe upgrades from
lenny as sysv-rc is providing /usr/share/man/fr/man8/update-rc.d.8.gz
Closes: #571027
-- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net> Thu, 15 Apr 2010 22:09:12 +0200
manpages-fr-extra (20090906) unstable; urgency=low
[ Nicolas FRANCOIS ]
* Fix typo in the diff(1) manpage. Closes: #511583
* Activate the distribution of the sysvinit manpages. No news from the
sysvinit maintainers.
* source glibc changed to eglibc.
* Updated manpages according to current debian packages.
* Added reiser4progs and reiserfsprogs manpages.
* Translation of updateddb.findutils.1 removed because it may conflict
disturb users of mlocate (updateddb.8)
[ Florentin Duneau ]
* Fix mistake in mount(8). Closes: #518935
-- Simon Paillard <spaillard@debian.org> Mon, 14 Sep 2009 19:55:37 +0200
manpages-fr-extra (20080921) unstable; urgency=low
[ Nicolas FRANCOIS ]
* Updated translation of the coreutils manpages.
* Updated translation of the bash manpages.
[ Cyril Chaboisseau ]
* Fixed typo in tail(1). Closes: #498147
[ Sylvain Cherrier ]
* Updated nfs-utils translation, updated maintainer's name.
[ Florentin Duneau ]
* Updated translation of the glibc manpages.
* Updated translation of the procps manpages.
* Updated translation of the util-linux manpages.
-- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net> Sun, 21 Sep 2008 17:59:34 +0200
manpages-fr-extra (20080719) unstable; urgency=low
* Updated to new upstream versions.
* debian/control: Replace belocs-locales-bin (<< 2.4-3), which used to
provide translation of the locales-related manpages. Thanks to Frank
Lichtenheld. Closes: #491251
-- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net> Sun, 20 Jul 2008 21:24:07 +0200
manpages-fr-extra (20080618) unstable; urgency=low
[ Nicolas FRANCOIS ]
* Added addendum for the flock(1), ionice(1) and setarch(8) manpages.
* Fix the generation of OpenSSL manpages (name and section name).
[ Lyes ZEMMOUCHE ]
* Fix in the ionice(1) manpage.
-- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net> Wed, 18 Jun 2008 21:48:32 +0200
manpages-fr-extra (20080616) unstable; urgency=low
[ Sylvain Cherrier ]
* Updated translation of the findutils manpages.
[ Nicolas FRANCOIS ]
* Updated translation of the cron manpages.
* Updated translation of the grep manpages.
* Added translation of glibc manpages: catchsegv.1, gai.conf.5, gencat.1,
getconf.1, getent.1, iconvconfig.8, locale.1, localedef.1, locale.gen.5,
locale-gen.8, mtrace.1, sprof.1, update-locale.8, and validlocale.8
* Added translation of openssl manpages: X509_new, d2i_X509_NAME, verify,
bn, sha, ciphers, CONF_modules_free, asn1parse, BN_swap, spkac,
d2i_DHparams, md5, d2i_ASN1_OBJECT, d2i_X509_ALGOR, d2i_X509_SIG,
d2i_X509_REQ, mdc2, ripemd, ecparam, rsautl, BN_copy, BIO_f_null,
SSL_library_init, BN_mod_inverse, SSL_session_reused, SSL_get_SSL_CTX,
SSL_CTX_get_verify_mode, SSL_do_handshake, ui_compat, SSL_SESSION_free,
SSL_accept, RSA_new, SSL_pending, SSL_CTX_set_cert_store, SSL_get_fd,
OPENSSL_Applink, rsa, SSL_CTX_sess_set_cache_size, SSL_connect,
SSL_get_rbio, OPENSSL_ia32cap, SSL_get_client_CA_list, SSL_CTX_sessions,
SSL_set_bio, SSL_get_ex_data_X509_STORE_CTX_idx, SSL_set_connect_state,
d2i_X509_CRL, SSL_new, SSL_get_peer_certificate, ASN1_STRING_new.
* Workaround for a po4a bug which breaks the formatting of locale.1.
* Updated to upstream manpages on 2008-06-16
[ Florentin Duneau ]
* Updated translation of the glibc manpages.
[ Remi Denis-Courmont ]
* Fix the description of EDEADLK error code in the glibc's
pthread_mutex_lock manpage. Closes: #485813
[ Sylvain Cherrier ]
* Updated nfs-utils manpages.
* Updated findutils manpages.
[ Lyes Zemmouche ]
* Added translation of the util-linux's flock.1, ionice.1, and setarch.8
manpages.
[ Stéphane Blondon ]
* Updated translation of the most.1 manpage.
[ Frederic Lehobey ]
* Updated translation of bash.
-- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net> Sat, 10 May 2008 13:37:13 +0200
manpages-fr-extra (20080429) unstable; urgency=low
* Fix the sections of OpenSSL manpages. The sections should be 1ssl and 3ssl
to avoid overlap with other packages (e.g. passwd). Closes: #478272
-- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net> Mon, 28 Apr 2008 22:31:40 +0200
manpages-fr-extra (20080428) unstable; urgency=low
[ Thomas Huriaux ]
* Sync with packages in unstable
* debian/control: add Vcs information
* Update coreutils, grep, util-linux
* Install manpages in utf-8
* Fix incorrect font handlers (Closes: #470349)
[ Nicolas FRANCOIS (Nekral) ]
* debian/control: set myself as Maintainer, and Thomas as one of the
Uploaders.
* Makefile: Make sure the build fails if a command fails.
* findutils/po4a/po/fr.po: Fix other incorrect font handlers.
* Makefile: Added OpenSSL manpages translation.
* Import and update existing translations of some OpenSSL manpages.
[ Alexandre Kuoch ]
* Add the translation of chrt.1, taskset.1, rename.ul.1, addpart.8,
ctrlaltdel.8, delpart.8, partx.8, and pivot_root.8 from the util-linux
package.
[ David Montanes ]
* Add sess_id.1 translation to OpenSSL.
[ Guillaume Quesnel ]
* Add s_time.1 translation to OpenSSL.
-- Nicolas FRANCOIS (Nekral) <nicolas.francois@centraliens.net> Mon, 28 Apr 2008 02:16:25 +0200
manpages-fr-extra (20071229) unstable; urgency=low
[ Thomas Huriaux ]
* Sync with packages in unstable
* Update procps, coreutils, nfs-utils, tar
* Bump Standards-Version (no changes needed)
[ Florentin Duneau ]
* Update glibc
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sat, 29 Dec 2007 11:58:41 +0100
manpages-fr-extra (20071013) unstable; urgency=low
[ Thomas Huriaux ]
* Sync with packages in unstable
[ Nicolas François ]
* Add translations of cytune.8, pg.1, script.1, scriptreplay.1 and
getty.8 (incomplete) to util-linux.
* Add existing translations from Michel Quercia and Christophe Sauthier:
cal.1, col.1, and tailf.1 to util-linux.
[Sylvain Cherrier ]
* Update findutils
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sat, 13 Oct 2007 11:32:06 +0200
manpages-fr-extra (20070901) unstable; urgency=low
[ Thomas Huriaux ]
* Sync with packages in unstable
[ Nicolas François ]
* Add --previous to the po4a calls. po4a 0.31 is sufficient.
[ Sylvain Cherrier ]
* Update nfs-utils
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sat, 01 Sep 2007 11:39:38 +0200
manpages-fr-extra (20070714) unstable; urgency=low
[ Thomas Huriaux ]
* Sync with packages in unstable
* Fix "fixed-width" translation in bash.1 (Closes: #427673)
* Use po4a 0.31
* Use unknown_macros for exportfs.5
* Fix glibc configuration file
[ Nicolas François ]
* util-linux: Add translation of getopt.1
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sat, 14 Jul 2007 13:16:11 +0200
manpages-fr-extra (20070512) unstable; urgency=low
[ Thomas Huriaux ]
* Sync with packages in unstable
* fix nscd.8 headers, reported by Florentin Duneau
* fix swapoff link (util-linux)
* add missing links in glibc
* update of most.1, thanks to Stéphane Blondon
[ Sylvain Cherrier ]
* Update nfs-utils and findutils
[ Florentin Duneau ]
* Update glibc.
[ Nicolas François ]
* glibc: add translation of ldd.1
* util-linux: add translation of rdev.8
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sat, 12 May 2007 11:57:14 +0200
manpages-fr-extra (20070415) unstable; urgency=low
[ Thomas Huriaux ]
* Sync with packages in unstable
* procps: Add translation of top.1, thanks to Philippe Piette
[ Nicolas François ]
* glibc: Add translations of ld.so(8), ldconfig(8), nscd(8), nscd.conf(5),
tzselect(1), zdump(1), zic(8)
* util-linux: Add translations of mkfs.minix(8), mkswap(8), more(1),
mount(8), renice(1), rev(1), setsid(8), sfdisk(8), swapon(8)/swapoff(8),
umount(8), wall(1), whereis(1)
[ Sylvain Cherrier ]
* Fix xargs manpages (Closes: #416027)
* Update nfs-utils
[ Florentin Duneau ]
* glibc: Add translation of iconv(1)
* Update lilo
* Update glibc
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sun, 15 Apr 2007 15:56:26 +0200
manpages-fr-extra (20070311) unstable; urgency=low
[ Thomas Huriaux ]
* Fix typo in crontab(5) manpage (Closes: #409793)
* Fix typo in updatedb(1) manpage (Closes: #410233)
* Fix unbreakable spaces in findutils manpages
* Unfuzzy glibc (no update needed: see #220719)
* Typo fixes in coreutils
[ Florentin Duneau ]
* nfs(5): remove unexpected dot
* fdisk(8): add a lot of forgotten spaces
* hwclock(8): fix a typo
[ Nicolas François ]
* lilo.conf(5): fix typos (punctuation. addappened => addappend)
* lilo(8): Fix options (-B was -m; -E was -U), fix typo in formatting
* mkrescue(8): fix typo in formatting
* tar(1): fix typo (missing comma)
* setterm(1): Fix typo (-ulcolor instead of -ucolor)
* nfs(5): Fix formatting tag (I<...> instead of l<...>)
* hwclock(8): Fix typo (space instead of 0xb7)
* isosize(8): Fix formatting tag (E<gt> instead of <gt>)
[ Sylvain Cherrier ]
* mountd(8): Fix typo (rpc.mountd instead of rpc.statd)
* statd(8): Fix typo (/var/lib/nfs/state instead of /var/lib/nfs/sm/state)
* umount.nfs(8): Fix typo (umount instead of mount)
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sun, 11 Mar 2007 11:52:10 +0100
manpages-fr-extra (20070203) unstable; urgency=low
* Fix non-latin1 char in bash manpage (Closes: #405708)
* Miscelleanous fixes of the bash manpage, thanks to Frederic Lehobey
* Proofreading of nfs-utils manpages, thanks to Nicolas Francois and
Sylvain Cherrier
* Update of cron manpage, thanks to Steve Petruzzello
* Fix translation of find.1 (status of files vs. files) (Closes: #408356)
* Sync util-linux with the version in Etch
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sat, 3 Feb 2007 12:37:42 +0100
manpages-fr-extra (20061210) unstable; urgency=low
* Fix translation of examples in find.1, thanks to Florentin Duneau
* Typo fixes, thanks to various contributors from debian-l10n-french
* Improve bash translations, thanks to Frederic Lehobey
-- Thomas Huriaux <thomas.huriaux@gmail.com> Sun, 10 Dec 2006 22:33:29 +0100
manpages-fr-extra (20061127) unstable; urgency=low
* Update tar manpages, thanks to Valery Perrin
* Fix a typo in lilo.8.conf manpage, thanks to Nicolas Patrois
(Closes: #396752)
* Add translation of:
- nfs.5, thanks to Valery Perrin
- nhfsstone.8, thanks to Sylvain Cherrier
- fdisk.8, thanks to Jade Alglave
* Fix a wrong translation in dd, thanks to Samuel Thibault
(Closes: #393648)
* Corrections applied to most.1, thanks to Stephane Blondon and Gerard
Delafond
* Disable {u,}mount.nfs manpages as they are not in Debian (see the
nfs-utils changelog)
* Add addenda for mdoc manpages, to display headers correctly
* Add update of bash manpages, thanks to Frederic Lehobey (Closes: #391107)
-- Thomas Huriaux <thomas.huriaux@gmail.com> Wed, 22 Nov 2006 22:35:36 +0100
manpages-fr-extra (20061005) unstable; urgency=low
* New maintainer
* Update cron manpages, thanks to Steve Petruzzello
* Add translation of lockd.8, mountd.8, nfsd.8, showmount.8, statd.8,
thanks to Valery Perrin
-- Thomas Huriaux <thomas.huriaux@gmail.com> Fri, 6 Oct 2006 00:18:33 +0200
manpages-fr-extra (20060909) unstable; urgency=low
[ Thomas Huriaux ]
* Add infrastructure for bash manpages
* Add new translations:
most.1, thanks to Stephane Blondon
logger.1, thanks to Nicolas Haller
hwclock.8, thanks to Sylvain Archenault
* Updated translations:
findutils, nfs-utils (including new pages: exportfs.5, idmapd.conf.5,
idmapd.8, svcgssd.8), thanks to Sylvain Cherrier
[ Florentin Duneau ]
* Update pthread_*.3
-- Denis Barbier <barbier@debian.org> Sun, 10 Sep 2006 00:24:42 +0200
manpages-fr-extra (20060813) unstable; urgency=low
[ Thomas Huriaux ]
* Add new translations:
mount.nfs.8, rpcdebug.8, umount.nfs.8, thanks to Sylvain Cherrier
ipcrm.8, ipcs.8, thanks to Philippe Piette
* Update coreutils
[ Florentin Duneau ]
* Update pthread_*.3
* Update procps
-- Denis Barbier <barbier@debian.org> Sun, 13 Aug 2006 14:36:52 +0200
manpages-fr-extra (20060713) unstable; urgency=low
[ Thomas Huriaux ]
* Add new translations:
losetup.8, thanks to Jean-Baka Domelevo-Entfellner
gssd.8, nfsd.7, nfsstat.8, nhfsgraph.8, nhfsnums.8, nhfsrun.8,
thanks to Sylvain Cherrier
isosize.8, mkfs.8, thanks to Florentin Duneau
* Build-Depends on po4a 0.26 and regenerate po files
-- Denis Barbier <barbier@debian.org> Fri, 14 Jul 2006 00:46:00 +0200
manpages-fr-extra (20060607) experimental; urgency=low
[ 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
[ Thomas Huriaux ]
* Add new translations:
find.1, thanks to Sylvain Cherrier
lilo.conf.5, lilo.8, thanks to Florentin Duneau
-- Denis Barbier <barbier@debian.org> Wed, 7 Jun 2006 23:14:59 +0200
|