Update to 1.2.0.
This commit is contained in:
parent
963854440c
commit
ff3a2e5089
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=415815
5 changed files with 11 additions and 27 deletions
|
@ -1,7 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= mdds
|
||||
PORTVERSION= 1.1.0
|
||||
PORTVERSION= 1.2.0
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://kohei.us/files/mdds/src/
|
||||
|
||||
|
@ -14,7 +14,7 @@ USES= tar:bzip2
|
|||
NO_ARCH= yes
|
||||
NO_BUILD= yes
|
||||
|
||||
API_VERSION= 1.0
|
||||
API_VERSION= 1.2
|
||||
PLIST_SUB= API_VERSION=${API_VERSION}
|
||||
|
||||
do-configure:
|
||||
|
@ -28,8 +28,9 @@ do-configure:
|
|||
do-install:
|
||||
${MKDIR} ${STAGEDIR}${PREFIX}/include/mdds-${API_VERSION}/mdds
|
||||
(cd ${WRKSRC}/include && ${COPYTREE_SHARE} . \
|
||||
${STAGEDIR}${PREFIX}/include/mdds-${API_VERSION} \
|
||||
"-not -name *.orig")
|
||||
${STAGEDIR}${PREFIX}/include/mdds-${API_VERSION})
|
||||
${FIND} ${STAGEDIR}${PREFIX}/include/mdds-${API_VERSION} \
|
||||
\( -name "*.orig" -or -name "Makefile.*" \) -delete
|
||||
${INSTALL_DATA} ${WRKSRC}/misc/mdds-${API_VERSION}.pc \
|
||||
${STAGEDIR}${PREFIX}/libdata/pkgconfig
|
||||
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
SHA256 (mdds-1.1.0.tar.bz2) = 4253ab93fe8bb579321a50e247f1f800191ab99fe2d8c6c181741b8bd3fb161f
|
||||
SIZE (mdds-1.1.0.tar.bz2) = 258691
|
||||
TIMESTAMP = 1464127845
|
||||
SHA256 (mdds-1.2.0.tar.bz2) = f44fd0635de94c7d490f9a65f74b5e55860d7bdd507951428294f9690fda45b6
|
||||
SIZE (mdds-1.2.0.tar.bz2) = 284962
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- include/mdds/multi_type_vector_def.inl.orig 2016-01-29 00:31:44 UTC
|
||||
+++ include/mdds/multi_type_vector_def.inl
|
||||
@@ -1936,7 +1936,6 @@ multi_type_vector<_CellBlockFunc, _Event
|
||||
else
|
||||
{
|
||||
// Just move the whole block over.
|
||||
- block* blk = m_blocks[block_index2];
|
||||
dest.m_blocks[dest_block_pos] = blk;
|
||||
if (blk->mp_data)
|
||||
{
|
|
@ -1,11 +0,0 @@
|
|||
--- include/mdds/sorted_string_map_def.inl.orig 2015-12-22 00:33:47 UTC
|
||||
+++ include/mdds/sorted_string_map_def.inl
|
||||
@@ -65,7 +65,7 @@ sorted_string_map<_ValueT>::sorted_strin
|
||||
m_entry_end(m_entries+m_entry_size)
|
||||
{
|
||||
#ifdef _GLIBCXX_DEBUG
|
||||
- assert(std::is_sorted(m_entries, m_entry_end, compare<_ValueT>));
|
||||
+ assert(std::is_sorted(m_entries, m_entry_end, detail::compare<_ValueT>));
|
||||
#endif
|
||||
}
|
||||
|
|
@ -6,6 +6,8 @@ include/mdds-%%API_VERSION%%/mdds/global.hpp
|
|||
include/mdds-%%API_VERSION%%/mdds/multi_type_matrix.hpp
|
||||
include/mdds-%%API_VERSION%%/mdds/multi_type_matrix_def.inl
|
||||
include/mdds-%%API_VERSION%%/mdds/multi_type_vector.hpp
|
||||
include/mdds-%%API_VERSION%%/mdds/multi_type_vector/collection.hpp
|
||||
include/mdds-%%API_VERSION%%/mdds/multi_type_vector/collection_def.inl
|
||||
include/mdds-%%API_VERSION%%/mdds/multi_type_vector_custom_func1.hpp
|
||||
include/mdds-%%API_VERSION%%/mdds/multi_type_vector_custom_func2.hpp
|
||||
include/mdds-%%API_VERSION%%/mdds/multi_type_vector_custom_func3.hpp
|
||||
|
@ -25,4 +27,5 @@ include/mdds-%%API_VERSION%%/mdds/sorted_string_map.hpp
|
|||
include/mdds-%%API_VERSION%%/mdds/sorted_string_map_def.inl
|
||||
include/mdds-%%API_VERSION%%/mdds/trie_map.hpp
|
||||
include/mdds-%%API_VERSION%%/mdds/trie_map_def.inl
|
||||
include/mdds-%%API_VERSION%%/mdds/trie_map_itr.hpp
|
||||
libdata/pkgconfig/mdds-%%API_VERSION%%.pc
|
||||
|
|
Loading…
Reference in a new issue