guice-throwingproviders-6.0.0-150200.3.10.4<>,6tfp9|LX3,6"ү'-L_eUd|BҺL>59g8jjLJLCeD흖obh}R|!fix@r*c/0[{3׿K)N&KyRQIHl-C/J{( L*A2Z/r~^#:3\ѩʌbwF  {P.$I(>2U.ۥ`>>&?&d  . [&1 Gb     H l j (8 9 :L F"|G"H"I"X"Y"\# ]# ^#b#c$d%.e%3f%6l%8u%Lv%`w&x&y&0 z&X&h&l&r&Cguice-throwingproviders6.0.0150200.3.10.4ThrowingProviders extension module for GuiceGuice is a dependency injection framework for Java 5 and above. This package provides ThrowingProviders module for Guice.fh03-ch2aSUSE Linux Enterprise 15SUSE LLC Apache-2.0https://www.suse.com/Development/Libraries/Javahttps://github.com/google/guicelinuxnoarch A큤A큤fffff4257a62babf7d052dbfb0e9b562a0bf78f1510a7b107d07f1d7f3fbcc2ab5a62d6fb4664f10fd2e28877fceee645978e647e4f0198ff3ac120cd68296c6787b1712d155c079d9996229683cd20edada0692e80e4834604f0a7bd17d24442020arootrootrootrootrootrootrootrootrootrootgoogle-guice-6.0.0-150200.3.10.4.src.rpmguice-throwingprovidersmvn(com.google.inject.extensions:guice-throwingproviders)mvn(com.google.inject.extensions:guice-throwingproviders:pom:)mvn(org.sonatype.sisu.inject:guice-throwingproviders)mvn(org.sonatype.sisu.inject:guice-throwingproviders:pom:)osgi(com.google.inject.throwingproviders)@@@@@    java-headlessjavapackages-filesystemmvn(com.google.code.findbugs:jsr305)mvn(com.google.errorprone:error_prone_annotations)mvn(com.google.inject:guice)rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)6.0.03.0.4-14.6.0-14.0-15.2-14.14.1ffedRLbi0@``q\@\e\efstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comfstrba@suse.comjengelh@inai.defstrba@suse.com- Upgrade to upstream version 6.0.0 * JEE Jakarta Transition + Guice 6.0 adds support for jakarta.inject, the new namespace for the JSR330 spec (after the javax -> jakarta JEE transition). Guice 6.0 is intended to help users migrate their code to the jakarta namespace. It continues to fully support the javax.inject namespace while also mostly supporting the jakarta.inject namespace. The only part of Guice 6.0 that doesn't support jakarta.inject are the bind(..).toProvider methods. Those methods still require javax.inject or com.google.inject Providers. + The Guice 6.0 servlet & persist extensions only support the javax.servlet and javax.persistence namespaces respectively. + Guice 6.0 can help with incremental migrations to the jakarta.inject namespace, by incrementally replacing javax.inject references to jakarta.inject. This works everywhere, except for code where a jakarta Provider is passed to bind(..).toProvider. * Guice Core + Adds jakarta.inject support. + Support Java 21 (via updating ASM to 9.5 and other changes). + Improve AOP support on JVMs such as Azul. + Fix a deadlock or crash associated with recursively loading just-in-time bindings. + Make PrivateModule.binder() non-private, to allow subclass customization, such as calling skipSources. + Fix an endloop loop (that can OOM) in singleton lock cycle detection. + Fix tests to pass on Windows, despite the different line separator. + Improvements to OSGi metadata. + Mark the JSR305 dependency as optional (since it's not required at runtime). + Fix Binder.requestInjection(TypeLiteral, T) to use the TypeLiteral. + Honor scoping annotations on concrete types when provisioned by their @ProvidedBy annotation + Add a way to tell if a class is "enhanced" by Guice, and retrieve the original class. + Ensure the order of bind(...) statements does not matter when referring to JIT bindings. + Implement Matcher.and and Matcher.or as default methods directly in Matcher, so that the AbstractMatcher subclass isn't required. + Mark the error_prone_annotations dependency as optional. * Servlet + Fix an NPE if contextPath is null * Persist + Persist had a number of changes, some of which are backwards incompatible. Notably: injection of EntityManager no longer implicitly starts a unit of work (because this led to leaks). Users can opt-in to the legacy behavior by constructing the JpaPersistModule with a JpaPersistOptions that sets setAutoBeginWorkOnEntityManagerCreation to true. + EntityManager provisioning no longer automatically starts a unit of work. + Ignore multiple start/stop calls, rather than throwing an exception. + Support manually initiated rollbacks. + Don't wrap Object-defined methods (e.g: toString, finalize, equals, hashCode) in transactions.- Clean the spec file and simplify it a bit- Upgrade to upstream version 5.1.0 * Changes of 4.2: + Java 9 and JPMS support + Multibindings are now in the Guice core artifact. The multibindings artifact is empty to prevent confusion during upgrading and will be removed in a later release. + Improve the performance of guice provisioning (by about 20%) by changing the way errors are reported. Guice will no longer report multiple errors during provisioning (Guice still reports multiple errors during injector creation). + Better error messages for a missing binding. + Various optimizations. + AbstractModule.configure() is non-abstract to allow modules with only @Provides/@ProvidesIntoSet/... methods. + Add a CheckedProviders class. + Change the way Singletons work to not rely on ThreadLocals nor WeakReferences. + Add MapBinderBinding.getEntries(Iterable). + Deprecate ProvisionListener.ProvisionInvocation .getDependencyChain(). + Ensure that Struts interceptors are populated even if they are created after the injector (Fixes #1081, #1075). + Add support for multibindings with annotations in the Guice DaggerMethodScanner. * Changes of 4.2.1 + Java10 support (updated cglib & asm). + Minor updates to the testlib extension. * Changes of 4.2.2 + Java11 support (updated cglib & asm) * Changes of 4.2.3 + Java14 support (updated asm). + Added Injector.getElements API, to expose all Element SPI types from the Injector. + Added Injector.getAllMembersInjectorInjectionPoints API, to expose injection points created by arbitrary members injection. + Added getAlternateKeys to Multibinder SPI types (MultibinderBinding, MapBinderBinding, OptionalBinderBinding), to explicitly list the other keys these bindings are available as. + Scan for (and bind) @Provides-like methods in a consistent ordering, rather than relying on the non-deterministic Class.getDeclaredMembers ordering. + Update DaggerAdapter to work with newer dagger code. + Fixed a subtle bug with eager singleton evaluation. + Updated @RequestScope's scope annotation to the JSR330 @Scope, so it can be reused by non-Guice DI systems. + Clarified the error message when an injectable constructor is missing. + Add deprecated overloads to various Modules methods, to make it clearer when calling them is unnecessary. + Added factory methods to Modules for common Binder configuration methods, to make it easier to configure them. * Changes of 5.0.1: + Added Java15 support (updated asm and bug fixes). + Removed cglib as a core dependency. (#1359) + Improved error messages. + Improved support for using Guice with Kotlin. + Added a mechanism to restrict who can bind types or annotations, to allow library authors to control their bindings. + Removed no-aop build variant. + Fixed 'illegal reflective access' warnings. * Changes of 5.1.0: + This minor release adds support for Java 17. - Removed patches: * google-guice-throwingproviderbinder.patch * guice-4.1-disabledextensions.patch * guice-4.1-fixup-ant.patch * guice-4.1-javadoc.patch - Fetch sources using source service, which allows us to clean up the tarball if needed - Generate the ant build system using the maven pom files.- Avoid using xmvn-resolve and xmvn-install in order to avoid build cycles with new dependencies in dependent packages - Build only the NO_AOP version of the guice.jar and alias accordingly so that it provides both- Modified patches: * google-guice-throwingproviderbinder.patch + do not add the override of virtual function + build with source/target 8 so that the default override from the interface can be used * guice-4.1-javadoc.patch + build javadoc with source level 8- Do not build against the compatibility guava20 - Added patch: * google-guice-throwingproviderbinder.patch + fix a little glitch with default generic function in guava- Clean the tarball in order to avoid files with spurious legal status- Trim bias from description.- Initial packaging of google-guice 4.1h03-ch2a 17210413796.0.0-150200.3.10.46.0.06.0.06.0.06.0.06.0.0guiceguice-throwingproviders.jargoogle-guice-throwingproviders.xmlguiceguice-throwingproviders.pom/usr/share/java//usr/share/java/guice//usr/share/maven-metadata//usr/share/maven-poms//usr/share/maven-poms/guice/-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.suse.de/SUSE:Maintenance:34548/SUSE_SLE-15-SP2_Update/9f6ee74386a1e28d97be4be900755691-google-guice.SUSE_SLE-15-SP2_Updatedrpmxz5noarch-suse-linuxdirectorygzip ERROR: Stdin has more than one entry--rest ignored (Zip archive data, at least v1.0 to extract Java archive data (JAR))ASCII textXML 1.0 document text PPPPPRRRRR0ʧ|!n-utf-8dd24406f96d56027118941d9346645aed7dd2ae44d64a4454e35df15547db316? 7zXZ !t/j a]"k%g?U|  h=bO!)<] I{&f+n& IfCvMw r2uObrbP' M@DoYDG5woƃ1]5ABϩF!R)w(|X%},['gL* -5f*sTn71~vm%~6^$uWF]JL@r o=_8¶)B,[zzvگg!*5<4̕[sgx漑6T[l뉧u`',o/n2|N|QtڻljM:}?ܮOtB-iwYXQx 2LHҴEa(dOąCm%8zC6u58tlQ/zv%tԮv1L=GOM仪̐PX pD'5I&LpP7K2e%Ȣ?rg0C7\ ^|H] 쾺1g7M v,"5"}gsQ-OݳwC>E P mnNo '\۴R}wpYHu/ap4Vq-gO0p{T•^)کx)/C#Zv zZ)8t-[Y=V=DK͑R{j|S'lk+RLA*4)rނ͌JGTuH(~>YIz7Zb>HFC}8# EY(|[p9b-*$WVQ^q7ޑcsѕGgKHDĈQ g `ֈn3پ( nR_ έQCp, GM~qLy~~E\u$OӬx@^'G~KG'/?.-CyP4Lګ|̠|ȱ^aU((#X*uƠznNs*n0XNeoH߭n- MN_W`>t- @2먡40jaB%{ra}K4k^g 1w20p(r 3=H`gdY7E4UȦl 컒~J;YѫLpTg$f(471=&3D,uJl|+ L~Ź` 䘺n?};-0T|!HʰLA&ǁB⨅,^Ejf3:Pz/I q[aNvLZYfp0u;[i-TVXLyC;0V De'd(֤~/ V2N&o&j_ r*Yoo^"Ngn&k ɍAXkGop!',Y锄 ^V|S|/7L!Dm>kox  /t8R// 8|{*.zѝ!t9%>)>d{l)A؈ s8Snr"+W J,f]p:s^1ZspjtKY%%G28!\t[g(* $:@+H5[9f&6BINA{{HCշBOZaxo) *`_4j#(6fVpIdp5kpMGf4 X-g5MkC%Ka"ЇGg㦤''%<s9C4S~ ?Kk;PfC{?Lї˓eY3b^8$|pBIQ38]ꎺ(#&)ޅu𝞠u`}8岐EŸ;1,rCj{Q<\16wJeB݋*F IaQCy~Gl=ZIeQvs#r1!:uM4j