ruby2.5-rubygem-sexp_processor-testsuite-4.10.0-bp153.1.16 >  A `!M@eeeeBYw/q&u%0I HĠ ~[_p:iis>+V*C$A^$Al/||`/5+I_!BWH5pxgCz}K@ Im3sk'gZH(`_V> viWjģWH o3{X3rReA,Q`ŲE.1 QjtNI_{TD> f0e4b753c5e1965b5ef6747ce4af5a2a36bc91a082f5dce9f72a73429d20dbc2bbb5e796bc6e76c09a692a33998e40096e90d3d1D`!M@eeekP-$,OCz\U8`C 3x&ggn"/*V7dbƐs+4lB;"q56h6:q0z5OBŻyv5rIKh U`Pf jn3Y_[3֠PҲ Vu͘!]ON;%H4b'[{/嵢{k& V{4Zmer;hv SAX%=*۵2c ;ݩ ɸ>p;?d+2 = [ +18L V ` t y  h|(%8, 9T : FGHIXY\]$^bcdeflu0vDzfx|Cruby2.5-rubygem-sexp_processor-testsuite4.10.0bp153.1.16Test suite for sexp_processorTest::Unit or RSpec files, useful for developers.`s390p24ńSUSE Linux Enterprise 15 SP3openSUSEMIThttps://bugs.opensuse.orgDevelopment/Languages/Rubyhttps://github.com/seattlerb/sexp_processorlinuxs390x3#A`````8487a8138cd40a186a16fbb6c0bd8c67bb7171101bcbe38fb83f0f0f1aa6aad0cb48bf47c1cfe158de8732013420de452df613343b0d5314a7c092f9e9ad390d466b7360f5c372bfbf82aed5254091b0b3a40ca65d3d8c3f62d82a2171bc388686fda37b42cd65ede8d7626a212730664ec91747d8d0bd78480cb73b815427f0rootrootrootrootrootrootrootrootrootrootrubygem-sexp_processor-4.10.0-bp153.1.16.src.rpmruby2.5-rubygem-sexp_processor-testsuiteruby2.5-rubygem-sexp_processor-testsuite(s390-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)rubygem(ruby:2.5.0:sexp_processor)3.0.4-14.6.0-14.0-15.2-14.10.04.14.1Y@XX@VV@UhTU?v@UTT:m@coolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.com- updated to version 4.10.0 see installed History.txt === 4.10.0 / 2017-07-17 * 2 major enhancements: * Added experimental pattern matcher to Sexp. Forked from sexp_path. * Extended s to take a block and return a matcher: eg s{ s(:defn, atom, _, ___) } * 23 minor enhancements: * Added $STRICT_SEXP to crank down Sexp.[] and friends. * Added Matcher#/ w/ real functionality. * Added Sexp#/ to search with new patterns. * Added Sexp#map to ensure you get a Sexp back. * Added Sexp#new to create a new sexp with the same file/line/comment info. * Added Sexp#search_each to recursively search w/ new patterns. Returns enum if no block. * Added Sexp#sexp_body= * Added Sexp::Matcher.match_subs? and .match_subs= to extend =~ so you can match strictly. * Added Sexp::Matcher.parse to convert lispy string to safe matcher: "(defn atom _ ___)" * Added all mutation methods to STRICT_SEXP >= 4 * Added deprecation message to Sexp#structure for [s(...)] forms. * Added strict_sexp.rb to help you clamp down for future changes. STRICT_SEXP=1+ * Auto-require strict_sexp if $STRICT_SEXP is > 0. * Converted a lot of indexed access to sexp_type/sexp_body, etc. * Finally enforced SexpProcessor#process to only process sexps, not bare arrays. * Made Sexp#/ double-dispatch to Matcher#/. * Made Sexp#gsub work with new patterns. * Made Sexp#sub work with new patterns. * Made SexpProcessor STRICT_SEXP=4 compliant. * Retired SexpMatchSpecial & SexpAny. Never used by anything AFAICT. * Sexp#=== goes back to default. * Sexp#=~(pat) calls pat =~ self. * Sexp#sexp_body now takes optional offset. Use instead of sexp[n..-1]. * 9 bug fixes: * Extended Sexp::Matcher::Parser.parse to lex more forms of regexp. * Finished off all missing doco. * Fixed == methods on all Matcher classes to include ivars. * Fixed Child#satisfy? to properly return false if failed. * Fixed Sexp#sexp_body to return a sexp using Sexp#new. * Fixed map to use Sexp#new. * Only try to set c_type if it responds to it. Make STRICT_SEXP safe. * R2C has a hack in SexpProcessor to call sexp_type=. Renamed to c_type= in R2C. * Removed very obsolete attrset test from pt_testcase.rb === 4.10.0b1 / 2017-06-13 Beta of the above.- updated to version 4.9.0 see installed History.txt === 4.9.0 / 2017-04-13 * 9 minor enhancements: * Added Sexp.depth * Added Sexp.sexp_type= * Cache Sexp.line_max. Massively speeds up large flay runs. * Cleaned up SexpProcessor.process handling of result node type. * Extend pt_testcase for ruby 2.4 tests. * Extended Sexp.method_missing to only print on every invocation if $VERBOSE=1 * Extended Sexp.method_missing to warn if the expected sub-sexp is not found. * Rewrote Sexp.mass to be MUCH faster. Helps tremendously with flay on large files. * Warn that Sexp#method_missing was tripped if $DEBUG.- updated to version 4.8.0 see installed History.txt === 4.8.0 / 2017-02-01 * 2 minor enhancements: * Added Sexp#line_max * Extended MethodBasedSexpProcessor#in_method to take line_max and record span.- updated to version 4.7.0 see installed History.txt === 4.7.0 / 2016-02-18 * 2 minor enhancements: * Expand to support 2.3 in tests. (presidentbeef) * Return enumerable for deep_each, each_sexp, and each_of_type. (ridiculous)- updated to version 4.6.1 see installed History.txt === 4.6.1 / 2016-01-21 * 1 bug fix: * defs should have a nil node if body is empty.- updated to version 4.6.0 see installed History.txt === 4.6.0 / 2015-05-28 * 2 minor enhancements: * Extended generate_test to deal with 19 and up. * Extended pt_testcase.rb so add_19tests means 19 and up. * 1 bug fix: * Added and normalized tests to deal with canonicalized block args from ruby_parser.- updated to version 4.5.1 see installed History.txt === 4.5.1 / 2015-04-27 * 1 minor enhancement: * Cache processors and rewriters. Significant speedup. (presidentbeef)- updated to version 4.5.0 * 1 minor enhancement: * Added SexpProcessor::expand_dirs_to_files as a utility to cmdline tools.- updated to version 4.4.5- updated to version 4.4.4 * 1 bug fix: * MethodBasedSexpProcessor#in_klass clears out the method_stack for the duration of the block.s390p24 16206816034.10.0-bp153.1.164.10.0-bp153.1.16testtest_composite_sexp_processor.rbtest_environment.rbtest_sexp.rbtest_sexp_processor.rb/usr/lib64/ruby/gems/2.5.0/gems/sexp_processor-4.10.0//usr/lib64/ruby/gems/2.5.0/gems/sexp_processor-4.10.0/test/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/bd5d0ef26a3e4f6c55b39bbcda80b66b-rubygem-sexp_processorcpioxz5s390x-suse-linuxdirectoryRuby script, ASCII textG#zAY6(4fRsutf-8ed142095497adae3ae9a6885a3015a6b33c7d2bcf8ed05d985529c037c55fa3c?P7zXZ !t/ɷ'] crt:bLL /k!!8Kw85l۟5 񸑟zWJrH NHȵk|3'*R]s|%T@p.7Oј+>>.sꛬ+xo <(O|X_aՎ05{bS8?%$a@[1 dYTa/kZ,BMgx>|i&[p 0T`Fzf|*  R.B!'Rҥq hR:tX9t*mir5X ]1h[&hD⧭sefL36BӷuSޣU+B>ja "D]2>#W\iL}2{ Fvd03ݵL<7wpeSz¼IhlcϱV'闊V=[O`]ȕvχ|2oVrxL2?OMzO!~QpLD2#ˀ=@?2W⛩tytҕ&_}u^ +Ne4;ڈPVkA&"Õp"]7$L:CgfIV (/B{?jBk':U HB$䕧BSXzAFEwOokLHj6FVs**'Qq4n$bl Ѹ^~gyL57Z[no!MOs|0x$4rD ῖvL~~%+h'!$f/{ V#Gvc3_ 894Y(x;"Ԥ%5_hgul%l h.^jߨ:cWs4{@-+hQCPOe;qT?^`Ӵқ( Q2Cj 9ktes0X}bH 1Yh7d$`3& )%avvܹz]{m/1B2+BӧYwo^zVǶx`U!q?# 8&VA(?NS/"Ϋ(0C&OcSÖؾ#x=?=3f1`+o9jp΃k>$wV_k T+!%+A%*q.񮡼exIOg( f*Q4V{8lUB ⩅W"|,3P2Xܲ"b_%5xB?L? vlH䤅" fsM -WkN2o^zz OUJPfkU9g[B VCjZ46I30P[W$YS셁7aq$r'ONH+Q3D(n1w{"?NY>T|N_ɡ>6V\QRC n ! ]Ν%Qh\]> y0͎6eJDX=֕=&ڄYb62.fi.4B*f h]PbCLcKJv9$ƽ%ͷTH$ӟUD, ;+.Y!'S S[%1z ce-#ɷ`Pĸ׃6G|4!Ki s-cvP% 8T{ 2^F `&?w("hѵiٟS sizg5fIxuLYPu@ŐwDX:$vX2ZGNot6U[?$Ruʷ汩W k䲜x>tpy49V*L+ZgWk-SG㰻LUf .ھ|KDlO=HV=/+!%SԎ7i`–* 5$QG'5EK=L7|ޯqj kș0>y)^_5"9UW$f,(a9椖&[׌4Xƛ 0WG;s+1"T&m1p!`3Ud􋽯ۖ$LzV5nE2&g b/,>ۜxiV Vݴ`7J !~ϯ(d3UЋ˰l!m| IWS窪Kr9Rհ&SABtj{R*xFQΎ4lYy4j'6,PM p=`V/1~ ^NCUD]u5XIൊ*Mٽ\i"gȥ-Ku]?p͹3*.^R! n)JbüAPE ŏ\M 8W^he'j]q_"9v9滳 ϼ̶Maҫ-cҡbԄ ǕLDqţ۫=Y1u//2[$j bUx#^mwC׋2mzsjLU_0OՄ( CT%xrUyD5LR-I͔C5b 8IYn! %kynIH3`[y۳޲ f>KE~RBzqY=Ga]-' N݇?*rW=Q*6Uμ݂Ij(CoOwaLA̸69UݯoƮύAW,I*hW69H|P#› kBma#|eٲ,C̻50׼,"k>?; 4  ;E7PoW? d-#Dgc|[ik_0sCnx_s{4 _W"rlFQ[>l 5l8>#tg$^hm-F$`b,i`d, K2T,u7CLɖ le\'b~2ߙ6bȖFXMԦZ‰#,W8x@/FR2JD)UXӖ/J3<M)ހ[ZA=7J6q,WwB!xF{*pQ{su8Yk1Cp>UF 38)B]Zz}Z-yE5甇5H"%-9 r.=>ET$mOD8Ѣ g%&L~#nfP]Q _L.EPxR"e.wҸ(@-5@.u^qB װE䟓%&z1n~>포V7W-uVIDIQS-Sfؠ*׷@Q RB٠LH:@ luS8A$fFKRJ#*^ݙz2t˛ĝDŽ%`;nV@YUD; UYCs NsK7}6P5#Π~({D7[CxOkKTCʈ{ )>>m6)v`b"2.t"'B:y2Kp'A:@I: BrM> ^pTLz69Y'y^D[4:brfN2sG~pTśUa{ŜP"T<KK}$MMs{_p5Ve'Go :iߐW̢3Xo;1n+/?tOt;0BEjjΝCc+ oN 'r͟50a.Oc7( h u[e,:ē)UGY=RfT /ٶ U˫ŕNel$Nb xr*KAe nvө.] .%8 letΣ 6?1j#z͐Ko:Vlf i HZVr̠y:n^.dȬ""g1&7N P,Xz 5⳽ G}#,hAK+GGofo*ب 'ȭ@SCzwB 舟6@G&_O!:[a-J!|/a#rLE!S.>z!uom[û*|'oZBA0<te~]@4 iKv0Q.Mmn#fxb3ӥ(Gٺ.>U2PH|(D{VNf Nn8;$.@$:aDJZWt^y<~ &_,;KoZ$Sr:_U҆;h TNwJ \{ ȃ_uB謜ٝ^F-N[z"l `mM.x_xA汰o`3d$t< 6+C4QT293_]w@`sv X0f8._'Y 5Lb$D9VM6X*% Nb~ %u&rG ]Awj9s&Ԁ Tjcy6.#c$|z;='֪QvF㝀'AQFlDfB%L $Ơa vH%ae~sO)xYr; q?W-hϏG717cp7郧s "BfzbEf}ڛs;@]+2#{gFY J$t2coPie-HlX|,H%U7s  < gxY/vѠkgK;MVT2;B >&aKeXL^3JQz|M!Q/6_Rn¹9 UQQҮ.V [AB@3q$&4oMd"gڤiA2>Fli '׆MNIߞTūZC5& ~*:)0#N/fa;vtMiY`\vQ[iN<8>Pds}Iiw̑f'p,#~EEG> u- {F3a?̑edע:rDX`0 `l *+/v \B5z_1y竩PDA<-dLv])4aywBEj/2r!'(ygRC'l 5VYRofImr+G?ݷ>u4lS'7tgxCDI7CIw&A9~?3=wrg/R@,^Hx|G.3Q'~2W170g>b5/ N0l*SUM%ΝE;IY+!;[HJ8)% TM\%Ϧ ]HȒѓc]Ps8sP[eȨ OwۨLЎt+jz8fUJԺ[ٹ']̈GѢXZ}PŎ\*oӧa` viŔ.SIu̻GP:_kx FB,2"׉ba[sbb)9ga}z;ңR(ao\@Xn6 8||UPb.n|.{g" M8Np!ʍbe6'ԧ97`3B~k:f9GE=za{KKuZbRWR @8~;LDm|wYiN ɜ1\k-OЁs\?z3xFF>bY:ўH0SG5ިvv3^ϲ!Hu4b%xaj:\KEY7r ݱè1"SEvwݵ+`W{ JD0j؋654Xy s :Ⱥ֓H^_Glݔo9]"֝cmI.r$P7r+qu LYJ`s8H>9K$Rn@ j`Vy~J^HꇋB֑QitRA^jSPXɧ,:'g/f2j:İek:2~cTP#䇷X-i舟|k WEsex(컿RӥhMkdjui^t89L0~WTnt֍x(іK\_F7p`Д=a㸯<䙆uu|S ^q]#tX (ژ90ȗ2 *A?_9m d[F eSI46~K[ Ob@k<307J,05m^2zP*ӔFsⲿ1NqDuַb]odJGJuiz})S{&{cJzk@?AYi AJ)>j M0%Di?#Ǯ1 R +-^CS,})5I d _ԶaO3/xUv/F}9JmDjiPvo d x1V.-5l6` 9Wlt´{=SаOǟ I{3UUH[ PhqX}~&I^ Wq2 * .`"˾@̹]tz$X_5(u"iJ9 }ؤJR1,3( ګBŽ\4,R[L̔p'Q2wuIxjH8Y((&GJQלJJݪ08H9쥵 0 *z݋LLOxq!0u3 ~YvO7魔 gѭ9Ng?G`c=W0g "$ ov:n&Be=Y,b)5Otf#s91)qe]~/4Ђr]Q+&g\[pA*&,F6z!!O~J YZ