Sat Aug 6 10:53:30 2011 UTC ()
Update to 0.5.3:

mdds 0.5.3

* mixed_type_matrix

  * re-implemented the filled storage for better performance, with two
    separate implementations for zero and emtpy matrix types.  The
    newer implementation should improve object creation time
    considerably.


(wiz)
diff -r1.2 -r1.3 pkgsrc/devel/mdds/Makefile
diff -r1.2 -r1.3 pkgsrc/devel/mdds/distinfo
diff -r1.1.1.1 -r1.2 pkgsrc/devel/mdds/PLIST

cvs diff -r1.2 -r1.3 pkgsrc/devel/mdds/Makefile (switch to unified diff)

--- pkgsrc/devel/mdds/Makefile 2011/04/05 12:57:54 1.2
+++ pkgsrc/devel/mdds/Makefile 2011/08/06 10:53:30 1.3
@@ -1,35 +1,35 @@ @@ -1,35 +1,35 @@
1# $NetBSD: Makefile,v 1.2 2011/04/05 12:57:54 wiz Exp $ 1# $NetBSD: Makefile,v 1.3 2011/08/06 10:53:30 wiz Exp $
2# 2#
3 3
4DISTNAME= mdds_0.5.2 4DISTNAME= mdds_0.5.3
5PKGNAME= ${DISTNAME:S/_/-/} 5PKGNAME= ${DISTNAME:S/_/-/}
6CATEGORIES= devel 6CATEGORIES= devel
7MASTER_SITES= http://multidimalgorithm.googlecode.com/files/ 7MASTER_SITES= http://multidimalgorithm.googlecode.com/files/
8EXTRACT_SUFX= .tar.bz2 8EXTRACT_SUFX= .tar.bz2
9 9
10MAINTAINER= pkgsrc-users@NetBSD.org 10MAINTAINER= pkgsrc-users@NetBSD.org
11HOMEPAGE= http://code.google.com/p/multidimalgorithm/ 11HOMEPAGE= http://code.google.com/p/multidimalgorithm/
12COMMENT= Collection of multi-dimensional data structure and indexing algorithms 12COMMENT= Collection of multi-dimensional data structure and indexing algorithms
13LICENSE= mit 13LICENSE= mit
14 14
15PKG_DESTDIR_SUPPORT= user-destdir 15PKG_DESTDIR_SUPPORT= user-destdir
16 16
17USE_LANGUAGES= c++ 17USE_LANGUAGES= c++
18GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
19INSTALLATION_DIRS= include/mdds/hash_container 19INSTALLATION_DIRS= include/mdds/hash_container
20 20
21do-build: 21do-build:
22 22
23do-install: 23do-install:
24 for i in ${WRKSRC}/include/mdds/*.*; do \ 24 for i in ${WRKSRC}/include/mdds/*.*; do \
25 ${INSTALL_DATA} $$i ${DESTDIR}${PREFIX}/include/mdds; \ 25 ${INSTALL_DATA} $$i ${DESTDIR}${PREFIX}/include/mdds; \
26 done 26 done
27 for i in ${WRKSRC}/include/mdds/hash_container/*.*; do \ 27 for i in ${WRKSRC}/include/mdds/hash_container/*.*; do \
28 ${INSTALL_DATA} $$i \ 28 ${INSTALL_DATA} $$i \
29 ${DESTDIR}${PREFIX}/include/mdds/hash_container; \ 29 ${DESTDIR}${PREFIX}/include/mdds/hash_container; \
30 done 30 done
31 31
32BUILDLINK_DEPMETHOD.boost-headers?= build 32BUILDLINK_DEPMETHOD.boost-headers?= build
33.include "../../devel/boost-headers/buildlink3.mk" 33.include "../../devel/boost-headers/buildlink3.mk"
34.include "../../devel/boost-libs/buildlink3.mk" 34.include "../../devel/boost-libs/buildlink3.mk"
35.include "../../mk/bsd.pkg.mk" 35.include "../../mk/bsd.pkg.mk"

cvs diff -r1.2 -r1.3 pkgsrc/devel/mdds/distinfo (switch to unified diff)

--- pkgsrc/devel/mdds/distinfo 2011/04/05 12:57:54 1.2
+++ pkgsrc/devel/mdds/distinfo 2011/08/06 10:53:30 1.3
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.2 2011/04/05 12:57:54 wiz Exp $ 1$NetBSD: distinfo,v 1.3 2011/08/06 10:53:30 wiz Exp $
2 2
3SHA1 (mdds_0.5.2.tar.bz2) = bddc19fc2f1879f0fbde66a13b58ae1370e4dc25 3SHA1 (mdds_0.5.3.tar.bz2) = e578b6c8e8fe4b20ae030fc14959b92cb6b1aba4
4RMD160 (mdds_0.5.2.tar.bz2) = 45084e33b514ad9fe4b6e6b4693891a19666764f 4RMD160 (mdds_0.5.3.tar.bz2) = 8e97f4977e671698a6163fb55a1e13a4499a288c
5Size (mdds_0.5.2.tar.bz2) = 89218 bytes 5Size (mdds_0.5.3.tar.bz2) = 92050 bytes

cvs diff -r1.1.1.1 -r1.2 pkgsrc/devel/mdds/PLIST (switch to unified diff)

--- pkgsrc/devel/mdds/PLIST 2011/02/28 18:10:51 1.1.1.1
+++ pkgsrc/devel/mdds/PLIST 2011/08/06 10:53:30 1.2
@@ -1,16 +1,20 @@ @@ -1,16 +1,20 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2011/02/28 18:10:51 wiz Exp $ 1@comment $NetBSD: PLIST,v 1.2 2011/08/06 10:53:30 wiz Exp $
2include/mdds/flat_segment_tree.hpp 2include/mdds/flat_segment_tree.hpp
3include/mdds/flat_segment_tree_def.inl 3include/mdds/flat_segment_tree_def.inl
4include/mdds/flat_segment_tree_itr.hpp 4include/mdds/flat_segment_tree_itr.hpp
5include/mdds/global.hpp 5include/mdds/global.hpp
6include/mdds/hash_container/map.hpp 6include/mdds/hash_container/map.hpp
7include/mdds/mixed_type_matrix.hpp 7include/mdds/mixed_type_matrix.hpp
8include/mdds/mixed_type_matrix_def.inl 8include/mdds/mixed_type_matrix_def.inl
9include/mdds/mixed_type_matrix_element.hpp 9include/mdds/mixed_type_matrix_element.hpp
10include/mdds/mixed_type_matrix_flag_storage.hpp 10include/mdds/mixed_type_matrix_flag_storage.hpp
11include/mdds/mixed_type_matrix_storage.hpp 11include/mdds/mixed_type_matrix_storage.hpp
 12include/mdds/mixed_type_matrix_storage_filled_linear.inl
 13include/mdds/mixed_type_matrix_storage_filled_nested_array.inl
 14include/mdds/mixed_type_matrix_storage_sparse.inl
12include/mdds/node.hpp 15include/mdds/node.hpp
13include/mdds/point_quad_tree.hpp 16include/mdds/point_quad_tree.hpp
14include/mdds/quad_node.hpp 17include/mdds/quad_node.hpp
15include/mdds/rectangle_set.hpp 18include/mdds/rectangle_set.hpp
 19include/mdds/rectangle_set_def.inl
16include/mdds/segment_tree.hpp 20include/mdds/segment_tree.hpp