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
|
coq (8.20.1+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Julien Puydt <jpuydt@debian.org> Sat, 15 Feb 2025 15:19:14 +0100
coq (8.20.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Julien Puydt <jpuydt@debian.org> Wed, 20 Nov 2024 10:37:25 +0100
coq (8.19.1+dfsg-3) unstable; urgency=medium
* Add support for a different OCaml stdlib dir
-- Stéphane Glondu <glondu@debian.org> Sat, 03 Aug 2024 09:40:45 +0200
coq (8.19.1+dfsg-2) unstable; urgency=medium
* Call "dune build" with "--release" to avoid failure on warnings
-- Stéphane Glondu <glondu@debian.org> Sat, 15 Jun 2024 07:57:25 +0200
coq (8.19.1+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Julien Puydt <jpuydt@debian.org> Mon, 11 Mar 2024 15:46:22 +0100
coq (8.19.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Julien Puydt <jpuydt@debian.org> Sat, 24 Feb 2024 09:50:14 +0100
coq (8.18.0+dfsg-1) unstable; urgency=medium
[ Debian Janitor ]
* Update lintian override info to new format:
+ debian/coq.lintian-overrides: line 2, 4-21
+ debian/libcoq-core-ocaml-dev.lintian-overrides: line 2
+ debian/libcoq-core-ocaml.lintian-overrides: line 2-4, 6
* debian/copyright: use spaces rather than tabs to start continuation lines.
* Set upstream metadata fields: Bug-Database, Bug-Submit, Repository-Browse.
* Update standards version to 4.6.2, no changes needed.
* Remove constraints unnecessary since buster (oldstable):
+ Build-Depends: Drop dependency on essential package bash (>= 5.0).
+ Build-Depends: Drop versioned constraint on dh-ocaml (>= 0.9.5~).
+ Build-Depends: Drop versioned constraint on ocaml-nox (>= 4.05).
+ Build-Depends: Drop versioned constraint on camlp5 (>= 6.14).
+ libcoq-stdlib: Drop versioned constraint on coq (>= 8.0) in Recommends.
+ libcoq-core-ocaml: Drop conflict with removed package coq (<< 8.3~) in
Replaces.
+ libcoq-core-ocaml: Drop conflict with removed package libcoq-ocaml-dev (<<
8.3~) in Replaces.
+ libcoq-core-ocaml: Drop conflict with removed package coq (<< 8.3~) in
Breaks.
+ libcoq-core-ocaml: Drop conflict with removed package libcoq-ocaml-dev (<<
8.3~) in Breaks.
+ libcoq-core-ocaml-dev: Drop conflict with removed package coq (<<
8.2-1+dfsg-1) in Replaces.
+ libcoq-core-ocaml-dev: Drop conflict with removed package coq (<<
8.2-1+dfsg-1) in Breaks.
[ Julien Puydt ]
* Fix d/rules clean target (Closes: #1044637).
* New upstream release.
* Refresh patches.
* Drop the coq-unimath workaround patch.
-- Julien Puydt <jpuydt@debian.org> Thu, 21 Dec 2023 14:34:31 +0100
coq (8.17.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
* Refresh lintian overrides.
* Fix build.
* Bump standards-version to 4.6.2.
* Add patch to workaround a problem in coq-unimath.
-- Julien Puydt <jpuydt@debian.org> Mon, 12 Jun 2023 08:54:21 +0200
coq (8.16.1+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Julien Puydt <jpuydt@debian.org> Tue, 29 Nov 2022 09:28:08 +0100
coq (8.16.0+dfsg-1) unstable; urgency=medium
* New upstream release.
* Refresh patches.
-- Julien Puydt <jpuydt@debian.org> Mon, 05 Sep 2022 17:56:26 +0200
coq (8.15.2+dfsg-2) unstable; urgency=medium
* Use dh-coq.
-- Julien Puydt <jpuydt@debian.org> Sat, 11 Jun 2022 16:16:14 +0200
coq (8.15.2+dfsg-1) unstable; urgency=medium
* New upstream release.
-- Julien Puydt <jpuydt@debian.org> Tue, 31 May 2022 21:39:53 +0200
coq (8.15.1+dfsg-2) unstable; urgency=medium
* Don't strip everything!
* Add a patch to fix a typo.
* Bump standards-version to 4.6.1.
-- Julien Puydt <jpuydt@debian.org> Fri, 20 May 2022 15:53:07 +0200
coq (8.15.1+dfsg-1) unstable; urgency=medium
* Better d/watch.
* New upstream release.
* Refresh patches.
-- Julien Puydt <jpuydt@debian.org> Tue, 22 Mar 2022 18:05:26 +0100
coq (8.15.0+dfsg-2) unstable; urgency=medium
* Rework binary packages so they follow more closely
upstream's view of its "packages".
-- Julien Puydt <jpuydt@debian.org> Fri, 04 Feb 2022 08:54:41 +0100
coq (8.15.0+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes: #1003586)
* Refresh patches.
* Refresh lintian overrides.
-- Julien Puydt <jpuydt@debian.org> Mon, 17 Jan 2022 12:26:54 +0100
coq (8.14.1+dfsg-2) unstable; urgency=medium
* Make the ocaml libraries available in /usr/lib/ocaml
(so ocamlfind sees them)
-- Julien Puydt <jpuydt@debian.org> Mon, 17 Jan 2022 08:54:23 +0100
coq (8.14.1+dfsg-1) unstable; urgency=medium
* Ship META in the right package and hence Suggest: ocaml-findlib
(following OCaml Packaging Policy).
* New upstream release.
-- Julien Puydt <jpuydt@debian.org> Sat, 11 Dec 2021 11:46:49 +0100
coq (8.14.0+dfsg-6) unstable; urgency=medium
* Still missed bytecode-only architectures for some packages...
-- Julien Puydt <jpuydt@debian.org> Tue, 16 Nov 2021 08:35:39 +0100
coq (8.14.0+dfsg-5) unstable; urgency=medium
* Missed two bytecode-only architectures.
-- Julien Puydt <jpuydt@debian.org> Tue, 16 Nov 2021 07:33:35 +0100
coq (8.14.0+dfsg-4) unstable; urgency=medium
* Strip libraries.
* Build using dune directly.
* Make the html doc point to a local logo file.
* Make the html doc point to local css files.
* Disable the bytecode-only architectures (Closes: #999651).
-- Julien Puydt <jpuydt@debian.org> Mon, 15 Nov 2021 06:59:19 +0100
coq (8.14.0+dfsg-3) unstable; urgency=medium
* Add bash to the build-deps and generalize
avoid-usr-bin-env.patch into a fix_debian_paths.patch ;
made the other patches cope with it.
* Add a patch to handle the timing scripts correctly.
* Add a lintian override for false positive ocaml-dangling-cmi.
* Add a lintian override for false positive
shared-library-lacks-prerequisites.
* Add a lintian override for maintainer-desktop-entry.
-- Julien Puydt <jpuydt@debian.org> Sat, 13 Nov 2021 12:23:41 +0100
coq (8.14.0+dfsg-2) experimental; urgency=medium
* Add myself to uploaders.
* Bump standards-version to 4.6.0.
* Rewrite avoid-usr-bin-env.patch.
* Drop python-scripts-libraries.patch.
* Drop skip-dot-pc.patch.
* Make the whole patch stack work.
* Update lintian overrides about wildcard in HTML filenames.
* Point coq-theories.doc-base to the new path.
* Enable hardening flags in d/rules.
* Add keywords to coqide.desktop.
* Remove debian-shipped coqide.1 -- now upstream.
* Add lintian overrides for long lines is source code.
-- Julien Puydt <jpuydt@debian.org> Thu, 11 Nov 2021 17:40:04 +0100
coq (8.14.0+dfsg-1) experimental; urgency=medium
* Non-maintainer upload.
* Drop retired Enrico Tassi from uploaders (Closes: #995543).
* Rework d/copyright, d/gbp.conf, d/README.source and d/watch
so updating to a new upstream is cleaner and simpler.
* New upstream release (update patches, d/rules...).
-- Julien Puydt <jpuydt@debian.org> Mon, 08 Nov 2021 07:43:58 +0100
coq (8.12.0-3) unstable; urgency=medium
* Upload to unstable
-- Ralf Treinen <treinen@debian.org> Wed, 09 Sep 2020 21:16:07 +0200
coq (8.12.0-2) experimental; urgency=medium
* Patch remove-heavy-tests: also remove test bugs/closed/bug_4544.v
as it is a complexity test that tends to timeout on slow architectures.
-- Ralf Treinen <treinen@debian.org> Sun, 06 Sep 2020 09:59:04 +0200
coq (8.12.0-1) experimental; urgency=medium
* New upstream release.
* Refresh patches:
- remove-tests-that-need-coqlib
- remove-bytecode-failing-tests
- avoid-usr-bin-env
- python-scripts-libraries
- skip-dot-pc
- testsuite-bytecode
* d/rules: update COQ_VERSION
* Update versions of build-dependencies, according to INSTALL.md
* d/*.install.in files:
- install ssrsearch plugin in the libcoq-ocaml package
- install ocamllibdep binary in the coq package
* Debhelper compatibility level 13
- drop override of dh_missing
* Set Rules-Requires-Root=no
-- Ralf Treinen <treinen@debian.org> Fri, 21 Aug 2020 20:24:43 +0200
coq (8.11.1~pre1-1) experimental; urgency=medium
* New upstream pre-release (tagged on github, but not yet officially
announced).
* Dropped patches:
- votour-linking (fixed by upstream)
- restore_g_ssrmatching.mli (fixed by upstream)
- verbose-build (no longer useful as we are running the test-suite
with PRINT_LOGS=1)
* New patch testsuite-bytecode by Hugo Herbelin (thanks!): fixes failure
of tests using locally generated makefiles on bytecode architectures.
* Refreshed patches:
- install-coqide-bytecode
- remove-bytecode-failing-tests.patch
* Extended patch remove-bytecode-failing-tests to also disable the test
coq-makefile/findlib-package-unpacked
* Dropped build-dependency hevea as we are not building the documentation
* Replaced build-dependency on texlive-latex-extra by tex-common as we are
not building the documentation, and just installing some tex files
* Drop /usr/bin/doc_grammar from coq.install
-- Ralf Treinen <treinen@debian.org> Thu, 16 Apr 2020 18:34:27 +0200
coq (8.11.0-1) unstable; urgency=medium
* New upstream release.
* Updated patches:
- remove-heavy-tests: also remove success/Nia.v
- avoid-usr-bin-env.patch: also patch dev/tools/update-compat.py.
Thanks to the Gianfranco Costamagna for the hint (closes: #952454)
* Refreshed patches:
- remove-tests-that-need-coqlib
- python-scripts-libraries
- skip-dot-pc
- verbose-build
- remove-bytecode-failing-tests
* Removed patches:
- ssrmatching-license: fixed by upstream
- use-changelog-date: fixed by upstream
* New patch:
- restore_g_ssrmatching.mli
- votour-linking: patch by Hugo Herbelin (thanks!) fixes linking of
votour on bytecode architectures
* invoke "make test" with PRINT_LOGS=1 as suggested by SkySkimmer (thanks)
* disable building of the VM on s390x, as suggested by ejgallego (thanks)
This should fix a test failure on s390x
(https://github.com/coq/coq/issues/11395)
* Dispatch into different binary packages:
- simplify find invocation in debian/rules
- add *.vos files, new *.cmo, *.cmxs files
- add votour and doc_grammar binaries
* Add an as-installed test for the compiler and the toplevel
* Renamed debian/TODO.Debian to debian/TODO
* Bump build-dependency on ocaml to >= 4.05, as indicated by INSTALL
-- Ralf Treinen <treinen@debian.org> Thu, 05 Mar 2020 21:37:30 +0100
coq (8.10.2-1) experimental; urgency=medium
* New upstream release
- update COQ_VERSION in debian/rules
* Refreshed patches:
- remove-heavy-tests.patch: drop removal of test-suite/bugs/closed/5127.v
as this file is no longer distributed by upstream
- avoid-usr-bin-env
- python-scripts-libraries
- verbose-build
- remove-bytecode-failing-tests
- remove-tests-that-need-coqlib.patch
* Dropped patches:
- remove-time-sensitive-tests, as none of these tests is distributed
by upstream any more
- 0013-Remove-test-failing-with-OCaml-4.08.0 as that test is no longer
distributed by upstream
- 0012-ocaml-4.08-does-not-allow-dynamic-loading-of-already
* New patch use-changelog-date: use the date from the debian changelog
entry, instead of the real time of compilation, in order to improve
reproducibility. Based on a patch by Valentin Lorentz (thanks!)
(closes: #794130).
* Reactivate building of coqide (closes: #920589, #946580)
- put back the coqide paragraph in debian/control
- bump build-dependencies on lablgtk to version 3
- coq suggests coqide as an alternative to proofgeneral
- mention coqide in the long description of coq
- put back debian/coqide.{1,desktop,dirs,install,links.in} from version
8.6-5
- update debian/*.install and debian/not-installed files
* Build-Conflicts with libcoq-ocaml. This seems to be necessary to avoid
that coq depends on two versions of libcoq-ocaml: the one being build,
and the one currently installed.
* Update libcoq-ocaml{-dev}.install.in
* Move coqidetop from the coqide package to the coq package, following advice
by upstream
* Update docs
* Generate html pages for the stdlib using HTMLSTYLE=simple, to avoid
linking to external stylesheets
* Build-depend on debhelper-compat, drop file debian/compat
* Debhelper compatibility level 11
- debian/rules: use "dh_missing --fail-missing" instead of
"dh_install --fail-missing"
* Standards-Version 4.4.1 (no change)
* debian/copyright: updates of copyright holders in many files.
* Add lintian-overrides for filenames containing wildcard characters
in package coq-theories
* debian/gbp.conf:
- add doc/whodidwhat to the filter as this is part of the non-free
reference manual
- drop plugins/ssrmatching/g_ssrmatching.mli from the filter as
upstream has fixed its license.
-- Ralf Treinen <treinen@debian.org> Wed, 01 Jan 2020 20:25:21 +0100
coq (8.9.1-5) unstable; urgency=medium
* Be more precise in install files to avoid that usr/bin/coqidetop.{opt,byte}
gets installed in both the coq and coqide packages (closes: #949975)
* Add an as-installed test for the compiler and the toplevel.
* Build-Conflicts with libcoq-ocaml. This seems to be necessary to avoid
that coq depends on two versions of libcoq-ocaml: the one being build,
and the one that is installed on the system.
-- Ralf Treinen <treinen@debian.org> Tue, 28 Jan 2020 20:23:39 +0100
coq (8.9.1-4) unstable; urgency=medium
* Patch install-coqide-bytecode: fix installation of ide on bytecode-only
architectures.
* Fix coqide.install for bytecode-only architectures
* Remove coqide and coqidetop stuff from debian/not-installed
-- Ralf Treinen <treinen@debian.org> Mon, 27 Jan 2020 03:29:33 +0100
coq (8.9.1-3) unstable; urgency=medium
* Reactive building of coqide (closes: #920589)
- put back the coqide paragraph in debian/control
- coq suggests coqide as an alternative to proofgeneral
- mention coqide in the long description of coq
- put back debian/coqide.{1,desktop,dirs,install,links.in} from version
8.6-5
* Move coqidetop from the coqide package to the coq package (closes: #946580)
* Generate html pages for the stdlib using HTMLSTYLE=simple, to avoid
linking to external stylesheets
* Add lintian-overrides for filenames containing wildcard characters
in package coq-theories
* Build-depend on debhelper-compat, drop file debian/compat
* Debhelper compatibility level 11
- debian/rules: use "dh_missing --fail-missing" instead of
"dh_install --fail-missing"
* Standards-Version 4.5.0 (no change)
-- Ralf Treinen <treinen@debian.org> Fri, 24 Jan 2020 21:58:35 +0100
coq (8.9.1-2) unstable; urgency=medium
* Recompile with OCaml 4.08.1
-- Stéphane Glondu <glondu@debian.org> Fri, 08 Nov 2019 16:48:46 +0100
coq (8.9.1-1) unstable; urgency=medium
* New upstream release
* Fix FTBFS with OCaml 4.08.0
- add libnum-ocaml-dev to Build-Depends
- apply a patch to fix double loading of pr_dump.cmo (camlp5)
- remove a failing test
* Remove Samuel from Uploaders
* Bump Standards-Version to 4.4.0
-- Stéphane Glondu <glondu@debian.org> Tue, 20 Aug 2019 05:09:34 +0200
coq (8.9.0-1) unstable; urgency=high
* New upstream release
* Set CAML_LD_LIBRARY_PATH and COQLIB correctly during building
(Closes: #919462)
* Coq no longer ships an Emacs mode; users should migrate to Proof
General (Closes: #736761, #854147, #877938)
-- Benjamin Barenblat <bbaren@debian.org> Wed, 06 Feb 2019 12:41:09 -0500
coq (8.8.2-1) unstable; urgency=medium
* New upstream release (Closes: #910840)
* Add Benjamin Barenblat to uploaders
* Update debian/watch for upstream's transition to GitHub (Closes: #902903)
* Stop distributing CoqIDE (Closes: #916369)
* coqmktop(1) has been deleted; users should migrate to ocamlfind(1)
-- Benjamin Barenblat <bbaren@debian.org> Sun, 06 Jan 2019 23:07:04 -0500
coq (8.6-5) unstable; urgency=medium
* Recompile with OCaml 4.05.0
* Remove unused Lintian overrides
* Remove menu files
* Update Vcs-*
-- Stéphane Glondu <glondu@debian.org> Tue, 26 Sep 2017 11:08:52 +0200
coq (8.6-4) unstable; urgency=medium
* coq_makefile needs ocamlfind in order to work
-- Enrico Tassi <gareuselesinge@debian.org> Thu, 29 Dec 2016 23:45:47 +0100
coq (8.6-3) unstable; urgency=medium
* 5127.v fails on mips, disabling
-- Enrico Tassi <gareuselesinge@debian.org> Thu, 29 Dec 2016 08:58:35 +0100
coq (8.6-2) unstable; urgency=medium
* Disable some tests with hardcoded timeout to fix FTBFS on
slow machines
-- Enrico Tassi <gareuselesinge@debian.org> Wed, 28 Dec 2016 18:19:29 +0100
coq (8.6-1) unstable; urgency=medium
* New upstream release
-- Enrico Tassi <gareuselesinge@debian.org> Tue, 27 Dec 2016 16:53:39 +0100
coq (8.5-2) unstable; urgency=medium
* patch: disable test 4429 (timeout too strict for slow architectures)
-- Enrico Tassi <gareuselesinge@debian.org> Thu, 28 Jan 2016 11:47:07 +0100
coq (8.5-1) unstable; urgency=medium
* New upstream release
* patch: disable test 4366 (timeout too strict for slow architectures)
-- Enrico Tassi <gareuselesinge@debian.org> Tue, 26 Jan 2016 16:59:05 +0100
coq (8.5~beta3+dfsg-2) experimental; urgency=medium
* Option -no-native-compiler now called -native-compiler no
-- Enrico Tassi <gareuselesinge@debian.org> Sat, 14 Nov 2015 14:59:04 +0100
coq (8.5~beta3+dfsg-1) experimental; urgency=medium
* New upstream release
-- Enrico Tassi <gareuselesinge@debian.org> Fri, 13 Nov 2015 11:27:35 +0100
coq (8.5~beta2+dfsg-2) experimental; urgency=medium
* Enable native compiler only on amd64 and i386
* Enable 'make test-suite' target
-- Enrico Tassi <gareuselesinge@debian.org> Mon, 20 Jul 2015 09:51:21 +0200
coq (8.5~beta2+dfsg-1) experimental; urgency=medium
* New upstream release
* Add Enrico Tassi to uploaders
* Disable patch for lockf on Hurd (not needed anymore)
* coq-theories is now arch any, since it contains .coq-native/ directories
(i.e. cmxs files for native compute)
* coq depends on coq-theories binary:Version
* lintian-overrides for coq-native/*cmx* and plugins/*cmxs files
(hardening-no-relro)
* Build depend on liblablgtksourceview2-ocaml-dev
-- Enrico Tassi <gareuselesinge@debian.org> Wed, 15 Jul 2015 11:36:30 +0200
coq (8.4pl4dfsg-1) unstable; urgency=medium
* New upstream release (Closes: #755953)
* Switch debian/copyright to Format 1.0
* Bump Standards-Version to 3.9.5
* Bump debhelper compat level to 9
-- Stéphane Glondu <glondu@debian.org> Sun, 27 Jul 2014 15:25:03 +0200
coq (8.4pl3dfsg-1) unstable; urgency=medium
* New upstream release
* Update README.Debian (Closes: #680248)
-- Stéphane Glondu <glondu@debian.org> Sun, 19 Jan 2014 16:16:36 +0100
coq (8.4pl2dfsg-4) unstable; urgency=low
* Upload to unstable
-- Stéphane Glondu <glondu@debian.org> Tue, 03 Dec 2013 19:54:49 +0100
coq (8.4pl2dfsg-3) experimental; urgency=low
* Compile with OCaml 4.01.0
* Disable micromega tests on Hurd (because of missing lockf)
-- Stéphane Glondu <glondu@debian.org> Fri, 22 Nov 2013 14:38:00 +0100
coq (8.4pl2dfsg-2) experimental; urgency=low
* Compile with OCaml >= 4
* Update Vcs-*
-- Stéphane Glondu <glondu@debian.org> Fri, 26 Jul 2013 14:17:30 +0200
coq (8.4pl2dfsg-1) unstable; urgency=low
* New upstream release
* Upload to unstable
-- Stéphane Glondu <glondu@debian.org> Wed, 08 May 2013 18:10:14 +0200
coq (8.4pl1dfsg-1) experimental; urgency=low
* New upstream release
- 0002-Fix-use-of-HASNATDYNLINK-in-coq_makefile-output.patch
has been merged upstream
- add ocaml-findlib to Build-Depends
-- Stéphane Glondu <glondu@debian.org> Sat, 29 Dec 2012 15:56:53 +0100
coq (8.4dfsg-2) experimental; urgency=low
* Upstream bugfix: Fix use of $(HASNATDYNLINK) in coq_makefile output
-- Stéphane Glondu <glondu@debian.org> Sat, 22 Sep 2012 12:43:13 +0200
coq (8.4dfsg-1) experimental; urgency=low
* New upstream release
-- Stéphane Glondu <glondu@debian.org> Mon, 20 Aug 2012 18:33:45 +0200
coq (8.4~gamma0+really8.4beta2+dfsg-1) experimental; urgency=low
* New upstream beta release
-- Stéphane Glondu <glondu@debian.org> Tue, 05 Jun 2012 07:38:25 +0200
coq (8.4~beta+dfsg-4) experimental; urgency=low
* Recompile with camlp5 6.05 (no changes)
-- Stéphane Glondu <glondu@debian.org> Fri, 06 Apr 2012 10:04:06 +0200
coq (8.4~beta+dfsg-3) experimental; urgency=low
* Replace proofgeneral-coq by proofgeneral in dependencies
* Disable a test that uses too much memory, causing random FTBFS
-- Stéphane Glondu <glondu@debian.org> Sun, 15 Jan 2012 12:37:23 +0100
coq (8.4~beta+dfsg-2) experimental; urgency=low
* Fix a typo that caused decl_mode_plugin.cmxs not being installed,
making coqtop.opt useless
* Fix an ordering issue that was causing a test to fail in bytecode
-- Stéphane Glondu <glondu@debian.org> Sat, 14 Jan 2012 11:11:48 +0100
coq (8.4~beta+dfsg-1) experimental; urgency=low
* New upstream beta release
-- Stéphane Glondu <glondu@debian.org> Thu, 12 Jan 2012 18:53:08 +0100
coq (8.3.pl4+dfsg-2) unstable; urgency=low
* Recompile with camlp5 6.06 (no changes)
-- Stéphane Glondu <glondu@debian.org> Wed, 06 Jun 2012 07:35:26 +0200
coq (8.3.pl4+dfsg-1) unstable; urgency=low
* New upstream release
* Replace proofgeneral-coq by proofgeneral in dependencies
* Switch debian/copyright to format 1.0
* Bump Standards-Version to 3.9.3
-- Stéphane Glondu <glondu@debian.org> Tue, 27 Mar 2012 07:59:07 +0200
coq (8.3.pl3+dfsg-2) unstable; urgency=low
* Recompile with camlp5 6.04 (no changes)
-- Stéphane Glondu <glondu@debian.org> Sun, 04 Mar 2012 18:59:12 +0100
coq (8.3.pl3+dfsg-1) unstable; urgency=low
* New upstream release
- remove all patches (applied upstream)
-- Stéphane Glondu <glondu@debian.org> Sun, 25 Dec 2011 13:46:09 +0100
coq (8.3.pl2+dfsg-2) unstable; urgency=low
* Recompile with OCaml 3.12.1 (no changes)
* Bump Standards-Version to 3.9.2 (no changes)
-- Stéphane Glondu <glondu@debian.org> Wed, 02 Nov 2011 22:27:18 +0100
coq (8.3.pl2+dfsg-1) unstable; urgency=low
* New upstream release
* Add patch to fix thumb2-related build error (Closes: #622882)
* Upload to unstable
-- Stéphane Glondu <glondu@debian.org> Tue, 19 Apr 2011 17:37:30 +0200
coq (8.3.pl1+dfsg-2) experimental; urgency=low
* Set and check COQ_VERSION used to compute COQ_ABI in debian/rules
-- Stéphane Glondu <glondu@debian.org> Sat, 26 Feb 2011 18:12:12 +0100
coq (8.3.pl1+dfsg-1) experimental; urgency=low
* New upstream release
- remove all patches (applied upstream)
* debian/rules:
- run test-suite in override_dh_auto_test, skip coqchk run
- make "build" explicitly a phony target
* Update copyright file
* Fix installation of emacs files
* Install plugins in new binary package libcoq-ocaml
* Bump Standards-Version to 3.9.1 (no changes)
-- Stéphane Glondu <glondu@debian.org> Fri, 24 Dec 2010 12:51:59 +0100
coq (8.2.pl2+dfsg-2) unstable; urgency=low
* Add Fix-build-with-camlp5-6.02.1.patch
* Bump versioned build-dependency on liblablgtk2-ocaml-dev to ease
lablgtk2 transition
-- Stéphane Glondu <glondu@debian.org> Mon, 21 Feb 2011 16:51:11 +0100
coq (8.2.pl2+dfsg-1) unstable; urgency=low
* New upstream release
- compiles with OCaml 3.12 (Closes: #585452)
- remove 0001-Update-for-why-2.19.patch (applied upstream)
- add 0002-Remove-dependency-to-Unix-from-module-Profile.patch
* Use dh with overrides
* debian/control:
- remove Stefano and Remi from Uploaders
- replace Conflicts with Breaks
- bump Standards-Version to 3.9.0
* Switch source package format to 3.0 (quilt)
-- Stéphane Glondu <glondu@debian.org> Fri, 02 Jul 2010 15:25:15 +0200
coq (8.2.pl1+dfsg-6) unstable; urgency=low
* Add Disable-micromega-tests.patch (workaround for bug #570920)
-- Stéphane Glondu <glondu@debian.org> Mon, 22 Feb 2010 10:41:15 +0100
coq (8.2.pl1+dfsg-5) unstable; urgency=low
* Rebuild with OCaml 3.11.2
* Bump Standards-Version to 3.8.4 (no changes)
-- Stéphane Glondu <glondu@debian.org> Wed, 10 Feb 2010 09:24:03 +0100
coq (8.2.pl1+dfsg-4) unstable; urgency=low
[ Stefano Zacchiroli ]
* debian/control: fix typo in long description (Closes: #557458)
[ Stéphane Glondu ]
* Switch to dh-ocaml 0.9
-- Stéphane Glondu <glondu@debian.org> Thu, 03 Dec 2009 11:54:58 +0100
coq (8.2.pl1+dfsg-3) unstable; urgency=low
* Update README.Debian (Closes: #538398)
* Add 0001-Update-for-why-2.19.patch
* debian/control:
- update my e-mail address and remove DMUA
- add why to Suggests
- add quilt to Build-Depends
- update Standards-Version to 3.8.3 (no changes)
* Update README.source to reflect use of quilt
-- Stéphane Glondu <glondu@debian.org> Sat, 29 Aug 2009 16:58:45 +0200
coq (8.2.pl1+dfsg-2) unstable; urgency=low
* During validation of stdlib, call coqchk without -silent to avoid
timeout on buildds because of lack of output
-- Stephane Glondu <steph@glondu.net> Sun, 05 Jul 2009 12:51:15 +0200
coq (8.2.pl1+dfsg-1) unstable; urgency=low
* New Upstream Version
* debian/purify_tarball: keep some files from doc/common/styles/html
needed for HTML API doc generation
-- Stephane Glondu <steph@glondu.net> Sat, 04 Jul 2009 12:13:28 +0200
coq (8.2-1+dfsg-2) unstable; urgency=low
[ Samuel Mimram ]
* Remove upstream url from long descriptions since we already use the
Homepage field, closes: #524037.
* Updated watch file.
[ Stephane Glondu ]
* Remove suggestion on package cle (which has been removed), use
readline-editor instead
* Recompile with OCaml 3.11.1 (Closes: #535320)
* Add versioned dependencies to camlp5 and liblablgtk2-ocaml-dev to
ease OCaml 3.11.1 transition
* Move libcoq-ocaml-dev to section ocaml
* Update Standards-Version to 3.8.2
-- Stephane Glondu <steph@glondu.net> Wed, 01 Jul 2009 17:41:55 +0200
coq (8.2-1+dfsg-1) unstable; urgency=low
* New Upstream Version
* Use variables and ocamlinit rule from dh-ocaml in rules
* Added coqvars.mk helper for coq-related packages, and remove
/usr/lib/coq/abi (its contents is now it the COQ_ABI variable)
* Remove dependency on dpatch
* Add some missing Conflicts and Replaces in coq and libcoq-ocaml-dev
(Closes: #517107)
* Add missing dependency for coqide.byte (no longer compiled in
custom mode): liblablgtk2-ocaml
* Rebuild with OCaml 3.11
-- Stephane Glondu <steph@glondu.net> Fri, 27 Feb 2009 13:31:30 +0100
coq (8.2~rc2+dfsg-3) experimental; urgency=low
* Explicit more dependencies and drop dependency on
ocaml-best-compilers, for autobuilders
-- Stephane Glondu <steph@glondu.net> Sun, 08 Feb 2009 22:42:51 +0100
coq (8.2~rc2+dfsg-2) experimental; urgency=low
* Add more versioned dependencies to please buildds
-- Stephane Glondu <steph@glondu.net> Sun, 08 Feb 2009 10:52:43 +0100
coq (8.2~rc2+dfsg-1) experimental; urgency=low
* New upstream release candidate
* Bump debhelper compatibility level to 7
* Remove obsolete patches
* Use debhelper 7, simplify debian/rules (Closes: #436684)
* Add binary package libcoq-ocaml-dev
* Rename package coq-libs to coq-theories to avoid confusion, and
add a NEWS file to document it
* Add virtual coq-$ABI package, to express some ABI dependencies,
and put $ABI in /usr/lib/coq/abi.
-- Stephane Glondu <steph@glondu.net> Mon, 02 Feb 2009 09:23:42 +0100
coq (8.2~beta4+dfsg-2) experimental; urgency=low
* [45cca7f] Add non-native-archs.dpatch; fixes FTBFS on non-native
architectures (Closes: #495165)
-- Stephane Glondu <steph@glondu.net> Fri, 15 Aug 2008 13:20:16 +0200
coq (8.2~beta4+dfsg-1) experimental; urgency=low
[ Samuel Mimram ]
* New upstream release.
* Updated patches and removed coqdoc_stdlib, makefile, configure and
cmxa-install obsolete patches.
[ Stephane Glondu ]
* Update debian/rules and debhelper files
* [8dd1802] Fix typo in README.Debian
* [dec29bb] Add myself to Uploaders, and DM-Upload-Allowed to control
* [dd1436b] Switch packaging to git
* [2dd9e5d] Set doc-base section to Science/Mathematics
* [c89cb94] Add Homepage field
* [7dd7c53] Add debian/README.source
* [1c6c7c8] Bump Standards-Version to 3.8.0
* [38db629] Remove browser.dpatch and use --browser configure option
* [9fd4621] Add use-env-in-coq-config.dpatch
* [c7560b2] Remove obsolete manpages (now shipped upstream)
-- Stephane Glondu <steph@glondu.net> Tue, 12 Aug 2008 16:37:51 +0200
coq (8.1.pl3+dfsg-1) unstable; urgency=low
[ Stefano Zacchiroli ]
* fix vcs-svn field to point just above the debian/ dir
[ Samuel Mimram ]
* New upstream release.
* Makefile should now be compatible with dash, closes: #459050.
* Updated watch file.
-- Samuel Mimram <smimram@debian.org> Fri, 04 Jan 2008 13:21:43 +0000
coq (8.1.pl2+dfsg-3) unstable; urgency=low
* Added check.dpatch to remove warnings which made some tests erroneously
fail, closes: #452572.
* Added a dependency from coq to emacsen-common, closes: #435023.
-- Samuel Mimram <smimram@debian.org> Thu, 29 Nov 2007 13:59:01 +0000
coq (8.1.pl2+dfsg-2) unstable; urgency=low
* Upload to unstable.
-- Samuel Mimram <smimram@debian.org> Fri, 16 Nov 2007 19:20:24 +0000
coq (8.1.pl2+dfsg-1) experimental; urgency=low
* New upstream release.
* Removed camlp5.dpatch, integrated upstream.
* Updated browser.dpatch, coqdoc_stdlib.dpatch and makefile.dpatch.
* Corrected emacs-mode startup file, closes: #446170.
* Removed Sven Luther from uploaders.
-- Samuel Mimram <smimram@debian.org> Mon, 15 Oct 2007 18:55:09 +0000
coq (8.1.pl1+dfsg-3) unstable; urgency=low
* Depend on ocaml-base-nox since coq_makefile needs ocamlrun,
closes: #439570.
-- Samuel Mimram <smimram@debian.org> Sat, 08 Sep 2007 00:35:31 +0200
coq (8.1.pl1+dfsg-2) experimental; urgency=low
* Updated for OCaml 3.10.
* Build-depend on camlp5.
* Added camlp5.dpatch to fix compilation problems.
-- Samuel Mimram <smimram@debian.org> Wed, 22 Aug 2007 16:39:04 +0000
coq (8.1.pl1+dfsg-1) unstable; urgency=low
* New upstream release.
-- Samuel Mimram <smimram@debian.org> Sat, 18 Aug 2007 20:59:45 +0200
coq (8.1+dfsg-6) unstable; urgency=low
* Add dependencies on ${misc:Depends}, closes: #431679.
-- Samuel Mimram <smimram@debian.org> Wed, 04 Jul 2007 10:49:01 +0200
coq (8.1+dfsg-5) unstable; urgency=low
* Correctly clean, closes: #424162.
-- Samuel Mimram <smimram@debian.org> Tue, 22 May 2007 21:53:16 +0200
coq (8.1+dfsg-4) unstable; urgency=low
* Correctly set Coq_config.best when rebuilding in byte mode.
* Removed tetex-extra from build-dependencies.
-- Samuel Mimram <smimram@debian.org> Tue, 24 Apr 2007 14:46:59 +0000
coq (8.1+dfsg-3) unstable; urgency=low
* Uploading to unstable.
-- Samuel Mimram <smimram@debian.org> Mon, 09 Apr 2007 16:48:46 +0200
coq (8.1+dfsg-2) experimental; urgency=low
* Added cmxa-install.dpatch to install cmxa only on native archs,
closes: #415867.
* Added configure.dpatch for the configure to correctly detect whether
ocamlopt is present or not.
* Use dh_installtex instead of hand-crafted postinst.
-- Samuel Mimram <smimram@debian.org> Sun, 18 Mar 2007 13:21:56 +0100
coq (8.1+dfsg-1) experimental; urgency=low
* New upstream release.
* Removed system.dpatch and next-ia64.dpatch, integrated upstream.
* Removed the subdirectories common, faq, RecTutorial, refman, rt, tools,
tutorial of the directory doc since they contain documentation under the
Open Publication License which is not DFSG-free (thus the +dfsg in the
version number). The script debian/utils/purify_tarball automates this
process. This documentation in packaged separately in non-free, in
the coq-doc package.
-- Samuel Mimram <smimram@debian.org> Tue, 13 Feb 2007 11:38:43 +0000
coq (8.1~gamma-4) experimental; urgency=low
* Correctly build glob.dump on non-native archs, closes: #400535.
-- Samuel Mimram <smimram@debian.org> Sun, 11 Feb 2007 18:02:49 +0100
coq (8.1~gamma-3) experimental; urgency=low
* Added next-ia64.dpatch to fix the FTBFS on ia64.
* Correctly install coqdoc.sty, closes: #409027.
* Build-depend on tetex-extra | texlive-latex-extra in order to allow
building with texlive.
-- Samuel Mimram <smimram@debian.org> Sun, 4 Feb 2007 20:38:43 +0100
coq (8.1~gamma-2) experimental; urgency=low
* Added no-complexity-test.dpatch to skip complexity checks (thanks Julien
Cristau), closes: #399919.
-- Samuel Mimram <smimram@debian.org> Thu, 23 Nov 2006 14:27:15 +0000
coq (8.1~gamma-1) experimental; urgency=low
* New upstream release.
* Made the package binNMU-safe.
* Minor improvements of the coqide.desktop file, closes: #383310.
* Added system.dpatch to avoid erroneous interpretation of ~.
* Removed assert.dpatch, integrated upstream.
-- Samuel Mimram <smimram@debian.org> Tue, 21 Nov 2006 13:33:55 +0000
coq (8.0pl3+8.1beta.2-1) experimental; urgency=low
* New upstream beta release.
* Added assert.dpatch to check assertions in native mode.
-- Samuel Mimram <smimram@debian.org> Thu, 13 Jul 2006 16:28:24 +0000
coq (8.0pl3+8.1beta-1) experimental; urgency=low
* New upstream release.
* Added --fsets all option to configure to build the theory of finite sets.
* Updated coqdoc_stdlib.dpatch, partly integrated upstream.
* Removed failing_tests.dpath, all the tests should succeed now.
* We don't need to remove rpaths anymore.
* Updated standards version to 3.7.2, no changes needed.
-- Samuel Mimram <smimram@debian.org> Fri, 16 Jun 2006 12:59:07 +0000
coq (8.0pl3+8.1alpha-2) experimental; urgency=low
* Added makefile.dpatch in order for ocamlopt not to be called when
compiling on non-native archs.
* Do not build the pdf documentation for the library since we don't ship it.
This will avoid the FTBFS because of missing LaTeX fonts.
-- Samuel Mimram <smimram@debian.org> Sun, 30 Apr 2006 11:51:57 +0000
coq (8.0pl3+8.1alpha-1) experimental; urgency=low
* New upstream release.
* No longer providing the compatibility coq7-libs package.
* coq-libs is now providing its documentation in html format.
* Added browser.dpatch to use the default Debian browser for help.
* Disabling checks which don't succeed for now: failing_tests.dpatch.
* Removed coq-8.0pl3-ocaml-3.09.dpatch.
-- Samuel Mimram <smimram@debian.org> Thu, 27 Apr 2006 13:43:16 +0000
coq (8.0pl3-2) unstable; urgency=low
* Added coq-8.0pl3-ocaml-3.09.dpatch in order to prevent intuition from
looping forever, closes: #353493.
-- Samuel Mimram <smimram@debian.org> Sun, 19 Feb 2006 11:33:21 +0000
coq (8.0pl3-1) unstable; urgency=low
* New upstream release.
* Removed unnecessary dependency on liblablgtk2-ocaml for coqide.
* Removed ocaml309.dpatch and text_view_typing_error.dpatch, integrated
upstream.
* Removing rpath from coqide binaries.
-- Samuel Mimram <smimram@debian.org> Thu, 19 Jan 2006 22:22:39 +0100
coq (8.0pl2-4) unstable; urgency=low
* Added ocaml309.dpatch patch to compile cleanly with OCaml 3.09,
closes: #340185.
* Removed recommends on coq-doc which is not in main anymore.
* Updated standards version to 3.6.2, no changes needed.
-- Samuel Mimram <smimram@debian.org> Mon, 21 Nov 2005 19:52:53 +0100
coq (8.0pl2-3) unstable; urgency=low
* Added text_view_typing_error patch to avoid a typing error and solve the
FTBFS, closes: #326740.
* Added forgotten call to dh_installmenu.
-- Samuel Mimram <smimram@debian.org> Wed, 7 Sep 2005 21:26:36 +0200
coq (8.0pl2-2) unstable; urgency=medium
* Rebuilding with OCaml 3.08.3 is necessary because of the former dependency
on ocaml-base-nox-3.08.
* Removed the dependency on ocaml-base-nox-3.08 since ocamlrun does not seem
to be necessary, even on non-native archs.
* Cleaner handling of -arch and -indep targets.
* Added utf8.v in coq and utf8.vo to coq-libs since utf8 can be useful for
non-coqide users too.
* Using dh_desktop to register .desktop files.
-- Samuel Mimram <smimram@debian.org> Tue, 22 Mar 2005 17:40:08 +0100
coq (8.0pl2-1) unstable; urgency=low
* New upstream release.
* Put the libraries in arch all since they are supposed to be
arch-independant.
* Updated the README.Debian to explain that .vo are not compatible between
different upstream releases.
* Renamed coq.desktop into coqide.desktop, updated it and put it in
/usr/share/applications/ to be compliant with the policy.
* Description synopsis now begin with lowercase letters.
* Updated Standards-Version to 3.6.1.1.
-- Samuel Mimram <smimram@debian.org> Mon, 31 Jan 2005 13:25:06 +0100
coq (8.0pl1-5) unstable; urgency=low
* Reuploaded since powerpc .deb did not include native code executable
-- Stefano Zacchiroli <zack@debian.org> Mon, 13 Dec 2004 16:05:18 +0100
coq (8.0pl1-4) unstable; urgency=low
* Rebuilt against ocaml 3.08.2
-- Stefano Zacchiroli <zack@debian.org> Tue, 30 Nov 2004 21:38:21 +0100
coq (8.0pl1-3) unstable; urgency=high
* Small patch to be able to compile with ocaml 3.08.1.
* Added a dependency to ocaml-base-nox when coq is compiled in bytecode.
* Added a menu for coqide.
* Enhanced the manpages.
* Enhanced the short descriptions of the packages.
-- Samuel Mimram <samuel.mimram@ens-lyon.org> Tue, 17 Aug 2004 20:54:25 +0200
coq (8.0pl1-2) unstable; urgency=medium
* Changed section to math.
* Versionned the dependency to liblablgtk2-ocaml(-dev).
* If we fallback on bytecode, we also try to build coqide in bytecode (I hope
this will fix the FTBFS on alpha).
* Added a watch file.
* Removed the unnecessary patch an unpatch targets in the rules.
-- Samuel Mimram <samuel.mimram@ens-lyon.org> Mon, 16 Aug 2004 20:39:48 +0200
coq (8.0pl1-1) unstable; urgency=low
* New upstream release: finally the version without QPL-licensed files is out,
closes: #230356, #250497.
* Libraries are now in separate packages (coq-libs and coq7-libs).
* An additional package provides coqide.
* Built with OCaml 3.08.
* Thank you Martin Ellis and Julien Cristau for your help on this package.
-- Samuel Mimram <samuel.mimram@ens-lyon.org> Sun, 18 Jul 2004 01:10:24 +0200
coq (7.3.1-3) unstable; urgency=low
* Added build-dependency on ocaml-best-compilers, check for opt compilers
in the configure-stamp target of debian/rules. Thanks to Mike Furr for
the patch (closes: #242761).
* Converted changelog to UTF-8.
-- Ralf Treinen <treinen@debian.org> Fri, 9 Apr 2004 18:03:41 +0200
coq (7.3.1-2) unstable; urgency=low
* Standards-Version 3.6.1.
* File debian/compat instead of variable DH_COMPAT.
* Build with ocaml-3.07.
* Maintainers: debian-ocaml-maint, Uploaders: The Ocaml Gang.
* Switch to dpatch system:
- 01_ocaml307: patch by Hugo Herbelin (thanks!) for compilation with
ocaml 3.07.
* Removed timeout crutch which used to be necessary for ocaml 3.04.
* Removed forcing of byte compilation on ppc.
* debian/rules: some cosmetic changes.
* Short description: capitalize first letter, drop terminal dot.
-- Ralf Treinen <treinen@debian.org> Tue, 7 Oct 2003 22:11:31 +0200
coq (7.3.1-1) unstable; urgency=low
* New bugfix upstream version.
* Proof General is now Recommended since he has been freed (closes:
Bug#162894).
-- Judicael Courant <Judicael.Courant@lri.fr> Mon, 7 Oct 2002 12:34:03 +0200
coq (7.3-1) unstable; urgency=low
* New upstream version.
-- Judicael Courant <Judicael.Courant@lri.fr> Wed, 22 May 2002 14:48:21 +0200
coq (7.2-9) unstable; urgency=low
* ocamlc.opt completely broken on powerpc. Added a special case in
"rules" for using only bytecode.
-- Judicael Courant <Judicael.Courant@lri.fr> Fri, 15 Feb 2002 09:17:20 +0100
coq (7.2-8) unstable; urgency=low
* "timeout" time is now 5300s (< 90 min).
-- Judicael Courant <Judicael.Courant@lri.fr> Thu, 14 Feb 2002 17:38:06 +0100
coq (7.2-7) unstable; urgency=low
* Build now uses ocamlc.opt and ocamlopt.opt if available.
* Dependency forced on ocaml >= 3.04 (dependency ocaml >=3.04 | camlp4
does not make buildd happy. See http://buildd.debian.org/fetch.php?
&pkg=coq&ver=7.2-5&arch=arm&stamp=1013388706&file=log&as=raw).
-- Judicael Courant <Judicael.Courant@lri.fr> Tue, 12 Feb 2002 09:10:01 +0100
coq (7.2-6) unstable; urgency=low
* Typo in rules, which made the build process always build in
bytecode. Fixed.
-- Judicael Courant <Judicael.Courant@lri.fr> Mon, 11 Feb 2002 11:22:21 +0100
coq (7.2-5) unstable; urgency=low
* Pb with timeout, used in 7.2-4 (bug 132927) making the build process
fail when compilation in native mode fails. Workaround in rules: after
a "timeout ... make ..." we try a "make -q" to check that everything
has been done correctly.
-- Judicael Courant <Judicael.Courant@lri.fr> Fri, 8 Feb 2002 10:08:10 +0100
coq (7.2-4) unstable; urgency=low
* Native code compilation failed on sparc; coqtop built by ocamlopt
entered an infinite loop on powerpc. Fixed (using timeout for powerpc:
if coqtop loops, it is rebuild using the bytecode compiler)
-- Judicael Courant <Judicael.Courant@lri.fr> Fri, 1 Feb 2002 11:04:25 +0100
coq (7.2-3) unstable; urgency=low
* Workaround for problems with buildd/apt trying to install camlp4
(closes: Bug#130046).
-- Judicaël Courant <Judicael.Courant@lri.fr> Mon, 21 Jan 2002 09:46:16 +0100
coq (7.2-2) unstable; urgency=low
* Build-Depends now requires camlp4 instead of camlp4 (>=3.01) since
camlp4 is a virtual package provided by ocaml >=3.04.
-- Judicaël Courant <Judicael.Courant@lri.fr> Fri, 11 Jan 2002 11:08:03 +0100
coq (7.2-1) unstable; urgency=low
* New upstream version.
-- Judicaël Courant <Judicael.Courant@lri.fr> Wed, 9 Jan 2002 14:02:42 +0100
coq (7.1-2) unstable; urgency=low
* Fixed policy problem (conf files).
* Trying to compile in bytecode if native code compilation fails
(closes: Bug#119714)
* Errors raised by the Simpl tactic is an upstream bug and should
have been fixed in 7.0 (closes: Bug#74518).
-- Judicaël Courant <Judicael.Courant@lri.fr> Tue, 11 Dec 2001 13:33:15 +0100
coq (7.1-1) unstable; urgency=low
* New upstream version.
-- Judicaël Courant <Judicael.Courant@lri.fr> Tue, 25 Sep 2001 16:27:04 +0200
coq (7.0-1) unstable; urgency=low
* New maintainer Judicaël Courant <Judicael.Courant@lri.fr>.
* New upstream version.
* Added Build-Depends (closes: Bug#70273).
* Cleaned up dependencies.
* Emacs mode installation now follows Emacs policy.
* Made compilation non-interactive (closes: Bug#92461).
* Added Suggests cle.
-- Judicaël Courant <Judicael.Courant@lri.fr> Tue, 17 Apr 2001 19:24:34 +0200
coq (6.3.1-3) unstable; urgency=low
* Patched to allow use of ocaml3.
-- Fernando Sanchez <fer@debian.org> Fri, 7 Jul 2000 08:05:47 +0200
coq (6.3.1-2) unstable; urgency=low
* Some changes to allow successful porting of this package:
* Added checking for ocamlopt.opt before running ./configure with -opt,
and configure without it if it is not present for this architecture.
* Added checking for ocamlopt before making world-opt.
-- Fernando Sanchez <fer@debian.org> Sat, 18 Dec 1999 16:45:01 +0100
coq (6.3.1-1) unstable; urgency=low
* Initial Release.
-- Fernando Sanchez <fer@debian.org> Fri, 3 Dec 1999 22:06:04 +0100
|