diff options
author | wiz <wiz@pkgsrc.org> | 2015-02-27 13:39:41 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-02-27 13:39:41 +0000 |
commit | 5d0a2bab0e6f38dfc18414ce07ab5b8ff90a37fd (patch) | |
tree | 45515ba8a4e35fd3eb719a017166ac2e865c7d22 /devel/mdds | |
parent | 5e9a7be69e3a7f3ca37cc495bea24b0361c13604 (diff) | |
download | pkgsrc-5d0a2bab0e6f38dfc18414ce07ab5b8ff90a37fd.tar.gz |
Update to 0.12.0. Use proper master site.
libreoffice4 still builds with this version.
Changes:
The highlight of this release is mostly with the segment_tree data
structure, where its value type previously only supported pointer
types. Markus Mohrhard worked on removing that constraint from
segment_tree so that you can now store values of arbitrary types
just like you would expect from a template container.
Aside from that, there are some minor bug and build fixes. Users
of the previous versions are encouraged to update to this version.
Diffstat (limited to 'devel/mdds')
-rw-r--r-- | devel/mdds/Makefile | 11 | ||||
-rw-r--r-- | devel/mdds/distinfo | 9 | ||||
-rw-r--r-- | devel/mdds/patches/patch-include_mdds_multi__type__vector__types.hpp | 17 |
3 files changed, 8 insertions, 29 deletions
diff --git a/devel/mdds/Makefile b/devel/mdds/Makefile index cd4fe1fef74..de512348231 100644 --- a/devel/mdds/Makefile +++ b/devel/mdds/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.25 2015/02/04 18:01:25 ryoon Exp $ -# +# $NetBSD: Makefile,v 1.26 2015/02/27 13:39:41 wiz Exp $ -DISTNAME= cb4207cb913c7a5a8bfa5b91234618ee-mdds_0.11.2 -PKGNAME= ${DISTNAME:C/[0-9a-f]*-//:S/_/-/} +DISTNAME= mdds_0.12.0 +PKGNAME= ${DISTNAME:S/_/-/} CATEGORIES= devel -MASTER_SITES= http://dev-www.libreoffice.org/src/ +MASTER_SITES= http://kohei.us/files/mdds/src/ EXTRACT_SUFX= .tar.bz2 EXTRACT_USING= gtar @@ -13,8 +12,6 @@ HOMEPAGE= http://code.google.com/p/multidimalgorithm/ COMMENT= Collection of multi-dimensional data structure and indexing algorithms LICENSE= mit -WRKSRC= ${WRKDIR}/${DISTNAME:C/[0-9a-f]*-//} - USE_LANGUAGES= c++ GNU_CONFIGURE= yes NO_BUILD= yes diff --git a/devel/mdds/distinfo b/devel/mdds/distinfo index 48368a318f8..1019c0723fd 100644 --- a/devel/mdds/distinfo +++ b/devel/mdds/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.12 2015/02/04 18:01:25 ryoon Exp $ +$NetBSD: distinfo,v 1.13 2015/02/27 13:39:41 wiz Exp $ -SHA1 (cb4207cb913c7a5a8bfa5b91234618ee-mdds_0.11.2.tar.bz2) = 17d2d06a1df818de61bba25a9322541e80f6eed7 -RMD160 (cb4207cb913c7a5a8bfa5b91234618ee-mdds_0.11.2.tar.bz2) = 7bdfb64fbfa2abff20bfba8d1fddd477e049ee76 -Size (cb4207cb913c7a5a8bfa5b91234618ee-mdds_0.11.2.tar.bz2) = 154444 bytes -SHA1 (patch-include_mdds_multi__type__vector__types.hpp) = b730bd763aa5f056f41e7ed093b12740874d0ea7 +SHA1 (mdds_0.12.0.tar.bz2) = 043590edde76a1df3e96070c46cbc7ae5f88f081 +RMD160 (mdds_0.12.0.tar.bz2) = d2c47e8cd53ef66aa9d5e5f77f73d74f0e1551d8 +Size (mdds_0.12.0.tar.bz2) = 152285 bytes diff --git a/devel/mdds/patches/patch-include_mdds_multi__type__vector__types.hpp b/devel/mdds/patches/patch-include_mdds_multi__type__vector__types.hpp deleted file mode 100644 index 60fedaa4065..00000000000 --- a/devel/mdds/patches/patch-include_mdds_multi__type__vector__types.hpp +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-include_mdds_multi__type__vector__types.hpp,v 1.1 2015/02/04 18:01:25 ryoon Exp $ - -https://code.google.com/p/multidimalgorithm/source/detail?r=c45e0499dded11dc2aacea40b470ab1431ea535a - ---- include/mdds/multi_type_vector_types.hpp.orig 2014-12-18 20:05:56.000000000 +0000 -+++ include/mdds/multi_type_vector_types.hpp -@@ -39,8 +39,9 @@ - #endif - #include <boost/noncopyable.hpp> - --#if defined(MDDS_UNIT_TEST) || defined (MDDS_MULTI_TYPE_VECTOR_DEBUG) - #include <algorithm> -+ -+#if defined(MDDS_UNIT_TEST) || defined (MDDS_MULTI_TYPE_VECTOR_DEBUG) - #include <iostream> - #include <sstream> - using std::cout; |