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
|
gettext (0.23.2-1) unstable; urgency=medium
* New upstream release.
* Temporarily skip test-set-mode-acl-2.sh, it fails with reprotest.
* Apply patch from Bruno Haible to fix spurious failure on sparc64.
* Drop gawk and friends from Build-Depends.
* Drop "Rules-Requires-Root: no" (default).
* Mark gettext-doc as "Multi-Arch: foreign".
* Update debian/watch to format version 5.
-- Santiago Vila <sanvila@debian.org> Thu, 13 Nov 2025 18:20:00 +0100
gettext (0.23.1-2) unstable; urgency=medium
* Parse recursive JSX expressions correctly.
(Upstream fix backported from 0.24).
* Add suggest on gnulib-l10n to gettext.
* Update Standards-Version.
-- Santiago Vila <sanvila@debian.org> Sat, 26 Apr 2025 19:45:00 +0200
gettext (0.23.1-1) unstable; urgency=medium
* New upstream release.
* There is now XML merge support. Closes: #881886.
* There is now XML man page support. Closes: #881888.
* Support files are now in /usr/libexec/gettext. Closes: #1032010.
* Now gettext extracts strings inside Python f-strings. Closes: #1053434.
* Fix error when a --exclude-file option is present. Closes: #1077059.
* Translations for messages in gnulib will be provided by gnulib-l10n.
* Add libacl1-dev, libattr1-dev and libncurses-dev to Build-Depends,
as recommended by upstream.
-- Santiago Vila <sanvila@debian.org> Wed, 15 Jan 2025 16:45:00 +0100
gettext (0.22.5-4) unstable; urgency=medium
* Ship styles in /usr/share/gettext/styles (bug introduced in 0.22.5-1).
* Add Vcs-Git and Vcs-Browser fields.
* Add a preliminary debian/salsa-ci.yml.
-- Santiago Vila <sanvila@debian.org> Sun, 05 Jan 2025 15:20:00 +0100
gettext (0.22.5-3) unstable; urgency=medium
* Disable tests that no longer work with new libunistring.
* Update Standards-Version (no special changes).
-- Santiago Vila <sanvila@debian.org> Mon, 16 Dec 2024 01:20:00 +0100
gettext (0.22.5-2) unstable; urgency=medium
* This upload should use the new dh-elpa. Closes: #1077102.
* Add a recent mawk to the build-depends having gawk or an old mawk.
* Drop debian/missing-sources/gettext-tools/m4/csharpexec-test.cs, already upstream.
* Drop obsolete debian/rules.old.
-- Santiago Vila <sanvila@debian.org> Fri, 26 Jul 2024 13:05:00 +0200
gettext (0.22.5-1) unstable; urgency=medium
* New upstream release. Closes: #1057973.
* msgfmt --java2 should now work with Java 21. Closes: #1056293.
* None of the debian/patches for version 0.21 are required anymore.
* Link against libtextstyle. For now this should be considered
as a private library, like libgettextlib or libgettextsrc.
* Disable autoreconf.
* Run tests sequentially.
* Update lintian warnings.
* Update libintl.pom.xml.
* Drop build-dependency on help2man.
* Cherry-pick two patches from upstream for tests/autopoint-3.
* Add build-dependency on gawk. This is a workaround for a bug in mawk
which makes test/autopoint-3 to fail in a strange way.
* Switch copyright file to machine-readable format.
* Add some lintian overrides for the source package.
-- Santiago Vila <sanvila@debian.org> Mon, 24 Jun 2024 17:20:00 +0200
gettext (0.21-15) unstable; urgency=medium
* Keep implicit function declarations as warnings. Closes: #1073335.
This will be fixed properly in gettext 0.22.x.
* Fix changelog typo in version 0.21-12.
-- Santiago Vila <sanvila@debian.org> Wed, 19 Jun 2024 00:10:00 +0200
gettext (0.21-14) unstable; urgency=medium
* Update po-mode. Closes: #1055020.
* Disable tests/autopoint-3. Closes: #1057120.
-- Santiago Vila <sanvila@debian.org> Fri, 01 Dec 2023 19:25:00 +0100
gettext (0.21-13) unstable; urgency=medium
* Disable java build-dependency for hurd-amd64, by changing
"hurd-i386" to "hurd-any" in debian/control, debian/gettext.install
and debian/not-installed. Closes: #1040709.
Thanks to Samuel Thibault.
-- Santiago Vila <sanvila@debian.org> Sun, 09 Jul 2023 22:25:00 +0200
gettext (0.21-12) unstable; urgency=medium
* Add debian/missing-sources/gettext-tools/m4/csharpexec-test.cs
which is the source for gettext-tools/m4/csharpexec-test.exe.
Reported by Bastien Roucariès. Thanks to Bruno Haible. Closes: #1031952.
-- Santiago Vila <sanvila@debian.org> Sun, 26 Feb 2023 16:20:00 +0100
gettext (0.21-11) unstable; urgency=medium
* Use a common debian/watch file which is valid for most GNU packages.
* Set upstream metadata fields Name, Bug-Submit and Repository-Browse.
* Update lintian override to new format.
* Update standards version to 4.6.2.
* Trim trailing whitespace.
* Run wrap-and-sort.
-- Santiago Vila <sanvila@debian.org> Tue, 31 Jan 2023 18:35:00 +0100
gettext (0.21-10) unstable; urgency=medium
* Add support for recent Java versions up to Java 17.
Thanks to Adrian Bunk. Closes: #982526, #1012105.
-- Santiago Vila <sanvila@debian.org> Sat, 19 Nov 2022 12:50:00 +0100
gettext (0.21-9) unstable; urgency=medium
* Really fix debian/not-installed file. Thanks to Jessica Clarke.
-- Santiago Vila <sanvila@debian.org> Fri, 26 Aug 2022 14:00:00 +0200
gettext (0.21-8) unstable; urgency=medium
* Fix debian/not-installed file. It was using filter logic in reverse
for non-Java architectures.
-- Santiago Vila <sanvila@debian.org> Tue, 16 Aug 2022 13:35:00 +0200
gettext (0.21-7) unstable; urgency=medium
* Restrict default-jdk and maven-repo-helper build dependencies to
architectures that support Java, and adjust debian/rules,
debian/gettext.install and debian/not-installed appropriately.
Based on a patch by Jessica Clarke. Closes: #981669, #982085.
* Drop outdated dependency on install-info. Closes: #1013201.
-- Santiago Vila <sanvila@debian.org> Mon, 15 Aug 2022 22:50:00 +0200
gettext (0.21-6) unstable; urgency=medium
* Remove unportable tests in perror and strerror_r.
Should fix FTBFS problem in armel, armhf and mipsel.
Patch by Paul Eggert. Reported by Florian Weimer here:
https://lists.gnu.org/r/bug-gnulib/2020-08/msg00220.html
-- Santiago Vila <sanvila@debian.org> Sat, 26 Mar 2022 00:30:00 +0100
gettext (0.21-5) unstable; urgency=medium
* Move dh-elpa to Build-Depends-Indep and change it to dh-sequence-elpa.
Remove explicit "--with elpa" options in debian/rules. Closes: #990039.
Thanks to Sebastien Bacher.
* Update test for changed libunistring line breaking behaviour.
Patch from Bruno Haible. Closes: #1005582.
Thanks to Sebastien Bacher.
-- Santiago Vila <sanvila@debian.org> Fri, 25 Mar 2022 18:20:00 +0100
gettext (0.21-4) unstable; urgency=medium
* Drop versioned build-dependency on g++ as it holds in stable.
Drop also unused build-dependencies fastjar, libglib2.0-dev
and libncurses5-dev. Closes: #981363. Thanks to Helmut Grohne.
* Use --with maven-repo-helper only when java is available.
Closes: #981668. Thanks to Samuel Thibault.
-- Santiago Vila <sanvila@debian.org> Tue, 02 Feb 2021 22:35:00 +0100
gettext (0.21-3) unstable; urgency=medium
* Install libintl.jar in /usr/share/maven-repo. Closes: #976738.
Thanks to Louis-Philippe Véronneau for the patch.
* Fix gnulib-related build problem in powerpc architectures. Closes: #977763.
Thanks to Bruno Haible for the patch.
-- Santiago Vila <sanvila@debian.org> Sun, 20 Dec 2020 17:44:00 +0100
gettext (0.21-2) unstable; urgency=medium
* Add groff to Build-Depends.
-- Santiago Vila <sanvila@debian.org> Sat, 19 Dec 2020 23:00:00 +0100
gettext (0.21-1) unstable; urgency=medium
* New upstream release.
- xgettext can detect '(eval_)gettext -e' in shell scripts. Closes: #507091.
- <gettext.h> compiles cleanly as C++. Closes: #547798.
- The unpacked usr/share/gettext/intl is no longer installed.
If you were using these files, find them in
/usr/share/gettext/archive.dir.tar.xz, which is part of the
autopoint package.
- Drop Daiki Ueno key (now expired) from signing-key.asc.
- Put the new upstream key instead:
"Bruno Haible (Open Source Development) <bruno@clisp.org>"
9001 B85A F9E1 B83D F1BD A942 F5BE 8B26 7C6A 406D
* Patches that are no longer necessary:
- 01-do-not-use-java-in-urlget.patch: Replaced with logic in debian/rules.
- 02-msgfmt-remove-pot-creation-date.patch: Merged upstream.
- 03-avoid-extraneous-nul-bytes.patch: Merged upstream.
- 04-fix-msgunfmt-heap-corruption.patch: Merged upstream.
- 05-fix-crash-xgettext-with-its.patch: Merged upstream.
- 06-java9-support.patch: Merged upstream.
- 07-java11-support.patch: Merged upstream.
- 08-java-future-support.patch: Merged upstream.
- 09-fix-crash-with-po-file-input.patch: Merged upstream.
* New patches:
- 01-use-system-help2man.patch: Use system help2man instead of
embedded help2man. Closes: #949338.
- 02-library-dependencies.patch: Link all libraries and
executables against all of their dependencies, correctly.
(Latent upstream bug, exposed by hardening.)
- 03-disable-libtextstyle.patch: Do not build libtextstyle.
It depends on libcroco, which is unmaintained and has known
security bugs. Use the Gnulib libtextstyle-dummy module
(already included in the upstream sources) instead.
Note that this means --color options silently do nothing.
Closes: #967028.
* Debhelper compat level 13 (current recommended).
- Switch to dh sequencing.
- Switch to Build-Depends: debhelper-compat.
- Switch to declarative package contents, using dh_install etc.
dh-exec is needed for build profile filtering in a few places.
(The old scripting is preserved in debian/rules.old.)
- Manual ldconfig triggers are no longer necessary.
- The HTML documentation and examples are now installed in
/usr/share/doc/gettext instead of .../gettext-doc.
* gettext-el is now created using dh_elpa, eliminating the need for
custom package scripts.
* Standards-Version: 4.5.0.
- All lintian E-level diagnostics have been addressed, and
many but not all of the W- and I-level diagnostics.
- I don’t *think* any specific changes were required besides the
above, but I could have missed something.
* This release is mostly the work of Zack Weinberg <zackw@panix.com>.
I'm merely making (very small) editorial changes and the upload.
Thanks a lot.
-- Santiago Vila <sanvila@debian.org> Sat, 19 Dec 2020 21:56:00 +0100
gettext (0.19.8.1-10) unstable; urgency=medium
* Make short descriptions more consistent.
* Use https for both Homepage and upstream URL in copyright file.
* Really drop libgettextlib.so and libgettextsrc.so (this was already
the intent but it was not working after the move to multiarch).
* Use wildcards in lintian overrides (also multiarch).
* Specify licenses for libasprintf (LGPL2.1+) and libgettextpo (GPL3+)
in the copyright file.
-- Santiago Vila <sanvila@debian.org> Wed, 20 Nov 2019 23:07:20 +0100
gettext (0.19.8.1-9) unstable; urgency=medium
* Fix double-free problem with *.po file input. Closes: #913173.
Patch extracted from upstream git where it was fixed by Daiki Ueno.
For reference, this is CVE-2018-18751.
* Add bison to Build-Depends, required by the above.
-- Santiago Vila <sanvila@debian.org> Sat, 10 Nov 2018 18:34:46 +0100
gettext (0.19.8.1-8) unstable; urgency=medium
* Fix FTBFS with Java 11, by applying Java related patches from
upstream git (gnulib). Thanks to Emmanuel Bourg <ebourg@apache.org>
for the report and Bruno Haible <bruno@clisp.org> for the fix.
Closes: #910246.
-- Santiago Vila <sanvila@debian.org> Sat, 06 Oct 2018 14:00:40 +0200
gettext (0.19.8.1-7) unstable; urgency=medium
* Use dh_autoreconf to regenerate autoconf stuff. New automake
version 1.16 in buster makes gettext to FTBFS because we are
modifying m4 files and the orig.tar.gz was created with 1.15.
* Update versioned build-dependency on debhelper accordingly.
* Disable libtoolize for the above to work.
* Rules-Requires-Root: no.
-- Santiago Vila <sanvila@debian.org> Sun, 12 Aug 2018 22:00:10 +0200
gettext (0.19.8.1-6) unstable; urgency=medium
* Apply all Java 9 related patches from upstream git instead
of the patch from openSUSE. This fixes gettext FTBFS bug
in a different way and also fixes msgfmt. Closes: #892733.
Thanks a lot to Bruno Haible.
-- Santiago Vila <sanvila@debian.org> Sat, 24 Mar 2018 19:32:04 +0100
gettext (0.19.8.1-5) unstable; urgency=medium
* Fix heap corruption in msgunfmt. Patch from Bruno Haible taken from
upstream git. Thanks to Jakub Wilk. Closes: #876498.
* Recommend lynx instead on lynx-cur.
Thanks to Axel Beckert for the report. Closes: #882284.
* Stop xgettext() from crashing when run with --its=FILE option.
Patch taken from git. Thanks to Gunnar Hjalmarsson. Closes: #891347.
* Support "nojava" instead of "stage1" in DEB_BUILD_PROFILES.
Thanks to Manuel FernĂ¡ndez Montecelo. Closes: #893064.
* Build with OpenJDK 9. Patch from Tiago StĂ¼rmer Daitx, adapted
from openSUSE. Thanks a lot. Closes: #893739.
* Move libgettextsrc, libgettextlib, and preloadable_libintl
to multiarch directory as done on Ubuntu.
* Use https in Bug-Debian field of Debian patches.
-- Santiago Vila <sanvila@debian.org> Sat, 24 Mar 2018 12:24:50 +0100
gettext (0.19.8.1-4) unstable; urgency=medium
* Avoid extraneous NUL bytes in .mo files. Closes: #872869.
Patch based on commit 2bad4d89684303fe884410ab0ae53770df6a6093
by Bruno Haible. Reported by Jakub Wilk. Thanks a lot.
-- Santiago Vila <sanvila@debian.org> Tue, 22 Aug 2017 03:20:24 +0200
gettext (0.19.8.1-3) unstable; urgency=medium
* Add g++ (>= 4:7) to Build-Depends to ensure it's built with GCC 7.
* Update shlibs file for libasprintf0v5. Closes: #871271.
* msgfmt: Remove POT-Creation-Date field from the header in the output.
Taken from upstream commit d13f165b83701dffc14f7151419e0c00c00c0d1b.
Should help reproducible builds. Closes: #792687, #825436.
* Drop spurious spaces/tabs in the changelog.
* Activate ldconfig via triggers.
* Build against libunistring2.
* Rename patches to *.patch.
-- Santiago Vila <sanvila@debian.org> Sun, 20 Aug 2017 22:50:10 +0200
gettext (0.19.8.1-2) unstable; urgency=medium
* Use debhelper more.
* Try to support cross-builds. Closes: #833894.
* Disable OpenMP support on m68k and sh4. Closes: #846932.
-- Santiago Vila <sanvila@debian.org> Mon, 23 Jan 2017 23:11:50 +0100
gettext (0.19.8.1-1) unstable; urgency=medium
* New upstream release.
* Drop 02-msgfmt-default-little-endian. Adopted upstream.
* Regression regarding Glade support should be fixed. Closes: #824642.
* Make debian/rules shorter by using some debhelper commands.
* Rename some debian/* files to adopt debhelper naming scheme.
-- Santiago Vila <sanvila@debian.org> Mon, 13 Jun 2016 01:06:00 +0200
gettext (0.19.7-2) unstable; urgency=high
* Install version specific data files from /usr/share/gettext-VERSION.
This should fix glade support. Thanks to Daiki Ueno. Closes: #809846.
-- Santiago Vila <sanvila@debian.org> Tue, 05 Jan 2016 00:55:00 +0100
gettext (0.19.7-1) unstable; urgency=medium
* New upstream release.
* Drop libexpat1-dev from Build-Depends, following upstream.
-- Santiago Vila <sanvila@debian.org> Tue, 29 Dec 2015 18:27:12 +0100
gettext (0.19.6-1) unstable; urgency=medium
* New upstream release.
* Drop debian/patches/03-fix-gettextize-version. No longer needed.
* Drop dependency of gettext-base on libasprintf0v5 as it dates from
a split made in release 0.18.1.1-6.
* Keep curl and friends in Recommends, for translators.
Move autopoint, libasprintf-dev and libgettextpo-dev to Suggests.
* Downgrade libasprintf0v5 to optional.
* Add debian/upstream/signing-key.asc and improve debian/watch file.
* Makefile.in.in has now a general mechanism to set the header of
a POT file, using $(DOMAIN).pot-update. This could be used to set
copyright holders and other things. Closes: #682580.
* Fix po-mode handling of msgfmt version number. Closes: #798903.
* Drop Pre-Depends on multiarch-support, because a stable release
has already happened.
-- Santiago Vila <sanvila@debian.org> Mon, 14 Sep 2015 00:32:52 +0200
gettext (0.19.5.1-1) unstable; urgency=medium
* New upstream release.
* New C++ ABI. libasprintf0c2 becomes libasprintf0v5.
Thanks a lot to Matthias Klose. Closes: #793897.
* Add patches/03-fix-gettextize-version to avoid FTBFS bugs on
packages using autopoint and friends. See bug-gettext for details.
-- Santiago Vila <sanvila@debian.org> Sun, 02 Aug 2015 21:25:10 +0200
gettext (0.19.4-1) unstable; urgency=low
* New upstream release.
* Fix msgunfmt segfaults. Closes: #772088.
* Drop obsolete patches:
- 03-libtool-powerpc-le.
- 04-xgettext-fix-double-free.
- 05-msgunfmt-fix-segfault.
- 06-msgfilter-fix-read-buffer-allocation.
- 99-config-guess-config-sub.
* Drop way obsolete build-time test for glibc >= 2.2.
* Drop debian/rules hack to keep timestamps.
* Create md5sums in a reproducible way.
* Fix mtimes before building binary packages.
-- Santiago Vila <sanvila@debian.org> Fri, 15 May 2015 18:01:02 +0200
gettext (0.19.3-2) unstable; urgency=low
* xgettext: Fix double-free in singular/plural argument extraction.
See http://lists.gnu.org/archive/html/bug-gettext/2014-10/msg00028.html
Patch extracted from upstream commits 8137d2b and 84044b5.
* msgunfmt: Fix segfault on certain (slightly corrupted) .mo files.
Patch extracted from upstream commit abf93d1. Closes: #769901.
* msgfilter: Fix read buffer allocation for empty input.
See http://lists.gnu.org/archive/html/bug-gettext/2014-11/msg00008.html
Patch extracted from upstream commit 06e206f.
-- Santiago Vila <sanvila@debian.org> Sun, 30 Nov 2014 12:10:20 +0100
gettext (0.19.3-1) unstable; urgency=low
* New upstream release.
* Updated /etc/emacs/site-start.d/50gettext.el to avoid error on .po
inside a tar file. Thanks a lot to Kevin Ryde. Closes: #628644.
* Report error on incomplete multibyte sequence. Closes: #763820.
* Dropped infinite recursion patch, renumber remaining patches.
* Dropped -I/usr/include/libxml2 hack in configure call introduced
in version 0.17-7 as it's no longer needed.
-- Santiago Vila <sanvila@debian.org> Thu, 23 Oct 2014 15:35:14 +0200
gettext (0.19.2-3) unstable; urgency=medium
* Applied patch by Eric Blake to autopoint.in and gettextize.in
fixing an infinite recursion in m4 that prevented util-linux
to be build. Closes: #764580.
* Updated config.guess and config.sub.
-- Santiago Vila <sanvila@debian.org> Fri, 10 Oct 2014 00:24:52 +0200
gettext (0.19.2-2) unstable; urgency=medium
* Added "Multi-Arch: foreign" to gettext-base. Closes: #760410.
-- Santiago Vila <sanvila@debian.org> Wed, 03 Sep 2014 22:08:00 +0200
gettext (0.19.2-1) unstable; urgency=low
* New upstream release. Closes: #755221.
* Dropped unused lintian overrides.
* Dropped 05-quotes-around-pwd-in-project-id. Adopted upstream.
* Use upstream tar.xz which is a lot smaller than tar.gz.
* Added gettext-tools/src/msgfmt.c to the list of files
touched by debian/rules, as we don't modify it so much
that msgfmt.1 or msgfmt.1.html need to be regenerated.
This will avoid a build dependency on groff (for now).
-- Santiago Vila <sanvila@debian.org> Thu, 24 Jul 2014 15:38:00 +0200
gettext (0.18.3.2-4) unstable; urgency=medium
* Made gettext-el to depend on emacs, not emacs23. Closes: #754014.
* Applied Ubuntu patch for little-endian powerpc. Closes: #754146.
This would result in extra build-dependencies (autoconf) because
of the timestamps, so we keep them in debian/rules before build.
-- Santiago Vila <sanvila@debian.org> Thu, 17 Jul 2014 11:17:00 +0200
gettext (0.18.3.2-3) unstable; urgency=medium
* Added "Multi-Arch: foreign" to autopoint, to be used in cross-build
environments. Closes: #753003. Thanks to Helmut Grohne.
* Do not ship an empty usr/lib in gettext-base.
-- Santiago Vila <sanvila@debian.org> Mon, 30 Jun 2014 10:01:24 +0200
gettext (0.18.3.2-2) unstable; urgency=low
* Updated build profile to use DEB_BUILD_PROFILES. Closes: #750044.
Thanks a lot to Wookey for the patch.
-- Santiago Vila <sanvila@debian.org> Sun, 01 Jun 2014 11:02:52 +0200
gettext (0.18.3.2-1) unstable; urgency=medium
* New upstream release.
* Dropped 07-disable-m4-include-when-tracing.
-- Santiago Vila <sanvila@debian.org> Thu, 16 Jan 2014 16:17:04 +0100
gettext (0.18.3.1-2) unstable; urgency=medium
* Fixed autopoint problem that made coreutils build to fail.
Patch by Daiki Ueno. Closes: #730321.
-- Santiago Vila <sanvila@debian.org> Wed, 27 Nov 2013 19:03:16 +0100
gettext (0.18.3.1-1) unstable; urgency=low
* New upstream release.
-- Santiago Vila <sanvila@debian.org> Sat, 17 Aug 2013 16:00:06 +0200
gettext (0.18.3-1) unstable; urgency=low
* New upstream release.
* xgettext now partially supports JavaScript. Closes: #590724.
* xgettext and msgfmt's format string checking now recognize Python
format string in braced syntax (PEP 3101). Closes: #668226.
-- Santiago Vila <sanvila@debian.org> Tue, 16 Jul 2013 11:32:34 +0200
gettext (0.18.2.1-1) unstable; urgency=low
* New upstream release.
* Changed Depends on libasprintf-dev and libgettextpo-dev to Recommends.
* Drop libgettextlib.so and libgettextsrc.so, as those libraries are
for internal use only and not meant to be used by other packages.
* The infrastructure archive now uses xz compression. Closes: #660391.
Changed Depends and Build-Depends accordingly.
* Modified debian/rules to support bootstrapping. Closes: #709559.
* Deprecated macro AM_PROG_MKDIR_P not used anymore. Closes: #709740.
* Review of patches in debian/patches:
* 01-do-not-use-java-in-urlget. Kept.
* 02-no-usr-share-info-dir-gz. Dropped in favour of AM_UPDATE_INFO_DIR.
* 03-fix-xgettext-crash. Dropped. Now upstream.
* 04-new-scheme-syntax. Dropped. Now upstream.
* 05-quotes-around-pwd-in-project-id. Kept.
* 06-msgfmt-default-little-endian. Kept.
* 07-eglibc-21.6-ftbfs-nogets. Dropped. Obsolete.
* 99-config-guess-config-sub. Updated.
-- Santiago Vila <sanvila@debian.org> Thu, 30 May 2013 18:37:30 +0200
gettext (0.18.1.1-10) unstable; urgency=low
* Split out libgettextpo-dev and libasprintf-dev for multiarch
dependencies. Thanks to P.J McDermott for core patch. Closes: #683751.
* Fix FTBFS on eglibc-2.16 (gets removal/outdated gnulib). Closes: #693361.
* Thanks a lot to Colin Watson and Wookey, as they did all the work.
* Keep autosprintf.info.gz in gettext for now, for safety.
* Note: This is a "conservative release" which tries to be nice with
autobuilders using unstable. After the release of wheezy, the following
changes will be made: a) Change gettext Depends on the new -dev packages
to just Recommends, and b) Drop libgettextsrc.so and libgettextlib.so,
as those libraries are for internal use only and not meant to be used
by other packages. Those changes will be made *regardless* of this release
entering wheezy or not. Debian derivatives (like Ubuntu) are welcome to
do them now, as it is what will eventually happen in Debian.
-- Santiago Vila <sanvila@debian.org> Wed, 28 Nov 2012 17:14:44 +0100
gettext (0.18.1.1-9) unstable; urgency=low
* Build with hardened build flags.
* Use Breaks instead of Conflicts for autopoint (lintian warning).
* Use $(STRIP) on ELF binaries. not just on libraries.
-- Santiago Vila <sanvila@debian.org> Thu, 07 Jun 2012 12:08:00 +0200
gettext (0.18.1.1-8) unstable; urgency=low
* Modified msgfmt to always create little endian .mo files.
Thanks a lot to Steve Langasek. Closes: #671257.
* Updated config.guess and config.sub.
-- Santiago Vila <sanvila@debian.org> Wed, 16 May 2012 13:54:32 +0200
gettext (0.18.1.1-7) unstable; urgency=low
* Create symlinks required by new emacs policy using "ln -sf".
Thanks to AgustĂn MartĂn. Closes: #671353.
-- Santiago Vila <sanvila@debian.org> Fri, 04 May 2012 18:35:31 +0200
gettext (0.18.1.1-6) unstable; urgency=low
* Run dpkg-shlibdeps on libraries, as it should be. Closes: #670588.
This makes --no-as-needed not required after all. Closes: #604778.
* Put symlinks to .el files where emacs can find them, following
the latest emacs policy. Closes: #664551.
* Changed project-id to use quotes around pwd. Closes: #654779.
* Split out libgettextpo0 for multiarch. Closes: #646034.
Thanks a lot to Steve Langasek.
* Split out libasprintf0c2 as well. For now, gettext-base depends
on libasprintf0c2 so that it's not missed on upgrades, for this reason
this library is Priority: standard as well. After the release of wheezy
we can think about this again.
* Dropped README.Debian, no longer needed.
-- Santiago Vila <sanvila@debian.org> Sat, 28 Apr 2012 18:40:40 +0200
gettext (0.18.1.1-5) unstable; urgency=low
* Applied patch by Bruno Haible to teach xgettext about new scheme
syntax. Reported by David Pirotte. Closes: #641371.
-- Santiago Vila <sanvila@debian.org> Wed, 05 Oct 2011 15:19:00 +0200
gettext (0.18.1.1-4) unstable; urgency=low
* Applied patch by Bruno Haible to fix xgettext crash when extracting
a message with plural that is excluded. Closes: #608181.
* Dropped obsolete -D_REENTRANT. Use --enable-threads instead.
-- Santiago Vila <sanvila@debian.org> Fri, 05 Aug 2011 15:47:34 +0200
gettext (0.18.1.1-3) unstable; urgency=high
* Do not include /usr/share/info/dir.gz file in binary package if
install-info is present during the build. Closes: #597407.
-- Santiago Vila <sanvila@debian.org> Sun, 19 Sep 2010 17:09:36 +0200
gettext (0.18.1.1-2) unstable; urgency=medium
* Changed lynx to lynx-cur in gettext Recommends, as lynx is a dummy
transitional package. Closes: #595741.
-- Santiago Vila <sanvila@debian.org> Sat, 11 Sep 2010 13:11:40 +0200
gettext (0.18.1.1-1) unstable; urgency=low
* New upstream release.
* Added Conflicts: autopoint (<= 0.17-11) to gettext, as the old dummy
autopoint had a dependency on gettext that should have been versioned
and the current gettext package no longer contains the autopoint script.
* Dropped cvs and rcs from Build-Depends. No longer needed.
* Dropped options --without-cvs and --with-git from ./configure call,
as those are now the default.
* Added Build-Depends: libunistring-dev.
-- Santiago Vila <sanvila@debian.org> Sun, 13 Jun 2010 14:34:30 +0200
gettext (0.18-1) unstable; urgency=low
* New upstream release.
* When called with options --statistics and --verbose, msgfmt now prints
the filename as a prefix of the statistics line. Closes: #320174.
* Changed 50gettext.el to behave if gettext-el is removed but not purged.
Thanks to Kevin Ryde. Closes: #422664.
* Fixed infinite loop in po-previous-translated-entry. Closes: #496944.
* Makevars now allows passing options for msgmerge. Closes: #538137.
* autopoint now supports multiple PO directories. Closes: #538150.
* Upstream includes zh_CN translation. Closes: #559051.
* Lots of programs now support --color. Closes: #573704.
* Fixed xgettext problem with perl strings. Closes: #573770.
* Changed autopoint so that it uses git instead of cvs. As the autopoint
package was created to avoid gettext to depend on cvs, we are not going
to make gettext to depend on git now. Moreover, as packages using
autopoint and still having cvs in their build-depends would not work
anymore even if autopoint is still kept in the gettext package, this
effectively puts an end to the transition period: packages using
autopoint must build-depend on autopoint now.
* Do the actual move of autopoint stuff to the autopoint package.
* Applied patch from Bruno Haible to not publicize the builder's name
and email in the small git repository created for autopoint.
* Added cvs, rcs and git to build-depends, because of the above.
* Updated README.Debian to match current status of autopoint package.
* Removed way obsolete versioned Replaces everywhere, as we don't
support upgrades which skip releases.
-- Santiago Vila <sanvila@debian.org> Tue, 18 May 2010 13:52:36 +0200
gettext (0.17-11) unstable; urgency=low
* Enable java on all architectures, by using default-jdk.
Thanks to Petr Salinger. Closes: #578602.
-- Santiago Vila <sanvila@debian.org> Fri, 23 Apr 2010 20:21:10 +0200
gettext (0.17-10) unstable; urgency=low
* Switch to 3.0 (quilt) source format, 10 patches.
* Create an autopoint package. Packages using autopoint should now
build-depend on it and drop cvs if they don't use it directly.
After packages have been updated, the autopoint script will actually
be moved to the autopoint package. This procedure avoids breaking
affected packages during the transition period.
* gettext now recommends autopoint, not cvs.
* Rewrite of README.Debian to match reality.
* Added homepage.
-- Santiago Vila <sanvila@debian.org> Sun, 28 Feb 2010 17:43:26 +0100
gettext (0.17-9) unstable; urgency=low
* Added several lintian overrides.
* Do not ship empty directories in /usr/share/locale.
* gettext-el: Update Depends to current emacs (emacs23).
* Disable java for hurd-i386, kfreebsd-amd64 and kfreebsd-i386,
as they don't have openjdk yet. Closes: #568390.
-- Santiago Vila <sanvila@debian.org> Sun, 14 Feb 2010 16:48:00 +0100
gettext (0.17-8) unstable; urgency=low
* Modified Makefile.in files to avoid /usr/share/info/dir.gz.
* Handle info files as indicated by policy 3.8.3.
* Removed useless calls to install-docs.
* Updated config.guess and config.sub.
* Removed useless .la files.
-- Santiago Vila <sanvila@debian.org> Sun, 30 Aug 2009 16:25:06 +0200
gettext (0.17-7) unstable; urgency=low
* Moved gettext-el to section lisp.
* Disabled mono stuff, as compilation now fails in squeeze.
* Moved cvs from Suggests to Recommends, as indicated by DEPENDENCIES
document in source, for the benefit of people who tell apt to treat
recommends as depends and just want to play with gettext. People building
Debian packages should still read README.Debian. Closes: #506022.
* Recognize the perl 5.10 operator '//'. Closes: #519759.
* Build-Depends on openjdk-6-jdk, not jikes-classpath. Closes: #529496.
* Really depend on libxml2 instead of using the embedded version.
-- Santiago Vila <sanvila@debian.org> Mon, 17 Aug 2009 18:08:54 +0200
gettext (0.17-6) unstable; urgency=low
* Added libncurses5-dev, libxml2-dev, libglib2.0-dev and libcroco3-dev
to Build-Depends, needed for the --color option of the various programs.
Otherwise, an embedded version is used, which is forbidden by policy.
* Standards-Version: 3.8.0.
-- Santiago Vila <sanvila@debian.org> Fri, 28 Nov 2008 12:49:56 +0100
gettext (0.17-5) unstable; urgency=low
* Changed gettext-el dependency from emacsen to "emacs22 | emacsen".
* Run "make distclean" only if Makefile exists, but do not ignore errors.
* po-mode: Do not duplicate headers with emacs23. Closes: #504356.
-- Santiago Vila <sanvila@debian.org> Fri, 28 Nov 2008 11:12:15 +0100
gettext (0.17-4) unstable; urgency=low
* Fixed xgettext crash with some unicode chars. Closes: #493218.
* Fixed wrong updating of POT-Creation-Date by msgmerge. Closes: #496282.
* Both patches by the author.
-- Santiago Vila <sanvila@debian.org> Wed, 27 Aug 2008 18:42:00 +0200
gettext (0.17-3) unstable; urgency=low
* Added lpia to the list of supported mono archs. Closes: #455842.
Requested by Ubuntu, but completely harmless for Debian.
* Added --disable-native-java to ./configure call to prevent gcj from
being used even if it's installed. This avoids a Build-Conflicts: gcj
and fixes a "FTBFS in unclean chroot" bug. Closes: #474901.
* Changed po-mode.el to save buffer when PO-Revision-Date is hold.
Approved by the author. Thanks to Kobayashi Noritada. Closes: #482364.
* Converted doc-base file to UTF-8. Moved to "Programming" section.
-- Santiago Vila <sanvila@debian.org> Thu, 12 Jun 2008 18:48:44 +0200
gettext (0.17-2) unstable; urgency=medium
* Changed po-mode.el to use new-style backquotes. Closes: #453103.
Thanks to Agustin Martin for the report.
-- Santiago Vila <sanvila@debian.org> Fri, 7 Dec 2007 20:13:01 +0100
gettext (0.17-1) unstable; urgency=low
* New upstream release. Closes: #451091. See the NEWS for details.
* Public domain files are clearly marked as such. Closes: #412310.
* Fixed xgettext problem with python unicode strings. Closes: #433743.
* Added file to Build-Depends, as it's used by debian/rules. This was
probably dropped in 0.12.1-6 after the build problem on ARM was fixed
the right way by using the latest libtool. Previously, the old libtool
used "file" on the ARM architecture.
* gettext tools are now under GPL version 3.
-- Santiago Vila <sanvila@debian.org> Sun, 25 Nov 2007 11:35:30 +0100
gettext (0.16.1-2) unstable; urgency=low
* Fixed po-check-file-header bug in po-mode.el. Closes: #385005.
* Modified description of gettext-el package. Closes: #422649.
* Moved java files to /usr/share/java. Closes: #376601.
* Added missing library dependencies to gettext-base.
* Fixed name for zh-cn team. Closes: #428594.
* Fixed typo in po-mode.el. Closes: #412656.
-- Santiago Vila <sanvila@debian.org> Mon, 2 Jul 2007 20:29:14 +0200
gettext (0.16.1-1) unstable; urgency=low
* New upstream release. See the NEWS file for details.
* Use -no-site-file instead of --no-site-file, to make xemacs happy.
Thanks to Luis Rodrigo Gallardo for the report. Closes: #399284.
* Fixed xgettext segfault with lisp files, which made other packages
to FTBFS. Thanks to Martin Pitt for the report. Closes: #400187.
-- Santiago Vila <sanvila@debian.org> Mon, 27 Nov 2006 23:31:08 +0100
gettext (0.15-3) unstable; urgency=medium
* Fixed perl parser by updating x-perl.c from CVS (Closes: #386912).
* Build C# stuff using mono, not pnet. This fixes a FTBFS bug, as pnet
is currently uninstallable.
-- Santiago Vila <sanvila@debian.org> Fri, 3 Nov 2006 17:19:02 +0100
gettext (0.15-2) unstable; urgency=low
* Fixed xgettext segfault on certain scheme input (Closes: #384698).
Patch by Bruno Haible.
-- Santiago Vila <sanvila@debian.org> Thu, 31 Aug 2006 19:35:04 +0200
gettext (0.15-1) unstable; urgency=low
* New upstream release (Closes: #381534).
* Improved msgmerge error message (Closes: #305703).
* Recognize Bash process substitution syntax (Closes: #374483).
* The 'mkinstalldirs' shell script is no longer needed and no longer
installed by gettextize (Closes: #378239).
* The manual is now dual-licensed as GNU GPL and GNU FDL with no
Invariant Sections, no Front-Cover Text, and no Back-Cover Texts,
so we can distribute it in main in either case.
* Applied patch from Bruno Haible to fix a bug in xgettext.
See gnu.utils.bug for details.
-- Santiago Vila <sanvila@debian.org> Mon, 21 Aug 2006 18:45:14 +0200
gettext (0.14.6-1) unstable; urgency=low
* New upstream release. From the NEWS file:
- Updated the meaning of 'gcc-internal-format' to match GCC 4.1.
* Changed x-php.c to fix xgettext problem with PHP (Closes: #366131).
-- Santiago Vila <sanvila@debian.org> Fri, 23 Jun 2006 17:39:10 +0200
gettext (0.14.5-4) unstable; urgency=low
* Reverted change made to gettext.m4, as it breaks autopoint.
The change will be made in the next upstream version anyway.
Thanks a lot to Ben Pfaff for the report (Closes: #367263).
* Added C# support for architectures having a recent pnet.
* gettext now contains msgfmt.net.exe and msgunfmt.net.exe.
* gettext-base now contains GNU.Gettext.dll.
-- Santiago Vila <sanvila@debian.org> Mon, 15 May 2006 18:01:08 +0200
gettext (0.14.5-3) unstable; urgency=low
* Modified po-mode.el so that po-validate loads compile.el (Closes: #316852).
* Modified gettext.sh to be more friendly to zsh (Closes: #343354).
* Modified gettext.m4 to avoid calling AM_NLS twice (Closes: #353435).
* Put gettext-base in section utils, following the override file.
* Removed no longer required Build-Depends-Indep: texi2html.
-- Santiago Vila <sanvila@debian.org> Mon, 1 May 2006 19:11:56 +0200
gettext (0.14.5-2) unstable; urgency=low
* New C++ ABI. gettext-base now Provides: libasprintf0c2.
* Changed shlibs file accordingly.
-- Santiago Vila <sanvila@debian.org> Wed, 6 Jul 2005 17:30:10 +0200
gettext (0.14.5-1) unstable; urgency=low
* New upstream release.
-- Santiago Vila <sanvila@debian.org> Mon, 6 Jun 2005 19:02:50 +0200
gettext (0.14.4-2) unstable; urgency=medium
* Moved libgettextpo from gettext-base to gettext, where it belongs.
As libgettextpo depends on libgettextlib, which is in gettext, this
should remove an undeclared (and undesired) dependency of
gettext-base on gettext (Closes: #307749). The blender package
should work again if their dependencies are installed.
Thanks to Steve Langasek for the report.
* Moved Provides: libgettextpo0 from gettext-base to gettext.
* gettext now Replaces: gettext-base (<= 0.14.4-1).
* Moved the libgettextpo bit of shlibs in gettext-base to gettext.
-- Santiago Vila <sanvila@debian.org> Thu, 5 May 2005 17:02:08 +0200
gettext (0.14.4-1) unstable; urgency=low
* New upstream release.
-- Santiago Vila <sanvila@debian.org> Thu, 14 Apr 2005 16:00:18 +0200
gettext (0.14.3-1) unstable; urgency=low
* New upstream release.
* Added watch file.
-- Santiago Vila <sanvila@debian.org> Thu, 31 Mar 2005 19:11:02 +0200
gettext (0.14.2-1) unstable; urgency=low
* New upstream (bugfix) release.
* The Debian diff is small again.
* The copyright file is now in UTF-8.
* A lot of files have relaxed licensing terms.
* Improved manual about eval_gettext (Closes: #279992).
* gettext.sh is now both a shell function library and a shell script,
so /usr/share/gettext/gettext.sh is dropped (Closes: #292759).
-- Santiago Vila <sanvila@debian.org> Tue, 8 Mar 2005 15:16:28 +0100
gettext (0.14.1-10) unstable; urgency=low
* Removed dependency on libgcj4 by not using gcj anymore (Closes: #292988).
* Added "curl | wget | lynx" to the Recommends field and disabled GetURL
call from urlget.c. This should be a better fix for Bug#244215.
* gettext now includes gettext.jar for java development.
For this to work, you will need a Java Virtual Machine.
-- Santiago Vila <sanvila@debian.org> Thu, 3 Feb 2005 18:18:22 +0100
gettext (0.14.1-9) unstable; urgency=low
* Changed gettext.sh to be a symlink to /usr/share/gettext/gettext.sh.
* Changed architecture-dependent build-dependencies to be inclusive
rather than exclusive, to not break unreleased architectures.
-- Santiago Vila <sanvila@debian.org> Tue, 1 Feb 2005 18:29:02 +0100
gettext (0.14.1-8) unstable; urgency=low
* Added java support, using jikes-classpath and also gcj when available.
* Weird java error from msginit should now be gone (Closes: #244215).
* gettext-base now provides libintl.jar (Closes: #259730).
* Debian changelog is now in UTF-8.
-- Santiago Vila <sanvila@debian.org> Sat, 22 Jan 2005 20:21:12 +0100
gettext (0.14.1-7) unstable; urgency=medium
* Fixed remaining vulnerability in autopoint, where temporary directories
were created using an unknown umask (Closes: #286392).
Patch by Bruno Haible. Thanks to Javier for the report.
-- Santiago Vila <sanvila@debian.org> Tue, 11 Jan 2005 17:55:30 +0100
gettext (0.14.1-6) unstable; urgency=high
* Fixed xgettext misparsing of perl source (Closes: #269059).
Patch by Guido Flohr, approved by Bruno Haible.
* Added Suggests: gettext-doc to gettext (Closes: #270886).
* Improved description of gettext-doc (Bug #270886 also).
* Fixed gettextize and autopoint insecure behaviour regarding
temp files (Closes: #278283). This is CAN-2004-0966.
Patch by Mark J. Cox, slightly modified by Martin Pitt.
The patch hardcodes `:' as the PATH separator, so it will not work
on non-Unix Debian architectures (sorry), but should be good enough
for the 11 architectures in sarge, the Hurd and the *BSDs.
-- Santiago Vila <sanvila@debian.org> Wed, 27 Oct 2004 19:21:30 +0200
gettext (0.14.1-5) unstable; urgency=low
* Fixed Tag Table in info file. If this does not fix Bug #260048,
install-info should find a better excuse to fail.
-- Santiago Vila <sanvila@debian.org> Sun, 18 Jul 2004 18:36:10 +0200
gettext (0.14.1-4) unstable; urgency=low
* Fixed info file (Closes: #260048).
-- Santiago Vila <sanvila@debian.org> Sun, 18 Jul 2004 13:39:06 +0200
gettext (0.14.1-3) unstable; urgency=low
* Simplified Build-Depends. Now glibc is required to be >= 2.2 by using
a run-time test. This will break autobuilders still running potato.
* Improved ABOUT-NLS wording (Closes: #239456).
* Updated manual regarding python bug (Closes: #246334).
* Updated gettext-tools/projects/TP/teams.html (Closes: #248224).
* Relibtoolized with libtool 1.5.6-1 (Closes: #258178).
* Added README.Debian (Closes: #258433).
-- Santiago Vila <sanvila@debian.org> Sat, 17 Jul 2004 19:11:02 +0200
gettext (0.14.1-2) unstable; urgency=low
* Added libexpat1-dev to Build-Depends, for glade support.
* Added libc0.1-dev to Build-Depends, for GNU/kFreeBSD.
* Removed special-casing of knetbsd-gnu in debian/rules.
-- Santiago Vila <sanvila@debian.org> Sun, 14 Mar 2004 17:40:02 +0100
gettext (0.14.1-1) unstable; urgency=low
* New upstream release, relibtoolized with libtool 1.5.2-1,
autoconf 2.59-2 and automake 1.8.2-1.
* Added --disable-csharp to ./configure call, just in case.
-- Santiago Vila <sanvila@debian.org> Sat, 14 Feb 2004 17:31:34 +0100
gettext (0.13.1-2) unstable; urgency=low
* Fixed xgettext, which sometimes does not print comments found in
source files. Patch by Bruno Haible (Closes: #227339).
* Fixed msginit, which segfaults if input file has no header.
Patch by Bruno Haible (Closes: #227652).
-- Santiago Vila <sanvila@debian.org> Thu, 15 Jan 2004 19:47:48 +0100
gettext (0.13.1-1) unstable; urgency=low
* New upstream release.
* Relibtoolized with libtool 1.5-8, autoconf 2.59-1 and automake 1.7.9-3.
This should ensure a correct build under all architectures, but it also
prevents libgettextsrc being linked against the previously installed
libgettextlib, otherwise we would need a Build-Conflicts: gettext.
* Added libc1-dev (>= 2.2) to Build-Depends, for GNU/K*BSD systems.
-- Santiago Vila <sanvila@debian.org> Mon, 5 Jan 2004 14:24:04 +0100
gettext (0.12.1-8) unstable; urgency=medium
* gettext-base now Replaces: gettext (<= 0.12.1-1), since libasprintf
shared library was present on gettext_0.12.1-1 (Closes: #216406).
-- Santiago Vila <sanvila@debian.org> Mon, 20 Oct 2003 19:04:48 +0200
gettext (0.12.1-7) unstable; urgency=low
* Modified two Makefile.in files so that install-info is never called
during the build, to prevent /usr/share/info/dir.gz to appear.
* Added -D_REENTRANT to CFLAGS, since there are libraries here.
-- Santiago Vila <sanvila@debian.org> Thu, 9 Oct 2003 13:03:06 +0200
gettext (0.12.1-6) unstable; urgency=low
* Updated libtool stuff using Debian libtool_1.5-2, required by ARM.
Version 1.5-1 used in gettext_0.12.1-4 did not really work.
-- Santiago Vila <sanvila@debian.org> Sat, 13 Sep 2003 12:10:36 +0200
gettext (0.12.1-5) unstable; urgency=low
* Strip static libraries using --strip-debug.
* Strategically touch files in the build target to convince make that
no file does really need to be regenerated using automake or autoconf.
* While we are at it, the warning about autoheader should disappear too.
-- Santiago Vila <sanvila@debian.org> Fri, 12 Sep 2003 22:54:34 +0200
gettext (0.12.1-4) unstable; urgency=low
* Reorganized debian/rules almost entirely.
* Added ABOUT-NLS to /usr/share/doc/gettext-base.
* Updated libtool stuff using Debian libtool. I expected this would allow
the build-dependency on file to be removed, but I was wrong, see 0.12.1-6.
Note: The size of the diff is not an error, it's the result of updating
everything to not build-depend on autoconf either.
* autopoint should now parse intl/VERSION correctly (Closes: #204384).
Patch by Denis Barbier.
* Restored libasprintf and libgettextpo shared libraries (closes: #209398),
which should now be handled in a more orthodox way, namely:
- Added a shlibs file to gettext-base.
- gettext-base provides libasprintf0 and libgettextpo0.
- gettext provides libasprintf-dev and libgettextpo-dev.
-- Santiago Vila <sanvila@debian.org> Fri, 12 Sep 2003 17:13:08 +0200
gettext (0.12.1-3) unstable; urgency=medium
* Added file to Build-Depends. This should now build under ARM.
-- Santiago Vila <sanvila@debian.org> Tue, 15 Jul 2003 13:11:04 +0200
gettext (0.12.1-2) unstable; urgency=low
* Modified autoconf-lib-link/m4/lib-prefix.m4 to prevent a duplicate
macro definition problem. Patch by Bruno Haible (Closes: #196648).
* Added build-dependency on automake1.7, because of the above.
* Removed shared libraries libasprintf and libgettextpo. For now, only
the static libraries will be supported.
-- Santiago Vila <sanvila@debian.org> Sun, 6 Jul 2003 19:00:18 +0200
gettext (0.12.1-1) unstable; urgency=low
* New upstream release. gettext is now two packages in one.
Debian gettext-base is upstream gettext-runtime, and Debian gettext
is upstream gettext-tools (approximately). BTW, gettext-base is much
smaller than before because message catalogs have been splitted.
* Moved section 3 manpages from gettext to gettext-base, as recommended
by PACKAGING. Updated Replaces: field accordingly.
* mkinstalldirs is now in sync with archive.tar.gz (Closes: #157097).
* autopoint uses func_fatal_error, not fatal_error (Closes: #158383).
* autopoint needs cvs, so gettext Suggests: it (Closes: #166477).
* If the m4 dir is an absolute path, ignore it (Closes: #192159).
-- Santiago Vila <sanvila@debian.org> Fri, 6 Jun 2003 21:47:08 +0200
gettext (0.11.5-1) unstable; urgency=low
* New upstream release. Noteworthy changes:
- There are now two shared libraries on which many of the tools depend,
but there will be no shlibs file, or -dev package, or static libraries
because the libraries are undocumented and for internal use only.
- A file called libintl.jar was supposed to be created during the build,
but gcj is excluded as a valid Java compiler, so to ensure that the
package is built in exactly the same way on every architecture, there
is now a Build-Conflicts: java-compiler. Sorry.
- There is now a much improved manual. Interested parties are strongly
encouraged to (re-)read it. In particular, people using gettextize on a
regular basis should consider using the new `autopoint' tool instead.
- Since there are now upstream manpages, the old ones are removed from
the debian directory.
* The following bugs in 0.10.40 are now fixed:
- po-mode can now open a new .po file using emacs21 (Bug #137353).
- xgettext -D does no longer break -j (Bug #147341).
- Manual is clarified about xgettext and .pot extension (Bug #147624).
- po-mode accepts mailing lists not at @li.org (Bugs #149137 and #154580).
* More info at /usr/share/doc/gettext/NEWS.
-- Santiago Vila <sanvila@debian.org> Wed, 14 Aug 2002 11:30:28 +0200
gettext (0.10.40-8) unstable; urgency=low
* Made gettext-el prerm and postinst fault-tolerant, since emacsen-common
is not. Should allow upgrades from woody.
-- Santiago Vila <sanvila@debian.org> Mon, 22 Jul 2002 18:20:02 +0200
gettext (0.10.40-7) unstable; urgency=low
* gettext does no longer depend on gettext-el.
* gettext-el now depends on emacsen.
-- Santiago Vila <sanvila@debian.org> Sat, 20 Jul 2002 13:21:24 +0200
gettext (0.10.40-6) unstable; urgency=low
* New Hurd ABI. Changed libc0.2-dev to libc0.3-dev in Build-Depends.
Closes: #144562.
-- Santiago Vila <sanvila@debian.org> Sat, 27 Apr 2002 13:45:18 +0200
gettext (0.10.40-5) unstable; urgency=medium
* Modified /etc/emacs/site-start.d/50gettext.el so that it only uses
modify-coding-system-alist when it's actually ok to do so.
This closes: #110416 (xemacs21) and also closes: #141446 (emacs19).
-- Santiago Vila <sanvila@debian.org> Wed, 10 Apr 2002 13:17:42 +0200
gettext (0.10.40-4) unstable; urgency=medium
* Moved po-mode support to a new package, gettext-el. For now, gettext
depends on it to ensure smooth upgrades from potato regardless of
the upgrade method, but this dependency will be dropped after the
release of woody.
* Removed the dependency on emacsen-common while gettext still depends
on gettext-el. This should be safe enough because emacsen-common is
now more robust, but it is some sort of compromise. After the release
of woody, gettext-el will depend on emacsen (not emacsen-common),
to be in full compliance with debian emacs policy.
-- Santiago Vila <sanvila@debian.org> Sat, 9 Mar 2002 13:00:12 +0100
gettext (0.10.40-3) unstable; urgency=low
* Modified prerm to be fault-tolerant regarding prerm scripts in
previous gettext releases which did not depend on emacsen-common yet.
This is possible because dpkg executes the new prerm if the old one fails.
Should fix a bug which has been reported a lot of times.
-- Santiago Vila <sanvila@debian.org> Mon, 4 Feb 2002 17:44:42 +0100
gettext (0.10.40-2) unstable; urgency=low
* Added support for DEB_BUILD_OPTIONS. The normal install target
is used again, passing both INSTALL_PROGRAM and INSTALL_SCRIPT.
* Moved ngettext and ngettext(1) to gettext-base. Updated Replaces.
* Added dependency on emacsen-common (Closes: #48681, #65320).
-- Santiago Vila <sanvila@debian.org> Sat, 2 Feb 2002 16:24:28 +0100
gettext (0.10.40-1) unstable; urgency=low
* New upstream release. libintl is now under LGPL, not GPL.
-- Santiago Vila <sanvila@debian.org> Sun, 16 Sep 2001 14:26:02 +0200
gettext (0.10.39-2) unstable; urgency=medium
* Put new manpages where they belong (Closes: #107651).
-- Santiago Vila <sanvila@debian.org> Sat, 4 Aug 2001 18:25:55 +0200
gettext (0.10.39-1) unstable; urgency=low
* New upstream release.
-- Santiago Vila <sanvila@debian.org> Fri, 27 Jul 2001 18:45:26 +0200
gettext (0.10.38-4) unstable; urgency=medium
* According to the Debian diff, aclocal.m4 is modified and then some files
in the `m4' subdirectory, in that order. This may make aclocal.m4 to be
regenerated during the build, but the `missing' script is unable to handle
that if automake is not present. Instead of adding a Build-Depends,
debian/rules now touches aclocal.m4 in the build target (Closes: #104746).
-- Santiago Vila <sanvila@debian.org> Sat, 14 Jul 2001 16:43:30 +0200
gettext (0.10.38-3) unstable; urgency=medium
* Added libc6.1-dev (>= 2.2) to Build-Depends for alpha and ia64.
Thanks to Matt Taggart for the report.
* Rightly refer to the GNU *General* Public License in the documentation.
Reported by André Dahlqvist (Closes: #102237).
* Modified 50gettext.el to tell Emacs how to determine automatically the
coding system of every PO file. (Closes: #103530).
Thanks to Gaute B Strokkenes for the report.
-- Santiago Vila <sanvila@debian.org> Fri, 13 Jul 2001 08:07:16 +0200
gettext (0.10.38-2) unstable; urgency=medium
* Made gettext.m4 to work in packages which use autoconf-2.50.
Patch by Bruno Haible (Closes: #99732).
-- Santiago Vila <sanvila@debian.org> Sat, 23 Jun 2001 17:14:49 +0200
gettext (0.10.38-1) unstable; urgency=low
* New upstream release.
* gettext.m4 syntax should be really fixed this time (Closes: #94362).
* gettextize now installs plural.c (Closes: #98163).
-- Santiago Vila <sanvila@debian.org> Sat, 26 May 2001 16:15:08 +0200
gettext (0.10.37-1) unstable; urgency=low
* New upstream release.
* Fixes gettext.m4 syntax (Closes: #94362).
-- Santiago Vila <sanvila@debian.org> Tue, 24 Apr 2001 18:39:19 +0200
gettext (0.10.36-2) unstable; urgency=low
* Registered HTML docs using doc-base (Closes: #63379).
* Added manpages for every executable (Closes: #92200, #92201).
Thanks a lot to Michael Piefel for contributing them.
* Applied two patches from Bruno Haible:
- Workaround an automake-1.4 bug (Closes: #93119).
- Removed undeclared build-dependency on itself (Closes: #93275).
-- Santiago Vila <sanvila@debian.org> Fri, 13 Apr 2001 17:42:20 +0200
gettext (0.10.36-1) unstable; urgency=low
* New upstream release. It should fix the following bugs:
- Documentation is now more accurate (Closes: #28696).
- DESTDIR is now supported (Closes: #38414, #41823, #52571, #85311).
- gettextize now prints the right aclocal directory (Closes: #38935, #52858).
- intl/Makefile.in removes libintl.h upon clean (Closes: #56039).
- gettextize now checks for $gettext_dir before using it (Closes: #69519).
- Norwegian Nynorsk is now "nn" (Closes: #87735).
* Added the file NEWS to the doc directory.
* Removed build-dependency on texinfo, since the .texi is now untouched.
* glibc >= 2.2 is now required for the build, to avoid the creation of
a shared libintl library with features not included in libc.
* No more ./configure --with-included-gettext. This is also required
to avoid the shared library.
-- Santiago Vila <sanvila@debian.org> Tue, 3 Apr 2001 10:43:23 +0200
gettext (0.10.35-17) unstable; urgency=low
* Build-Depends-Indep: texi2html, not tetex-bin.
* Updated config.guess and config.sub for ia64 (Closes: #81900).
* Modified autoload invocation to pass a 4th argument (Closes: #83521).
-- Santiago Vila <sanvila@debian.org> Tue, 30 Jan 2001 18:06:09 +0100
gettext (0.10.35-16) unstable; urgency=low
* Build-Depends: texinfo, since the .texi source is modified (Bug #77977).
* Build-Depends-Indep: tetex-bin (for texi2html).
* Fixed Bug #79027: gettextize --force --copy destroys intl/CVS.
Patch from Bruno Haible <haible@ilog.fr>.
-- Santiago Vila <sanvila@debian.org> Sat, 9 Dec 2000 18:09:42 +0100
gettext (0.10.35-15) unstable; urgency=low
* Updated po-mode.el to latest version (Closes: #64093).
* Added missing `\' to intl/Makefile.in uninstall target (Closes: #67308).
-- Santiago Vila <sanvila@debian.org> Wed, 19 Jul 2000 12:02:39 +0200
gettext (0.10.35-14) unstable; urgency=low
* Applied patch from GCC developers to support --keyword=id:argnum.
This is required to regenerate the .po file for GCC (Bug #57136).
* debian/rules: Install po-mode.el by hand, so that we do not need
to Build-Depends on emacsen (Bug #62621).
* Standards-Version: 3.1.1.
-- Santiago Vila <sanvila@ctv.es> Mon, 24 Apr 2000 16:41:50 +0200
gettext (0.10.35-13) frozen unstable; urgency=low
* intl/explodename.c: Rewrite _nl_find_language so that it compiles
with a K&R compiler (Bug #56030, reported by Kevin Dalley).
-- Santiago Vila <sanvila@ctv.es> Tue, 25 Jan 2000 18:42:36 +0100
gettext (0.10.35-12) unstable; urgency=low
* Use install-strip target instead of just overriding INSTALL_PROGRAM.
Should make strip happy about shell scripts (Bug #54000).
-- Santiago Vila <sanvila@ctv.es> Tue, 11 Jan 2000 19:21:14 +0100
gettext (0.10.35-11) unstable; urgency=low
* Added Japanese message catalog from ja-trans_0.5-3.
-- Santiago Vila <sanvila@ctv.es> Fri, 22 Oct 1999 13:00:04 +0200
gettext (0.10.35-10) unstable; urgency=low
* Added a Replaces field to gettext-base for smooth upgrading from
version 0.10.35-8 or earlier (Bug #40690).
-- Santiago Vila <sanvila@ctv.es> Mon, 5 Jul 1999 20:43:48 +0200
gettext (0.10.35-9) unstable; urgency=low
* Created gettext-base, containing the gettext binary.
-- Santiago Vila <sanvila@ctv.es> Mon, 28 Jun 1999 18:23:05 +0200
gettext (0.10.35-8) unstable; urgency=low
* Moved to base section.
* Use autoload for emacs po-mode (Bug #32745).
-- Santiago Vila <sanvila@ctv.es> Sun, 7 Mar 1999 17:25:23 +0100
gettext (0.10.35-7) frozen unstable; urgency=high
* Applied patch (from glibc-2.1.111) to fix security problem (Bug #28850).
NMU made by Vincent Renardias.
* By popular demand, make byte-compiling less verbose.
-- Santiago Vila <sanvila@ctv.es> Mon, 25 Jan 1999 19:47:17 +0100
gettext (0.10.35-6) frozen unstable; urgency=low
* Applied a patch to compile under alpha (fixes bug #30748).
-- Santiago Vila <sanvila@ctv.es> Thu, 17 Dec 1998 19:23:08 +0100
gettext (0.10.35-5) frozen unstable; urgency=low
* Moved info unregistering from postrm to prerm.
* Added a manpage for gettext, it tells the user to read the info files
or the HTML docs in the gettext-doc package (Bug #6287).
* Follow emacsen policy to byte-compile po-mode.el (Bug #29953).
(Thanks to Mitsuru Oka for the hints).
-- Santiago Vila <sanvila@ctv.es> Mon, 30 Nov 1998 20:37:28 +0100
gettext (0.10.35-4) unstable; urgency=low
* Updated config.guess and config.sub from automake 1.3 for the ARM
architecture (Bug#26283). NMU made by Jim Pick <jim@jimpick.com>.
* Added HTML docs, in a separate package.
-- Santiago Vila <sanvila@ctv.es> Tue, 20 Oct 1998 18:20:03 +0200
gettext (0.10.35-3) frozen unstable; urgency=medium
* Added --with-included-gettext to the configure command line.
Without this option, if gettext is installed while it is being built,
the resulting gettext segfaults under certain locales.
* Suggests: emacsen, according to latest policy (Bug #23378).
-- Santiago Vila <sanvila@ctv.es> Thu, 2 Jul 1998 18:32:31 +0200
gettext (0.10.35-2) frozen unstable; urgency=high
* First upload for hamm, after approval from upstream author.
-- Santiago Vila <sanvila@ctv.es> Tue, 26 May 1998 22:14:21 +0200
gettext (0.10.35-1) experimental; urgency=low
* New upstream release. The Texinfo manual have been clarified and
this should fix Bug #20072 (gettext ignores "xgettext:c-format" in the
same line). The comment must be before the string to be translated.
-- Santiago Vila <sanvila@ctv.es> Sat, 2 May 1998 18:09:01 +0200
gettext (0.10.32-1) experimental; urgency=low
* Removed libintl.h and libintl.a by hand.
* More detailed copyright file.
* Removed debstd dependency.
-- Santiago Vila <sanvila@ctv.es> Wed, 12 Nov 1997 11:47:25 +0100
gettext (0.10.32-0) experimental; urgency=low
* New upstream release.
-- Santiago Vila <sanvila@ctv.es> Wed, 10 Sep 1997 21:15:29 +0200
gettext (0.10.31-0) experimental; urgency=low
* New upstream release. Fixes the info bug.
-- Santiago Vila <sanvila@ctv.es> Thu, 28 Aug 1997 11:07:11 +0200
gettext (0.10.27-0) experimental; urgency=low
* Added MD5 sums.
* First libc6 release.
* Some minor debian/rules changes.
* Untouched pristine tar.gz source.
* New upstream version (using new files ltconfig and ltmain.sh taken
from libtool 1.0 to make it build and install properly).
* debian/tmp/usr/share/locale/locale.alias removed by hand to avoid
conflict with the one in the `locales' package.
* Removed "--with-included-gettext" from the configure command line.
-- Santiago Vila <sanvila@ctv.es> Tue, 29 Jul 1997 20:25:03 +0200
gettext (0.10.26-1) experimental; urgency=low
* Converted to Standards-Version 2.1.2.2.
* New upstream version.
* Added updated translations for "sv", "es" and "ko".
* Moved to experimental.
* New maintainer.
-- Santiago Vila <sanvila@ctv.es> Wed, 5 Feb 1997 20:24:45 +0100
Mon Sep 16 17:15:48 1996 Erick Branderhorst <branderh@debian.org>
* upgraded to mainstream 0.10.24 (not dsc yet)
Wed Jul 17 14:58:30 1996 Erick Branderhorst <branderh@debian.org>
* debian.rules (d): 2
* debian.rules: install unstripped libintl.a (reported by
J.H.M. Dassen)
Mon Jul 8 19:44:27 1996 Erick Branderhorst <branderh@debian.org>
* upgraded to alpha 0.10.23
Mon Jul 1 19:44:27 1996 Erick Branderhorst <branderh@debian.org>
* Semi public releases drove up the revision number to 3 (Sorry)
* debian.rules (binary): for this moment back to static libs
only, because this gettext code seems to be implemented with glibc
right now and will probably find its way in libc6.
* debian.control: a gettext package entry
* only package been provided right now from the gettext
sources is the gettext package.
Sat Jun 22 11:18:48 1996 Erick Branderhorst <branderh@debian.org>
* debian.rules (binary): install so lib and symlinks
* debian.rules (build): CFLAGS = -O2 -fPIC, so lib
* debian.rules (build): no static -N linking
Fri Jun 21 15:02:24 1996 Erick Branderhorst <branderh@debian.org>
* mainstream alpha version 0.10.20
Tue Jun 11 11:24:53 1996 Erick Branderhorst <branderh@debian.org>
* mainstream alpha version 0.10.19
Tue Jun 11 11:24:53 1996 Erick Branderhorst <branderh@debian.org>
* updated nl.po
* mainstream alpha version 0.10.16
* added README-alpha message in debian.README
Mon Jun 10 09:46:57 1996 Erick Branderhorst <branderh@debian.org>
* Initial debian release
|