Your message dated Sat, 13 Jul 2013 23:33:51 +0000 with message-id <[email protected]> and subject line Bug#714923: fixed in opencv 2.3.1-12 has caused the Debian Bug report #714923, regarding opencv: FTBFS on sparc64 to be marked as done.
This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact [email protected] immediately.) -- 714923: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=714923 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Source: opencv Version: 2.3.1-11 Severity: important Tags: patch opencv uses functions from <ext/atomicity.h>, but it wrongly assumes this functions apply to an int type. While it is true for some architectures, some architectures are using a long type there. The correct type to use is _Atomic_word. This is what the patch below is doing. Would it be possible to upload it in the next upload? Thanks in advance. --- opencv-2.3.1.orig/modules/core/include/opencv2/core/core.hpp +++ opencv-2.3.1/modules/core/include/opencv2/core/core.hpp @@ -1252,7 +1252,7 @@ public: protected: _Tp* obj; //< the object pointer. - int* refcount; //< the associated reference counter + _Atomic_word* refcount; //< the associated reference counter }; @@ -1355,9 +1355,9 @@ class CV_EXPORTS MatAllocator public: MatAllocator() {} virtual ~MatAllocator() {} - virtual void allocate(int dims, const int* sizes, int type, int*& refcount, + virtual void allocate(int dims, const int* sizes, int type, _Atomic_word*& refcount, uchar*& datastart, uchar*& data, size_t* step) = 0; - virtual void deallocate(int* refcount, uchar* datastart, uchar* data) = 0; + virtual void deallocate(_Atomic_word* refcount, uchar* datastart, uchar* data) = 0; }; /*! @@ -1850,7 +1850,7 @@ public: //! pointer to the reference counter; // when matrix points to user-allocated data, the pointer is NULL - int* refcount; + _Atomic_word* refcount; //! helper fields used in locateROI and adjustROI uchar* datastart; @@ -3195,7 +3195,7 @@ public: { Hdr(int _dims, const int* _sizes, int _type); void clear(); - int refcount; + _Atomic_word refcount; int dims; int valueOffset; size_t nodeSize; --- opencv-2.3.1.orig/modules/core/include/opencv2/core/operations.hpp +++ opencv-2.3.1/modules/core/include/opencv2/core/operations.hpp @@ -2354,7 +2354,7 @@ template<typename _Tp> inline Ptr<_Tp>:: { if(obj) { - refcount = (int*)fastMalloc(sizeof(*refcount)); + refcount = (_Atomic_word*)fastMalloc(sizeof(*refcount)); *refcount = 1; } else @@ -2391,7 +2391,7 @@ template<typename _Tp> inline Ptr<_Tp>:: template<typename _Tp> inline Ptr<_Tp>& Ptr<_Tp>::operator = (const Ptr<_Tp>& ptr) { - int* _refcount = ptr.refcount; + _Atomic_word* _refcount = ptr.refcount; if( _refcount ) CV_XADD(_refcount, 1); release(); --- opencv-2.3.1.orig/modules/core/src/matrix.cpp +++ opencv-2.3.1/modules/core/src/matrix.cpp @@ -207,7 +207,7 @@ void Mat::create(int d, const int* _size { size_t total = alignSize(step.p[0]*size.p[0], (int)sizeof(*refcount)); data = datastart = (uchar*)fastMalloc(total + (int)sizeof(*refcount)); - refcount = (int*)(data + total); + refcount = (_Atomic_word*)(data + total); *refcount = 1; } else --- opencv-2.3.1.orig/modules/gpu/include/opencv2/gpu/gpumat.hpp +++ opencv-2.3.1/modules/gpu/include/opencv2/gpu/gpumat.hpp @@ -204,7 +204,7 @@ namespace cv { namespace gpu //! pointer to the reference counter; // when GpuMatrix points to user-allocated data, the pointer is NULL - int* refcount; + _Atomic_word* refcount; //! helper fields used in locateROI and adjustROI uchar* datastart; --- opencv-2.3.1.orig/modules/gpu/include/opencv2/gpu/gpu.hpp +++ opencv-2.3.1/modules/gpu/include/opencv2/gpu/gpu.hpp @@ -212,7 +212,7 @@ namespace cv size_t step; uchar* data; - int* refcount; + _Atomic_word* refcount; uchar* datastart; uchar* dataend; --- opencv-2.3.1.orig/modules/python/src2/cv2.cpp +++ opencv-2.3.1/modules/python/src2/cv2.cpp @@ -84,14 +84,14 @@ static PyObject* failmsgp(const char *fm static size_t REFCOUNT_OFFSET = (size_t)&(((PyObject*)0)->ob_refcnt) + (0x12345678 != *(const size_t*)"\x78\x56\x34\x12\0\0\0\0\0")*sizeof(int); -static inline PyObject* pyObjectFromRefcount(const int* refcount) +static inline PyObject* pyObjectFromRefcount(const _Atomic_word* refcount) { return (PyObject*)((size_t)refcount - REFCOUNT_OFFSET); } -static inline int* refcountFromPyObject(const PyObject* obj) +static inline _Atomic_word* refcountFromPyObject(const PyObject* obj) { - return (int*)((size_t)obj + REFCOUNT_OFFSET); + return (_Atomic_word*)((size_t)obj + REFCOUNT_OFFSET); } class NumpyAllocator : public MatAllocator @@ -100,7 +100,7 @@ public: NumpyAllocator() {} ~NumpyAllocator() {} - void allocate(int dims, const int* sizes, int type, int*& refcount, + void allocate(int dims, const int* sizes, int type, _Atomic_word*& refcount, uchar*& datastart, uchar*& data, size_t* step) { int depth = CV_MAT_DEPTH(type); @@ -131,7 +131,7 @@ public: datastart = data = (uchar*)PyArray_DATA(o); } - void deallocate(int* refcount, uchar* datastart, uchar* data) + void deallocate(_Atomic_word* refcount, uchar* datastart, uchar* data) { if( !refcount ) return; -- System Information: Debian Release: jessie/sid APT prefers unreleased APT policy: (500, 'unreleased'), (500, 'unstable') Architecture: sparc64 Kernel: Linux 3.2.0-4-sparc64 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
--- End Message ---
--- Begin Message ---Source: opencv Source-Version: 2.3.1-12 We believe that the bug you reported is fixed in the latest version of opencv, which is due to be installed in the Debian FTP archive. A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [email protected], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Nobuhiro Iwamatsu <[email protected]> (supplier of updated opencv package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [email protected]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.8 Date: Sun, 14 Jul 2013 07:35:54 +0900 Source: opencv Binary: opencv-doc libcv-dev libcv2.3 libhighgui-dev libhighgui2.3 libcvaux-dev libcvaux2.3 libopencv-dev libopencv-core-dev libopencv-core2.3 libopencv-ml-dev libopencv-ml2.3 libopencv-imgproc-dev libopencv-imgproc2.3 libopencv-video-dev libopencv-video2.3 libopencv-objdetect-dev libopencv-objdetect2.3 libopencv-gpu-dev libopencv-gpu2.3 libopencv-highgui-dev libopencv-highgui2.3 libopencv-calib3d-dev libopencv-calib3d2.3 libopencv-flann-dev libopencv-flann2.3 libopencv-features2d-dev libopencv-features2d2.3 libopencv-legacy-dev libopencv-legacy2.3 libopencv-contrib-dev libopencv-contrib2.3 python-opencv Architecture: source all amd64 Version: 2.3.1-12 Distribution: unstable Urgency: low Maintainer: Debian Science Team <[email protected]> Changed-By: Nobuhiro Iwamatsu <[email protected]> Description: libcv-dev - Translation package for libcv-dev libcv2.3 - computer vision library - libcv* translation package libcvaux-dev - Translation package for libcvaux-dev libcvaux2.3 - computer vision library - libcvaux translation package libhighgui-dev - Translation package for libhighgui-dev libhighgui2.3 - computer vision library - libhighgui translation package libopencv-calib3d-dev - development files for libopencv-calib3d libopencv-calib3d2.3 - computer vision Camera Calibration library libopencv-contrib-dev - development files for libopencv-contrib libopencv-contrib2.3 - computer vision contrib library libopencv-core-dev - development files for libopencv-core libopencv-core2.3 - computer vision core library libopencv-dev - development files for opencv libopencv-features2d-dev - development files for libopencv-features2d libopencv-features2d2.3 - computer vision Feature Detection and Descriptor Extraction libra libopencv-flann-dev - development files for libopencv-flann libopencv-flann2.3 - computer vision Clustering and Search in Multi-Dimensional spaces libopencv-gpu-dev - development files for libopencv-gpu libopencv-gpu2.3 - computer vision GPU Processing library libopencv-highgui-dev - development files for libopencv-highgui libopencv-highgui2.3 - computer vision High-level GUI and Media I/O library libopencv-imgproc-dev - development files for libopencv-imgproc libopencv-imgproc2.3 - computer vision Image Processing library libopencv-legacy-dev - development files for libopencv-legacy libopencv-legacy2.3 - computer vision legacy library libopencv-ml-dev - development files for libopencv-ml libopencv-ml2.3 - computer vision Machine Learning library libopencv-objdetect-dev - development files for libopencv-objdetect libopencv-objdetect2.3 - computer vision Object Detection library libopencv-video-dev - development files for libopencv-video libopencv-video2.3 - computer vision Video analysis library opencv-doc - OpenCV documentation and examples python-opencv - Python bindings for the computer vision library Closes: 714923 Changes: opencv (2.3.1-12) unstable; urgency=low . * Fix FTBFS on sparc64. (Closes: #714923) Add patches/change_type_from_int_to_Atomic_word Checksums-Sha1: 7f3b1a76e1b1a678f3e06c4871230325c4585701 4414 opencv_2.3.1-12.dsc e8440db9fe27745d7bc04bf60f6631586e503351 26060 opencv_2.3.1-12.debian.tar.gz 72c7d0fbcc8a6ff91c42197cd7bd992eaf2ecb69 13593298 opencv-doc_2.3.1-12_all.deb c8971f8c01b408d44228b8d983a325f5ea979169 13064 libcv-dev_2.3.1-12_amd64.deb c6db17b7fe167511293f80dae3d477a78e156af0 10650 libcv2.3_2.3.1-12_amd64.deb 028c66b5c03ff96bfc8bc192184875a6d13141b3 11648 libhighgui-dev_2.3.1-12_amd64.deb ac916441dbfd2c611f3d258efd1dd04fe3df42c0 10602 libhighgui2.3_2.3.1-12_amd64.deb f6957abf009877225f588f9a64cd574e13d43b68 11912 libcvaux-dev_2.3.1-12_amd64.deb 1c16cfbbedcf4a47058650db199f8df5089c80e7 10652 libcvaux2.3_2.3.1-12_amd64.deb eea1660772c223eac4bfc2240ae53d5f31116689 2517464 libopencv-dev_2.3.1-12_amd64.deb e3f8fc66be84cd4ee49fbb65650511f63ccab60b 979850 libopencv-core-dev_2.3.1-12_amd64.deb 2ccddb99883256bc3805a91589e0cafbbd86e6ad 740570 libopencv-core2.3_2.3.1-12_amd64.deb 4194ca95c3d62d2e1b13a87685ec316a6d3ecb39 304874 libopencv-ml-dev_2.3.1-12_amd64.deb b7d7979091907fb3c01ec17920ed490ba3e45d74 221408 libopencv-ml2.3_2.3.1-12_amd64.deb ef972c5ab9259d0365c5b60e39d4bb6bb341ed4f 881656 libopencv-imgproc-dev_2.3.1-12_amd64.deb c91f0c4c8a645d7e3cdb5f6613f547c3c2e36eac 712364 libopencv-imgproc2.3_2.3.1-12_amd64.deb 022fd469e194e5aef7447b0c7b780d5b17a07e72 145044 libopencv-video-dev_2.3.1-12_amd64.deb 8a7d66884ffea9d933e9fdf7c998f53de5b1f6b8 116070 libopencv-video2.3_2.3.1-12_amd64.deb 4ed0d188af7207f8c972ee0fd22d5a7a945f9a7e 228152 libopencv-objdetect-dev_2.3.1-12_amd64.deb 8b6da0ace61b5e1eb0d8863d1e334f8531b282f6 188218 libopencv-objdetect2.3_2.3.1-12_amd64.deb 7256b8151f2bbdaeb448e701e06636d4ced20137 95964 libopencv-gpu-dev_2.3.1-12_amd64.deb 721106e1e7621bf1184bf6ea87672bd373b74a7a 58796 libopencv-gpu2.3_2.3.1-12_amd64.deb 9ec5b522b54ec9d056af8fd7e3b9d927f4194168 171760 libopencv-highgui-dev_2.3.1-12_amd64.deb 226c8130a138316a1ada9567345abb5ad0b89c6e 121868 libopencv-highgui2.3_2.3.1-12_amd64.deb aa43021725b6960d3ac9375df7be0e2ec3fb98e8 319744 libopencv-calib3d-dev_2.3.1-12_amd64.deb 0d3f39a10d270f4a3f82d7b2fa9db97ef6b2f598 264946 libopencv-calib3d2.3_2.3.1-12_amd64.deb 762dd330adfee005882b76a509aea38f0686f5c7 220736 libopencv-flann-dev_2.3.1-12_amd64.deb 6f358bcc4041b75106fd6bb782c4ad0a7b29c14f 137446 libopencv-flann2.3_2.3.1-12_amd64.deb d55be9bb4aa1964be5ef8eaec0283ab18b76d9f2 516280 libopencv-features2d-dev_2.3.1-12_amd64.deb 7dede42141e53aa88fc8134789fb84db044ad04c 378914 libopencv-features2d2.3_2.3.1-12_amd64.deb 3743c48f80995cd24511d5df8a78eb8b0bb9cc62 457872 libopencv-legacy-dev_2.3.1-12_amd64.deb 60157e952ab3b57e55bf7ea2b4f064c86754d77d 319040 libopencv-legacy2.3_2.3.1-12_amd64.deb 3c9f017e5a374254298b10dc97cb223e497657dc 208022 libopencv-contrib-dev_2.3.1-12_amd64.deb b7ecaac7cddaca06a85089eb6439bf1ad056a678 158852 libopencv-contrib2.3_2.3.1-12_amd64.deb 98aeb3f336b9fe8e8efbaf40bb233a3d0977803f 370796 python-opencv_2.3.1-12_amd64.deb Checksums-Sha256: c54a16d70b8396342ab642bf6b7055ef88c8b63fa8d843fc605a384bd48e916e 4414 opencv_2.3.1-12.dsc 00401d47f8b92dc19e4d627a5c99a3b48a4c55f640a14f9943fd141e73a08576 26060 opencv_2.3.1-12.debian.tar.gz 22c5a894a52d604714e337bf7ecf173a07747249ae444b8b45f111bd2f8844c7 13593298 opencv-doc_2.3.1-12_all.deb 1d1ab98ce5593ae64a3f8af0fcd802772d3202d77021e79019a3a000c81bffeb 13064 libcv-dev_2.3.1-12_amd64.deb 09c30b94289427946181bc6fcca66b65e3a025348fe48067ea97031779e088d2 10650 libcv2.3_2.3.1-12_amd64.deb 1b1790bc7d647e34e80de6802adb04d7c834f9cb0f273f64002167c9c02e0f7c 11648 libhighgui-dev_2.3.1-12_amd64.deb 93e41aa1f11fdab57218769773b5104ce14552d520b5821aa5ab1e7a6226be6b 10602 libhighgui2.3_2.3.1-12_amd64.deb 9e8ecf25b226f29f2efad3058c63cba2e3619e5f8bbf8798b4a3a019de069f9f 11912 libcvaux-dev_2.3.1-12_amd64.deb 05866cf8738e14cc86bd642304048f65988df3f830c386b086424870338529ab 10652 libcvaux2.3_2.3.1-12_amd64.deb b27995067266f476026ff2a69181b374564638d1268a5c23f97ca1dded2f9a74 2517464 libopencv-dev_2.3.1-12_amd64.deb 78c34f5063cf1ee9c388ffb36003676268180510a37de1cd111d6f93e7e68110 979850 libopencv-core-dev_2.3.1-12_amd64.deb 9e2a87bb922f9fcb3a1e2020d260cfd5ce97f56f3b5c9713f24042df40dbeabd 740570 libopencv-core2.3_2.3.1-12_amd64.deb 4a22cada5e31c23618e5fe534b929f2a13537f69a6e3e389db8f029ff47b155f 304874 libopencv-ml-dev_2.3.1-12_amd64.deb 260a2a95c014ede1c0483628e860108833b2cf0de3697bc2d8135713221fd660 221408 libopencv-ml2.3_2.3.1-12_amd64.deb 161fed6cb6b06f1068b4e6634b8d839c344f572f2aac64f0b887e630029289f5 881656 libopencv-imgproc-dev_2.3.1-12_amd64.deb 54f9f24077129f8d0ce9d71c5d978614f42a3d87d57a9dd5e99873d406bdb7a6 712364 libopencv-imgproc2.3_2.3.1-12_amd64.deb ad964a43719463ed95a80afbcba1ee21a6538006898d638e4f5761558e69a0bd 145044 libopencv-video-dev_2.3.1-12_amd64.deb 2802d90040b535b4eda719a5a879d43d9feb6a4ca81fd30e32ea930800d9b109 116070 libopencv-video2.3_2.3.1-12_amd64.deb e7413635f4b6c362d047c4749581a69a35879fb72ba75e21c534c2f176276e35 228152 libopencv-objdetect-dev_2.3.1-12_amd64.deb 7136b962c8333a6ffdeed2890975fa4cdb056fdf2382cabdd4a0923f8d7d059b 188218 libopencv-objdetect2.3_2.3.1-12_amd64.deb 22e74fccdf138f0908d6c56c42cbee36c190ddf5d051e101a71a0b4acd0782ae 95964 libopencv-gpu-dev_2.3.1-12_amd64.deb dd218a8b9f5ce8906f90b74e4a0b6f6f94c3ba83c634ac4a3ce0dcefa7c9794d 58796 libopencv-gpu2.3_2.3.1-12_amd64.deb c3b1b9cd2f96ccd5957e504902e0dfe6b0437d8da56460673c39dfd6d4de3bff 171760 libopencv-highgui-dev_2.3.1-12_amd64.deb 21bb8864f74028a42eb584560aecfebd8c0ef5275331c13c030ce0364c6923ba 121868 libopencv-highgui2.3_2.3.1-12_amd64.deb c7f557cdaa5dce1d36f89b4e6a9aa267978b6c2118b92453f904539497e718d9 319744 libopencv-calib3d-dev_2.3.1-12_amd64.deb 5dedf7cb7da9350e6625366becc8c7ab832fe00ecd6e186fa235956ce8e11ab3 264946 libopencv-calib3d2.3_2.3.1-12_amd64.deb 5fc2df6a082645f008b4f0d2cf71121b33024e8e4b57aaaf8e72fba842e400b5 220736 libopencv-flann-dev_2.3.1-12_amd64.deb 7233880fe840ed236557dcdbf47771f558ed1b05ce04faa79021c3b4e965009e 137446 libopencv-flann2.3_2.3.1-12_amd64.deb a4ec535a5e7fa5fb2b5955290ca501968f9757a9a9b65a7c3c586e667da6c053 516280 libopencv-features2d-dev_2.3.1-12_amd64.deb 320f7d94251a8b3b41fc3335fbb6c601a6f0cb9672a8bcea9ff2ce29d258e1db 378914 libopencv-features2d2.3_2.3.1-12_amd64.deb e1bb8341e707d570b0e31ee2db80315ac898d036877dd26b2db81875e6f390da 457872 libopencv-legacy-dev_2.3.1-12_amd64.deb ec763418b6b0804dd4fa1747c9151078483ee1b0f9496651d3302a71e10926a0 319040 libopencv-legacy2.3_2.3.1-12_amd64.deb 267e60ca395b39d7c7ef1ccec49d1bd6726de3502e530eb68c6afa94f48b80b4 208022 libopencv-contrib-dev_2.3.1-12_amd64.deb 563e2b6c383ca57de425f6dd65cc60cc1089cac25f34e960f6dd8b6c41388513 158852 libopencv-contrib2.3_2.3.1-12_amd64.deb b0dcf5d4bf268eb2d472adce7c173581ae033b004b01ee078298a9a6aedb0e69 370796 python-opencv_2.3.1-12_amd64.deb Files: cfb34b6be175625a86ca64e633ea4675 4414 devel optional opencv_2.3.1-12.dsc c1a410bc344e206126278e187d131e3a 26060 devel optional opencv_2.3.1-12.debian.tar.gz e5dc113dc12260fbcef0629164ac0b6a 13593298 doc optional opencv-doc_2.3.1-12_all.deb 04557678ab0e60a416f108c40c2e189a 13064 libdevel optional libcv-dev_2.3.1-12_amd64.deb e6ed1d6ecc131fda49181e8907d5bda7 10650 devel optional libcv2.3_2.3.1-12_amd64.deb 69942d48bd1d09d4d1c5d35252f594cf 11648 libdevel optional libhighgui-dev_2.3.1-12_amd64.deb 97a349ff7fb8a4aa485d5f09d097664c 10602 devel optional libhighgui2.3_2.3.1-12_amd64.deb aaba5a5a66023cb47492dab2e5b3fea2 11912 libdevel optional libcvaux-dev_2.3.1-12_amd64.deb a18ab1be31d29a3dc95d4f48621d64fa 10652 devel optional libcvaux2.3_2.3.1-12_amd64.deb a99fdf84fa0d3da3a0588dae035e5bbd 2517464 libdevel optional libopencv-dev_2.3.1-12_amd64.deb 1afddf501b7d6e7aa7d41111ffe6b76e 979850 libdevel optional libopencv-core-dev_2.3.1-12_amd64.deb a698f99ea1274b1fa7f471cee4130a99 740570 libs optional libopencv-core2.3_2.3.1-12_amd64.deb d5e6817915a51533c9fdd7a7e2148537 304874 libdevel optional libopencv-ml-dev_2.3.1-12_amd64.deb 5e33acfafdafd896c16b3869d022bcfa 221408 libs optional libopencv-ml2.3_2.3.1-12_amd64.deb cab52f66785ee900dfa6b8d551a6450d 881656 libdevel optional libopencv-imgproc-dev_2.3.1-12_amd64.deb 5fe9a906f4c4281c5e19feef50f1eb67 712364 libs optional libopencv-imgproc2.3_2.3.1-12_amd64.deb c752c4bfd0922917c10e37c8821c24c5 145044 libdevel optional libopencv-video-dev_2.3.1-12_amd64.deb 8b7c3ca3cf70eeb44f478b154052f107 116070 libs optional libopencv-video2.3_2.3.1-12_amd64.deb f97ab3464906d99559f3401b45c36b43 228152 libdevel optional libopencv-objdetect-dev_2.3.1-12_amd64.deb 8b7554d29331b61c42b53c393968f829 188218 libs optional libopencv-objdetect2.3_2.3.1-12_amd64.deb a236f1f42d7b7f0d7874543f45c9475a 95964 libdevel optional libopencv-gpu-dev_2.3.1-12_amd64.deb 019bff3105fd6d3dffaa67b2e5996892 58796 libs optional libopencv-gpu2.3_2.3.1-12_amd64.deb c406732de4fb71e37b6af2ab3fd5727d 171760 libdevel optional libopencv-highgui-dev_2.3.1-12_amd64.deb fcd24838108ecc121a5f88fc1628244b 121868 libs optional libopencv-highgui2.3_2.3.1-12_amd64.deb c082957a811662efd2a97016255d53e2 319744 libdevel optional libopencv-calib3d-dev_2.3.1-12_amd64.deb ee72c1c42f6a95ff651a4abaef298b84 264946 libs optional libopencv-calib3d2.3_2.3.1-12_amd64.deb 53cd24f5f114bbbad9f6c071a708ff23 220736 libdevel optional libopencv-flann-dev_2.3.1-12_amd64.deb 4b0b3bf37952a58972d868d761f6accc 137446 libs optional libopencv-flann2.3_2.3.1-12_amd64.deb f6bdf279a4c66a48cdb6bcc837a8ce7d 516280 libdevel optional libopencv-features2d-dev_2.3.1-12_amd64.deb 8e19db02579f1a3dd5f3a905b0033ebf 378914 libs optional libopencv-features2d2.3_2.3.1-12_amd64.deb ecbb4c55aa5806da0f94ce7e7da797de 457872 libdevel optional libopencv-legacy-dev_2.3.1-12_amd64.deb f88fe9a980d06c0c923b30296d00e556 319040 libs optional libopencv-legacy2.3_2.3.1-12_amd64.deb 9fc3719ecd8b1b19e56846862cd1f954 208022 libdevel optional libopencv-contrib-dev_2.3.1-12_amd64.deb 038a05403149298cf30af363767ad57a 158852 libs optional libopencv-contrib2.3_2.3.1-12_amd64.deb 910e6fb18fd1d6074fa62a5d79f9f120 370796 python optional python-opencv_2.3.1-12_amd64.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.12 (GNU/Linux) iQIcBAEBCAAGBQJR4eDtAAoJEDIkf7tArR+m3H4P/RlYTZeUUwR03HJ9Ab0z1nrt BT3V66dCSyuZJErxm21a6Jl1pbYRqI96BY3AZuFTQw4XyBJwJ5bbOyS3RydMvy6W WZ6vlNIbNBjUIBG3d/Niei0JEX67r3c1MsH8uWNqN6C7X9ofVtLZ2dvDyoyG/xrH GJjUqFXMlYeTOmGSeDUZpn9CtOrJxC2vsZtS7EAQlQiNNnyvfPpB970sf0UV2CN3 r9L78Bn9dq1od9ABK7qE5bxyEDGDYBSN/Ms0voHnQB7AIgv3wIj+c1f+c4rZow/+ cWzh817saB6sL4fXarPqDCWj/5ADGY+iHwdsdc2qRTT5STt7uKOXkml0UWbOmxkM AZSjgsg9x/x3Sz1NlG0KWclptQljgzqDS1lX5ka2re9S9V/xxG+J0puVjFSTo/qF T+2y7fl1GoQYkkNDM0MWZPyr0F+4CsS29jeP6GSuvizctQI9PFUbtwYxXlmFagIO mHJg5KiHrkfywNZimnBFu/ZjNemJmlkuubAadKHUCPdAKgLu0Bhq9fOpWVN9FvZK aaVIxbjx2CQwqh4EJ2X9T9951t3LohDdLXA/oPoeGuUAtUBL5fECajQdTzcnNx4E 2xxFtpYGs6MwqpeAWU3L0/+ySbkXsWJBhiJeneYnmsqLaT1Oie5/nFn1KG7AZNYg 5nqKs9Y8NKu6pTJwsQ9/ =QaYv -----END PGP SIGNATURE-----
--- End Message ---

