Your message dated Tue, 06 Aug 2013 23:00:47 +0000
with message-id <[email protected]>
and subject line Bug#714923: fixed in opencv 2.4.5+dfsg-0exp1
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.4.5+dfsg-0exp1

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: Fri, 12 Jul 2013 13:00:43 +0900
Source: opencv
Binary: opencv-doc libcv-dev libcv2.4 libhighgui-dev libhighgui2.4 libcvaux-dev 
libcvaux2.4 libopencv-dev opencv-data libopencv-core-dev libopencv-core2.4 
libopencv-ml-dev libopencv-ml2.4 libopencv-imgproc-dev libopencv-imgproc2.4 
libopencv-video-dev libopencv-video2.4 libopencv-objdetect-dev 
libopencv-objdetect2.4 libopencv-highgui-dev libopencv-highgui2.4 
libopencv-calib3d-dev libopencv-calib3d2.4 libopencv-flann-dev 
libopencv-flann2.4 libopencv-features2d-dev libopencv-features2d2.4 
libopencv-legacy-dev libopencv-legacy2.4 libopencv-contrib-dev 
libopencv-contrib2.4 libopencv-ts-dev libopencv-ts2.4 libopencv-photo-dev 
libopencv-photo2.4 libopencv-videostab-dev libopencv-videostab2.4 
libopencv-stitching-dev libopencv-stitching2.4 libopencv-gpu-dev 
libopencv-gpu2.4 libopencv-superres-dev libopencv-superres2.4 python-opencv
Architecture: source all amd64
Version: 2.4.5+dfsg-0exp1
Distribution: experimental
Urgency: low
Maintainer: Debian Science Team 
<[email protected]>
Changed-By: Nobuhiro Iwamatsu <[email protected]>
Description: 
 libcv-dev  - Translation package for libcv-dev
 libcv2.4   - computer vision library - libcv* translation package
 libcvaux-dev - Translation package for libcvaux-dev
 libcvaux2.4 - computer vision library - libcvaux translation package
 libhighgui-dev - Translation package for libhighgui-dev
 libhighgui2.4 - computer vision library - libhighgui translation package
 libopencv-calib3d-dev - development files for libopencv-calib3d
 libopencv-calib3d2.4 - computer vision Camera Calibration library
 libopencv-contrib-dev - development files for libopencv-contrib
 libopencv-contrib2.4 - computer vision contrib library
 libopencv-core-dev - development files for libopencv-core
 libopencv-core2.4 - computer vision core library
 libopencv-dev - development files for opencv
 libopencv-features2d-dev - development files for libopencv-features2d
 libopencv-features2d2.4 - computer vision Feature Detection and Descriptor 
Extraction libra
 libopencv-flann-dev - development files for libopencv-flann
 libopencv-flann2.4 - computer vision Clustering and Search in 
Multi-Dimensional spaces
 libopencv-gpu-dev - development files for libopencv-gpu2.4
 libopencv-gpu2.4 - computer vision GPU library
 libopencv-highgui-dev - development files for libopencv-highgui
 libopencv-highgui2.4 - computer vision High-level GUI and Media I/O library
 libopencv-imgproc-dev - development files for libopencv-imgproc
 libopencv-imgproc2.4 - computer vision Image Processing library
 libopencv-legacy-dev - development files for libopencv-legacy
 libopencv-legacy2.4 - computer vision legacy library
 libopencv-ml-dev - development files for libopencv-ml
 libopencv-ml2.4 - computer vision Machine Learning library
 libopencv-objdetect-dev - development files for libopencv-objdetect
 libopencv-objdetect2.4 - computer vision Object Detection library
 libopencv-photo-dev - development files for libopencv-photo2.4
 libopencv-photo2.4 - computer vision computational photography library
 libopencv-stitching-dev - development files for libopencv-stitching2.4
 libopencv-stitching2.4 - computer vision image stitching library
 libopencv-superres-dev - development files for libopencv-superres2.4
 libopencv-superres2.4 - computer vision Super Resolution library
 libopencv-ts-dev - development files for libopencv-ts2.4
 libopencv-ts2.4 - computer vision ts library
 libopencv-video-dev - development files for libopencv-video
 libopencv-video2.4 - computer vision Video analysis library
 libopencv-videostab-dev - development files for libopencv-videostab2.4
 libopencv-videostab2.4 - computer vision video stabilization library
 opencv-data - development data for opencv
 opencv-doc - OpenCV documentation and examples
 python-opencv - Python bindings for the computer vision library
Closes: 701195 714923
Changes: 
 opencv (2.4.5+dfsg-0exp1) experimental; urgency=low
 .
   * New upstream release.
   * Update debian/control.
     - Add support all arch with TBB support. (Closes: 701195)
     - Add opencv-data. Move haarcascades and lbpcascades's data to this.
   * Fix FTBFS on sparc64. (Closes: #714923)
     Add patches/change_type_from_int_to_Atomic_word
   * Update debian/rules.
     - Add python2 to dh of sequence.
Checksums-Sha1: 
 b7af73bd6e4cdec15cccee8e684b797295654e28 5179 opencv_2.4.5+dfsg-0exp1.dsc
 45ef1a9e403cd4dea5697a0aeb2b6869ca7f9b79 81927294 opencv_2.4.5+dfsg.orig.tar.gz
 db71d57e6241d04626a9dd2088256f57b53475a2 24741 
opencv_2.4.5+dfsg-0exp1.debian.tar.gz
 ff4ed87137bab739162f9f1acf5383e5a72a891e 1428938 
opencv-doc_2.4.5+dfsg-0exp1_all.deb
 ed6bb303c2d6ff04463b38e531973f86bc752196 13368 
libcv-dev_2.4.5+dfsg-0exp1_amd64.deb
 b96d46144ea707756b529b9aaa206cad6d3c0495 11070 
libcv2.4_2.4.5+dfsg-0exp1_all.deb
 4865353eb58cb8efbf6e76c998a26d82be440741 12098 
libhighgui-dev_2.4.5+dfsg-0exp1_amd64.deb
 73522c417967ea3e6a1acbbe8e56e583bcd86982 11018 
libhighgui2.4_2.4.5+dfsg-0exp1_all.deb
 ba8622d12712dc53831a9c1f79384539d738de1a 12362 
libcvaux-dev_2.4.5+dfsg-0exp1_amd64.deb
 daeef884797ee364ebcd819531500649314b218e 11072 
libcvaux2.4_2.4.5+dfsg-0exp1_all.deb
 4798fef52244106881ebb049cfd2cb6d90d78b6d 281236 
libopencv-dev_2.4.5+dfsg-0exp1_amd64.deb
 4d272f0dc17522e32ce7d60bf6f7290da8329cf5 2182216 
opencv-data_2.4.5+dfsg-0exp1_all.deb
 4a78fb2b47b749ca203547f7bf33dc23fe434152 1148550 
libopencv-core-dev_2.4.5+dfsg-0exp1_amd64.deb
 2793ef2f5f566ea5ca2bf923c4790435afe874fa 862114 
libopencv-core2.4_2.4.5+dfsg-0exp1_amd64.deb
 c5e85b0daa0b7d9921136e933b9c00b7dbfb54cb 325402 
libopencv-ml-dev_2.4.5+dfsg-0exp1_amd64.deb
 e59a3f77f9fa393f044681f9cba9fc9203b12627 241544 
libopencv-ml2.4_2.4.5+dfsg-0exp1_amd64.deb
 b3c1dc1a40599893d592faba641a303469dd5df4 1006284 
libopencv-imgproc-dev_2.4.5+dfsg-0exp1_amd64.deb
 b9e63ab16ed76d18533956d9c8082879956edc50 809756 
libopencv-imgproc2.4_2.4.5+dfsg-0exp1_amd64.deb
 ab7bff9eb74e9ae501e6e3a13dec7265af0eccb1 190610 
libopencv-video-dev_2.4.5+dfsg-0exp1_amd64.deb
 f261b173f23db1c1bcde76b62c5558b05cf342fc 153578 
libopencv-video2.4_2.4.5+dfsg-0exp1_amd64.deb
 e21864a1aa6c21826247613c3e4b7da0dd08eff8 299384 
libopencv-objdetect-dev_2.4.5+dfsg-0exp1_amd64.deb
 3d28278cb98e05a3a7830306eedf9fff103d699b 243238 
libopencv-objdetect2.4_2.4.5+dfsg-0exp1_amd64.deb
 ac2ec35157446d1d0377e26fce97be69f9d7a2de 188092 
libopencv-highgui-dev_2.4.5+dfsg-0exp1_amd64.deb
 70b2e0737ceecad0839144eec7bb877766248ed9 131838 
libopencv-highgui2.4_2.4.5+dfsg-0exp1_amd64.deb
 8114c9d6353ac7da143667156c38db3e40807098 338438 
libopencv-calib3d-dev_2.4.5+dfsg-0exp1_amd64.deb
 fbe36ad7e2e1d5b5b317a2c04b725768cb418807 278466 
libopencv-calib3d2.4_2.4.5+dfsg-0exp1_amd64.deb
 72c59822a4b9f466bc421d09f3b8993e7cfe1d88 228130 
libopencv-flann-dev_2.4.5+dfsg-0exp1_amd64.deb
 a91a1e279353f733b99e6c925fc4ae1f755ab84a 145070 
libopencv-flann2.4_2.4.5+dfsg-0exp1_amd64.deb
 aadc6c86b092dc2bb6b98df3c2e9a4867db56525 399748 
libopencv-features2d-dev_2.4.5+dfsg-0exp1_amd64.deb
 41d5b4a8ae4744132af1d303d4d9621cb964e351 288632 
libopencv-features2d2.4_2.4.5+dfsg-0exp1_amd64.deb
 99b9bab1860579bb9e757a00e95cd1f37107934d 705652 
libopencv-legacy-dev_2.4.5+dfsg-0exp1_amd64.deb
 9855000a97eb3c772ecc3b0a8dff04316dc36a81 498254 
libopencv-legacy2.4_2.4.5+dfsg-0exp1_amd64.deb
 6c40f844321fe46c629a61153a66bed2be1848ec 496646 
libopencv-contrib-dev_2.4.5+dfsg-0exp1_amd64.deb
 10ddd403075eb3b03d71a1b7782ea7df2756b584 365096 
libopencv-contrib2.4_2.4.5+dfsg-0exp1_amd64.deb
 3f5b22529c3b1294ba2c9bdc4d5d6041d03c0fe4 493636 
libopencv-ts-dev_2.4.5+dfsg-0exp1_amd64.deb
 a0a14ca87d52d5ebb392e837efc3844aa9b06112 291646 
libopencv-ts2.4_2.4.5+dfsg-0exp1_amd64.deb
 d4c7ae084560ec6b5ed579328e0ddaa9691cf1ed 68306 
libopencv-photo-dev_2.4.5+dfsg-0exp1_amd64.deb
 bc8010940a3507bd8d06c3b366a14da4cb69d503 62192 
libopencv-photo2.4_2.4.5+dfsg-0exp1_amd64.deb
 589ebd4f0f5ae8044865f628cbb1be648f83c087 141564 
libopencv-videostab-dev_2.4.5+dfsg-0exp1_amd64.deb
 a0e04b48ac5c3d7ec09aa27b0f06a4be46c79054 105714 
libopencv-videostab2.4_2.4.5+dfsg-0exp1_amd64.deb
 5f152b662221f3900cf3b9c09a724ec85bdf9a57 285340 
libopencv-stitching-dev_2.4.5+dfsg-0exp1_amd64.deb
 ccae794c30d0b285bf4e38a6b9e5a9dfb8fc80f8 201068 
libopencv-stitching2.4_2.4.5+dfsg-0exp1_amd64.deb
 1273970aeeab174734ec4b66f3a0a20dd82a71b5 217994 
libopencv-gpu-dev_2.4.5+dfsg-0exp1_amd64.deb
 5713d60093f558885ae050e3170951d74d4e1b33 74048 
libopencv-gpu2.4_2.4.5+dfsg-0exp1_amd64.deb
 7146c30b2cafc4ba56cc1c49baf716b33543949b 81598 
libopencv-superres-dev_2.4.5+dfsg-0exp1_amd64.deb
 461483c2f96eaf6a0eddc1abc044336396e06ada 65980 
libopencv-superres2.4_2.4.5+dfsg-0exp1_amd64.deb
 d5c08edc280e2157fafb2b2119e7c4caf740e919 457486 
python-opencv_2.4.5+dfsg-0exp1_amd64.deb
Checksums-Sha256: 
 a0a1d09946ef4082b584d1aff7eb0d05faf1369eac7269ffcf0d2bd1c7969186 5179 
opencv_2.4.5+dfsg-0exp1.dsc
 10597fa37db1413b09816332b886a21961b8db5428d8f4349d23871e11680525 81927294 
opencv_2.4.5+dfsg.orig.tar.gz
 6c289e207d0eed53df7d00e8d63afbce2cf979b58a2e01c14ea46c988451828e 24741 
opencv_2.4.5+dfsg-0exp1.debian.tar.gz
 ba8656f8f845c5d36bc503338d80f1a3fbd9393c21779d61458f084bde4d7559 1428938 
opencv-doc_2.4.5+dfsg-0exp1_all.deb
 642122a9a8f4a4d0a2358950ab7c169af250e3b37c71db3f7b7077097231816e 13368 
libcv-dev_2.4.5+dfsg-0exp1_amd64.deb
 d5afde27c46a94ce98b044ac752f2cd36899c249bc6dc22950d06b1efd13a6ce 11070 
libcv2.4_2.4.5+dfsg-0exp1_all.deb
 35b8a6c2163e63e35bd837751598f5ccc87a7488391cbd733fc1d9fd9e99173e 12098 
libhighgui-dev_2.4.5+dfsg-0exp1_amd64.deb
 b42b1fa932bb473f6c5e664cb714dcaef75dbc866dc6fb34399b29c0b349fffb 11018 
libhighgui2.4_2.4.5+dfsg-0exp1_all.deb
 cbcba2431cb54a0c55b373df4fb7464e832a3a17f3921410ade4e1430f592d4c 12362 
libcvaux-dev_2.4.5+dfsg-0exp1_amd64.deb
 9df097ebf6727198dbd767473605ca2c16a0b1e88a947bbfc1911984f22e09ac 11072 
libcvaux2.4_2.4.5+dfsg-0exp1_all.deb
 922afc759bcb5e195f0e916d1ea2549c06bee6395bd8792e07ff3a76c8cd3e5c 281236 
libopencv-dev_2.4.5+dfsg-0exp1_amd64.deb
 629ecfeffb4645c034b9641d0f961b915c50020f94b0c90c583f9829f27f2d67 2182216 
opencv-data_2.4.5+dfsg-0exp1_all.deb
 3b90d4bae73d2de8820b12fb02340f5e676583ee3f89b93434f0dab68bf8e7a3 1148550 
libopencv-core-dev_2.4.5+dfsg-0exp1_amd64.deb
 bf16140e2298f5edfee2e1904ee6398b53d32e6334aefd12b155299b27051711 862114 
libopencv-core2.4_2.4.5+dfsg-0exp1_amd64.deb
 894385981c2b3e1f8d5872100c7b58482bdc3463d59a932a9b11b494614f9088 325402 
libopencv-ml-dev_2.4.5+dfsg-0exp1_amd64.deb
 09692a94e5cd7c14cec985a043b0fa10a1e1aaad5e2de7cd77cd9f248cdacc24 241544 
libopencv-ml2.4_2.4.5+dfsg-0exp1_amd64.deb
 2ced5071c845cb9265315f76e64a2c686b67fb4318689011576d58e683d360b2 1006284 
libopencv-imgproc-dev_2.4.5+dfsg-0exp1_amd64.deb
 0c8937d23b8a316ca97d0b15411872b9c6eadb18c86869264d36887290b930f5 809756 
libopencv-imgproc2.4_2.4.5+dfsg-0exp1_amd64.deb
 d9407b8e2ea28823ec01485878a64546432123a2098aed7a7c77d4ba937535d0 190610 
libopencv-video-dev_2.4.5+dfsg-0exp1_amd64.deb
 af61e737ced2bba1322aaa977bdb6f89d741026f80470b357f54cb35ca3d25a6 153578 
libopencv-video2.4_2.4.5+dfsg-0exp1_amd64.deb
 1869c224230ca5c1e0b516ed2369abe302ab186770950ddf1f8e17ac265da41d 299384 
libopencv-objdetect-dev_2.4.5+dfsg-0exp1_amd64.deb
 4a76ece6eef84dd44b5dc9d91168b7a45921ba43b9e561f506b3d81be5264b52 243238 
libopencv-objdetect2.4_2.4.5+dfsg-0exp1_amd64.deb
 8dbf3d19342f8e2fc8cfb6118286db7c93e4c5e6f36f88ca4b7fa5cc4281117c 188092 
libopencv-highgui-dev_2.4.5+dfsg-0exp1_amd64.deb
 20d39def47427e93d93a31ce098cb25030698e16849f4561dddecdd50c9eca0a 131838 
libopencv-highgui2.4_2.4.5+dfsg-0exp1_amd64.deb
 2551ae55b0d204267b56c243a05b1de481ad573d17b0a475fe80483a975381e9 338438 
libopencv-calib3d-dev_2.4.5+dfsg-0exp1_amd64.deb
 6c300b7668d9f240bec455c87caa6f816e5580457f2ee06add2e6575b03d57f3 278466 
libopencv-calib3d2.4_2.4.5+dfsg-0exp1_amd64.deb
 590faf7fcc039e54c9b4e645056ee2a4fbcdff4820e5127892b6bee3686456ac 228130 
libopencv-flann-dev_2.4.5+dfsg-0exp1_amd64.deb
 03f852ae8ad82aff4e1eb7149b149dc6aafb1d35f3c3db3f350c86f1bd042062 145070 
libopencv-flann2.4_2.4.5+dfsg-0exp1_amd64.deb
 f844e9d576db4d9938783d33b2bca1eb67767ca572d25d662ad2275858f9baec 399748 
libopencv-features2d-dev_2.4.5+dfsg-0exp1_amd64.deb
 2ca4feeaa9b83de0c2d611bf8dcca80d1410cd60ad1ec68ac3d5554b09be5b9b 288632 
libopencv-features2d2.4_2.4.5+dfsg-0exp1_amd64.deb
 b863f5e3e966a959cac7ba88bc58bdf437a57496559b2d75abf03f2fedbafc0d 705652 
libopencv-legacy-dev_2.4.5+dfsg-0exp1_amd64.deb
 7fde7aaf958bfa2e38d5192eda6f337ddb7be5b27a94d07fa38487716d5b19b4 498254 
libopencv-legacy2.4_2.4.5+dfsg-0exp1_amd64.deb
 db695cd9d59a1fdabe2996d00a5fd640584c54334cb7794c89ab08cf29f84b79 496646 
libopencv-contrib-dev_2.4.5+dfsg-0exp1_amd64.deb
 ed42fe8f8281e59778057feb9be7c9a4880bed1350a4dc3712ccd96002143a2a 365096 
libopencv-contrib2.4_2.4.5+dfsg-0exp1_amd64.deb
 9f913533ccdcd477e741d789f5741e2531a8d929d3064e368632566bc255e3d6 493636 
libopencv-ts-dev_2.4.5+dfsg-0exp1_amd64.deb
 be2bd9b465e7e88734d43f180d80ead07bc1e5fd3321bced3a336c5adfac09c8 291646 
libopencv-ts2.4_2.4.5+dfsg-0exp1_amd64.deb
 306be919808aae6e0b1686f0d2254e402057c65bfaee32debfbd22f2029e7f9e 68306 
libopencv-photo-dev_2.4.5+dfsg-0exp1_amd64.deb
 edd6f13b6d310ddc54db22e0cb2638976fa0a059dd2a75ccbd5e36b1c88e8e70 62192 
libopencv-photo2.4_2.4.5+dfsg-0exp1_amd64.deb
 02796dab9b37a13e4237b18c89aa9421a7ba90196c8d1b2594a3c6e5621c99d4 141564 
libopencv-videostab-dev_2.4.5+dfsg-0exp1_amd64.deb
 09c80678966cef9cbf4fc6cf89337f13a7b0134b84dc29da73fa8d71fa7addd3 105714 
libopencv-videostab2.4_2.4.5+dfsg-0exp1_amd64.deb
 e2942761a0404db9ad151dd9d4ef9036ba307872a34f370f634548c48f424757 285340 
libopencv-stitching-dev_2.4.5+dfsg-0exp1_amd64.deb
 cf6e45e6da1bc08c8fc005023d546d4fe52dda66dff0ebb4956cabeec8ea0608 201068 
libopencv-stitching2.4_2.4.5+dfsg-0exp1_amd64.deb
 b4647ce4619b15765343eaaf8dfd631de1bd790c781f95981b80d08b21ed116e 217994 
libopencv-gpu-dev_2.4.5+dfsg-0exp1_amd64.deb
 9e3afcadf0eecfec5bc0bc38211fcaba83c753a46f93664156b8027c9dfbc33a 74048 
libopencv-gpu2.4_2.4.5+dfsg-0exp1_amd64.deb
 a335d414d6032cd9c777e002ef05c706550bce9f46a2e197a576fdaab8790810 81598 
libopencv-superres-dev_2.4.5+dfsg-0exp1_amd64.deb
 8cd5f192234a28abff0d666cfb73809918d0a3da97494b301eea9dba615f3fcc 65980 
libopencv-superres2.4_2.4.5+dfsg-0exp1_amd64.deb
 5916e95b10067fa85fe8a85f445060004af675748179051b722a71a8be0a78f4 457486 
python-opencv_2.4.5+dfsg-0exp1_amd64.deb
Files: 
 d17c086f42722fd2e313abef1aeeed2d 5179 devel optional 
opencv_2.4.5+dfsg-0exp1.dsc
 c1d25b740d0be5cd99dc59b9edd693e2 81927294 devel optional 
opencv_2.4.5+dfsg.orig.tar.gz
 f8820898be8d6e15019ab70d5662b810 24741 devel optional 
opencv_2.4.5+dfsg-0exp1.debian.tar.gz
 ae1c8966e321c6275b14f03ab7e21a5d 1428938 doc optional 
opencv-doc_2.4.5+dfsg-0exp1_all.deb
 2f0b2130dc3f750b17b987556c21cc02 13368 libdevel optional 
libcv-dev_2.4.5+dfsg-0exp1_amd64.deb
 62a64d5e5d089b3afbcd800266bd3a4f 11070 devel optional 
libcv2.4_2.4.5+dfsg-0exp1_all.deb
 0781dfe5e1523558f35167052c1497ff 12098 libdevel optional 
libhighgui-dev_2.4.5+dfsg-0exp1_amd64.deb
 cad25aedfd882465a52e215d07d08333 11018 devel optional 
libhighgui2.4_2.4.5+dfsg-0exp1_all.deb
 126166cea44a0e226b8484f8b69dd6d1 12362 libdevel optional 
libcvaux-dev_2.4.5+dfsg-0exp1_amd64.deb
 0a8be0e3befb3f45b07d00ab9ec2fe14 11072 devel optional 
libcvaux2.4_2.4.5+dfsg-0exp1_all.deb
 977c81247d031766a3978158717b8799 281236 libdevel optional 
libopencv-dev_2.4.5+dfsg-0exp1_amd64.deb
 8b6d105ddd3f18853af654dd50e73ad8 2182216 libdevel optional 
opencv-data_2.4.5+dfsg-0exp1_all.deb
 f15a39af1def134c143754f0642fe6ab 1148550 libdevel optional 
libopencv-core-dev_2.4.5+dfsg-0exp1_amd64.deb
 cdc01ee79627dd5d922b9381aa3d4596 862114 libs optional 
libopencv-core2.4_2.4.5+dfsg-0exp1_amd64.deb
 d91c4f0fbf074b74c46cc2b82d94cc80 325402 libdevel optional 
libopencv-ml-dev_2.4.5+dfsg-0exp1_amd64.deb
 6603313cb3658147dbc0b9845065f376 241544 libs optional 
libopencv-ml2.4_2.4.5+dfsg-0exp1_amd64.deb
 4fc81cdf324337d945d9aee1d2d7ddd6 1006284 libdevel optional 
libopencv-imgproc-dev_2.4.5+dfsg-0exp1_amd64.deb
 c0df62e8e91386230519731ba41be6e3 809756 libs optional 
libopencv-imgproc2.4_2.4.5+dfsg-0exp1_amd64.deb
 ee0ac1e3d0a69c0c2794c3fa7cc19daa 190610 libdevel optional 
libopencv-video-dev_2.4.5+dfsg-0exp1_amd64.deb
 2cea873dd26f0bf0f470ce543f9ea688 153578 libs optional 
libopencv-video2.4_2.4.5+dfsg-0exp1_amd64.deb
 f8ce6957624806fa3398f24ab3c86fc8 299384 libdevel optional 
libopencv-objdetect-dev_2.4.5+dfsg-0exp1_amd64.deb
 1fb7a88a35e476d75149e2560929d5b1 243238 libs optional 
libopencv-objdetect2.4_2.4.5+dfsg-0exp1_amd64.deb
 828060dce256c796f82e2534e5ba59cd 188092 libdevel optional 
libopencv-highgui-dev_2.4.5+dfsg-0exp1_amd64.deb
 42799d41f46ac5fa565061e20478db9a 131838 libs optional 
libopencv-highgui2.4_2.4.5+dfsg-0exp1_amd64.deb
 163e91ab38346adf430f3f8d7f13a9bf 338438 libdevel optional 
libopencv-calib3d-dev_2.4.5+dfsg-0exp1_amd64.deb
 f5596018dca849f4e453e7e93632fab2 278466 libs optional 
libopencv-calib3d2.4_2.4.5+dfsg-0exp1_amd64.deb
 6406413ee9978ce6d487018bed642eb7 228130 libdevel optional 
libopencv-flann-dev_2.4.5+dfsg-0exp1_amd64.deb
 f2609836a33ba480dc8fbb59625d7c44 145070 libs optional 
libopencv-flann2.4_2.4.5+dfsg-0exp1_amd64.deb
 27b0cfba8fb2875c5de5d1382c10d1dc 399748 libdevel optional 
libopencv-features2d-dev_2.4.5+dfsg-0exp1_amd64.deb
 f1aeced6b14de0255eb39d2d128c80c7 288632 libs optional 
libopencv-features2d2.4_2.4.5+dfsg-0exp1_amd64.deb
 d4a0481eec8e688e52e960b3c7abc558 705652 libdevel optional 
libopencv-legacy-dev_2.4.5+dfsg-0exp1_amd64.deb
 3cec1c816134f46d38bdeb3d4e77d7de 498254 libs optional 
libopencv-legacy2.4_2.4.5+dfsg-0exp1_amd64.deb
 f1c6532ad9aa9f09158b52cd3b35fca6 496646 libdevel optional 
libopencv-contrib-dev_2.4.5+dfsg-0exp1_amd64.deb
 017761e531535a7e87ad93c3ef03f6e2 365096 libs optional 
libopencv-contrib2.4_2.4.5+dfsg-0exp1_amd64.deb
 4f57159226c16356188ac5f9d9cbc6d9 493636 libdevel optional 
libopencv-ts-dev_2.4.5+dfsg-0exp1_amd64.deb
 3c890e634f4138e611895f3d1029476d 291646 libs optional 
libopencv-ts2.4_2.4.5+dfsg-0exp1_amd64.deb
 fb809007465e0093348071a5c00f8a2b 68306 libdevel optional 
libopencv-photo-dev_2.4.5+dfsg-0exp1_amd64.deb
 5e76fdc4ad5ad6853239e6ce6dfbef0f 62192 libs optional 
libopencv-photo2.4_2.4.5+dfsg-0exp1_amd64.deb
 66076f2e630a88f5d57e37bea2e7dec1 141564 libdevel optional 
libopencv-videostab-dev_2.4.5+dfsg-0exp1_amd64.deb
 dc6b2db012484c2731b8d58a2c37f596 105714 libs optional 
libopencv-videostab2.4_2.4.5+dfsg-0exp1_amd64.deb
 357007f8e7474cd14e02c0673bdd0ab3 285340 libdevel optional 
libopencv-stitching-dev_2.4.5+dfsg-0exp1_amd64.deb
 b4ee8a7400e839bc32778b94ab9e4669 201068 libs optional 
libopencv-stitching2.4_2.4.5+dfsg-0exp1_amd64.deb
 6cb609edc8393ceed097169025018e36 217994 libdevel optional 
libopencv-gpu-dev_2.4.5+dfsg-0exp1_amd64.deb
 19887dd2fe426b5fbd3431a477ae4932 74048 libs optional 
libopencv-gpu2.4_2.4.5+dfsg-0exp1_amd64.deb
 03d4ea8105dd1b3d1e181e1ac29985a4 81598 libdevel optional 
libopencv-superres-dev_2.4.5+dfsg-0exp1_amd64.deb
 561984c519641737de36db64e534b7b6 65980 libs optional 
libopencv-superres2.4_2.4.5+dfsg-0exp1_amd64.deb
 cb33982ef6085d8347e24ad6ee3cccc1 457486 python optional 
python-opencv_2.4.5+dfsg-0exp1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJR4fpfAAoJEDIkf7tArR+m95IP/3b8IsiNbCybYQISz0HiKluo
T7GJVsg94mxAjeQfkOSxYplgviOWF0TSBmFp6eE2tUEttPGbAXA+i6Cdc9LT2B+k
OLQHzRunmBYV9zquva7Ugbl/CrEo+gL+ck5u2ayAVan/UKBlyL2HtVexPrmjhfhg
QkmsdERf9K22eC+Q92M09v+d0VPLzQOFlOpvnZPGnA5CluCEoNdLYu6/lYUKhP6J
C1UJmYMoZDiHakZYhAIKCmryf1hmHEbljVrq4F9rGB4x0Uk0M0/4NHtoB3W+HS66
JsLDC9BTu/rj087LqAD7wh2dVigPQGThjV2DreBdd0YfuSVlX5wbh6GB8x6n6MAg
MbEANHens9Ptycd3e3EyIniq4FByJIIJziKa1M2182ezDpiMVf2SF/6Lg6k/B+Bd
UMrhp0gmjvvOc2IvdwLfz/IL/fy/jo1/MJA5/s8JiyqrP3S9+WXnUS4csg0vK7FM
kiQ/YIhBlfdiuH2CYFkxTf6KZmbU5Qy5m+XOaFOZgn+n2Z7WRS4HUUtSuiV+eqef
kRGC+pVKROgUzrzD/1OuhmxRPNOjGbwBmzbuNafB97ycerqAeAIij/Z2k0mocxfc
l3XsB5Y9ZhG6o9YLzpZLJuwKu2tLyfkSIarA72RihnwSDhyguIHVT+6Xyg6mWSSW
w5fZqfo0rSQ/3Izx3I+4
=fsUo
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to