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
|
opencv (3.2.0+dfsg-6) unstable; urgency=medium
* Team upload.
[ Mattia Rizzolo ]
* Import security update from Ubuntu.
[ Nobuhiro Iwamatsu ]
* Change Vcs-Git and Vcs-Browser to salsa.
-- Mattia Rizzolo <mattia@debian.org> Tue, 12 Feb 2019 12:26:31 +0100
opencv (3.2.0+dfsg-5ubuntu1) disco; urgency=low
* Merge from Debian unstable. Remaining changes:
* SECURITY UPDATE: Out-of-bounds read/write errors and buffer
overflows in different functions.
- debian/patches/CVE-2017-several.patch: fix in bitstrm.cpp,
bitstrm.hpp, grfmt_bmp.cpp, grfmt_pxm.cpp, loadsave.cpp,
test_grfmt.cpp and cuda_test.cpp.
- CVE-2016-1516
- CVE-2016-1517
- CVE-2017-12597
- CVE-2017-12598
- CVE-2017-12599
- CVE-2017-12600
- CVE-2017-12601
- CVE-2017-12602
- CVE-2017-12603
- CVE-2017-12604
- CVE-2017-12605
- CVE-2017-12606
- CVE-2017-12862
- CVE-2017-12863
- CVE-2017-12864
* SECURITY UPDATE: Out of bound write cause segmentation fault
- debian/patches/CVE-2017-14136.patch: fix in grfmt_bmp.cpp,
grfmt_exr.cpp, grfmt_jpeg.cpp, grfmt_jpeg2000.cpp,
grfmt_pam.cpp, grfmt_sunras.cpp, utils.cpp and utils.hpp.
- CVE-2017-14136
* SECURITY UPDATE: Buffer Overflow in the cv::PxMDecoder::readData
function in grfmt_pxm.cpp
- debian/patches/CVE-2017-17760.patch: fix in grfmt_pxm.cpp.
- CVE-2017-17760
* SECURITY UPDATE: Integer overflow may lead to remote execution or
denial of service
- debian/patches/CVE-2017-1000450.patch: fix in grfmt_bmp.cpp.
- CVE-2017-1000450
* SECURITY UPDATE: A heap-based buffer overflow happens in
cv::Jpeg2KDecoder::readComponent8u when parsing a crafted image file
- debian/patches/CVE-2018-5268.patch: fix in grfmt_jpeg2000.cpp.
- CVE-2018-5268
* SECURITY UPDATE: an assertion failure happens in
cv::RBaseStream::setPos in modules/imgcodecs/src/bitstrm.cpp because
of an incorrect integer cast.
- debian/patches/CVE-2018-5269.patch: add overflow checks.
- CVE-2018-5269
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 28 Nov 2018 19:35:26 +0100
opencv (3.2.0+dfsg-5) unstable; urgency=medium
* Team upload.
* Add patch to fix FTBFS with Python 3.7. Closes: #914752
* d/control: Set the git branch in Vcs-Git.
-- Mattia Rizzolo <mattia@debian.org> Wed, 28 Nov 2018 12:35:19 +0100
opencv (3.2.0+dfsg-4.1ubuntu3) disco; urgency=medium
* No-change rebuild against latest protobuf
-- Jeremy Bicha <jbicha@ubuntu.com> Sat, 10 Nov 2018 14:51:43 -0500
opencv (3.2.0+dfsg-4.1ubuntu2) disco; urgency=medium
* Build with -fpermissive for now.
-- Matthias Klose <doko@ubuntu.com> Thu, 01 Nov 2018 09:15:58 +0100
opencv (3.2.0+dfsg-4.1ubuntu1) disco; urgency=medium
* No-change rebuild for Python 3.7 as the default Python 3.
-- Matthias Klose <doko@ubuntu.com> Wed, 31 Oct 2018 17:43:25 +0100
opencv (3.2.0+dfsg-4.1ubuntu0.1) cosmic-security; urgency=medium
* SECURITY UPDATE: Out-of-bounds read/write errors and buffer
overflows in different functions.
- debian/patches/CVE-2017-several.patch: fix in bitstrm.cpp,
bitstrm.hpp, grfmt_bmp.cpp, grfmt_pxm.cpp, loadsave.cpp,
test_grfmt.cpp and cuda_test.cpp.
- CVE-2016-1516
- CVE-2016-1517
- CVE-2017-12597
- CVE-2017-12598
- CVE-2017-12599
- CVE-2017-12600
- CVE-2017-12601
- CVE-2017-12602
- CVE-2017-12603
- CVE-2017-12604
- CVE-2017-12605
- CVE-2017-12606
- CVE-2017-12862
- CVE-2017-12863
- CVE-2017-12864
* SECURITY UPDATE: Out of bound write cause segmentation fault
- debian/patches/CVE-2017-14136.patch: fix in grfmt_bmp.cpp,
grfmt_exr.cpp, grfmt_jpeg.cpp, grfmt_jpeg2000.cpp,
grfmt_pam.cpp, grfmt_sunras.cpp, utils.cpp and utils.hpp.
- CVE-2017-14136
* SECURITY UPDATE: Buffer Overflow in the cv::PxMDecoder::readData
function in grfmt_pxm.cpp
- debian/patches/CVE-2017-17760.patch: fix in grfmt_pxm.cpp.
- CVE-2017-17760
* SECURITY UPDATE: Integer overflow may lead to remote execution or
denial of service
- debian/patches/CVE-2017-1000450.patch: fix in grfmt_bmp.cpp.
- CVE-2017-1000450
* SECURITY UPDATE: A heap-based buffer overflow happens in
cv::Jpeg2KDecoder::readComponent8u when parsing a crafted image file
- debian/patches/CVE-2018-5268.patch: fix in grfmt_jpeg2000.cpp.
- CVE-2018-5268
* SECURITY UPDATE: an assertion failure happens in
cv::RBaseStream::setPos in modules/imgcodecs/src/bitstrm.cpp because
of an incorrect integer cast.
- debian/patches/CVE-2018-5269.patch: add overflow checks.
- CVE-2018-5269
-- Eduardo Barretto <eduardo.barretto@canonical.com> Tue, 25 Sep 2018 12:22:15 -0300
opencv (3.2.0+dfsg-4.1build1) cosmic; urgency=medium
* No-change rebuild for ffmpeg soname changes.
-- Matthias Klose <doko@ubuntu.com> Thu, 19 Jul 2018 08:43:40 +0000
opencv (3.2.0+dfsg-4.1) unstable; urgency=medium
* Non-maintainer upload.
* debian/patches: Fix building with ffmpeg 4.0. (Closes: #888386)
-- Sebastian Ramacher <sramacher@debian.org> Wed, 11 Jul 2018 22:59:18 +0200
opencv (3.2.0+dfsg-4) unstable; urgency=medium
* Team upload.
* Install maven artifacts with maven-repo-helper so reverse dependencies can
automatically pick the dependency by using ${maven:Depends}.
Thanks to Gilles Filippini <pini@debian.org> for the patch. Closes: #878949
* d/control:
+ Use unversioned Conflicts in libopencv-dev, to force the removal
of some old packages. Closes: #880921
+ Remove dbus-x11 work around now that #878878 is fixed.
-- Mattia Rizzolo <mattia@debian.org> Sat, 11 Nov 2017 13:46:48 +0100
opencv (3.2.0+dfsg-3) unstable; urgency=medium
* Team upload.
* d/p/support_multiarch: forward the patch after a small edit.
* d/p/mathjax: make the MATHJAX_RELPATH option configurable at build time
through cmake, and then forward the patch.
* Despite tbb being available in all linux architectures, we need it in a
version that is not available everywhere, so revert back to enabling it
only on a hand-picked list of architectures. Closes: #878830
* d/control: work around #878878 in dbus by explictly adding dbus-x11 to
build-deps for !linux.
-- Mattia Rizzolo <mattia@debian.org> Tue, 17 Oct 2017 16:27:02 +0200
opencv (3.2.0+dfsg-2) unstable; urgency=medium
* Team upload.
* d/patches:
+ support_x32 patch: drop, it actually did nothing useful.
+ fix_ftbfs_on_non_linux: simplify patch, by removing several hunks no
longer needed.
Incidentally, this fixes the FTBFS in x32. Closes: #878705
* d/rules:
+ Enable DICOM support. Closes: #843513
+ tbb is now available in all linux archs, so enable it for all linux-any.
+ Enable SSE and SSE2 on all architectures based on a amd64 cpu, not just
amd64 itself
+ Use /usr/share/dpkg/architecture.mk instead of calling dpkg-architecture.
-- Mattia Rizzolo <mattia@debian.org> Mon, 16 Oct 2017 23:44:22 +0200
opencv (3.2.0+dfsg-1) unstable; urgency=medium
* Team upload.
* Upload to unstable.
* Bump Standards-Version to 4.1.1:
+ Use HTTPS in debian/copyright's Format field.
* Use HTTPS for the Homepage URL.
-- Mattia Rizzolo <mattia@debian.org> Fri, 13 Oct 2017 19:32:01 +0200
opencv (3.2.0+dfsg-1~exp2) experimental; urgency=medium
* Team upload.
* Explicitly disable carotene support to fix FTBFS on arm*.
* Drop conditional enabling of OpenGL, it can't be enabled with GTK+3
anyway. Closes: #869975
* Changelog for 3.2.0+dfsg-1~exp2
-- Mattia Rizzolo <mattia@debian.org> Mon, 31 Jul 2017 10:50:25 +0200
opencv (3.2.0+dfsg-1~exp1) experimental; urgency=medium
* Update to 3.2.0.
- Add freetype and phase_unwrapping modules into libopencv-contrib.
- Disable DNN and tracking module (temporary).
* Add patches/fix_VFP_asm.patch.
* Update Standards-Version to 4.0.0.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 29 Jun 2017 09:42:02 +0900
opencv (3.1.0+dfsg1-1~exp1) experimental; urgency=medium
* Team upload.
[ Mattia Rizzolo ]
* Rewrite d/copyright using copyright-format 1.0.
* Add Files-Excluded listing the removed files.
* Update watch file, pointing to github.
* Add the contrib modules as a multiple upstream tarball.
* Add new build-dependencies needed by contrib modules.
* Override lintian tag debian-watch-file-should-mangle-version (see #505857).
* override lintian warning package-name-doesnt-match-sonames for
libopencv-contrib.
* Add some DEP-3 descriptions to two patches.
[ Nobuhiro Iwamatsu ]
* Remove obsolete files of libopencv-legacy.
* Build the opencv_contrib libraries. Closes: #861194
* Fix Build with HDF5. Add patches/moudles_hdf5.patch
-- Mattia Rizzolo <mattia@debian.org> Wed, 26 Apr 2017 18:17:33 +0200
opencv (3.1.0+dfsg-1~exp5) experimental; urgency=medium
* Team upload.
* wrap-and-sort -ast.
* Add (Build-)Depends on libavresample-dev.
* Add (Build-)Depends on libgphoto2-dev.
* Install usr/include/opencv2/cvconfig.h in libopencv-core-dev. LP: #1315418
* d/rules: use --fail-missing instead of --list-missing, to be really sure
nothing is left out.
-- Mattia Rizzolo <mattia@debian.org> Mon, 24 Apr 2017 01:35:03 +0200
opencv (3.1.0+dfsg-1~exp4) experimental; urgency=medium
* Team upload.
* debian/rules cleanup:
+ Remove rm(1)s that do not seem to do anything (anymore).
+ DRY up the BUILDDIR variable.
+ Do not mangle BUILDDIR on i386, there should be no need for it.
+ Add an override to dh_auto_install to pass the correct BUILDDIR (should
fix FTBFS for kfreebsd-i386 (and probably this is what the original
BUILDDIR mangling is about)).
+ Proper calls to clean cmake build products.
+ The build system is recognized by debhelper, no need to tell it.
+ Use a single cp call to copy the static libs.
-- Mattia Rizzolo <mattia@debian.org> Sun, 23 Apr 2017 22:12:08 +0200
opencv (3.1.0+dfsg-1~exp3) experimental; urgency=medium
* Team upload.
* debian/rules:
+ Do not forcefully disable PIE anymore, -pie changed meaning.
Also remove +fortify, as that's on by default anyway. Closes: #859440
+ Drop empty override_dh_fixperms.
+ Remove empty directories from the installed tree.
* debian/control:
+ Make libopencv-dev suggest opencv-doc. Closes: #806703
+ Drop not needed libgtk2.0-dev dependency of libopencv-highgui-dev.
Closes: #817017
+ Fix installability problem in case of binNMUs. Closes: #844067
Mark libopencv3.1-java as Breaking/Replacing the 2.4 version.
Closes: #810516
+ Avoid duplicate long descriptions.
* Build a python3 package. Closes: #799262; LP: #1556156
Thanks to Kota Kato <orangain@gmail.com> for the initial patch.
* Use dh_numpy instead of hardconding the numpy ABI number.
* Build with GTK+ 3 (instead of GTK+ 2). (Closes: #822607)
* Remove disabled patches
* Refresh patches.
* Remove obsolete lintian override.
-- Mattia Rizzolo <mattia@debian.org> Mon, 03 Apr 2017 22:25:01 +0200
opencv (3.1.0+dfsg-1~exp2) experimental; urgency=medium
* Fix Depends of libopencv-shape3.1 and libopencv-shape-dev.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 19 Oct 2016 09:17:57 +0900
opencv (3.1.0+dfsg-1~exp1) experimental; urgency=medium
* Add old header files into libopencv-dev.
* Update debian/control.
- Add Replaces and Conflicts to libopencv-dev.
- Fix version of libopencv3.1-jni for libopencv3.1-java.
- Fix Depends of libopencv-dev. Add libopencv3.1-java. (Closes: #833616)
- Add libopencv-shape-dev to Depends of libopencv-dev. (Closes: #818738)
- Add libtbb-dev to Depends of libopencv-core-dev. (Closes: #838916)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 18 Oct 2016 06:22:32 +0900
opencv (3.1.0+dfsg-1~exp0) experimental; urgency=medium
* Update to 3.1.0.
* Add patches/disable_opengl_test_build.
* Add libjs-mathjax to Depends of opencv-doc and debian/patches/mathjax.
* Add libjs-jquery to Depends of opencv-doc and add
debian/patches/change_jquery.js_path.
* Update Standards-Version to 3.9.8.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Sat, 25 Jun 2016 06:15:45 +0900
opencv (3.0.0+dfsg-1~exp7) experimental; urgency=medium
* Fix libopencv_shape dependencies.
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 27 Jul 2016 15:07:29 +0200
opencv (3.0.0+dfsg-1~exp6) experimental; urgency=medium
[ Nobuhiro Iwamatsu ]
* Fix missing install of opencv2/core.hpp
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 26 Jul 2016 08:39:25 +0200
opencv (3.0.0+dfsg-1~exp5) experimental; urgency=medium
* Fix libvtk6.3 runtime dependency
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 17 Jul 2016 10:08:15 +0200
opencv (3.0.0+dfsg-1~exp4) experimental; urgency=medium
* Upload again on experimental, to build against new gdal 2.1.1
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 16 Jul 2016 10:07:18 +0200
opencv (3.0.0+dfsg-1~exp3) experimental; urgency=medium
[ Andreas Cadhalpun ]
* Fix build with ffmpeg 3.0. (Closes: #803847)
[ Gianfranco Costamagna ]
* Team upload
* merge unstable NMUs
* rebase ffmpeg patch
* Disable optimize i586 patch, now Debian has i686
[ Tobias Frost ]
* Do not use precompiled headers (Closes: #818450)
[ Mattia Rizzolo ]
* Use HTTPS in Vcs-* fields.
* Disable opengl when building in armhf (in Ubuntu only)
* Don't build with jasper. Closes: #818207
- This causes libopencv-highgui to lose symbols, but we don't rename the
package because the breakage is in experimental only.
* Fix typo in README.Debian.
* Remove unused lintian override python-script-but-no-python-dep.
-- Gianfranco Costamagna <locutusofborg@debian.org> Fri, 08 Jul 2016 15:43:15 +0200
opencv (3.0.0+dfsg-1~exp2) experimental; urgency=medium
* Fix FTBFS on i386.
* Build with -march=i586 instead of -march=i686 on i386.
Add debian/patches/optimize_i586.patch.
* Fix FTBFS on x32. (Closes: #792264)
Add debian/patches/support_x32. Thanks to Thorsten Glaser <tg@mirbsd.de>.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 07 Jan 2016 23:48:01 +0900
opencv (3.0.0+dfsg-1~exp1) experimental; urgency=medium
* Update to 3.0.0 (Closes: #792677, #805099; LP: #1516985).
* Remove libopencv-legacy and libopencv-contrib.
These features are not provided from the new version.
* Remove old packages (libcv*, libhighgui*, libcvaux*).
* Add support gdal and vtk.
* Enable parallel building.
* Remove image files of Lena (Closes: #794856).
* Add debug packages (Closes: #803404).
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 10 Dec 2015 00:07:44 +0900
opencv (2.4.11+dfsg-1) unstable; urgency=medium
* Update to 2.4.11.
* Update debian/control.
- Bumped standards-version to 3.9.6.
* Remove image files of Lena (Closes: #794856)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 09 Dec 2015 00:36:05 +0900
opencv (2.4.9.1+dfsg-2.1) unstable; urgency=medium
* Non-maintainer upload.
* debian/patches:
- Add fix_ftbfs_with_gcc6 to fix FTBFS with gcc-6. (Closes: #828928)
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Tue, 04 Oct 2016 17:07:49 +0200
opencv (2.4.9.1+dfsg-2) unstable; urgency=medium
* Team upload.
* Use HTTPS in Vcs-* fields.
* Disable opengl when building in armhf (in Ubuntu only)
* Don't build with jasper. Closes: #818207
This causes libopencv-highgui to lose symbols, so we need to rename the
package and do a transition.
* Fix typo in README.Debian.
* Remove unused lintian override python-script-but-no-python-dep.
* Add missing dependency on libopencv-gpu2.4v5 to libopencv-gpu-dev.
Closes: #825583
-- Mattia Rizzolo <mattia@debian.org> Mon, 27 Jun 2016 05:08:42 +0000
opencv (2.4.9.1+dfsg-1.5) unstable; urgency=medium
* Non-maintainer upload.
* Do not use precompiled headers (Closes: #818450)
-- Tobias Frost <tobi@debian.org> Thu, 07 Apr 2016 16:43:31 +0200
opencv (2.4.9.1+dfsg-1.4) unstable; urgency=medium
* Non-maintainer upload.
[ Andreas Cadhalpun ]
* Fix build with ffmpeg 3.0. (Closes: #803847)
-- Sebastian Ramacher <sramacher@debian.org> Sun, 06 Mar 2016 23:57:30 +0100
opencv (2.4.9.1+dfsg-1.3) UNRELEASED; urgency=medium
* Non-maintainer upload.
* Refresh debian/patches:
- Update change_type_from_int_to_Atomic_word to fix
FTBFS on sparc64. (Closes: #714923)
- Re-add fix_without_sysctl.patch to fix FTBFS on x32. (Closes: #792264)
-- John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Mon, 08 Feb 2016 10:51:45 +0100
opencv (2.4.9.1+dfsg-1.2) unstable; urgency=medium
* Non-maintainer upload.
* Rename library packages for g++5 ABI transition.
Patch provided by Matthias Klose. (Closes: #791226)
* Remove Lintian overrides from Matthias' patch, current Lintian accepts
v5 package names as-is.
* Build-depend on the version of openexr that started its transition.
* Add patch to stop checking the version of sphinx-build (which makes
no difference anyway), fixing arch-indep build (#792715; not closing
that bug here because it is unclear whether it is considered to be a
sphinx bug).
* Deliberately not addressing #794856 in this upload, since it requires
repacking the orig.tar and is not a regression.
-- Simon McVittie <smcv@debian.org> Wed, 19 Aug 2015 22:36:43 +0100
opencv (2.4.9.1+dfsg-1.1) unstable; urgency=medium
* Non-maintainer upload.
[ Bernhard Übelacker ]
* Build with -march=i586 instead of -march=i686 on i386. (Closes: #784647)
-- Sebastian Ramacher <sramacher@debian.org> Fri, 15 May 2015 21:34:12 +0200
opencv (2.4.9.1+dfsg-1) unstable; urgency=medium
* New upstream release.
* Add support ppc64el. (Closes: #754094)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 19 Sep 2014 11:04:13 +0900
opencv (2.4.9+dfsg-1) unstable; urgency=medium
* New upstream release. (Closes:#753689)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 01 Jul 2014 07:58:34 +0900
opencv (2.4.8+dfsg1-2.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix version in symbolic links for libopencv2.4-java (closes: #747500)
-- Gilles Filippini <pini@debian.org> Wed, 21 May 2014 07:52:52 +0200
opencv (2.4.8+dfsg1-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Add libav10.patch by Anton Khirnov to allow compilation against
Libav10 (Closes: #739440)
-- Reinhard Tartler <siretart@tauware.de> Sun, 11 May 2014 09:57:31 -0400
opencv (2.4.8+dfsg1-2) unstable; urgency=medium
* Update debian/control.
- Add libopencv-java and libopencv-jni to Depends of libopencv-dev.
- Update depends of libopencv-jni, libopencv-java and libopencv-dev.
* Update debian/libopencv2.4-jni.install.
Fix install path of libopencv_java248.so
* Update debian/rules.
Fix install path of jni library.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 18 Feb 2014 06:16:59 +0900
opencv (2.4.8+dfsg1-1) unstable; urgency=low
* Update to new source.
Remove Milky directory in modules/highgui/src/files_Qt/.
* Update debian/control.
Add libopencv-ocl-dev to Depends of libopencv-dev. (Closes: #737584)
* Update libopencv-dev.install.
Install OpenCVModules-release.cmake and OpenCVModules.cmake.
(Closes: #737153)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 12 Feb 2014 16:37:21 +0900
opencv (2.4.8+dfsg-1) unstable; urgency=low
* New upstream release.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 14 Jan 2014 12:28:02 +0900
opencv (2.4.7+dfsg-1) unstable; urgency=low
* New upstream release. (Closes: #732063)
* Add patches/revert-Make-ts-always-static.
* Add ocl library. (Closes: #732028, #720092)
* Add java library. (Closes: #728221)
* Update debian/control.
- Remove Vcs-Svn field and add Vcs-Git field.
- Update Vcs-Browser field.
- Update Homepage field.
- Bumped standards-version to 3.9.5.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 03 Dec 2013 08:17:57 +0900
opencv (2.4.6.1+dfsg-2) unstable; urgency=low
[ Anton Gladky ]
* Replace libeigen2-dev by libeigen3-dev. (Closes: #726155)
[ Nobuhiro Iwamatsu ]
* FTBFS on sparc64. (Closes: #714923)
Add patches/change_type_from_int_to_Atomic_word.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Sat, 23 Nov 2013 11:31:08 +0900
opencv (2.4.6.1+dfsg-1) unstable; urgency=low
* Upload to unstable. (Closes: #719998, #716811)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Mon, 23 Sep 2013 06:28:00 +0900
opencv (2.4.6.1+dfsg-0exp4) experimental; urgency=low
* Update debian/control.
- Fix fails to upgrade from testing by opencv-data. (Closes: #722927)
- Change Vcs host to anonscm.debian.org.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 20 Sep 2013 08:16:39 +0900
opencv (2.4.6.1+dfsg-0exp3) experimental; urgency=low
* Update patches/pkg-config. (Closes: #678222, #721894)
Fix broken pkg-config file.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 06 Sep 2013 13:51:39 +0900
opencv (2.4.6.1+dfsg-0exp2) unstable; urgency=low
* Update debian/rules.
- Move configuration for 1394 and V4L to CMAKE_ARCH_FLAGS.
Thanks to Pino Toscano.
- Change from target name from override_dh_fixperms to
override_dh_fixperms-indep.
* Add fix_ftbfs_on_non_linux.patch.
Fix FTBFS on non linux. (Closes: #719741)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 04 Sep 2013 10:22:46 +0900
opencv (2.4.6.1+dfsg-0exp1) experimental; urgency=low
* New upstream release.
* Update debian/control.
- Add libgtkglext1-dev, libgl1-mesa-dev and libglu1-mesa-dev
to Build-Depends.
- Remove swig from Build-Depends.
* Update debian/rules.
- Enable OpenGL.
* Update patches.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 07 Aug 2013 12:37:41 +0900
opencv (2.4.5+dfsg-0exp1) experimental; urgency=low
* New upstream release. (Closes: #716811)
* Update debian/control.
- Add support all arch with TBB support. (Closes: 701195)
- Add opencv-data. Move haarcascades and lbpcascades's data to this.
(Closes: #711385)
* Update debian/rules.
- Add python2 to dh of sequence.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 12 Jul 2013 13:00:43 +0900
opencv (2.4.3+dfsg-1) experimental; urgency=low
* New upstream release.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Mon, 10 Dec 2012 01:01:14 +0900
opencv (2.4.2+dfsg-0exp2) experimental; urgency=low
* Update debian/control.
- Dump cmake version to 2.8.7.
When old cmake is used, building failed.
* Update libopencv-core-dev.install.
- Add opencv2/opencv_modules.hpp.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 24 Jul 2012 12:22:11 +0900
opencv (2.4.2+dfsg-0exp1) experimental; urgency=low
* New upstream release.
* Update debian/control.
- Changed Depends from libtiff4-dev to libtiff-dev. (Closes: #682238)
- Support eigen2. Add libeigen2-dev to Build-Depends.
* Update install file.
Change path of samples and add python2.
* Update debian/rules.
- Remove chmod line. Removed build_all.sh.
- Add -r for option of rm command.
* Update patches/build-static-libs.patch
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Mon, 16 Jul 2012 04:03:56 +0900
opencv (2.4.1+dfsg-0exp2) experimental; urgency=low
* Update package description.
* Add patches/pkg-config.patch.
This changed library specification method in pkgconfig.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 26 Jun 2012 16:19:21 +0900
opencv (2.4.1+dfsg-0exp1) experimental; urgency=low
* New upstream release.
* Update debian/rules.
- Enable hardening option.
* Update debian/control.
- Fix wrong package name.
- Add python-numpy-abi9 and python-numpy (>= 1:1.6.1) to python-opencv.
Fix lintian error for missing-dependency-on-numpy-abi.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 07 Jun 2012 08:54:31 +0900
opencv (2.4.0+dfsg-0exp1) experimental; urgency=low
* New upstream release. (Closes: 671377)
- Add stitching, ts, videostab and photo packages.
- Remove gpu package.
* Update debian/control.
- Bumped Standards-Version to 3.9.3. No changes needed.
- Update Homepage field.
* Update debian/rules.
- Remove unnecessary option of build config.
* Update patches.
- 0005-build-static-libs.patch
- 0007-typos-in-strings-docs.patch
- 0013_drop_asm_types_h_kfreebsd.patch
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 23 May 2012 12:42:17 +0900
opencv (2.3.1-10) unstable; urgency=high
* Update debian/control.
- Add Replaces and Breaks of libopencv-core-dev to libopencv-dev.
(Closes: #674242)
- Cleanup Depends of packages.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 29 May 2012 08:43:39 +0900
opencv (2.3.1-9) unstable; urgency=low
* Update debian/control.
- pkg-config and binarys move from libopencv-core-dev to libopencv-dev.
(Closes: #671376, #658197)
- Drop Replaces and Breaks from libopencv-core-dev. (Closes: #668708)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 22 May 2012 12:17:09 +0900
opencv (2.3.1-8) unstable; urgency=low
* Add support TBB.
* Fix getting value of dpkg-architecture.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 02 Feb 2012 12:40:01 +0900
opencv (2.3.1-7) unstable; urgency=low
* Update debian/libopencv-core-dev.install.
- Change install path of OpenCVConfig.cmake from usr/share/opencv/
to usr/share/OpenCV. (Closes: #658196)
- usr/share/OpenCV/OpenCVConfig-version.cmake was added to the
installation file of libopencv-core-dev.
* Add debian/*-dev.docs.
This provides README.Debian with *-dev packages.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 02 Feb 2012 02:39:05 +0900
opencv (2.3.1-6) unstable; urgency=low
* Fix installation of usr/include/opencv2/opencv.hpp. (Closes: #656860)
Update debian/libopencv-core-dev.install.
* Remove old build flags and add optimize flag for amd64.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 31 Jan 2012 08:08:00 +0900
opencv (2.3.1-5) unstable; urgency=low
* Fix FTBFS with libav 0.8. (Closes: #654220)
Add patches/0014_fix_ftbfs_libav0.8.patch.
* Update debian/control.
Add python-sphinx to Build-Depends.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 27 Jan 2012 05:36:29 +0900
opencv (2.3.1-4) unstable; urgency=low
* Update patches/0013_drop_asm_types_h_kfreebsd.patch.
Drop <asm/types.h>, not <sys/types.h>.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 21 Dec 2011 17:01:12 +0900
opencv (2.3.1-3) unstable; urgency=low
* Update debian/README.Debian.
* Update debian/control.
- Update Depends package for libopencv-dev.
* Fix build on kfreeBSD. (Closes: #651872)
Update patches/0013_drop_asm_types_h_kfreebsd.patch.
Thanks to Julien Cristau.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 21 Dec 2011 12:02:10 +0900
opencv (2.3.1-2) unstable; urgency=low
* Update debian/control.
- Adjusted version for Replaces and Breaks of libopencv-core-dev.
(Closes: #651988). Thanks to Ansgar Burchardt.
* Fix build on kfreeBSD. (Closes: #651872)
Add patches/0013_drop_asm_types_h_kfreebsd.patch.
Thanks to Julien Cristau.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 20 Dec 2011 17:10:11 +0900
opencv (2.3.1-1) unstable; urgency=low
* Upload to unstable.
* Update debian/control.
Switch Build-Depends from libong62-dev to libpng-dev.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Mon, 12 Dec 2011 12:06:57 +0900
opencv (2.3.1-0exp1) experimental; urgency=low
* New upstream release.
* Update debian/control.
- Fix uses hardcoded list of non-Linux architectures in debian/control.
(Closes: #634365)
* Add lintian overrides files.
* Update install files.
* Update and remove some patches.
- Update patches/0005-build-static-libs.patch.
- Update patches/0007-typos-in-strings-docs.patch.
- Update patches/0011_optimize_i486.patch.
- Remove patches/0001-fix_3rdparty_build.patch.
- Remove patches/0006-typos-in-license.patch.
- Remove patches/0012_cvcap_ffmpeg_fix_compile_against_libav0.7.patch.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 25 Aug 2011 12:04:49 +0900
opencv (2.3.0-0exp4) experimental; urgency=low
* Fix FTBFS with libav 0.7. (Closes: #634818)
Add patches/vcap_ffmpeg_fix_compile_against_libav0.7.patch.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 27 Jul 2011 01:51:25 +0900
opencv (2.3.0-0exp3) experimental; urgency=low
* Add libopencv-dev package.
This is a meta package providing development package necessary for
development of OpenCV (Open Computer Vision).
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 15 Jul 2011 02:46:05 +0900
opencv (2.3.0-0exp2) experimental; urgency=low
* Update debian/control
- Switch Build-Depends from libjpeg62-dev to libjpeg-dev for libjpeg8
transition.
- Add zlib1g-dev Build-Depends of libopencv-core-dev.
- Add some development package to Build-Depends of libopencv-highgui-dev.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 12 Jul 2011 08:54:37 +0900
opencv (2.3.0-0exp1) experimental; urgency=low
* New upstream release.
- Update install files.
- Update some patches for 2.3.
patches/0005-build-static-libs.patch
patches/0001-fix_3rdparty_build.patch
patches/0011_optimize_i486.patch
- Remove some patches revised in upstream.
patches/0002-fix_build_pdf.patch patches/0003-hurd.patch
patches/0004-fix_stdint_gcc45.patch patches/0009_support_v4lv2_only.patch
patches/0008_fix_ftbfs_with_gcc-4.6.patch patches/0010_fix_ftbs_png15.patch
* Update debian/control.
- Update depends of packages.
* Update debian/rules.
- Update path of hdr_parser.pyc from modules/python to
modules/python/src2.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 06 Jul 2011 09:47:09 +0900
opencv (2.2.0-0exp2) experimental; urgency=low
* Add libopencv-contrib-dev to Depends of libcvaux-dev (Closes: #632439).
Thanks to Mark Purcell.
* Arranged the dependence.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 05 Jul 2011 13:30:06 +0900
opencv (2.2.0-0exp1) experimental; urgency=low
* New upstream release. (Closes: #623532, #563428, #604642)
- Update, refresh and prune debian/patches.
- Account for upstream splitting/renaming libs:
+ generate N dynamic library packages.
+ name all library package as libopencv-*.
- Update debian/copyright.
- Remove debian/README.source.
- Update debian/*.install scripts.
- Update lintian overrides.
- Add libv4l-dev to Build-Depends.
* Bump to dh 8.
* Switch to source format 3.0 (quilt).
* Patch minor upstream typos.
* Fix formatting in debian/man/opencv_traincascade.1.
* Bumped standards-version to 3.9.2. No changes needed.
* Update debian repository pointers for new alioth hosts.
* Add support openexr.
* Move usr/share/opencv/haarcascades and usr/share/opencv/lbpcascades
to libopencv-core-dev (Closes: #598356).
* Fix build using gcc-4.6 (Closes: #624917).
- Add patches/0008_fix_ftbfs_with_gcc-4.6.patch.
* Fix build without v4l1 (Closes: #623418).
- Add patches/0009_support_v4lv2_only.patch.
* Fix build with libpng15.
- Add patch/0010_fix_ftbs_png15.patch.
* Fix optimize of i386 (Closes: 629414).
- Opencv was optimized to i686. This chenged optimization to i486.
- Add patch/0011_optimize_i486.patch.
* If build architecture is amd64, enable SSE2 option.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Mon, 27 Jun 2011 11:51:39 +0900
opencv (2.1.0-4) unstable; urgency=low
* Fix install path of opencv-doc (Closes: #610803).
* Fix FTBFS on gcc-4.5(Closes: #607086, #618045).
- Add patches/fix_stdint_gcc45.patch
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 16 Mar 2011 01:55:22 +0900
opencv (2.1.0-3) unstable; urgency=low
* Fix set opencv minor version on Python (Closes: #600836).
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 02 Nov 2010 19:55:47 +0900
opencv (2.1.0-2) unstable; urgency=low
* Update debian/control.
- Bumped standards-version to 3.9.1. No changes needed.
- Add python-numpy to Build-depends (Closes: #593310)
* Add hurd support patch (Closes: #589586).
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Wed, 25 Aug 2010 01:49:14 +0900
opencv (2.1.0-1) unstable; urgency=low
* New upstream release. (Closes: #577594, #587232, #563717)
* Update debian/rules.
- Update build-system to debhelper v7.
* Update debian/control.
- Bumped standards-version to 3.9.0. No changes needed.
- library package name update.
Soname of opencv library changed from 4 to 2.1.
- Add cmake, liblapack-dev, texlive-fonts-extra, texlive-latex-extra,
texlive-latex-recommended, latex-xcolor and texlive-fonts-recommended
to Build-depends.
- Add arch depends to libraw1394-dev and libdc1394-22-dev.
Thanks to Pino Toscano. (Closes: #581210)
* Add opencv-doc.lintian-overrides.
opencv-doc has some sample program of python.
* Update man files.
* Update patches
- Update and rename 500_remove_bashism.patch.
And rename to remove_bashism.patch.
* Add new patches.
- Enable build static library.
enable_static.patch
- Disable build 3rd party library.
Use zlib and lapack in debian package.
fix_3rdparty_build.patch
- Fix build pdf.
fix_build_pdf.patch
- Remove cvconfig.h
remove_cvconfig.h.patch
* Remove some patches.
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Fri, 16 Jul 2010 13:12:28 +0900
opencv (2.0.0-4) unstable; urgency=low
* Update debian/control.
- Bumped standards-version to 3.8.4. No changes needed.
* Change install path of python-opencv. (Closes: #565121)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Sun, 14 Mar 2010 13:19:00 +0900
opencv (2.0.0-3) unstable; urgency=low
* Remove libcv1, libhighgui1 and libcvaux1 from Conflicts and Replaces.
(Closes: #560283)
* Remove cvconfig.h from libcv-dev package. (Closes: #559857)
Update libcv-dev.install and backport r2242 of commit from upstream.
Thanks to Filippo Giunchedi.
debian/patches/110_backport_r2242.diff
* Fix FTBFS with GCC 4.4. (Closes: #562742)
Backport r2255 of commit from upstream. Thanks to Filippo Giunchedi.
debian/patches/110_backport_r2255.diff
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Thu, 07 Jan 2010 20:48:47 +0900
opencv (2.0.0-2) unstable; urgency=low
* Add cvconfig.h to libcv-dev. (Closes: #559857)
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 08 Dec 2009 10:00:14 +0900
opencv (2.0.0-1) unstable; urgency=low
* New upstream release. (Closes: #507588, #549997, #492445)
* Update Standards-Version to 3.8.3
* Add debian/README.source
* Add libdc1394-22-dev to Build-Depends. (Closes: #507584, #516794)
* Remove libcvaux-dev and libhighgui-dev from Depends of libcv-dev.
(Closes: #525023)
* Remove all .la files.
* Update debian/watch file. (Closes: #557140)
* Update debian/rules file.
Add --disable-sse and --disable-optimization to configure.
* Remove bashism. (Closes: #530153)
500_remove_bashism.patch
* Update debian/patches
010_m4_syntax.diff
010_fix_optimisations.diff
010_makefile_syntax.diff
010_python_cspec.diff
020_python_linking.diff
100_static_inline.diff
100_amd64.diff
120_header_warnings.diff
* Remove debian/patches
- Merge to upstream
030_install_hook.diff
100_ffmpeg_updates.diff
210_openmp_compilation.diff
300_fix_segfault_in_window_gtk.diff
400_ffmpeg_splitting_autofoo.diff
410_ffmpeg_use_swscale.diff
420_typedef_longint.diff
430_highgui_jpeg_camera.diff
- Don't need new version
010_ffmpeg_linking.diff
050_rebootstrap.diff
200_documentation.diff
500_ftbfs_gcc44.diff
-- Nobuhiro Iwamatsu <iwamatsu@debian.org> Tue, 01 Dec 2009 01:13:18 +0900
opencv (1.0.0-6.3) unstable; urgency=low
* Non-maintainer upload.
* Rebuild against new libraw1394 (Closes: #516646, #516920)
* Add libhighgui-dev dependency on libswscale-dev thanks Giel van Schijndel
(Closes: #547729)
* debian/patches/420_typedef_longint.diff: define int64/uint64 as int64_t
and uint64_t respectively, patch pulled from upstream r2163
(Closes: #543546)
* debian/patches/410_ffmpeg_use_swscale.diff: move
#define __STDC_CONSTANT_MACROS before #include <stdint.h> into
debian/patches/420_typedef_longint.diff
* debian/patches/500_ftbfs_gcc44.diff: fix FTBFS with gcc-4.4
thanks to Martin Michlmayr (Closes: #504831)
* debian/patches/430_highgui_jpeg_camera.diff: recognize JPEG cameras
(Closes: #536041)
-- Filippo Giunchedi <filippo@debian.org> Sat, 14 Nov 2009 17:04:41 +0100
opencv (1.0.0-6.2) unstable; urgency=low
* Non-maintainer upload.
* Port to newer ffmpeg. Closes: #487638, #490700, #493915
Loosely based on patch Gijs Molenaar, thanks.
-- Thomas Viehmann <tv@beamnet.de> Thu, 09 Jul 2009 21:43:02 +0200
opencv (1.0.0-6.1) unstable; urgency=low
* Non-maintainer upload.
* debian/control:
+ Dropped build dependency on libdc1394-22-dev (Closes: #497689)
+ Added ${misc:Depends} where missing
-- Raphael Geissert <atomo64@gmail.com> Thu, 11 Sep 2008 14:36:06 -0500
opencv (1.0.0-6) unstable; urgency=low
* debian/patches/120_header_warnings.diff:
+ Fix more warnings in shipped headers.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 28 Aug 2008 22:53:43 +0000
opencv (1.0.0-5) unstable; urgency=high
[ Daniel Leidert ]
* debian/control: Added Homepage field.
(Vcs-Svn): Fixed.
(Depends, Build-Depends): Added libjasper-dev (closes: #428474).
* debian/dirs: Removed (useless). Avoids empty directories.
* debian/libcv-dev.install: Small cosmetic fix.
* debian/libcv-dev.manpages: Added for haartraining utilities.
* debian/opencv-createsamples.1: Initially added.
* debian/opencv-haartraining.1: Ditto.
* debian/opencv-performance.1: Ditto.
* debian/opencv-doc.install: Install Makefile.debian here.
* debian/rules (install, binary-arch, binary-indep): Removed most of the
unused debhelper calls. Let dh_install exclude files we don't want. Don't
install examples twice. Removed installation of opencv-config.1 (closes:
#407946).
* debian/watch: Added.
* debian/patches/300_fix_segfault_in_window_gtk.diff: Added. Merged from
Ubuntu.
* debian/patches/series: Adjusted.
[ Sam Hocevar ]
* High urgency to ease testing propagations.
* debian/patches/100_ffmpeg_updates.diff:
+ Updated patch to latest ffmpeg version (Closes: #482217).
* debian/patches/020_python_linking.diff:
+ Link python bindings with required libraries.
* debian/patches/030_install_hook.diff:
+ Use install-exec-hook instead of install-hook.
* debian/control:
+ Build-depend on more recent libavcodec-dev.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sun, 08 Jun 2008 15:01:18 +0000
opencv (1.0.0-4) unstable; urgency=low
* debian/rules:
+ Support CONCURRENCY_LEVEL.
+ Don't ignore make distclean errors.
* debian/control:
+ Add ${shlibs:Depends} to -dev packages, to get a proper dependency
when these packages ship binaries.
+ Use ${binary:Version} instead of ${Source-Version} (Closes: 430726).
+ Set policy to 3.7.3.
+ Use Vcs-Svn: instead of XS-Vcs-Svn: fields.
* debian/patches/100_ffmpeg_updates.diff:
+ Updated patch. Getting and setting framerate in FFmpeg streams now
works properly again. Thanks to Eric Beets for half the fix.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Mon, 10 Mar 2008 16:41:56 +0000
opencv (1.0.0-3) unstable; urgency=low
* debian/control:
+ Set maintainer to the pkg-scicomp team.
+ Updated Vcs fields.
* debian/compat:
+ Set compat version to 5.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sun, 1 Apr 2007 15:19:15 +0200
opencv (1.0.0-2) unstable; urgency=low
* Upload to unstable.
* debian/patches/120_header_warnings.diff:
+ New patch. Fix warnings in shipped headers.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Wed, 28 Mar 2007 19:02:18 +0200
opencv (1.0.0-1) experimental; urgency=low
* New upstream release.
* debian/control:
+ Depend on pkg-config now that opencv-config is deprecated.
* debian/rules:
+ Do not remove haartraining files (Closes: #368568).
* debian/patches/010_python_cspec.diff:
+ New patch. Add -fno-strict-aliasing because of numerous aliasing
issues in the code (Closes: #388129).
* debian/patches/110_dc1394.diff:
+ Fix a few bugs in the dc1394 code.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 14 Nov 2006 17:12:26 +0100
opencv (0.9.7-4) unstable; urgency=low
* Migrate package to the new python policy (Closes: #373469), thanks to
Pierre Habouzit.
* debian/control: add XS-Vcs-Svn information.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 12 Oct 2006 09:21:14 +0200
opencv (0.9.7-3) unstable; urgency=low
* debian/patches/110_dereferencement.diff:
+ Fix compilation warnings due to type-punned pointer dereferencement.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Mon, 12 Jun 2006 12:14:44 +0200
opencv (0.9.7-2) unstable; urgency=low
* Switched patch system from dpatch to quilt.
* debian/control:
+ Set policy to 3.7.2.
+ Build-depend on newer versions of libavcodec-dev so that we can get
dynamically linked with it.
+ Build-depend on quilt instead of dpatch.
* debian/patches/010_enable_static.diff:
+ Old patch -- enable static libraries.
* debian/patches/010_ffmpeg_linking.diff:
+ Old patch -- correct ffmpeg linking.
* debian/patches/010_fix_optimisations.diff:
+ Old patch -- fix optimisation flags for GCC bug workarounds.
* debian/patches/010_m4_syntax.diff:
+ Old patch -- fix m4 syntax.
* debian/patches/010_makefile_syntax.diff:
+ Old patch -- fix Makefile.am syntax.
* debian/patches/010_proper_sonames.diff:
+ Old patch -- fix library sonames.
* debian/patches/020_rebootstrap.diff:
+ Old patch -- rebootstrap package.
* debian/patches/100_amd64.diff:
+ Fix inclusion of <emmintrin.h> on AMD64 (Closes: #365752, #366105).
* debian/patches/100_ffmpeg_updates.diff:
+ Old patch -- update ffmpeg code to get in sync with newer API.
* debian/patches/100_python_files.diff:
+ Old patch -- remove shebang from non-executable python files.
* debian/patches/100_static_inline.diff:
+ Old patch -- replace inline with static inline in public headers.
* debian/patches/200_documentation.diff:
+ Old patch -- get documentation in sync with the API.
* debian/patches/200_examples_makefile.diff:
+ Old patch -- add a Makefile to the examples directory.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sun, 14 May 2006 05:40:42 +0200
opencv (0.9.7-1) unstable; urgency=low
* New upstream release.
* Maintainer upload.
* Acknowledging previous NMU (Closes: #339240). Thanks to Steve Langasek.
* debian/control:
+ Build-depend on swig because of the Python bindings.
+ Renamed 0.9-0c2 packages to 0.9.7-0 due to API changes.
+ Depend and build-depend on libavformat-dev.
* debian/rules:
+ Activated Python wrappers.
+ Build example apps.
* cxtypes.h highgui.h: Replace "static" with "static inline" for inline
functions declared in the public headers.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Wed, 19 Apr 2006 09:37:55 +0200
opencv (0.9.6-4.1) unstable; urgency=medium
* Non-maintainer upload.
* Medium-urgency upload for RC bugfix.
* Rename libcvaux0.9-0c2 to libcvaux0.9-0c2a for the C++ mt allocator ABI
transition, and conflict/replace libcvaux0.9-0c2 accordingly
(closes: #339240).
-- Steve Langasek <vorlon@debian.org> Sat, 3 Dec 2005 21:27:40 -0800
opencv (0.9.6-4) unstable; urgency=low
* tests/cv/src/asobel.cpp:
+ Fixed an illegal int/void* cast.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Mon, 26 Sep 2005 19:39:52 +0200
opencv (0.9.6-3) unstable; urgency=low
* debian/control:
+ Build-depend on a newer libavcodec-dev.
+ Make libhighgui-dev depend on all required -dev packages such as
libtheora-dev (Closes: #319018).
* debian/rules:
+ Hint --build and --host to configure.
* configure.in:
+ Use -O2 on m68k instead of -O3 to bypass gcc ICEs (Closes: #321106).
* tests/cv/src/apyramids.cpp: fixed 64 bits compilation (Closes: #318791).
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Fri, 16 Sep 2005 11:53:13 +0200
opencv (0.9.6-2) unstable; urgency=low
* The great g++ transition upload.
* debian/control:
+ Renamed 0.9-0 packages to 0.9-0c2.
+ Set policy to 3.6.2.1.
+ Build-depend on a newer libavcodec-dev.
* docs/index.htm:
+ Encoded invalid HTML characters.
+ Fixed links to the reference manual (Closes: #306922).
* docs/ref/opencvref_cv.htm:
+ Encoded invalid HTML characters.
+ Fixed the definition of CvHistogram (Closes: #307269).
* otherlibs/highgui/cvcap.cpp:
+ Hardcoded the capture framerate because ffmpeg no longer easily provides
the information.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 14 Jul 2005 15:48:31 +0200
opencv (0.9.6-1) unstable; urgency=low
* New upstream release (Closes: #267825).
* Major upstream changes:
+ This release merged most Debian-specific patches upstream.
+ This version now uses pkg-config instead of opencv-config.
+ This version uses GTK+ instead of Motif widgets.
+ Example programs were fixed (Closes: #254150).
* debian/control:
+ Build-depend on libdc1394 and libavcodec. As a result, build no longer
fails if libavcodec-dev is installed (Closes: #270345).
* debian/copyright:
+ Fixed upstream URL (Closes: #270344).
* cvaux/src/cvvideo.cpp: the code portion causing an FTBFS on amd64 is no
longer there (Closes: #297625).
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Fri, 1 Apr 2005 19:30:58 +0200
opencv (0.9.5-10) unstable; urgency=high
* debian/patches/30_delete.dpatch:
+ Fixed a crash at program exit (Closes: #269799).
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Fri, 3 Sep 2004 21:59:26 +0200
opencv (0.9.5-9) unstable; urgency=high
* debian/control:
+ Build-depend on lesstif2-dev to take advantage of new Motif 2 features.
+ libhighgui-dev depends on lesstif2-dev as well.
* debian/patches/20_old.dpatch:
+ No longer patch/unpatch the Makefiles to avoid clock skew issues
(Closes: #266622).
* debian/patches/30_delete.dpatch:
+ Fixed delete[] / delete mismatches.
* debian/patches/30_window_lnx.cpp.setTrackbarPos_crash.dpatch:
+ Fix a crash in cvSetTrackbarPos() for closed windows, courtesy of
micha137 at users.sourceforge.net.
* debian/patches/40_linux_trackbar.dpatch
debian/patches/30_linux_mouse.dpatch:
+ Add arrows to trackbars, courtesy of Filip Sadlo.
+ Fixed position of mouse button events, courtesy of Filip Sadlo.
* debian/patches/30_render.dpatch:
+ Fixed pointer casts, courtesy of buddha_pht at users.sourceforge.net.
* debian/patches/30_xshm.dpatch:
+ Don't use XShm over network connections.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Tue, 17 Aug 2004 18:01:23 +0200
opencv (0.9.5-8) unstable; urgency=low
* debian/control:
+ Added missing build dependency on dpatch (Closes: #262209).
* debian/rules:
+ Call unpatch before make clean.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Fri, 30 Jul 2004 08:34:59 +0200
opencv (0.9.5-7) unstable; urgency=low
* Rebuilt against libtiff4 due to an ABI change.
* Fixed numerous compilation warning due to pointer/int size assumptions and
char signedness assumption.
* debian/control:
+ Set policy to 3.6.1.1.
+ Switched packaging method to dpatch.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Sun, 25 Jul 2004 21:54:33 +0200
opencv (0.9.5-6) unstable; urgency=low
* cv/include/cvcompat.h cv/include/cvtypes.h:
+ Fixed more C preprocessor warnings.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Wed, 30 Jun 2004 14:04:12 +0200
opencv (0.9.5-5) unstable; urgency=low
* cv/include/cv.h:
+ Fixed C preprocessor warnings.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Wed, 30 Jun 2004 11:59:36 +0200
opencv (0.9.5-4) unstable; urgency=low
* debian/control:
+ Added missing lesstif-dev build dependency to the libhighgui-dev
package (Closes: #252304).
* debian/README.Debian:
+ Minor updates.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Wed, 2 Jun 2004 13:27:07 -0300
opencv (0.9.5-3) unstable; urgency=low
* debian/rules:
+ Enabled static libraries in the build (Closes: #249471).
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Wed, 19 May 2004 21:48:47 +0200
opencv (0.9.5-2) unstable; urgency=low
* debian/control:
+ Added libxaw7-dev to the build dependencies.
+ Added libxaw7-dev to the libcvcam-dev dependencies.
* debian/copyright:
+ Removed a duplicate copyright entry.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Wed, 28 Apr 2004 10:25:56 +0200
opencv (0.9.5-1) unstable; urgency=low
* Initial release.
-- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Thu, 22 Apr 2004 14:55:19 +0200
|