pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/mdds mdds: Update to 1.5.0
details: https://anonhg.NetBSD.org/pkgsrc/rev/5dc8aa5543ff
branches: trunk
changeset: 411089:5dc8aa5543ff
user: ryoon <ryoon%pkgsrc.org@localhost>
date: Wed Feb 05 13:26:09 2020 +0000
description:
mdds: Update to 1.5.0
Changelog:
mdds 1.5.0
* documentation
* moved the documentation hosting to readthedocs.io, and adjusted the build
steps.
* moved the API incompatibility notes from README to the rst doc.
* added the overview section for flat_segment_tree.
* multi_type_vector
* fixed the static get(const const_position_type& pos) method for the
boolean_element_block, by adding specialization for it to work around the
issue with std::vector<bool> not having the at() method.
* fixed an issue with the const position() method not returning a valid end
position the same way the non-const variant does.
* added steps to traverse blocks backward from the postiion specified in the
position hint. This may result in improved performance in some
situations.
* the standard integer blocks now use fixed size integer types i.e.
* (u)int8_t
* (u)int16_t
* (u)int32_t
* (u)int64_t
* The numeric_element_block has been renamed to double_element_block.
* added new block type to store float element values.
* general
* added gdb pretty printers that prints the contents of the data structures.
diffstat:
devel/mdds/DESCR | 2 +-
devel/mdds/Makefile | 5 +--
devel/mdds/PLIST | 66 ++++++++++++++++++++++++------------------------
devel/mdds/buildlink3.mk | 4 +-
devel/mdds/distinfo | 10 +++---
5 files changed, 43 insertions(+), 44 deletions(-)
diffs (129 lines):
diff -r 7ec48a6674bd -r 5dc8aa5543ff devel/mdds/DESCR
--- a/devel/mdds/DESCR Wed Feb 05 13:18:49 2020 +0000
+++ b/devel/mdds/DESCR Wed Feb 05 13:26:09 2020 +0000
@@ -8,4 +8,4 @@
* segment tree
* rectangle set
-This package contains the 1.0 branch of the software.
+This package contains the 1.5 branch of the software.
diff -r 7ec48a6674bd -r 5dc8aa5543ff devel/mdds/Makefile
--- a/devel/mdds/Makefile Wed Feb 05 13:18:49 2020 +0000
+++ b/devel/mdds/Makefile Wed Feb 05 13:26:09 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.43 2020/01/12 20:20:12 ryoon Exp $
+# $NetBSD: Makefile,v 1.44 2020/02/05 13:26:09 ryoon Exp $
-DISTNAME= mdds-1.4.3
-PKGREVISION= 3
+DISTNAME= mdds-1.5.0
CATEGORIES= devel
MASTER_SITES= http://kohei.us/files/mdds/src/
EXTRACT_SUFX= .tar.bz2
diff -r 7ec48a6674bd -r 5dc8aa5543ff devel/mdds/PLIST
--- a/devel/mdds/PLIST Wed Feb 05 13:18:49 2020 +0000
+++ b/devel/mdds/PLIST Wed Feb 05 13:26:09 2020 +0000
@@ -1,37 +1,37 @@
-@comment $NetBSD: PLIST,v 1.11 2019/02/19 15:45:30 ryoon Exp $
-include/mdds-1.4/mdds/flat_segment_tree.hpp
-include/mdds-1.4/mdds/flat_segment_tree_def.inl
-include/mdds-1.4/mdds/flat_segment_tree_itr.hpp
-include/mdds-1.4/mdds/global.hpp
-include/mdds-1.4/mdds/multi_type_matrix.hpp
-include/mdds-1.4/mdds/multi_type_matrix_def.inl
-include/mdds-1.4/mdds/multi_type_vector.hpp
-include/mdds-1.4/mdds/multi_type_vector/collection.hpp
-include/mdds-1.4/mdds/multi_type_vector/collection_def.inl
-include/mdds-1.4/mdds/multi_type_vector_custom_func1.hpp
-include/mdds-1.4/mdds/multi_type_vector_custom_func2.hpp
-include/mdds-1.4/mdds/multi_type_vector_custom_func3.hpp
-include/mdds-1.4/mdds/multi_type_vector_def.inl
-include/mdds-1.4/mdds/multi_type_vector_itr.hpp
-include/mdds-1.4/mdds/multi_type_vector_macro.hpp
-include/mdds-1.4/mdds/multi_type_vector_trait.hpp
-include/mdds-1.4/mdds/multi_type_vector_types.hpp
-include/mdds-1.4/mdds/node.hpp
-include/mdds-1.4/mdds/point_quad_tree.hpp
-include/mdds-1.4/mdds/quad_node.hpp
-include/mdds-1.4/mdds/rectangle_set.hpp
-include/mdds-1.4/mdds/rectangle_set_def.inl
-include/mdds-1.4/mdds/rtree.hpp
-include/mdds-1.4/mdds/rtree_def.inl
-include/mdds-1.4/mdds/segment_tree.hpp
-include/mdds-1.4/mdds/segment_tree_def.inl
-include/mdds-1.4/mdds/sorted_string_map.hpp
-include/mdds-1.4/mdds/sorted_string_map_def.inl
-include/mdds-1.4/mdds/trie_map.hpp
-include/mdds-1.4/mdds/trie_map_def.inl
-include/mdds-1.4/mdds/trie_map_itr.hpp
+@comment $NetBSD: PLIST,v 1.12 2020/02/05 13:26:09 ryoon Exp $
+include/mdds-1.5/mdds/flat_segment_tree.hpp
+include/mdds-1.5/mdds/flat_segment_tree_def.inl
+include/mdds-1.5/mdds/flat_segment_tree_itr.hpp
+include/mdds-1.5/mdds/global.hpp
+include/mdds-1.5/mdds/multi_type_matrix.hpp
+include/mdds-1.5/mdds/multi_type_matrix_def.inl
+include/mdds-1.5/mdds/multi_type_vector.hpp
+include/mdds-1.5/mdds/multi_type_vector/collection.hpp
+include/mdds-1.5/mdds/multi_type_vector/collection_def.inl
+include/mdds-1.5/mdds/multi_type_vector_custom_func1.hpp
+include/mdds-1.5/mdds/multi_type_vector_custom_func2.hpp
+include/mdds-1.5/mdds/multi_type_vector_custom_func3.hpp
+include/mdds-1.5/mdds/multi_type_vector_def.inl
+include/mdds-1.5/mdds/multi_type_vector_itr.hpp
+include/mdds-1.5/mdds/multi_type_vector_macro.hpp
+include/mdds-1.5/mdds/multi_type_vector_trait.hpp
+include/mdds-1.5/mdds/multi_type_vector_types.hpp
+include/mdds-1.5/mdds/node.hpp
+include/mdds-1.5/mdds/point_quad_tree.hpp
+include/mdds-1.5/mdds/quad_node.hpp
+include/mdds-1.5/mdds/rectangle_set.hpp
+include/mdds-1.5/mdds/rectangle_set_def.inl
+include/mdds-1.5/mdds/rtree.hpp
+include/mdds-1.5/mdds/rtree_def.inl
+include/mdds-1.5/mdds/segment_tree.hpp
+include/mdds-1.5/mdds/segment_tree_def.inl
+include/mdds-1.5/mdds/sorted_string_map.hpp
+include/mdds-1.5/mdds/sorted_string_map_def.inl
+include/mdds-1.5/mdds/trie_map.hpp
+include/mdds-1.5/mdds/trie_map_def.inl
+include/mdds-1.5/mdds/trie_map_itr.hpp
share/doc/mdds/AUTHORS
share/doc/mdds/COPYING
share/doc/mdds/NEWS
share/doc/mdds/README.md
-share/pkgconfig/mdds-1.4.pc
+share/pkgconfig/mdds-1.5.pc
diff -r 7ec48a6674bd -r 5dc8aa5543ff devel/mdds/buildlink3.mk
--- a/devel/mdds/buildlink3.mk Wed Feb 05 13:18:49 2020 +0000
+++ b/devel/mdds/buildlink3.mk Wed Feb 05 13:26:09 2020 +0000
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.4 2016/02/13 08:40:22 wiz Exp $
+# $NetBSD: buildlink3.mk,v 1.5 2020/02/05 13:26:09 ryoon Exp $
BUILDLINK_TREE+= mdds
.if !defined(MDDS_BUILDLINK3_MK)
MDDS_BUILDLINK3_MK:=
-BUILDLINK_API_DEPENDS.mdds+= mdds>=1.0.0
+BUILDLINK_API_DEPENDS.mdds+= mdds>=1.5.0
BUILDLINK_PKGSRCDIR.mdds?= ../../devel/mdds
# only contains header files
BUILDLINK_DEPMETHOD.mdds?= build
diff -r 7ec48a6674bd -r 5dc8aa5543ff devel/mdds/distinfo
--- a/devel/mdds/distinfo Wed Feb 05 13:18:49 2020 +0000
+++ b/devel/mdds/distinfo Wed Feb 05 13:26:09 2020 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.18 2019/02/19 15:45:30 ryoon Exp $
+$NetBSD: distinfo,v 1.19 2020/02/05 13:26:09 ryoon Exp $
-SHA1 (mdds-1.4.3.tar.bz2) = 86a90787750043b417e031b90360379bec75a46a
-RMD160 (mdds-1.4.3.tar.bz2) = d425751e6839e2ae608d70ebde78a30b3136c5ff
-SHA512 (mdds-1.4.3.tar.bz2) = fd54a93fde89bff74a5ccf84ce5e2e002114297b165ded56a1bae92b28d70864775add140e165c7750f7dbe8ca1bfe83179cd9a835e53312c2e893c9e1f4434c
-Size (mdds-1.4.3.tar.bz2) = 334515 bytes
+SHA1 (mdds-1.5.0.tar.bz2) = 4f0701f5c6af0455178b6c63f4f5c9e889f07499
+RMD160 (mdds-1.5.0.tar.bz2) = bb94e4323d7163dd14745d7b1c1173dfbfe404bc
+SHA512 (mdds-1.5.0.tar.bz2) = 9ed434dbc00285defbf3e0989396a1b52439bfdda01e5fd5822fef5e42e2c9b0b9436dd11b99af84a09a1965191ec106114e4046834f5b733474759f43bbfd95
+Size (mdds-1.5.0.tar.bz2) = 346888 bytes
SHA1 (patch-configure) = e8155e65b7fe71a6e924b432177dd13a186426a6
Home |
Main Index |
Thread Index |
Old Index