libsigc-2_0-0-32bit-2.8.0-4.3>t  DH`pY;ซ/=„X &| zTl9PY Ƒ=McNE459#Ҹ[Pj=/l?/\d  B  #4TZapx |    X  c (89:7>,B,G,H,I-X-Y-Z-0[-4\-<]-D^-jb-tc.d.se.xf.}l.u.v.w/0x/8y/@Clibsigc-2_0-0-32bit2.8.04.3Typesafe Signal Framework for C++This library implements a full callback system for use in widget libraries, abstract interfaces, and general programming. It is the most complete library of its kind with the ability to connect an abstract callback to a class method, function, or function object. It contains adaptor classes for connection of dissimilar callbacks and has an ease of use unmatched by other C++ callback libraries.Y;cloud116fDopenSUSE Leap 42.3openSUSELGPL-2.1+http://bugs.opensuse.orgSystem/Librarieshttp://libsigc.sourceforge.net/linuxx86_64/sbin/ldconfigfDY;Y;e81f50de05ef12280a41fc258eb54097libsigc-2.0.so.0.0.0rootrootrootrootlibsigc++2-2.8.0-4.3.src.rpmlibsigc++2-32bitlibsigc-2.0.so.0libsigc-2_0-0-32bitlibsigc-2_0-0-32bit(x86-32)@@@@@@   /bin/shlibgcc_s.so.1libgcc_s.so.1(GCC_3.0)libstdc++.so.6libstdc++.so.6(CXXABI_1.3)libstdc++.so.6(GLIBCXX_3.4)libstdc++.so.6(GLIBCXX_3.4.15)rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsLzma)3.0.4-14.0-14.4.6-14.11.2WbVJVVՄ@V=@VQ@V UUU@U@T@TSvSہ@P@P`K@N-ZM?M@L@LI@K@K@K@Kf@JJJu@zaitor@opensuse.orgdimstar@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgdimstar@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgbadshah400@gmail.comzaitor@opensuse.orgdimstar@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgdimstar@opensuse.orgvuntz@opensuse.orgvuntz@opensuse.orgismail@namtrac.orgvuntz@opensuse.orgvuntz@opensuse.orgdimstar@opensuse.orgcoolo@novell.comvuntz@opensuse.orgjengelh@medozas.devuntz@novell.comvuntz@novell.comdimstar@opensuse.org- No longer apply libsigc++-std-c11.patch for Tumbleweed, not needed anymore since GCC 6.- Update to version 2.8.0: + Documentation: Mention use with CMake.- Update to version 2.7.2: + 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) (bgo#763215). + Make all operator bool() explicit. (A C++11 feature). + Build: - Remove some now-unnecessary configure checks (bgo#762065). - Update MSVC project. + Documentation: Improve the documentation of mem_fun(), making it clear that mem_fun() does not return a slot.- Update to version 2.7.1: + signal: Add a moving connect() method, taking an rvalue reference to a slot (bgo#756484). + can_deduce_result_type_with_decltype: Rename the check() methods to checksize(). check() is a preprocessor macro in Mac OS X (bgo#759315). + Temporarily undefine the nil macro, if it's defined. nil is a preprocessor macro in Objective-C++ and Mac OS X (bgo#695235). + Correct the mem_functor<> declarations.- Add libsigc++-std-c11.patch: Add -std=c11 to CFLAGS in the .pc file. This allows other packages building against libsigc++ to be aware of the C11 requirement we bring. libsigc++ itself checks for the availability during configure, so it is safe to pass this requirement on.- Update to version 2.6.2: + slot: Handle auto-disconnection when a slot contains a slot (bgo#755003). + slot and signal: Correct move constructors and move assignments (bgo#756484). + trackable, slot_base, signal_base, connection: Add some noexcept specs (bgo#756484). + trackable, slot, signal: Remove noexcept from move operations (bgo#756484). + slot and signal: Add missing move constructors and move assignments (bgo#756484). + signal_impl: =delete copy and move operations (bgo#756484). + typed_slot_rep: =delete unimplemented copy and move operations (bgo#756484). + slot_rep: =delete copy and move operations (bgo#756484).- Update to version 2.6.1: + Add back deprecated adaptors/lambda API to avoid an unintented ABI break (bgo#755550). + sigc::trackable: Move operations: Don't move the callback list (bgo#755393). - Changes from version 2.6.0: + C++11: deduce_result_type: Simplify with C++11 variadic template (bgo#753612). + Fix the build with MSVC (bgo#754082). + Update the website.- Update to version 2.5.4: + 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. + C++11: slot_base, slot*, signal_base, signal*, trackable: Add move operations. + Update MSVC Projects, requiring at least MSVC++ .Net 2013 for C++11 support.- Update to version 2.5.3: + Use C++11 "using" aliases to simplify code that uses type traits (bgo#753580).- Update to version 2.5.2: + 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/ (bgo#752560). + C++11: - Replace deprecated std::auto_ptr by std::unique_ptr. - Use std::is_base_of<> instead of our sigc::is_base_and_derived<>, removing sigc::is_base_and_derived<>. (bgo#752560). - Use of range-based for loops. - Use of the auto keyword. - Use of nullptr instead of 0. + sigc++/slot.h: Use a regular .h file instead of generating it from an .m4 file (bgo#752560). + Visual Studio Builds: Move 2010 Projects to 2012 to support C++11. + Use -Wformat-security and -Wshadow with - -enable-warnings=fatal.- Update to version 2.5.1: + Use (and require) C++11. + Using C++11 lambda functions to create sigc::slots: Avoid the need for SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE. + 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.- Update to version 2.4.1: + A slot's functor is destroyed when an empty slot is assigned to the slot (bgo#738602). + test_disconnect_during_emit tests that the slot is really disconnected during signal emission.- Update to version 2.4.0: + Fix the test_lambda test case for MS Visual C++ 2013 and other C++11-compliant compilers (bgo#734368). + Add a missing #include in limit_reference.h. + Documentation: Use doxygen-extra.css from the mm-common package. Requires mm-common 0.9.7 when configured to use maintainer-mode. - Drop libsigc++2-includes.patch: Fixed upstream.- Add libsigc++2-includes.patch: Add an include in limit_reference.h.- Update to version 2.3.2: + Note: The implementation of bgo#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 (bgo#724496). + signal_impl::notify(): Don't delete signal_impl during erase() (bgo#564005). + Fix 'make check' with clang++ 3.4 and --enable-warnings=fatal (bgo#724496). + Fix test_cpp11_lambda for gcc 4.8. + Speed up disconnection of slots (bgo#167714). + Auto-generate the ChangeLog from the git log for 'make dist'. + Don't use __file__ in the FIREWALL m4 macro (bgo#699168). + 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 (bgo#672555). + Documentation: - Emphasize that signals are reference counted (bgo#611941). - Mention std::function<> and std::bind() where appropriate. - Use DOXYGEN_SHOULD_SKIP_THIS consistently to exclude internal functions from the reference documentation. + Windows: - Enable C++11 lambda expressions with MS Visual Studio 2012 and later (bgo#733752). - Update MSVC_Net2010 (bgo#724496).- Update to version 2.3.1: + signal_base: Add blocked(), block(), unblock(). (bgo#153780).- Update to version 2.2.11: + Fix comma operator in libsigc++ lambda expressions (bgo#342911) + Added SIGC_FUNCTORS_DEDUCE_RESULT_TYPE_WITH_DECLTYPE (bgo#672555) + Use std::size_t and std::ptrdiff_t instead + Fix 'make check' with gcc 4.7. + Enable test_lambda in 'make check' (bgo#669128). - Clean spec-file using spec-cleaner.- Update to version 2.2.10: + slot_rep: Avoid access to deleted object in notify(), and test case (bgo#564005). + Mention visit_each() in the documentation of sigc::adapts.- Update to version 2.2.9: + trackable: Avoid calling the same callback function twice, fixing some memory corruption (bgo#589202) + Minor documentation corrections + Fix the build with GCC 4.6 + Windows build fixes for MSVC++ .Net 2005 and 2010 - Drop libsigc++2-gcc46.patch: fixed upstream. - Change libsigc++2 Obsoletes from <= to < now that we have a new upstream version.- Add libsigc++2-gcc46.patch: Patch from upstream to fix compilation with gcc 4.6- Update packaging to use the shared library packaging policy: + Create libsigc-2_0-0 subpackage. + Add Provides/Obsoletes for libsigc++2 to libsigc-2_0-0. + Update baselibs.conf accordingly.- Update to version 2.2.8: + Nothing interesting. Just a small change for library.gnome.org.- Update to version 2.2.7: + Documentation: - Added main page text with doxygen. - Fix the functors Doxygen group. - bgo#417924: Tutorial: Removed outdated marshallers section that had no working example. - Changes from version 2.2.6: + bgo#614741: Slight documentation changes.- buildrequire pkg-config to fix provides- Update to version 2.2.5: + Accumulators: Allow return types that are different to the signal's. + Documentation: - Disable collaboration graphs in documentation - Use non-blurry font for graph labels. - sigc::hide() correction: It always only hides one signal argument. + Fix the MSVC++ build.- Package baselibs.conf- Update to version 2.2.4.2: + Namespace sigc is now documented, in order to make large chunks of the reference reappear. + The shipped reference documentation has been regenerated using Doxygen 1.6.1, so that the document type is now XHTML 1.0. + 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.- Update to version 2.2.4.1: + Reenable the per-class hierarchy graphs in the reference documentation. + Drop the custom HTML header and footer, and use the shared doxygen.css file from mm-common. - Simplify the packaging: we were doing complex things for documentation, that are really not needed; no need to package the tests either.- Update to version 2.2.4: + 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. + The public reference documentation is now hosted on library.gnome.org/bin/shlibsigc++2-32bit2.8.02.8.0-4.32.8.0-4.32.8.0libsigc-2.0.so.0libsigc-2.0.so.0.0.0/usr/lib/-fomit-frame-pointer -fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector -funwind-tables -fasynchronous-unwind-tables -gobs://build.opensuse.org/openSUSE:Leap:42.3/standard/b77a51d43ff307391fe15213883316d1-libsigc++2cpiolzma5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=f1d9f8aba86b10b478185837ae8b8da6c0110fa4, strippedPRRRRRR?0] cr$x#̢o]ܚ6U~ђ/z,a?@d!q]pq' ^2zvRytםv[:ksUeXum1l5wo(P^ougVBbytd䂟1 /jH8f>ky]ŝ%EJ78Ͷ.4U?5s3:ZF)t^D%\9=r\6AۧV[ͧv,AF b]yAOXBg=Z_hbͼlS#0Z/U:Yk{Ucc>Oy`,x >&k#kJoQ`BaC,peVq\ї]m֠ME3D\<|nw<` Ă{a!_cz5I2v S[wK00*M4&?qmjNXl*Ac:)_p J?rTKy"Жi)3 qǥi oq !d}`Kzk^%Yz_[1%Po#oLYG8~?V.Cll{wQ6吲(۝m`f ' GP6 [=&D7ų&ۺ]^"B@[8jz:_e8vht:q͕h?[Rm4XC9kjB^Ec$X̿KAFdX7100 1z(F&ً컏GsTrI& w"<$>@*<ߦaV$oԁeN?q:/ro\m6B&, ʜ!9%\h D6pxX ć"iY Spf;xÜ6Xߚq9d ^f].u? e1 1^),ED\}i~O jt^-> 9>ϫNMO:&8lf]eO$6ګҼPo HG PLSN5:aP(jy?Ua>1-x%E%7kE_fl{j\Iy$ȦH'\Ⱈ%G;".i&lw`~XKym[5jLTzϼ L4F 1oTyJb ]Ѵ Z U0PLuqՊjM*%T{_J_1u7z*!^tw4|8.D缡Hxp;+6>NB`]i ceYhʈv͵n<Vˤպf,X6{§x W٬mŢ#RLvG[_Y'"T+|r*f]E"vʥBr4"NfMƯ.E+ɼF!l)>gt [ve# B>Un[H`KDloX 3 z$3|O$oRA-!`Uhߴ\_gռAG %d6/L!Hcل> a$<$BoCb>l__ß W}Wɕ$oăy77C`z-0F^r#xZ/֦+Jz[uT-j9IgGQJ1F[9c{aJZh6*T }!Gfbe- p>JI7Yqñsu.gZQ8̹ }5p52ΨB Ud~d˼+utV MxʺcsԖS*f1X[PF(BÃ|qWM~:vʺbLE~xqxQv`c *-kT_b] vl)yjvyېU@ jԗWZ8aMҍ c':PSmQeF<<Wľm{=Na]صM7ȇ48y:_5}^t=?5 " m1j$M1\aqEP'{Te wF{~k GKOF&Qi5t -7&ߥd:{?qj?y6.U `wrs9k @R?Ug|Ƣϭ?x-ѹv u.c UաUkܾH CSUCz5q שi: їRUۋ&/7, hN MaWP09%ͫhsS [4n_|:rT0 uXTkXEGXԣVſh&]HփN<Ėɣ0U@~bj*w!D?^kG`/nd%8>}.E~5\8:ahEj^{_m2#K=Y 1NO$v=bL9|g~TL1@}ǽ u7WnZ]0DW3>O C%&JݠazQq:֑>Erj4=zoxh(7'MS:Dc=3GޤX^Jӗ.VrL]o^q]m?YFW#olMCzqr,n;*O]E a bC8g(|v9(Ys?JPݺA[PjJ5>Z] vcUZiW(:<9ɫ०l(^sGY"i&<Fޡg"VtĜW#?Kp" ~tk;LrI Ἀޮ h// Ō D$@AT,Pbxc, E5htS&=l!PpīHaIZ`|-GG31lNeiƿV`,{9 |->v@5֮B`D蹫Épw֓@GC|R!C\N}\:LUlT^x6`)#lYЪAڼQ sTwBF!"`gvOXɧ&peb@r%DRz[r4tʍQh9|V6nU[OK(Ϗ(.m5b錫GpPQPeQ OCֻB.=ʦ)#A9@<;{ɡY5pMo k<*R窴:8nT i"PAN&Vܢ2'Й)w5mu\.4ϭR):6ы*Ff5P+<֬TiVkU-0ce>4.}!g%kv'c b?d4/SJn'@mHh[&8&4>0)ݝo`KcQ _;n̘{vi o1WߨIc? T&2Zwse\nQ&eQ5AKg,s'0X+b^b\D%Y>t,&g6twOc.DC/LijpR~l|ztn4 KKfc;oqe/'^z[<ɻCELW }ew7RGB%dp:Tf?Ԡc)Jw%ɹ4D|"[ˁxETvYIm5q/z =F<,O 1m_J+.|$zn({cИ&]U ;:P<ҬԁŊ<4})b3$?כ3-w mn#i!5.*pV;IX⯎moz:QiFbW=!;M O)G,w`eGv,>R<^R n-, X8Gg>ЪF*{iXL]#Tkt"3'.s ){o$Z΁.Zg$1-mуY.Wl\꩐9@t>(.'5&w;ߜ($Zx>=G3@[Y ҷV>D%`ĂVL[Ho-|g~ 搷'/ػ_v!w o~*@%_/dIf 4Zc+uXÞb <(-t:B[>u+B|hnx ;x.y,9UʼnӡFԫ%Ų?7:-ߒyS/P;-#?ssl1Kugh.3MȠ-6 nb"{"=D:)KǥyEi5'pW_),Z% *[HrOedq$Y^v=:(Qض=ǮoaQH>^nVRjFg^<ÊO.-~ BR>8c mTU$/n6?O4 ́ZZyB6[^a8kko)}"ǰʂ`o4m:VU@߶Brf_/%9 p\2pj*Yd͵oiϷ-H[o3Ư5;8K W!h .}OɁ}?bo r "?x* Jbs O[3ehRK:|^wLdG8 ycuh)8+Mf%+m/<5tyBHTO]M]jS1t N% C9հzn{SJ2Ks\纈%S_PFܢEdE{TZ'˵4m\~ [lDАo_$:M{kuUMt-q)]\D߮~"B0ZMUGhg8;uXtTw;3UOSf^cʲTr_gOR8¡en,}IynP"_Z~K1!Pև}`Xjw`'RE间>ƧmYǩ2E%'إ#n#e]FΐoiG;4,11_`&'=" t\P6S{`6| z@tPpvfe"(֘{44"/6E-Xu❶iNOc(P{15'k]Yib?S`mԱjܐ1V就rvQUP;><"[N7)\*+x T꒏`^4ПW*Q`cԅ차L:Isn`hzSutoՉ]m+>ځ^&=s^'˷t٦?TC.#B8,j1 c!-q \:CBzAL`a:~AzibW٫LC9"C' BJ&uJT yU ifX*{\ ɹM]8Y {*;DhnwZhg8t%u/.+jzp⵵ڂ^cULv *ׅT 2W({өY>?!%h⹌NN(nsQQ1jV|H?jh$W<`5J Q)\fSyԾ:h`9ߢR|ȏ&` ?GB=w>SYߙ$({5@vtSʒպZ i/)Րk9,_z4F5k}C\DfnOl4_t"mֆ0@t~aR{tf 4GTruƌ{