ruby2.2-rubygem-sqlite3-testsuite-1.3.10-6.16>t  DH`pY_ԅ/=„ǩ})MP Gxv6+*ދ{cV `Z,e c6 c m4믽y t*x\7;sʹ_<^%DX95{;aT5OCH_ w4(W|LV)ls=\ L  }c8KX$Rhy"-8CxYvl$ϐ*T|;e7[!ڤ3ߪӘJ\)(5f04f73bf6521929805548bd303c61edf9288636S>Y_ԅ/=„@!DOlR{Q 59` _xkgwEQq\0w0"TU23a#:bPU+í/_&RP NVnLqG8W;H~%B_)0&Y-HXLK0.C#3H5XFnEhGiV0VR^c( (1_Vݘ(_)'i7)rGƵ_o>PuC&"h OPdj>9*l?*\d$+ 0 G| !(l     \,p5(R8\9:F%MG%dH%I%X&Y&\& ]&d^'b("c(d)e)f)l)u)0v)tw)x*z*LCruby2.2-rubygem-sqlite3-testsuite1.3.106.16Test suite for sqlite3Test::Unit or RSpec files, useful for developers.Y_scloud121openSUSE Leap 42.3openSUSEBSD-3-Clausehttp://bugs.opensuse.orgDevelopment/Languages/Rubyhttps://github.com/sparklemotion/sqlite3-rubylinuxx86_64MF'1u<!A큤Y_PY_PY_PY_PY_PY_PY_PY_PY_PY_PY_PY_PY_PY_PY_PY_PY_P6ac60370f12cac7ba7061db2586c369bdde9184783030687cceb0ed51590a10347ee9ec250fbbe9d376a68ee5817bd7b3035121ae17a2319765d5a46061a08eed3ac956c8cc8cf1f8ac0e68b6ce02e225adca5c2b88859760f60a2218c2c0ed505fdabd630e11a7872272a229e3281a8ba32f53d0f1de0b11c00f4d3d8e7e0ae5a3fe5bc3c3ac4292a61e4dfa2004544aa8bf629ab8ff8abbb5066eb8fe6cf71ead4413cf628023e4dc4ac334fb01ed39c5775bc4fc1bf8d9a80a92863c5e41af675fa416d59c76265f3608eee5f5d4615d775d7fab3323041778e1c07ae7d4133a53e59252906d50f7afa19270855fd6fa25558ba159f521a72bfd82f6a28acrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrubygem-sqlite3-1.3.10-6.16.src.rpmruby2.2-rubygem-sqlite3-testsuiteruby2.2-rubygem-sqlite3-testsuite(x86-64)   rpmlib(CompressedFileNames)rpmlib(PayloadFilesHavePrefix)ruby2.2-rubygem-sqlite3rpmlib(PayloadIsLzma)3.0.4-14.0-11.3.104.4.6-14.11.2Tء@TT@TAT=@S$@R@Ry@RC@P@O[@O}@O8@NNP@M>LJ@coolo@suse.comtboerger@suse.comcoolo@suse.comadrian@suse.decoolo@suse.comcfarrell@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comfcastelli@novell.commrueckert@suse.demrueckert@suse.demrueckert@suse.de- updated to version 1.3.10 * Enhancements: * Windows: build against SQLite 3.8.7.1. Closes #134, #135 [Hubro]- Removed rpmlinrc file because the warnings have been solved- adding rpmlintrc as source- adapt to new rubygem packaging style- updated to version 1.3.9 * Bugfixes: * Reset exception message. Closes #80 * Reduce warnings due unused pointers. Closes #89 * Add BSD-3 license reference to gemspec. Refs #99 and #106- license update: BSD-3-Clause See LICENSE in data/- use new macros- updated to version 1.3.8 * Enhancements: * Windows: build against SQLite 3.7.17 * Bugfixes: * Reset exception message. Closes #80 * Correctly convert BLOB values to Ruby. Closes #65 * Add MIT license reference to gemspec. Closes #99 * Remove unused pointer. Closes #89 * Internal: * Backport improvements in cross compilation for Windows * Use of Minitest for internal tests * Use Gemfile (generated by Hoe) to deal with dependencies * Cleanup Travis CI- updated to version 1.3.7 * Bugfixes * Closing a bad statement twice will not segv. * Internal * Unset environment variables that could affect cross compilation.- update to 1.3.6 * Enhancements * Windows: build against SQLite 3.7.11 * Added SQLite3::ResultSet#each_hash for fetching each row as a hash. * Added SQLite3::ResultSet#next_hash for fetching one row as a hash. * Bugfixes * Support both UTF-16LE and UTF-16BE encoding modes on PPC. Closes #63 * Protect parameters to custom functions from being garbage collected too soon. Fixes #60. Thanks hirataya! * Fix backwards compatibility with 1.2.5 with bind vars and `query` method. Fixes #35. * Fix double definition error caused by defining sqlite3_int64/uint64. * Fix suspicious version regexp. * Deprecations * ArrayWithTypesAndFields#types is deprecated and the class will be removed in version 2.0.0. Please use the `types` method on the ResultSet class that created this object. * ArrayWithTypesAndFields#fields is deprecated and the class will be removed in version 2.0.0. Please use the `columns` method on the ResultSet class that created this object. * The ArrayWithTypesAndFields class will be removed in 2.0.0 * The ArrayWithTypes class will be removed in 2.0.0 * HashWithTypesAndFields#types is deprecated and the class will be removed in version 2.0.0. Please use the `types` method on the ResultSet class that created this object. * HashWithTypesAndFields#fields is deprecated and the class will be removed in version 2.0.0. Please use the `columns` method on the ResultSet class- update to 1.3.5 * Enhancements * Windows: build against SQLite 3.7.9 * Static: enable SQLITE_ENABLE_COLUMN_METADATA * Added Statement#clear_bindings! to set bindings back to nil * Bugfixes * Fixed a segv on Database.new. Fixes #34 (thanks nobu!) * Database error is not reset, so don't check it in Statement#reset! * Remove conditional around Bignum statement bindings. Fixes #52. Fixes #56. Thank you Evgeny Myasishchev. * Internal * Use proper endianness when testing database connection with UTF-16. Fixes #40. Fixes #51 * Use -fPIC for static compilation when host is x86_64.- patch license to follow spdx.org standard- update to version 1.3.4 * Enhancements: - Windows: build against SQLite 3.7.7.1 - Windows: build static binaries that do not depend on sqlite3.dll be installed anymore * Bugfixes - Backup API is conditionaly required so that older libsqlite3 can be used. Thanks Hongli Lai. - Fixed segmentation fault when nil is passed to SQLite3::Statement.new - Fix extconf’s hardcoded path that affected installation on certain systems.- update to version 1.3.3 * Abort on installation if sqlite3_backup_init is missing. Fixes #19 - switched to "sqlite3" instead of "sqlite3-ruby" - additional changes from 1.3.2 * SQLite3::Database can now be open as readonly db = SQLite3::Database.new('my.db', :readonly => true) * Added SQLite3::SQLITE_VERSION and SQLite3::SQLITE_VERSION_NUMBER [nurse] * type_translation= works along with Database#execute and a block * defined functions are kept in a hash to prevent GC. #7 * Removed GCC specific flags from extconf. * SQLite3::Database#type_translation= will be deprecated in the future with no replacement. * SQlite3::Version will be deprecated in 2.0.0 with SQLite3::VERSION as the replacement. - additional changes from 1.3.1 * Custom collations may be defined using SQLite3::Database#collation * Statements returning 0 columns are automatically stepped. [RF #28308] * SQLite3::Database#encoding works on 1.8 and 1.9 - added sqlite3-1.3.3_no_stupid_paths.patch: the extconf.rb was adding some stupid paths to the linker cmdline. the patch removes those entries. patch applied to gem itself and rebuild the gem. - split out doc and testsuite - updated rpmlintrc to a less stupid version- update to version 1.3.0 - Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove] See API_CHANGES document for details. This closes: Bug #27300, Bug #27241, Patch #16020 - Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse] - Added support for type translations [tenderlove] - Added API to access and load extensions. [kashif] These functions maps directly into SQLite3 own enable_load_extension() and load_extension() C-API functions. See SQLite3::Database API documentation for details. This closes: Patches #9178 - Corrected gem dependencies (runtime and development) - Fixed threaded tests [Alexey Borzenkov] - Removed GitHub gemspec - Fixed "No definition for" warnings from RDoc - Generate zip and tgz files for releases - Added Luis Lavena as gem Author (maintainer) - Prevent mkmf interfere with Mighty Snow Leopard - Allow extension compilation search for common lib paths [kashif] (lookup /usr/local, /opt/local and /usr) - Corrected extension compilation under MSVC [romuloceccon] - Define load_extension functionality based on availability [tenderlove] - Deprecation notices for Database#query. Fixes RF #28192 - Added support for type translations [tenderlove] - Allow extension compilation search for common lib paths [kashif] (lookup /usr/local, /opt/local and /usr) - Corrected extension compilation under MSVC [romuloceccon] - Define load_extension functionality based on availability [tenderlove] - Deprecation notices for Database#query. Fixes RF #28192 - Complete rewrite of C-based adapter from SWIG to hand-crafted one [tenderlove] See API_CHANGES document for details. This closes: Bug #27300, Bug #27241, Patch #16020 - Improved UTF, Unicode, M17N, all that handling and proper BLOB handling [tenderlove, nurse] - Added API to access and load extensions. [kashif] These functions maps directly into SQLite3 own enable_load_extension() and load_extension() C-API functions. See SQLite3::Database API documentation for details. This closes: Patches #9178 - Fixed threaded tests [Alexey Borzenkov] - Fixed "No definition for" warnings from RDoc- update to version 1.2.5 * Check for illegal nil before executing SQL [Erik Veenstra] * Switch to Hoe for gem task management and packaging. * Advertise rake-compiler as development dependency. * Build gem binaries for Windows. * Improved Ruby 1.9 support compatibility. * Taint returned values. Patch #20325. - fixes missing license file (bnc#549261)cloud121 1499452531 1.3.10-6.161.3.10-6.16testhelper.rbtest_backup.rbtest_collation.rbtest_database.rbtest_database_readonly.rbtest_deprecated.rbtest_encoding.rbtest_integration.rbtest_integration_open_close.rbtest_integration_pending.rbtest_integration_resultset.rbtest_integration_statement.rbtest_result_set.rbtest_sqlite3.rbtest_statement.rbtest_statement_execute.rb/usr/lib64/ruby/gems/2.2.0/gems/sqlite3-1.3.10//usr/lib64/ruby/gems/2.2.0/gems/sqlite3-1.3.10/test/-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/f1797a3ca0872fcabebf3ef0f4a2c158-rubygem-sqlite3cpiolzma5x86_64-suse-linuxdirectoryRuby module source, ASCII textRuby module source, UTF-8 Unicode textvf:P +=?p] crt:bLL'!n!dIks=2T8mk^MpyW _ Qgv{ۂoĘCXp1gwHE܎ɲ> )אM[cBW{rD)jjUj q!dWhWR!._$_9 BGlUA2*kԸ,aMQ*<h9]P0UBS3敿oWJ1|W~vxb\Mx-Mo GM'Yg2qd5LiWgp5 N)f.1|h .6P{Hb6Zbj!d~3\tL0`>;a;,rZ3;k{XsMT(h %N$|!i,99V9z;AL.nd%U#p qmS$`h p6rh*]RO>x}&ͱ8d1TUcmL5J( bCF ؒPe&FsrFBIGxOލO`(xsl+Ew+e־cZAFt:^tF*X ^ٞP{ķ.atoc)U"u B&y-|cQ AgJ"T,FOY-unjVʶ=gcq\ÙB c\KƩryq ;X}6}!{s:QŽkCZ.L0~ƚ/aђB&QE8f%X \`ͮ ema,{2\{I]}q3R,8?r mdERsQxx=3Aukp"rǞ [_mhc+=XkM?!>.)Ъ#7}h}O%~*(O+RFA L½M2[WN` | +gYJ9^LDZBAko4[8TtJ9= 2@khYq.ݑ%@ r0ED'/ĈO'4AtLDdTc4(ц J5c2t 'gA~(\ٺ5!Abu..?q >_ + ۛQ%]:RHE6Y:nv`̩̈́gT.?#Ps24(%L6ACU:xC*:8l{aLB;~7<=_T1G'7sB,,f$q~sByQ|j]&@V+DjcV vsptAj$cL*>+< K[/x݀8!P]$A0U}#RөN<0Xri ̤VwɽdS1ej]uOnJiիٰvا&ˌ^2h͈V{y['C..DL^QFSH(pyU{|ܑjU+nk\fV93:!>r00ON$Z݅^T#=  eUm{)5̡_eщ7(Yx= #)}yDP֬NrU! _AjM*uSKiwk٦s!͒ƐYV$QiɖC ?$NWa=ç r)zU:QȃUqy1k' "T*HO-b4_+6z'#./pzLٰa7&2qzm TE'cυ˼'b͙fJ<<(aد( |ǽ )ƐuB}}^ѩ%[5,Hָ1vt,0vUG;AIFk욚lsxnrxX7]鐆J7N"{ pz\K"6}\q+I G`!d6%KZ( /# ]NT_wOQ`N%,PV^#iEkxc鯢qmZcSgy~O2u`ސ6YzsbʯER%X^z?e C}2Ng޲'vu,D 4i JqcZȮ*]\K-(=vMTb:cGԸR=W#:)c◾_`@ 0ߝ|~"͖m( nUiS 4>( R3A&=V3b+__LU0$G"SNid`{舭xb <*;z&[ :*>uFX}M#8=GInLXa[еO8{º-i˹/8g2d>1M)Ć!T{8}7M >X[kO~لfS'p*Y.n(mGTSзՆ^ W.ep2 xܲ?zr ɗjJcqI%VKZžڮֽj[)j[6lQqslX0>p2%MUUS<:y˾ &cPlCR%7%x08^;P $fPi.zXكZ+,A0o2g[&;kʎQp[W_%ȶ[_mSW,Mgcai3H0!s#͘b p$A1ڡE8y4H:Slʑ1VG䵗/lXQpuc~j=|[]@ _` ᷚ bkD Q9cmEJ/ 8P>ȼxid+q[?n_R<_nǟꅒu4hCL TiX4J _a.ᗍPj4[n?dNJ7 h<"`S_^2p?3>y ap\dǝ8+i RS@"qA`-mKV6`7͇HG "|76Bp .{"4^ `Dz XyJS{a:'N X`LMb :+N#7A~[_MJӪzTGSN){5-Ea7JbOB/nH# `CpR8.HA0v7ݴ-pӆ\D3`du`N lk[Zs31z\bG|vKv!Ƃ*A(S"ro'ξN0Q:')F-&se#qb.-IYuW@P؋h SF~ J$Ǽ7CgQrx,j>10K,=eo$"~teˮsX_ ʶ_{]D-DfHxTRƀcCm"_;j QXэg⇉0;İ(_a d:Gԋ'Ҕߩ lNJk"c >IH]e2&Uܬ@@ujvU^tŠɜMf>N\EIIɉv)}|ogrG߰GD-kxna[g͋ ݍn'0Q`(WV P`SΪK<}Bq 'V:7α\ym&w1L'Yhm*רgbprzl0ÊNWشJ+4=[4[9rTB; ߯c? d|zi%Eg.kaqwz?n7❖ϫ=ԇܲ!APШ=[g|?x|q1zr!f_3* .ي1B>D)LExiP HA, nJnh*r>%6ICi4 2K.aRD@-Gr=ǐ}@<6둘N,aijnse,:E-6k H ǿR[xdIYj)80L+j}ƪWﺌٕ$jn,Gih杨ӉRj7#y@L寃D.=<'T7F?(3.@8RFf2As$#coJx(+ܱGc9pXu-Pã(W:ј5mj1^K7>Q{hJAv.:Urm56Nkqkrh~SeJbN!! >NF6,jWAEKxy¦R . :vV{-Q1^jY6ٛJ% H#Rqp01| (y>26C]4 2~ HdkJK&6h6]jkTNҸ[j0ObaT61p(%VÅLh\Zhiƾ$z=*y29昵 IZ0/BAF$cSgx5fu.< 91i Ǡ-6/}ӓγӸ<_U1eנmM} +BK#'0T (*'h0%ckZ}tj*,B?Ȕ ƽ]+ӇR%6WJp)p!ru?0'sUg Cy8ffz4$dٚsߙa nrvs><8P0Ulr?N0vs,N )kת2dۘKf?^`LGFP?UTG/57' +JSW퓄yx#2V|,[3 8ݿz23\i64V"aUgv':f#ŠDH& euf8ledM5B='B0lG$   uJvOπkƈE8:8ʊ;O@Č0j(_ܜ{ u{ (\)EE0.5U&RA>0c 7IwJׁ)6 _XԵ?5;4JW?"\{ˠCP6f})r_nFP)3NQJptr'4s:@c]^|q6J/>~0NQQ&T*ӄ> S?,?ԫN++G]\sntg& Ya]'G|8V~צ'<]1w/EE~ʔxc/Xh+zRf % w0\)ت-q}{y~ݙy5 `D6? ]]d\R 'm#U>v.*bmvL *j oSpkczg9SƱ/\ *n&5I`qLnrC^(GeIJI5ǖ@ (  1hQTdk;XHb=J͝Zy(_?MWw7@8kgBcD0+Mհ, E[0Mϗ6j_;]h|==[.)Wj)/ ^HØAHj5 َzs{W yCiI~~|$?,gx]D!9Q!EYthbӤ5 VVPU @]|/)跹5')W9mu1!ݍ#yz#,{J{h I&%;EBֵu2E[8ȎZuGGɺb1\ w59x <.;eh_"_xgΤةc wh*%PO pJ;(x s_NoaӠFX$cXFV/0UӀ6<h:f{m[~" a;gqMlu&J\K&2ڪ7K/Լ#9pS/k_qĖm8L .w;; J$BJgIh