summaryrefslogtreecommitdiff
path: root/devel
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2012-10-02 17:27:02 +0000
committerwiz <wiz@pkgsrc.org>2012-10-02 17:27:02 +0000
commitf8d861985cc814193da2569afbabe9794f531758 (patch)
treed26d1da25b6a04f6cf858f475a5f81cd17fcbfba /devel
parentcbc6f762748a29cf9b2273ce934f1108e9c02ed8 (diff)
downloadpkgsrc-f8d861985cc814193da2569afbabe9794f531758.tar.gz
Update to 0.6.1:
This is purely a bug fix release, and contain no new functionality since 0.6.0. This release fixes a bug in the iterator implementation of flat_segment_tree. Prior to this release, the iterator would treat the position immediately before the end position to be the end position, which would result in incorrectly skipping the last data position during iteration. This release contains a fix for that bug. It also contains fixes for various build errors and compiler warnings. Many thanks to David Tardon, Stephan Bergmann, Tomáš Chvátal, and Markus Mohrhard for having submitted patches since the release of 0.6.0.
Diffstat (limited to 'devel')
-rw-r--r--devel/mdds/Makefile5
-rw-r--r--devel/mdds/distinfo9
-rw-r--r--devel/mdds/patches/patch-include_mdds_mixed_type_matrix_storage.hpp18
3 files changed, 6 insertions, 26 deletions
diff --git a/devel/mdds/Makefile b/devel/mdds/Makefile
index 68bfd558103..43dca1256fc 100644
--- a/devel/mdds/Makefile
+++ b/devel/mdds/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.11 2012/08/29 11:22:11 obache Exp $
+# $NetBSD: Makefile,v 1.12 2012/10/02 17:27:02 wiz Exp $
#
-DISTNAME= mdds_0.6.0
+DISTNAME= mdds_0.6.1
PKGNAME= ${DISTNAME:S/_/-/}
-PKGREVISION= 2
CATEGORIES= devel
MASTER_SITES= http://multidimalgorithm.googlecode.com/files/
EXTRACT_SUFX= .tar.bz2
diff --git a/devel/mdds/distinfo b/devel/mdds/distinfo
index 50c28ef4376..3d4d5750b8e 100644
--- a/devel/mdds/distinfo
+++ b/devel/mdds/distinfo
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.6 2012/08/15 18:13:38 wiz Exp $
+$NetBSD: distinfo,v 1.7 2012/10/02 17:27:02 wiz Exp $
-SHA1 (mdds_0.6.0.tar.bz2) = c2d07bf4668599b9bad80ca985ad74423c338630
-RMD160 (mdds_0.6.0.tar.bz2) = 4ec6b2f88cae4295690d27d24305ac67aee67110
-Size (mdds_0.6.0.tar.bz2) = 123325 bytes
-SHA1 (patch-include_mdds_mixed_type_matrix_storage.hpp) = bf721428be11641e50aeaacc8561601f151d6b9b
+SHA1 (mdds_0.6.1.tar.bz2) = e6b6235700c7808196fa84c05281a05047e2fdb0
+RMD160 (mdds_0.6.1.tar.bz2) = 2af2f21b3272a8b81f5814046934d639f7fa1b98
+Size (mdds_0.6.1.tar.bz2) = 128115 bytes
diff --git a/devel/mdds/patches/patch-include_mdds_mixed_type_matrix_storage.hpp b/devel/mdds/patches/patch-include_mdds_mixed_type_matrix_storage.hpp
deleted file mode 100644
index 5ae4794c7e1..00000000000
--- a/devel/mdds/patches/patch-include_mdds_mixed_type_matrix_storage.hpp
+++ /dev/null
@@ -1,18 +0,0 @@
-$NetBSD: patch-include_mdds_mixed_type_matrix_storage.hpp,v 1.1 2012/08/15 18:13:38 wiz Exp $
-
-Fix linking error with boost 1.50
-http://code.google.com/p/multidimalgorithm/source/detail?r=09937e5d6b4b82efbff40da2aa50fb02f2250bb2
-
---- include/mdds/mixed_type_matrix_storage.hpp.orig 2012-07-19 03:09:49.000000000 +0000
-+++ include/mdds/mixed_type_matrix_storage.hpp
-@@ -32,6 +32,10 @@
-
- #include <boost/ptr_container/ptr_vector.hpp>
- #include <boost/ptr_container/ptr_map.hpp>
-+// Boost.Pool indirectly pulls in Boost.System, causing linking error
-+// with Boost 1.50, because some (deprecated) symbols from System are
-+// not found.
-+#define BOOST_SYSTEM_NO_DEPRECATED
- #include <boost/pool/object_pool.hpp>
-
- namespace mdds {