From e767091d649df311dd221e243ab2ce54776ae779 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 13:23:41 +0100 Subject: New upstream version 1.0.2 --- .travis.yml | 2 +- changelog | 6 ++++++ configure.ac | 2 +- doc/doxygen.cfg.in | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 32341e9..be68f7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ before_install: install: - curl -L https://github.com/nukedzn/psocksxx/releases/download/v1.0.0/psocksxx-1.0.0.tar.gz | tar -zx -C /tmp - cd /tmp/psocksxx-* && ./configure --prefix=/tmp/root && make && make install - - if [ $TRAVIS_OS_NAME == linux ]; then curl -L http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz | tar -zx -C /tmp; fi + - if [ $TRAVIS_OS_NAME == linux ]; then curl -L http://www.hyperrealm.com/packages/libconfig-1.4.10.tar.gz | tar -zx -C /tmp; fi - if [ $TRAVIS_OS_NAME == linux ]; then cd /tmp/libconfig-* && ./configure --prefix=/tmp/root && make && make install; fi - cd ${TRAVIS_BUILD_DIR} diff --git a/changelog b/changelog index 518c4fb..20d6aad 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,9 @@ +1.0.2 - 19th November 2017 + * Fix broken v1.0.1 release + +1.0.1 - 19th November 2017 + * Make builds reproducible (https://bugs.debian.org/882112) + 1.0.0 - 25th November 2015 * [New] Configurable communication (socket) timeouts * [New] Support for persistent connections diff --git a/configure.ac b/configure.ac index b88fc75..d972716 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.68]) -AC_INIT([bitz-server], [1.0.0], [https://github.com/uditha-atukorala/bitz-server/issues]) +AC_INIT([bitz-server], [1.0.2], [https://github.com/uditha-atukorala/bitz-server/issues]) AC_CONFIG_AUX_DIR([aux-build]) AC_CONFIG_MACRO_DIR([aux-build/m4]) AC_CONFIG_HEADERS([include/config.h]) diff --git a/doc/doxygen.cfg.in b/doc/doxygen.cfg.in index 73bd0d1..6104f0c 100644 --- a/doc/doxygen.cfg.in +++ b/doc/doxygen.cfg.in @@ -17,7 +17,7 @@ REPEAT_BRIEF = YES ABBREVIATE_BRIEF = ALWAYS_DETAILED_SEC = NO INLINE_INHERITED_MEMB = NO -FULL_PATH_NAMES = YES +FULL_PATH_NAMES = NO STRIP_FROM_PATH = STRIP_FROM_INC_PATH = SHORT_NAMES = NO @@ -102,7 +102,7 @@ INPUT = @top_srcdir@ INPUT_ENCODING = UTF-8 FILE_PATTERNS = RECURSIVE = YES -EXCLUDE = @top_srcdir@/doc +EXCLUDE = @top_srcdir@/doc @top_srcdir@/README.md EXCLUDE_SYMLINKS = NO EXCLUDE_PATTERNS = EXCLUDE_SYMBOLS = -- cgit v1.2.3 From c4185fc61feecc165faff86233705ba9a462d59e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 13:33:16 +0100 Subject: New upstream release --- debian/changelog | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/debian/changelog b/debian/changelog index 6b9c37a..c0fa0ed 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +bitz-server (1.0.2-1) UNRELEASED; urgency=medium + + * New upstream release: + - Make builds reproducible (Closes: #882112). + + -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 + bitz-server (1.0.0-5) unstable; urgency=medium * Renew symbols files. -- cgit v1.2.3 From 1add16dc4cc024d32b2ffa00f8b5f341479d55cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 13:38:00 +0100 Subject: Change my mail address --- debian/changelog | 3 +++ debian/control | 2 +- debian/copyright | 4 ++-- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index c0fa0ed..7ff78c6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,9 @@ bitz-server (1.0.2-1) UNRELEASED; urgency=medium * New upstream release: - Make builds reproducible (Closes: #882112). + * Change to my new mail address: + - debian/control, + - debian/copyright -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 diff --git a/debian/control b/debian/control index fa5188a..265beb9 100644 --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: bitz-server Section: net Priority: optional -Maintainer: Jörg Frings-Fürst +Maintainer: Jörg Frings-Fürst Uploaders: Uditha Atukorala Build-Depends: debhelper (>= 10), diff --git a/debian/copyright b/debian/copyright index d26971a..017ff48 100644 --- a/debian/copyright +++ b/debian/copyright @@ -7,9 +7,9 @@ Copyright: 2012-2014 Uditha Atukorala License: GPL-3+ Files: debian/* -Copyright: 2014-2016 Jörg Frings-Fürst +Copyright: 2014-2016 Jörg Frings-Fürst License: GPL-3+ - + License: GPL-3+ This package is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by -- cgit v1.2.3 From 9ca0b2ddc91f69d89915bd8d584f7d4e0165fe38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Fri, 1 Dec 2017 15:50:47 +0100 Subject: Declare compliance with Debian Policy 4.1.2.0 --- debian/changelog | 2 ++ debian/control | 2 +- debian/copyright | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7ff78c6..143891d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -5,6 +5,8 @@ bitz-server (1.0.2-1) UNRELEASED; urgency=medium * Change to my new mail address: - debian/control, - debian/copyright + * debian/copyright: Bump years to 2017. + * Declare compliance with Debian Policy 4.1.2.0. (No changes needed). -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 diff --git a/debian/control b/debian/control index 265beb9..843180f 100644 --- a/debian/control +++ b/debian/control @@ -13,7 +13,7 @@ Build-Depends: libpython-dev Build-Depends-Indep: doxygen -Standards-Version: 4.1.1 +Standards-Version: 4.1.2.0 Homepage: https://github.com/uditha-atukorala/bitz-server Vcs-Git: https://anonscm.debian.org/cgit/collab-maint/bitz-server.git Vcs-Browser: https://anonscm.debian.org/cgit/collab-maint/bitz-server.git diff --git a/debian/copyright b/debian/copyright index 017ff48..443ff37 100644 --- a/debian/copyright +++ b/debian/copyright @@ -3,11 +3,11 @@ Upstream-Name: bitz-server Source: https://github.com/uditha-atukorala/bitz-server Files: * -Copyright: 2012-2014 Uditha Atukorala +Copyright: 2012-2017 Uditha Atukorala License: GPL-3+ Files: debian/* -Copyright: 2014-2016 Jörg Frings-Fürst +Copyright: 2014-2017 Jörg Frings-Fürst License: GPL-3+ License: GPL-3+ -- cgit v1.2.3 From e04eb83051c34e6a5426eac38e05adf05a7e77dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 16 Dec 2017 10:40:10 +0100 Subject: d/libicap1.symbols.ppc64el: Mark symbols optional not emitted when building with -O3 --- debian/changelog | 3 +++ debian/libicap1.symbols.ppc64el | 34 +++++++++++++++++----------------- 2 files changed, 20 insertions(+), 17 deletions(-) diff --git a/debian/changelog b/debian/changelog index 143891d..d22147c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -7,6 +7,9 @@ bitz-server (1.0.2-1) UNRELEASED; urgency=medium - debian/copyright * debian/copyright: Bump years to 2017. * Declare compliance with Debian Policy 4.1.2.0. (No changes needed). + * debian/libicap1.symbols.ppc64el (Closes: #878847, #878844): + - Mark symbols optional not emitted when building with -O3. + Thanks to Matthias Klose . -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 diff --git a/debian/libicap1.symbols.ppc64el b/debian/libicap1.symbols.ppc64el index 0f97986..d0f5097 100644 --- a/debian/libicap1.symbols.ppc64el +++ b/debian/libicap1.symbols.ppc64el @@ -1,7 +1,7 @@ libicap.so.1 libicap1 #MINVER# (c++)"void std::vector, std::allocator >, std::allocator, std::allocator > > >::_M_realloc_insert, std::allocator > >(__gnu_cxx::__normal_iterator, std::allocator >*, std::vector, std::allocator >, std::allocator, std::allocator > > > >, std::__cxx11::basic_string, std::allocator >&&)@Base" 1.0.0 (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::operator=(std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > > const&)@Base" 1.0.0 - (c++)"void std::__make_heap<__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__ops::_Iter_comp_iter >(__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__ops::_Iter_comp_iter&)@Base" 1.0.0 + (c++|optional=templinst)"void std::__make_heap<__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__ops::_Iter_comp_iter >(__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__ops::_Iter_comp_iter&)@Base" 1.0.0 (c++)"icap::RequestHeader::read_header(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 (c++)"icap::RequestHeader::RequestHeader(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 (c++)"icap::RequestHeader::RequestHeader(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 @@ -29,7 +29,7 @@ libicap.so.1 libicap1 #MINVER# (c++)"icap::util::read_chunked_payload(psocksxx::iosockstream*, std::__cxx11::basic_string, std::allocator >&)@Base" 1.0.0 (c++)"icap::util::read_req_continue_data(icap::Request*, psocksxx::iosockstream*)@Base" 1.0.0 (c++)"std::__cxx11::basic_string, std::allocator > icap::util::itoa(int)@Base" 1.0.0 - (c++)"std::__cxx11::basic_string, std::allocator > icap::util::itoa(long)@Base" 1.0.0 + (c++|optional=templinst)"std::__cxx11::basic_string, std::allocator > icap::util::itoa(long)@Base" 1.0.0 (c++)"icap::util::trim(std::__cxx11::basic_string, std::allocator >&)@Base" 1.0.0 (c++)"icap::util::ltrim(std::__cxx11::basic_string, std::allocator >&)@Base" 1.0.0 (c++)"icap::util::rtrim(std::__cxx11::basic_string, std::allocator >&)@Base" 1.0.0 @@ -92,21 +92,21 @@ libicap.so.1 libicap1 #MINVER# (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 1.0.0 (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 1.0.0 (c++)"std::__cxx11::basic_stringbuf, std::allocator >::~basic_stringbuf()@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > >*)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(icap::ResponseHeader::status_t const&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, icap::ResponseHeader::status_t const&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 - (c++)"std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_copy, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_Reuse_or_alloc_node&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 - (c++)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 1.0.0 - (c++)"void std::__adjust_heap<__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, long, std::pair, std::allocator >, int>, (c++)"__gnu_cxx::__ops::_Iter_comp_iter >(__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, long, long, std::pair, std::allocator >, int>, __gnu_cxx::__ops::_Iter_comp_iter)@Base"" 1.0.0 - (c++)"void std::__insertion_sort<__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, (c++)"__gnu_cxx::__ops::_Iter_comp_iter >(__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__ops::_Iter_comp_iter)@Base"" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_insert_node(std::_Rb_tree_node_base*, std::_Rb_tree_node_base*, std::_Rb_tree_node, std::allocator > > >*)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_unique_pos(icap::ResponseHeader::status_t const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > > >, icap::ResponseHeader::status_t const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator > >, std::_Select1st, std::allocator > > >, std::less, std::allocator, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > > >*)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::equal_range(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >* std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_copy, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_Reuse_or_alloc_node>(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > const*, std::_Rb_tree_node_base*, std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_Reuse_or_alloc_node&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, std::__cxx11::basic_string, std::allocator > >, std::_Select1st, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >, std::less, std::allocator > >, std::allocator, std::allocator > const, std::__cxx11::basic_string, std::allocator > > > >::_M_erase(std::_Rb_tree_node, std::allocator > const, std::__cxx11::basic_string, std::allocator > > >*)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_unique_pos(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_get_insert_hint_unique_pos(std::_Rb_tree_const_iterator, std::allocator > const, int> >, std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::find(std::__cxx11::basic_string, std::allocator > const&)@Base" 1.0.0 + (c++|optional=templinst)"std::_Rb_tree, std::allocator >, std::pair, std::allocator > const, int>, std::_Select1st, std::allocator > const, int> >, std::less, std::allocator > >, std::allocator, std::allocator > const, int> > >::_M_erase(std::_Rb_tree_node, std::allocator > const, int> >*)@Base" 1.0.0 + (c++|optional=templinst)"void std::__adjust_heap<__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, long, std::pair, std::allocator >, int>, (c++)"__gnu_cxx::__ops::_Iter_comp_iter >(__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, long, long, std::pair, std::allocator >, int>, __gnu_cxx::__ops::_Iter_comp_iter)@Base"" 1.0.0 + (c++|optional=templinst)"void std::__insertion_sort<__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, (c++)"__gnu_cxx::__ops::_Iter_comp_iter >(__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__ops::_Iter_comp_iter)@Base"" 1.0.0 (c++)"void std::__introsort_loop<__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, long, (c++)"__gnu_cxx::__ops::_Iter_comp_iter >(__gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, __gnu_cxx::__normal_iterator, std::allocator >, int>*, std::vector, std::allocator >, int>, std::allocator, std::allocator >, int> > > >, long, __gnu_cxx::__ops::_Iter_comp_iter)@Base"" 1.0.0 (c++)"__gnu_cxx::__normal_iterator, std::allocator > > std::__find_if<__gnu_cxx::__normal_iterator, std::allocator > >, (c++)"__gnu_cxx::__ops::_Iter_pred > > >(__gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__normal_iterator, std::allocator > >, __gnu_cxx::__ops::_Iter_pred > >, std::random_access_iterator_tag)@Base"" 1.0.0 (c++)"typeinfo for icap::RequestHeader@Base" 1.0.0 -- cgit v1.2.3 From 423f37f0f9e8a737ac06747123738b04e5dfd0dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 16 Dec 2017 10:50:53 +0100 Subject: .gitignore: Add .pc --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a768d50..d8537d7 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,4 @@ Makefile.in # project specific build/* +.pc -- cgit v1.2.3 From 3b05fd037405ff5e89b025f75908148963bdb424 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Sat, 16 Dec 2017 10:57:42 +0100 Subject: d/changelog: Change release, date and time --- debian/changelog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index d22147c..2a2779a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -bitz-server (1.0.2-1) UNRELEASED; urgency=medium +bitz-server (1.0.2-1) unstable; urgency=medium * New upstream release: - Make builds reproducible (Closes: #882112). @@ -11,7 +11,7 @@ bitz-server (1.0.2-1) UNRELEASED; urgency=medium - Mark symbols optional not emitted when building with -O3. Thanks to Matthias Klose . - -- Jörg Frings-Fürst Fri, 01 Dec 2017 13:25:21 +0100 + -- Jörg Frings-Fürst Sat, 16 Dec 2017 10:56:20 +0100 bitz-server (1.0.0-5) unstable; urgency=medium -- cgit v1.2.3