libsigc-2_0-0-32bit-2.10.2-lp152.1.3 >  A ^?/=„1H/C̿zw%5Y,=*݋Urqu"9%[8=.]7RH:s ZS($ W+%с-Ȗl MGqa׽vV6;+WIck"\#yHAuDŷa^'_9D/x30](25uk_hV?Pύ?yuoޤ R'lFDMԌ`?u;@%2s?,ŷv\Hvc35f7595da0710fa38f31c256384de2c2679fd4e423e67c8ba36fda3a1bb1ead151ad49ecb2627b9727638bcb1010502e26e32877H^?/=„תOY֠n$U{5?,aSg1|"P%qH՚w3rx燬{\pA#4?#$d ' I 4Eekr     4<(;8D9:K> B G ,H 4I <X @Y PZ |[ \ ] ^ b c!~d!e!f!l!u!v"w"x"y" """# Clibsigc-2_0-0-32bit2.10.2lp152.1.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.^6cloud103f,openSUSE Leap 15.2openSUSELGPL-2.1-or-laterhttps://bugs.opensuse.orgSystem/Librarieshttp://libsigc.sourceforge.net/linuxx86_64/sbin/ldconfigf,^6^6415a9542fcddad8d5be5a8ba97cfae3079d42fa6e699f00da1639dc3a7bed665libsigc-2.0.so.0.0.0rootrootrootrootlibsigc++2-2.10.2-lp152.1.3.src.rpmlibsigc++2-32bitlibsigc-2.0.so.0libsigc-2_0-0-32bitlibsigc-2_0-0-32bit(x86-32)@@@@@@@@@@    /bin/shlibc.so.6libc.so.6(GLIBC_2.1.3)libc.so.6(GLIBC_2.4)libgcc_s.so.1libgcc_s.so.1(GCC_3.0)libstdc++.so.6libstdc++.so.6(CXXABI_1.3)libstdc++.so.6(CXXABI_1.3.9)libstdc++.so.6(GLIBCXX_3.4)libstdc++.so.6(GLIBCXX_3.4.15)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)3.0.4-14.6.0-14.0-15.2-14.14.1]s]S\&@ZXYXEVW$W|WbWbVJVVՄ@V=@VQ@V UUU@U@T@Bjørn Lie bjorn.lie@gmail.combjorn.lie@gmail.comdimstar@opensuse.orgdimstar@opensuse.orgjengelh@inai.dedimstar@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgdimstar@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgdimstar@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgzaitor@opensuse.orgbadshah400@gmail.com- Drop conditional libsigc++-std-c11.patch: No longer needed for any currently supported version of openSUSE. - Use make_build macro.- Update to version 2.10.2: + This release is identical to 2.10.1, except for: Reference docs generated by Doxygen 1.8.11. Hopefully it will show up at https://developer.gnome.org/libsigc++/stable/- Update to version 2.10.1: + signal_impl::clear(): Don't clear the slot list during signal emission, to prevent a segfault. And add a test for this. + slot_base::set_parent(): Create a dummy slot_rep if necessary. + Avoid compiler warnings from function pointer conversions. + Build: - Make --disable-benchmark work. - Replace the Visual Studio project files with MSVC NMake project files. - Add MSVC_NMake/README.txt for Visual Studio builds. + Documentation: - signal_base: Warn against deletion during emission. - Update links in README, configure.ac, libsigcplusplus.doap.- Modernize spec-file by calling spec-cleaner- Explicitly BuildRequire m4- RPM group reassignment - Drop --with-pic, we build no static libs for which it is meant- Update to version 2.10.0: + Fix silent builds (bgo#768797).- Update to version 2.9.3: + signal: - Deprecate slots(). - Deprecate emit_reverse(). + Benchmark: Update it and use boost::timer, and actually build it, but not built by default. + Build: Fix the build on MSVC++ 2013 and 2015 (bgo#767777).- Update to version 2.9.2: + Minor documentation improvements. + Some more minor uses of C++11 syntax. - Changes from version 2.9.1: + slot: Allow sigc::slot syntax, like std::function, deprecating the sigc::slot syntax (bgo#763393). + signal: Allow sigc::signal syntax, like std::function, deprecating the sigc::signal syntax (bgo#763393).- 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./bin/shlibsigc++2-32bit2.10.22.10.2-lp152.1.32.10.2-lp152.1.32.10.2libsigc-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-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protection -gobs://build.opensuse.org/openSUSE:Leap:15.2/standard/d6a04f85728306bbd68afab0f1f650d6-libsigc++2cpioxz5x86_64-suse-linuxELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, BuildID[sha1]=b92403893966b239561213932824f76c51112d59, stripped PRRRRRR R RRRutf-8ad2554b3e69d496bf1673d1ff7de119425a43caf0ca0ea95b6b290ab7fd55d30?7zXZ !t/g ] cr$x#*ʰaSKbCiEHѷ+JmAiRUPz#5k <8R`'1y'!9vw#{Yv|;h\5mD9+^@r W.Fݛ3uw9D`EYM`y -z 248*զgNn|ڕ=jCfPGK@>$6fܷ.w5~xgL'c=x܎U>I#ǃinSgZ6D:\| QVO_?*ˑ}[ZDe;S? hZ()   Q$Q+Wy1Ex t_2pR;-t:ڍ-y ^/}o.&{,=hhtyZde֌uW2w7II!L{fnbu/Cv&ؑ/O9^J =='nF\?m ", mjZ&Hݪj+|Q]C2= ؀ C{ߙWwr3 ʞIqpvf^C Jz~8^rIT{a{?|l"c3,h)A-Z}Nnv_pamJ~fxS2^7@3_oދˉR<ݩ^ W<>rb&.w/]-|}eIɥݭ_S}kBgfObcUnt*䋶 ˎҁN/>#DU {>IӤzj kTJA /TsڃQ/ՁY"Iih"Ws3&*O[iǿ}Wm>_цW[He`,OxxM↺LAҽ(;aKXHx'K/Gd8VƜ LCxRo ~gOt4Ts0hI܅*msU~wh Ȍ~Lnu8\`ĝ~z8ȣg;݅ɟm6N8a&gnqfC;ſʯ35_iNh%= j,zTeUjF҅o8 j)b~V@Ev yrg8җwtħ}!`Â.{kŒ9|ML-BыQ @JdׯʪD1s!vhIG_Ʒ@^VЁJpEO烩P \S_ ٩kH6d!4Nݱ#pk6MWutG7s)QhEBևyQ%k}W}W0еer,*¤k4vQw+#cx'&c,ꦔ}OUYzŚy!OE˔T!IXT0G b;hP @CDc.M N:p,4@ɡ/olGl c9 Eo{U_g0Jam6j Zo#h/0P#Z`-[#>F셐 #>ld3[鱓rz$), ~ApXȰ6)ʃa$H^7 ^sunW~s7E0h) .lZJE W]4sBE>8?v:%it*,?=7LX6#ѹY:a8Ι VƤEDiHB= " Mj*ANUӡ4̅ߡ9Mo}Q_ٲ6Q>nkl߯RwT !B^sEEХ >SKH͂J VgS0v?BftFz$PWȃc.2s#1PY> }qOūLp@%8 [C\ ]22qә-D} 9<x8^7N64Y]cs>+;?kPSëO0/LPV=Jg#r,f(@| EE" k8\6³ؽ)I7ARc27km_CG+R8S@h#!O?Ӄ8htvG'9+%3cҨ)h)=e6o m!ˈu񕝊_*(|}ݯ ɵ1`Et8jWk*'i/_eIJqԸ,P Z@Z(vR|L%nٽd>4Z^ ƒ=\_-AϮz<`d=7#2nB\VCVj t_S?/eEror$+NJ{w\{z5 XĴ`<ZN#IBבNkF 22n`$.\\ 5b| DbًJ\#O+]p(d@'խ4zҩ\N/s[Bj2挎.<|N-{Ϩ.jl;Tbwz?xpq_" d_, @쑗v!9' ^={2V/)NY%G Y5ەͷ$&+j0߯2_q^[`dZWU&_Щ T"~t9y1 p}+37}ƞ jO"I]Aس&}!ǁCm>e=ٶpr3/Uc/_̱V)1z!jJͅ`BʞzzCa舘47%>Z{2 5dmC ~>}Azr:K3;#@ɱ_4jV;ʋ]>uIxPU1Û-R}P7&@V"֛Oz67,w$bJ?{IG:4FS0$er,`֯f-G&bôN$Z%\D65zXGIY\APJjs)ڵ1iEHـosI{S6% %68<8pm!KWsQ9UeIi@t,dN0 x'{<\@Y@:|tgSXAkh:}b٥2`Lkm1dYPTo:L]ϲMT9u~[}tGxAQ9KBCh4}`×>Ld_9~-o#Hw^h, =Zc8/mdzKv톺/[h%gj+,uJ W-rf٬-Sl[tszW*VA8ԽwtsfxLtv[g<(٪֪"J7k҄'d{쫸|嘂b3֍u}a!H5Qk3 '=!Y0>T^(r c ;[阈p ^̭/g]\sa?ab&]g/\v ?OHZ hOS#j~C ~cxw_ - ~kLem|n!4!'{Ry{Ǝ5E,;5DCkE@<\olҎ(?(xnj_ARQ_mQFD LB ;D/^M0(Ǖ`yuk",X^3 n&vh2fwQdD j`0Yf(E7lY]!'ԉ$g CⷩD U 3yµ<% bmj.at@AKvRҽ|C8 L=L>h8Lft~"ޭK`+Пq )4{O7~_=_G⁊c^>!++o&UO'bo6YHSr_P@BǚckE. 'dv*%I|r ֗P:dJ<DSd!eZXYH`?? z+Y?&x~5t ӭmJH_E6-.B\M#W (ɖmrhI|ؒq.}uO24KbOB92|ON9~%mt?(d4d | \bt&L) Ii bh"#uD:P{[8~WOMTtEϖ-}[ )':ePi\:,͓ ]?K:|#[Y*=NҀ8@lpL"Ihc O]꿩\p 9 O< X>?<'~\P0*ੑ芻":?W[g>PEZ{®iOڦ[6M>> |} ̸/=^y]" mzY>Czʻ/4*۷䍀%|(_ORM$LT)i,3S#?oY2ՁxGjV_1<gN2ջg+G,#=%+ZhRRNX1Xڊ`U?vܺ0ռO᭶~ژ;>+Ӡ3QNhUꛦ`nK7}3"V80y q3FQĺj2 |m}hYO%ɺ655W@1fն2=en8~n['\o>;-yi1Q9_9š}!ixj}pb ?{'.LoFI!/JE7wXfx >Zxy}ʐ@WQܩ*=c&_}ǗB5HP)`)&,?Gڃq\WAt{50yRp/1!F5hHg¨CibY)eօ.N}#_#wfrMa)ǵR<RMns5t0FD5f&!^>'}ጢegߍ.3jɩʶ>km:=ꌖ" l~hco(pW?-FYE` Q_^fCyv@ ooMyכE ^/u@ޮpNC=ʚtJў%r%$%@Qx7i6Be, >2CryYYҤ-8+lE- gUN?-Ɍ%l9eZ8JI-ϟ:h!2 DֈB.ȶ YZ