summaryrefslogtreecommitdiff
path: root/devel/libsigc++/PLIST
AgeCommit message (Collapse)AuthorFilesLines
2016-11-25Update libsigc++ to 2.10.0prlw11-1/+28
Given "Some more minor uses of C++11 syntax." below, up GCC requirement to 4.8 and add -std=c++11 to be consistent with e.g., glibmm. 2.10.0 (stable): * Build: Fix silent builds. (Kjell Ahlstedt) Bug #768797 2.9.3 (unstable): * signal: Deprecate slots(). Please tell us if you really need this. (Murray Cumming) Deprecate emit_reverse(). Please tell us if you really need this. (Murray Cumming) * Benchmark: Update it and use boost::timer, and actually build it, but not built by default. (Murray Cumming) Build: * Fix the build on MSVC++ 2013 and 2015. (Chun-wei Fan) Bug #767777 2.9.2 (unstable): * Minor documentation improvements. (Murray Cumming) * Some more minor uses of C++11 syntax. (Murray Cumming) 2.9.1 (unstable): * slot: Allow sigc::slot<R(Args...)> syntax, like std::function, deprecating the sigc::slot<R, Args...> syntax. (Murray Cumming, Kjell Ahlstedt) Bug #763393 * signal: Allow sigc::signal<R(Args...)> syntax, like std::function, deprecating the sigc::signal<R, Args...> syntax. (Murray Cumming, Kjell Ahlstedt) Bug #763393
2016-04-122.8.0 (stable)adam1-1/+8
* Documentation: Mention use with CMake. 2.7.2 (unstable): * Deprecate sigc::ref() and sigc::reference_wrapper(), adding support instead for std::ref(), std::cref(), and std::reference_wrapper(). * mem_fun(): Deprecate mem_fun(pointer, func). Leaving just mem_fun(reference, func). Please let us know if you disagree strongly with this. * Make all operator bool() explicit. (A C++11 feature.) * Build: Remove some now-unnecessary configure checks. But please let us know if this causes problems for you. * Build: Update MSVC project. * Documentation: Improve the documentation of mem_fun(), making it clear that mem_fun() does not return a slot. 2.7.1 (unstable): * signal: Add a moving connect() method, taking an rvalue reference to a slot. * can_deduce_result_type_with_decltype: Rename the check() methods to checksize(). check() is a preprocessor macro in Mac OS X. * Temporarily undefine the nil macro, if it's defined. nil is a preprocessor macro in Objective-C++ and Mac OS X. * Correct the mem_functor<> declarations.
2015-10-15Update libsigc++ to 2.6.1:wiz1-40/+5
2.6.1 (stable): * Add back deprecated adaptors/lambda API to avoid an unintented ABI break. (Kjell Ahlstedt) Bug #755550 (Michael Biebl) * sigc::trackable: Move operations: Don't move the callback list (Kjell Ahlstedt) Bug #755393 (Tom Schoonjans) 2.6.0 (stable): * C++11: deduce_result_type: Simplify with C++11 variadic template. (Murray Cumming, Marcin Kolny) Bug #753612 * Fix the build with MSVC. (Chun-wei Fan) Bug #754082 * Update the website. (Kjell Ahlstedt) 2.5.4 (unstable): * slot_base::operator=(const &): Copy the blocked too, so the destionation is blocked if the source is blocked, regardless of whether the destionation was previously blocked, because this seems to be what we should expect. (Murray Cumming) * C++11: slot_base, slot*, signal_base, signal*, trackable: Add move operations. (Murray Cumming) * Update MSVC Projects, requiring at least MSVC++ .Net 2013 for C++11 support. (Chun-wei Fan) 2.5.3 (unstable): * Use C++11 "using" aliases to simplify code that uses type traits. (Murray Cumming) Bug #753580 2.5.2 (unstable): * Remove useless headers: sigc++/class_slot.h sigc++/hide.h sigc++/method_slot.h sigc++/object.h sigc++/object_slot.h sigc++/retype.h Some of these still have equivalents in sigc++/adaptors/ (Kjell Ahlstedt, Murray Cumming) Bug #752560 * C++11: Replace deprecated std::auto_ptr by std::unique_ptr. (Kjell Ahlstedt) * C++11: Use std::is_base_of<> instead of our sigc::is_base_and_derived<>, removing sigc::is_base_and_derived<>. (Kjell Ahlstedt, Murray Cumming) Bug #752560 * C++11: Use of range-based for loops. (Murray Cumming) * C++11: Use of the auto keyword. (Murray Cumming) * C++11: Use of nullptr instead of 0. (Murray Cumming) * sigc++/slot.h: Use a regular .h file instead of generating it from an .m4 file. Bug #752560 (Kjell Ahlstedt) * Visual Studio Builds: Move 2010 Projects to 2012 to support C++11. (Chun-wei Fan) * Use -Wformat-security and -Wshadow with --enable-warnings=fatal. (Murray Cumming) 2.5.1 (unstable): * Use (and require) C++11 (Kjell Ahlstedt) * Using C++11 lambda functions to create sigc::slots: Avoid the need for SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE. (Kjell Ahlstedt) * Remove the already-deprecated sigc::lambda (and sigc::group) API. This is an API change but should not be an ABI change, so it should only affect you when rebuilding applications, if you use this API. (Murray Cumming, Kjell Ahlstedt)
2015-02-28Update to 2.4.1:wiz1-20/+7
2.4.1 (stable): * A slot's functor is destroyed when an empty slot is assigned to the slot. (Kjell Ahlstedt) Bug #738602 (James Lin) * test_disconnect_during_emit tests that the slot is really disconnected during signal emission. (Kjell Ahlstedt)
2014-10-05Update to 2.4.0:wiz1-69/+172
2.4.0 (stable): Note: API/ABI is the same as in release 2.3.2. Compared to stable releases 2.2.x, the API has been broken regarding visit_each() functions. See the NEWS entry for libsigc++ 2.3.2. * Fix the test_lambda test case for MS Visual C++ 2013 and other C++11-compliant compilers. (Kjell Ahlstedt) Bug #734368 (Ryan Beasley) * Add a missing #include in limit_reference.h. (Kjell Ahlstedt) * Documentation: - Use doxygen-extra.css from the mm-common package. Requires mm-common 0.9.7 when configured to use maintainer-mode. (Kjell Ahlstedt) 2.3.2 (unstable): Note: The implementation of bug #724496 breaks API for some users, but it does not break ABI. Only users who have added their own visit_each() overloads are affected by the API break. Their programs will still compile, but there will be run-time errors, if they rely on auto-disconnection of slots. Updated instructions for users who implement their own adaptors are found in the description of sigc::adapts<>. * Replace visit_each() overloads by struct visitor<>. Add the test_visit_each test case. (Ryan Beasley, Kjell Ahlstedt) Bug #724496 * signal_impl::notify(): Don't delete signal_impl during erase(). (Kjell Ahlstedt) Bug #564005 (Alexander Shaduri) * Fix 'make check' with clang++ 3.4 and --enable-warnings=fatal (Kjell Ahlstedt) Bug #724496 (Ryan Beasley) * Fix test_cpp11_lambda for gcc 4.8 (Kjell Ahlstedt) * Speed up disconnection of slots. (Kjell Ahlstedt) Bug #167714 (Neal E. Coombes) * Auto-generate the ChangeLog from the git log for 'make dist'. (José Alburquerque) * Don't use __file__ in the FIREWALL m4 macro. (Kjell Ahlstedt) Bug #699168 (John Ralls) * Add the track_obj() adaptor and test_track_obj test case. Deprecate libsigc++ lambdas, sigc::group() and sigc::var(). Use C++11 lambda expressions instead. (Kjell Ahlstedt) Bug #672555 * Documentation: - Emphasize that signals are reference counted. (Kjell Ahlstedt) Bug #611941 (Jonathon Jongsma) - Mention std::function<> and std::bind() where appropriate. (Kjell Ahlstedt, Chris Vine) - Use DOXYGEN_SHOULD_SKIP_THIS consistently to exclude internal functions from the reference documentation. (Kjell Ahlstedt) * Windows: - Enable C++11 lambda expressions with MS Visual Studio 2012 and later (Ryan Beasley) Bug #733752 - Update MSVC_Net2010 (Kjell Ahlstedt) Bug #724496 (Ryan Beasley) 2.3.1 (unstable): * signal_base: Add blocked(), block(), unblock(). (Kjell Ahlstedt) Bug #153780
2012-10-08Changes 2.2.11:adam1-1/+26
* Fix comma operator in libsigc++ lambda expressions. * Added SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE. This allows most uses of libsigc++'s lambda expressions to be replaced by standard C++11 lambda expressions. * Use std::size_t and std::ptrdiff_t instead * Fix 'make check' with gcc 4.7. * Enable test_lambda in 'make check'.
2012-02-05Update libsigc++ to 2.2.10.obache1-154/+33
(while here, set test target.) 2.2.10: * slot_rep: Avoid access to deleted object in notify(), and test case. (Kjell Ahlstedt ) Bug #564005 (Alexander Shaduri) * Mention visit_each() in the documentation of sigc::adapts. (Thomas Rydzynski)
2011-03-10Changes 2.2.9:adam1-4/+10
* trackable: Avoid calling the same callback function twice, fixing some memory corruption. * Minor documentation corrections. * Fix the build with GCC 4.6 * Windows build fixes for MSVC++ .Net 2005 and 2010
2010-05-21Changes 2.2.7:adam1-2/+1
* Documentation: - Added main page text with doxygen. - Fix the functors Doxygen group. - Tutorial: Removed outdated marshallers section that had no working example.
2010-05-02Update to 2.2.6:wiz1-167/+150
2.2.6: * Slight documentation changes. (Murray Cumming) Bug #614741 (Armin Burgmeier) 2.2.5: * Accumulators: Allow return types that are different to the signal's. (Krzysztof Kosiński) * Documentation: - Disable collaboration graphs in documentation - Use non-blurry font for graph labels. (Daniel Elstner) - sigc::hide() correction: It always only hides one signal argument. (Michael Hasselmann) * Fix the MSVC++ build. (Armin Burgmeier)
2009-10-31Update to 2.2.4.2:wiz1-1260/+647
2.2.4.2 (stable): * Namespace sigc is now documented, in order to make large chunks of the reference reappear. (Daniel Elstner) * The shipped reference documentation has been regenerated using Doxygen 1.6.1, so that the document type is now XHTML 1.0. (Daniel Elstner) * The shipped Devhelp file has been generated with a newer version of the XSLT script in mm-common, so that documentation groups no longer appear as namespace prefixes in the keyword list. (Daniel Elstner) 2.2.4.1 (stable): * Reenable the per-class hierarchy graphs in the reference documentation. (Daniel Elstner) * Drop the custom HTML header and footer, and use the shared doxygen.css file from mm-common. (Daniel Elstner) 2.2.4 (stable): * New build system based on mm-common. The mm-common module is now required for building from the git repository, but not for builds of release archives. (Daniel Elstner) * The public reference documentation is now hosted on library.gnome.org. (Frédéric Péters, Daniel Elstner)
2009-06-14Remove @dirrm entries from PLISTsjoerg1-19/+1
2008-04-24Update to 2.2.2:wiz1-23/+30
2.2.2 (stable) * Added an include of functors/slot.h that was mistakenly removed during the 2.1 series. (Deng Xiyue) Bug #521418. 2.2.1 (stable): * Really fix the build with Sun CC. (Elaine Xiong. Bug #302098) 2.2.0 (stable): * Build fixes when using gcc 4.3 pre-releases. (Ryan Hill, Vladimir Marek)
2007-11-22update to 2.1.1drochner1-55/+5
This switches to the gnome-2.20 tree.
2007-09-21Rename libsigc++ to libsigc++1, and libsigc++2 to libsigc++;wiz1-37/+1365
(there's only one dependency of libsigc++1 left in pkgsrc).
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-5/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2003-07-15Changes 1.2.5:adam1-2/+2
* Partial Microsoft Visual C++ .Net 2003 (Windows) support * Exported extra symbols for win32 * Pedantic compiler warning fixed
2003-03-01Update to 1.2.3. This version is almost a rewrite of the previous 1.0.xjmmv1-55/+41
branch (incompatible with it).
2002-09-11Update to 1.0.4, provided by Adan Ciarcinski.wiz1-35/+36
* Changed include directory to $(includedir)/sigc++-1.0/sigc++ to allow parallel installation with sigc-1.2. Added an install-data-hook rule deleting the old headers. (Daniel Elstner) * Ming patch from cgustin@ibelgique.com (This is probably not complete, because the sigc_res.rc file was not in cvs - an emtpy file has been added.) Converted to buildlink2 by me.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum1-0/+54