ruby2.5-rubygem-pg-testsuite-1.2.3-bp154.1.25 >  A bxy!M@eee\ThB fjuxFP|v=M>튮p3ip"fC?9a5VD- )7-Y3©DI '|dVNmPG<H`wϨj%T#Q:n#^6!l"幞~Qv$@zh0*hI<:gIx;^%V[]w/r[<Ⲑp} c_Bf:Z]_v:mƴJũt!GptDT$KlQЙp˫T1DBnIw,kǰ hsR>p;?~d% 0 Btx $p     0|:`~(89: PFyyGyHyIz,Xz@YzH\zl]z^|b|c}md}e}f}l}u}v~Dz~~~~~Cruby2.5-rubygem-pg-testsuite1.2.3bp154.1.25Test suite for pgTest::Unit or RSpec files, useful for developers.bxhobs-power8-03DSUSE Linux Enterprise 15 SP4openSUSEBSD-2-Clausehttps://bugs.opensuse.orgDevelopment/Languages/Rubyhttps://github.com/ged/ruby-pglinuxppc64le'_ [(s #AA큤A큤bxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxSbxS1f954fe808507fe6daf8eb800d37cbf5307e29ad4782023eb8f38585ad08531ebe7051500994f08aadeeeb7a3b7a0cc0b6c86e16270968305a7928056a2c185783ec3041411b61f3ad123ae06ec04d29c635c51aeb7ee119d12203eaf1939f538f6b09d284b7e570d2e290418c72beacbaa1887a20fee904153d49e33303680f4b55ff575d66a3d2f7d5fdabe5da8fe0b8085428900d934012b981e6b65038245a233c71be2db9ae060160488378b533c40d36f17daf614b77cb411d7f5ef634349b21b4175e12b8ea048f295d800a4db68bc6f372f462e7521a702f869e2de07a1ece4585a060a5b6c465a39e5caa637098650c00f8d06c6895e71cbee5ab10cd1f32ea8b796cdd4f8c4e4930303b10c981511172fac9095cd40e45496f5c279344d93e0c4a6097bcc85356b04dc0141dde04132581a0cef074ab0eae27003a1104712e30a0b434fc90cb51eaa7583c444ad10bcc9af4a6d2a6591ce57fd972f9a37e3ffd149b61b3c11136cb569e07a53ad61855a9ef145ef3c7a11b125dd23f8cf000f134f720cec17b41991232c6cbd63cf761362664007b67fdee88469070ca877fd3eb73cfc1e1ab5f76dac637b8f280c66fd42ad1572f4961c1c85ea0324b36759773f1889a9373c39ade524512445ea339f66b7c01398f66a11483a1d4c7a54c72ca5ee522838db48a75d983fab40137061c74dce5b041a8fe98e424rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrubygem-pg-1.2.3-bp154.1.25.src.rpmruby2.5-rubygem-pg-testsuiteruby2.5-rubygem-pg-testsuite(ppc-64)    rpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)rubygem(ruby:2.5.0:pg)3.0.4-14.6.0-14.0-15.2-11.2.34.14.3^@^AE\\Stephan Kulow Christophe Giboudeaux Stephan Kulow mschnitzer@suse.comfactory-auto@kulow.orgcoolo@suse.comcoolo@suse.comolaf@aepfle.decoolo@suse.comcoolo@suse.comcoolo@suse.comcoolo@suse.comdmueller@suse.comtboerger@suse.comtboerger@suse.comtboerger@suse.com- updated to version 1.2.3 see installed ChangeLog- updated to version 1.2.2 see installed ChangeLog- Add use-pkg-config.patch to avoid relying on postgresql-server.- updated to version 1.1.4 see installed ChangeLog- updated to version 1.1.3 - Revert opimization that was sometimes causing EBADF in rb_wait_for_single_fd(). == v1.1.2 [2018-08-28] Michael Granger - Don't generate aliases for JOHAB encoding. This avoids linking to deprecated/private function rb_enc(db)_alias(). == v1.1.1 [2018-08-27] Michael Granger - Reduce deprecation warnings to only one message per deprecation. == v1.1.0 [2018-08-24] Michael Granger Deprecated (disable warnings per PG_SKIP_DEPRECATION_WARNING=1): - Forwarding conn.exec to conn.exec_params is deprecated. - Forwarding conn.exec_params to conn.exec is deprecated. - Forwarding conn.async_exec to conn.async_exec_params. - Forwarding conn.send_query to conn.send_query_params is deprecated. - Forwarding conn.async_exec_params to conn.async_exec is deprecated. PG::Connection enhancements: - Provide PG::Connection#sync_* and PG::Connection#async_* query methods for explicit calling syncronous or asynchronous libpq API. - Make PG::Connection#exec and siblings switchable between sync and async API per PG::Connection.async_api= and change the default to async flavors. - Add async flavors of exec_params, prepare, exec_prepared, describe_prepared and describe_portal. They are identical to their syncronous counterpart, but make use of PostgreSQL's async API. - Replace `rb_thread_fd_select()` by faster `rb_wait_for_single_fd()` in `conn.block` and `conn.async_exec` . - Add PG::Connection#discard_results . - Raise an ArgumentError for strings containing zero bytes by #escape, #escape_literal, #escape_identifier, #quote_ident and PG::TextEncoder::Identifier. These methods previously truncated strings. Result retrieval enhancements: - Add PG::Result#tuple_values to retrieve all field values of a row as array. - Add PG::Tuple, PG::Result#tuple and PG::Result#stream_each_tuple . PG::Tuple offers a way to lazy cast result values. - Estimate PG::Result size allocated by libpq and notify the garbage collector about it when running on Ruby-2.4 or newer. - Make the estimated PG::Result size available to ObjectSpace.memsize_of(result) . Type cast enhancements: - Replace Ruby code by a faster C implementation of the SimpleDecoder's timestamp decode functions. github #20 - Interpret years with up to 7 digists and BC dates by timestamp decoder. - Add text timestamp decoders for UTC vs. local timezone variations. - Add text timestamp encoders for UTC timezone. - Add decoders for binary timestamps: PG::BinaryDecoder::Timestamp and variations. - Add PG::Coder#flags accessor to allow modifications of de- respectively encoder behaviour. - Add a flag to raise TypeError for invalid input values to PG::TextDecoder::Array . - Add a text decoder for inet/cidr written in C. - Add a numeric decoder written in C. - Ensure input text is zero terminated for text format in PG::Coder#decode . Source code enhancements: - Fix headers and permission bits of various repository files. Bugfixes: - Properly decode array with prepended dimensions. #272 For now dimension decorations are ignored, but a correct Array is returned. - Array-Decoder: Avoid leaking memory when an Exception is raised while parsing. Fixes #279 - Add more rpmlint filters to avoid warnings which are caused by this gem - Removed license line from gem2rpm.yml as the license can be detected automatically - Drop rubygem-pg-0.17.1_shebang.patch as it's no longer needed- updated to version 1.0.0 see installed History.rdoc == v1.0.0 [2018-01-10] Michael Granger Deprecated: - Deprecate Ruby older than 2.2. - Deprecate Connection#socket in favor of #socket_io. Removed: - Remove compatibility code for Ruby < 2.0 and PostgreSQL < 9.2. - Remove partial compatibility with Rubinius. Enhancements: - Update error codes to PostgreSQL-10 - Update Windows binary gems to Ruby-2.5, PostgreSQL 10.1 and OpenSSL 1.1.0g. Bugfixes: - Fix URI detection for connection strings. #265 (thanks to jjoos) - MINGW: Workaround segfault due to GCC linker error in conjunction with MSVC. This happens when linking to PostgreSQL-10.0-x64 from EnterpriseDB. Documentation fixes: - Add PostgreSQL version since when the given function is supported. #263 - Better documentation to `encoder` and `decoder` arguments of COPY related methods. == v0.21.0 [2017-06-12] Michael Granger Enhancements: - Move add_dll_directory to the Runtime namespace for newest versions of RubyInstaller. - Deprecate PGconn, PGresult, and PGError top-level constants; a warning will be output the first time one of them is used. They will be removed in the upcoming 1.0 release. Documentation fixes: - Update the docs for PG::Result#cmd_tuples New Samples: - Add an example of the nicer #copy_data way of doing `COPY`.- updated to version 0.20.0 see installed ChangeLog 2017-03-10 Michael Granger * .hgignore: Ignore .lock files [379c198c7185] [tip] 2017-02-16 Lars Kanis * lib/pg.rb: Use block.call instead of yield in proc context yield in a proc context requires Ruby-2.2. [aa91b4b14b5c] 2017-01-24 Lars Kanis * History.rdoc: Update History file regarding RI2 support. [d52339653fe3] * lib/pg.rb: Add support for RubyInstaller2 to Windows binary gem. RI2 ignores PATH setting for DLL search, but provides it's own API. [87fe14131d78] 2017-01-14 Lars Kanis * History.rdoc: Update History file. [ci-skip] [0d1921b825d7] * Rakefile.cross: Update Windows binary rubies to support 2.0 to 2.4 [3736e33ce71e] * ext/pg_connection.c, ext/pg_result.c: Change all Fixnum to Integer in documentation. Fixnum are deprecated in Ruby-2.4. [2e17f315848e] * ext/pg_type_map.c: Avoid compiler warnings about noreturn-functions: ../../../../ext/pg_type_map.c: In function ‘pg_typemap_fit_to_result’: ../../../../ext/pg_type_map.c:15:1: warning: function might be candidate for attribute ‘noreturn’ [-Wsuggest-attribute=noreturn] pg_typemap_fit_to_result( VALUE self, VALUE result ) [2af122820861] * spec/pg/type_map_by_class_spec.rb: Bignum,Fixnum and Integer are the same in Ruby-2.4. Fixes #255 : https://bitbucket.org/ged/ruby-pg/issues/255 [a446dfaf9d8f] * Rakefile, pg.gemspec: Update rake-compiler and rake-compiler-dock This adds support for Ruby-2.4 on Windows and Ruby version constraints for binary gems. [6ebcebaad39c] * ext/pg_coder.c: Fix method arguments for Coder#encode in documentation. [ee79cce8b141] 2016-12-04 Lars Kanis * History.rdoc, lib/pg/result.rb, spec/pg/result_spec.rb: Fix Result#inspect on a cleared result. [0c60865f718e] 2016-11-09 Lars Kanis * Merge branch 'master' of github.com:larskanis/ruby-pg [db7c584532e5] 2016-11-09 Lars Kanis * Rakefile.cross: Don't download gems in the rake-compiler-dock, but use the local installed gems. This saves traffic and avoids download issues. [14e6fa84d31c] * Rakefile.cross: Update cross postgres and openssl versions. [a6ec62e2b783] * Rakefile: Fetch the errorcodes from a specific release version. This avoids introduction of errorcodes, which are not yet released and possibly subject to change. [b399dae9e988] * ext/errorcodes.def, ext/errorcodes.txt: Update errorcodes to PostgreSQL version 9.6.1 [c1b690f2b47d] 2016-11-09 Michael Granger * History.rdoc: Merged with d62b04efb055 [cefe252948ed] 2016-10-21 Lars Kanis * lib/pg/text_encoder.rb: Fix typo in JSON#encode [d62b04efb055] * History.rdoc, lib/pg/text_decoder.rb, lib/pg/text_encoder.rb: Use secure JSON methods for JSON (de)serialisation. This fixes issue #248 : https://bitbucket.org/ged/ruby-pg/issues/248 [fe3e883bead2] 2016-09-21 Michael Granger * .hgtags: Added tag v0.19.0 for changeset bd2aaa2c5797 [5ed7106cc770] * .hgsigs: Added signature for changeset 8beaa5d72670 [bd2aaa2c5797] [v0.19.0] * History.rdoc, lib/pg.rb: Bump the minor version, update history. [8beaa5d72670]- updated to version 0.19.0 see installed ChangeLog 2016-09-04 Lars Kanis * ext/pg_connection.c: Replace rb_ary_new_from_args() which is missing in Ruby-2.0 We don't really need an Array at all, but storing the values on the stack is enough. [4d9c4ee44d11] [tip] * ext/pg_connection.c: Use the asynchronous interface for setting the default_encoding. This is another attempt to solve issue https://bitbucket.org/ged /ruby-pg/issues/245 While setting the encoding per PQsetClientEncoding was already adjusted to release the GVL in a previous commit, it did not solve the particular issue with pgbouncer. Using the async interface has the advantage, that signals or exception events can be processed by the given thread, while a query is running. [a646a1394e9d] * spec/pg/connection_spec.rb: Spec: Use a more effective test for default_internal. UFT-8 is the standard for internal_encoding anyway, so that not setting it did not result in a failure. [08e7e13687e7] 2016-08-20 Michael Granger * certs/ged.pem, pg.gemspec: Correct key+cert upgrade. Refs #241. [7431b5c1430d] * README.rdoc: Merged with upstream [cf9ac513102e] 2016-08-20 Lars Kanis * History.rdoc, lib/pg/connection.rb: Fix wrong exception when running SQL while in #copy_data for output. It raised "undefined method `result_status' for nil:NilClass" previously and raises "no COPY in progress" now. This also fixes the failing test of the previous commit. [dbfc3856e543] * spec/pg/connection_spec.rb: Add tests for running SQL statements while in #copy_data. The test for output currently fails. [9b2b1cd54d49] 2016-08-18 Lars Kanis * Rakefile: Don't update ext/errorcodes.def with every run of rake gem. This fixes the previous commit. [43a48561adde] 2016-08-17 Lars Kanis * .hgignore, History.rdoc, Rakefile, ext/errorcodes.def: Add errorcodes.def to git in order to allow build from git per bundler. [29ca3eed927d] * History.rdoc: Update History.rdoc once more. [6874ea8622a1] * README.rdoc: Update README regarding to Ruby and PostgreSQL versions. [73930bce99d9] * spec/pg/basic_type_mapping_spec.rb: Run JSON test on PostgreSQL-9.4+, only. Earlier versions miss the JSONB type. [6b23964f70c3] * appveyor.yml: Update Appveyor to use Ruby 2.3 and remove 2.0 and 2.1. [8ff3d0b07cda] * .travis.yml: Remove ruby versions before 2.2, because hoe-deveiate isn't compatible with these versions. [73279f9db276] * lib/pg/basic_type_mapping.rb, lib/pg/text_decoder.rb, lib/pg/text_encoder.rb, spec/pg/basic_type_mapping_spec.rb: Add JSON coders and add them to BasicTypeMapForResults and BasicTypeMapBasedOnResult Fixes bitbucket issue #212 . [b76471234f7a] 2016-08-14 Lars Kanis * lib/pg/basic_type_mapping.rb: Improve documentation to PG::BasicTypeMapForQueries [e7181c452c64] * History.rdoc: Update History.rdoc [9c3699255853] 2016-08-20 Michael Granger * BSDL, README.rdoc, ext/pg.c: Update copyright year, license files [c77d0997b4e4] * README.rdoc, certs/ged.pem: Update/upgrade my signing cert Fixes #241. [741c94c3bada] 2016-08-17 Michael Granger * pg.gemspec: Bump prerelease version in the gemspec [f7472e7a7902] 2016-08-14 Lars Kanis * Merge git master [9b7987626074] 2016-08-13 Lars Kanis * Rakefile.cross: Update OpenSSL and PostgreSQL for binary Windows gems. [edbd5b8dbb85] * History.rdoc: Update History.rdoc [aca7b024ba0c] * ext/gvl_wrappers.h, ext/pg_connection.c: Release GVL while calling PQsetClientEncoding() PQsetClientEncoding() is also called within PG::Connection.new which could block due to network delay. This fixes bitbucket issue #245 . [41f81b72476f] 2016-06-27 Michael Granger * ext/extconf.rb: Add __EXTENSIONS__ to Solaris/SmartOS for Ruby >= 2.3.x Fixes #236. [5979b3cba237] 2016-04-09 Michael Granger * .hgignore, Rakefile, pg.gemspec: Deprecate Ruby 1.9, fix license name [fc5828a71f2a] * ext/extconf.rb: Add mechanism for trying to build without pg_config [22a3a8ef3244] 2015-12-25 Lars Kanis * ext/pg.h, ext/pg_binary_encoder.c, ext/pg_coder.c, ext/pg_connection.c, ext/pg_copy_coder.c, ext/pg_text_encoder.c, spec/pg/connection_spec.rb, spec/pg/type_map_by_class_spec.rb, spec/pg/type_map_by_mri_type_spec.rb, spec/pg/type_spec.rb: Respect character encoding of all strings sent to the server. Previously all strings sent to the server were sent in their internal binary representation, without respecting the character encoding of strings. Now the encoding of all strings is compared with the current connection encoding and converted if they are different. Since coders are independent from any database connection, this adds a second parameter to PG::Coder#encode, that allows to define the destination encoding, which previously was always ASCII_8BIT. This encoding should be set to the connection encoding, in practice. This also adds a lot of tests for encoding and decoding data. This implements issue #231 : https://bitbucket.org/ged/ruby- pg/issues/231 [e61a06f1f5ed] 2016-03-22 Michael Granger * Rakefile, pg.gemspec: Remove GPL from the `licenses` of the Hoespec/gemspec (fixes #72) [14d4f1399922] 2016-01-31 Michael Granger * Rakefile, pg.gemspec: Fix `hg:precheckin` task to re-generate the gemspec. [6294e7bdfd2b] * .hoerc, Gemfile, Rakefile, certs/ged.pem: Add gem cert, trying out gemspec-based setup. Hopefully Travis and Appveyor will work this way. [b3946987e6f4] * lib/pg/basic_type_mapping.rb: Fix the example for PG::BasicTypeMapForQueries. Fixes #213. [11f13477e4b9] * ext/pg_connection.c, ext/pg_result.c, lib/pg/connection.rb, lib/pg/result.rb: Small documentation fixes. - Make PG::Connection and PG::Result show up instead of PGconn and PGresult. - Add docs for PG::Result#inspect. - Swap `PGconn.open` for `PG.connect` in an example. - Add explicit returns to a few methods. [982082c0d77b] * ext/pg_connection.c: Clarify differences between class and instance escape methods. Borrow the wording from the PostgreSQL docs about the difference between class and instance variants of `escape_string` and `escape_bytea` for PG::Connection. Fixes #205. [01a8e779edb2] 2016-01-30 Lars Kanis * Gemfile: Update hoe-deveiate [7e95a9dae248] * Rakefile.cross: rake-compiler-dock-0.5.1 fixes the issue with bundler while cross compilation So we no longer need to disable rubygems. [7ad087272591] 2016-01-30 Lars Kanis * Merge pull request #13 from akito19/update_openssl update version OpenSSL [9917a9eefcd8] 2016-01-30 Akito Kasai * Rakefile.cross: update version OpenSSL [a9b7e8cbd788] 2016-01-30 Lars Kanis * Merge pull request #12 from akito19/fix_indent_on_README fix indent sample code [skip ci] [4e0e144275a2] 2016-01-30 Akito Kasai * README.rdoc: fix indent sample code [dec5b785d96c] 2016-01-12 Lars Kanis * ext/pg_connection.c: Add missing ifdef for PostgreSQL < 9.5 [df51313f26b9] 2016-01-11 Lars Kanis * ext/extconf.rb, ext/pg_connection.c, lib/pg/connection.rb, spec/pg/connection_spec.rb: Add PostgreSQL-9.5 functions PQsslInUse(), PQsslAttribute() and PQsslAttributeNames(). [5a437ad15148] 2016-01-12 Lars Kanis * spec/helpers.rb: Add rspec filter for PostgreSQL-9.5. [3b4857e5401c] 2016-01-11 Lars Kanis * ext/pg.h: Avoid compiler warning about undeclared function gettimeofday(). ../../../../ext/pg_connection.c: In function ‘wait_socket_readable’: ../../../../ext/pg_connection.c:2393:3: warning: implicit declaration of function ‘gettimeofday’ [-Wimplicit-function- declaration] gettimeofday(&currtime, NULL); [bdd4f3c8fc73] 2016-01-09 Lars Kanis * spec/pg/connection_spec.rb: Adjust timings in tests for better compat with Windows, which has less exact timers. [e51a84966ce6] * .travis.yml: Bundler is not installed per default on ruby-2.3.0 on travis-ci. [d94ffc08a04f] * .rvmrc: Remove .rvmrc from repository. This currently breaks the build on travis-ci. [fbaac4e36b9e] 2015-08-29 Lars Kanis * .travis.yml: Switch windows binary gem build on travis-ci to docker. This is faster and the recommended ways to buid the gems now. [5fa0071f377a] 2016-01-09 Lars Kanis * .travis.yml, appveyor.yml: Update appveyor and travis-ci tests from 9.4 and 9.0 to 9.5 and 9.1. [a66cd5015f50] 2015-08-29 Lars Kanis * Rakefile, Rakefile.cross, lib/pg.rb: Remove needless platform specific subdirectory for libpq.dll. [b3a270f74fdd] * Rakefile.cross: Don't abort 'rake gem:windows' when there are no key/certs for gem signing. [6c7d9a357ac3] * Rakefile: Don't abort the tests, if the pg_ext file is missing. This is required to run the tests with fat binary gems. [0115baee0e15] 2016-01-09 Lars Kanis * .travis.yml: Use ruby '2.3.0' in travis-ci, since the alias '2.3' isn't available. [d28332e23fbc] * .travis.yml: Remove ruby 1.9.3 from travis-ci, since it fails anyway. [4173b84490f0] 2016-01-08 Lars Kanis * ext/pg_connection.c: PQescapeString takes size_t, so RSTRING_LEN is correct. [9c8027a0934f] * Rakefile.cross: Update PostgreSQL version for cross build to 9.5.0 [8048fe08c330] 2015-12-31 Lars Kanis * ext/pg_connection.c: Fix description of encoder_for_put_copy_data [4d4de8d69dc0] 2015-12-30 Lars Kanis * ext/pg_connection.c: Mark local functions as static. [1a2c1d85a8fd] 2015-12-29 Lars Kanis * ext/pg_connection.c: Improve performance of conn.escape by 50%. Copying the string twice and calling rb_obj_is_kind_of() twice isn't necessary. [a8ebc0163f6b] * ext/pg_connection.c: Describe more exactly the difference between quote_ident and escape_identifier. [b458c0c3d40e] 2016-01-08 Lars Kanis * ext/errorcodes.txt: Add new error codes introduced in PostgreSQL-9.5 per 'rake update_error_codes' [698e36b52c7d] 2015-12-26 Lars Kanis * .travis.yml: Add ruby-2.3 on travis-ci. [e53198935b4a] * Rakefile.cross: Update libraries for Windows cross build. [de4fdcd96eb3] * Gemfile, Rakefile, Rakefile.cross: Enable Windows cross build for Ruby-2.3. [1a6f2861f9d3] * README.rdoc: Merge branch 'master@1' of ../ruby-pg.git.bare [b324f3f65a0c] * README.rdoc, ext/pg_copy_coder.c, lib/pg/basic_type_mapping.rb, lib/pg/connection.rb: Add a lot more of documentation, how COPY can be used with type coders and type maps. [256c059e4802]- Force fixed timestamps for patched gems (bsc#916047)- updated to version 0.18.4 see installed History.rdoc == v0.18.4 [2015-11-13] Michael Granger Enhancements: - Fixing compilation problems with Microsoft Visual Studio 2008. GH #10 - Avoid name clash with xcode and jemalloc. PR#22, PR#23 Bugfixes: - Avoid segfault, when quote_ident or TextEncoder::Identifier is called with Array containing non-strings. #226- updated to version 0.18.3 see installed ChangeLog 2015-09-03 Michael Granger * History.rdoc: Added recent fix to the History file [f12dc2f1ce14] [tip] 2015-09-01 Lars Kanis * lib/pg/text_decoder.rb: Add missing require [d0ba6a2cb10f] * Merge pull request #9 from ramfjord/date-decoder-return-dates Date decoder to return real Dates [676def89b826] 2015-06-21 Thomas Ramfjord * lib/pg/text_decoder.rb, spec/pg/basic_type_mapping_spec.rb: modified TextDecoder::Date to return an actual ruby Date instead of a Time [c50593d12ba2] 2015-08-20 Lars Kanis * Rakefile: Add include for Hoe::MercurialHelpers as a temporary solution for the error: Packaging tasks require the hoe-mercurial plugin (gem install hoe- mercurial) [a84f83ff5b31] * History.rdoc: Update History.rdoc [cadfac537e73] * Merge branch 'master' of github.com:larskanis/ruby-pg [d27d6d5a6545] * README.rdoc: Add Appveyor status badge to the README. [c9637c6efcfb] * appveyor.yml: Use 9.3 because 9.0, 9.1 and 9.2 segfault in PG.init_openssl [158f6649b7b8] * spec/pg/connection_spec.rb: Skip conn#host test on Windows-x64, because it segfaults, currently. [04110aad7fc6] * spec/pg/connection_spec.rb: libpq on Windows doesn't respect the PGPORT env variable, so we accept both. [b4b666011f3f] * spec/helpers.rb: Older versions of PostgreSQL don't have a pid column, so this could raise an exception: TypeError: can't convert nil into Integer [48f1145fa631] * Rakefile.cross: Update OpenSSL version for Windows cross build. [be6b75fef0ff] * appveyor.yml: Add CI-tests on appveyor. [c2dc9e491853] 2015-06-29 Lars Kanis * History.rdoc: Merge branch 'master' of https://github.com/larskanis/ruby-pg Conflicts: History.rdoc [affb47533d82] * History.rdoc, ext/util.c, spec/pg/type_spec.rb: Fix data type resulting in wrong base64 encoding. [5fb9170f6a7d] 2015-06-17 Lars Kanis * Gemfile, Rakefile, Rakefile.cross: Update versions of rake-compiler-dock, OpenSSL and PostgreSQL. [10c6b496314c] 2015-06-12 Lars Kanis * Rakefile.cross: Update OpenSSL and PostgreSQL versions for cross build. [02094cca1cf8] 2015-06-11 Lars Kanis * History.rdoc, README-Windows.rdoc: Update README-Windows in regards to rake-compiler-dock. [4d9fd821ec1e] 2015-06-09 Lars Kanis * Rakefile.cross: Cross build: Ensure ChangeLog file is built on the host side before entering the docker container. [d32412acff38] * Rakefile.cross: Cross build: Add workaround for missing symlink support on Windows. [52bb3eef00f0] * Rakefile.cross: Explicitly set the gcc-toolchain, instead of deriving from the rake- compiler config. Now, that we use the libpq.dll (instead of static linking), we can mix the gcc-toolchains. So we better build the dll with the newer mingw-w64 toolchain (instead of the old mingw32) and build only the extension for ruby-1.9 with the old mingw32-gcc. [b3d169fa189b] * Merge https://github.com/ged/ruby-pg [5aeb99dda0ca] 2015-05-25 Michael Granger * lib/pg/basic_type_mapping.rb: Whitespace fixes [57cfbc230597]- updated to version 0.18.2 see installed ChangeLog 2015-05-14 Michael Granger * .rvmrc: Bump default rvm Ruby to 2.2 [128b075d5800] [tip] 2015-03-13 Lars Kanis * ext/pg_text_encoder.c, ext/util.c, ext/util.h: Avoid possible symbol name clash when linking againt static libpq. This should fix issue #209 . [b859963462b2] 2015-02-11 Lars Kanis * ext/pg.c, spec/pg/connection_spec.rb: Merge from git branch. [b60c89ee93c8] * ext/pg.h, ext/pg_text_decoder.c: Merge branch 'non-c99-compiler' [b111c84b8445] 2015-02-06 Lars Kanis * ext/extconf.rb, ext/pg.h, ext/pg_result.c, ext/pg_text_decoder.c, ext/pg_type_map_by_mri_type.c: Use fixed size arrays in case the compiler doesn't support C99 variable length arrays. This is notably the MSVC compiler. Note: The MSVC build environment is currently not tested on a regular base, so is not fully supported. [1269b8ad77b8] 2015-02-11 Lars Kanis * ext/pg_connection.c: Replace quote_ident implementation with that of PG::TextEncoder::Identifier . This allowes quoation of array of strings in addition to plain strings and removes duplicated code. It also removes the 63 byte limitation and therefore obsolets pull request #21 https://bitbucket.org/ged/ruby-pg/pull-request/21 [714601d05fba] * ext/pg.c, ext/pg.h, ext/pg_text_decoder.c, ext/pg_text_encoder.c, spec/pg/connection_spec.rb, spec/pg/type_spec.rb: Derive PG::TextDecoder::Identifier from PG::SimpleDecoder instead of CompositeDecoder .. and equally for Encoder. Identifiers are strings, so there is no good reason to compose it from other element types. This change allows a faster quoting implementation. [df67241d1a4f] 2015-02-03 Michael Granger * README.rdoc, ext/pg.c: Update copyright notices [447962e0dcba] [github/master] * spec/pg/connection_spec.rb: Whitespace fixes [f4a85f78807d] 2014-08-22 Chris Bandy * lib/pg/connection.rb, spec/pg/connection_spec.rb: Allow URI connection string (Imported from https://github.com/ged/ruby-pg/pull/3) [d4579ef9eae4] 2015-01-27 Lars Kanis * lib/pg/text_decoder.rb, spec/pg/type_spec.rb: Fix decoding of fractional timezones like "-00:25:21". [766aa353b392] 2015-01-27 Lars Kanis * History.rdoc, lib/pg/text_decoder.rb, spec/pg/type_spec.rb: Fix decoding of fractional timezones like "04:30". This fixes https://bitbucket.org/ged/ruby-pg/issue/203 . [33225805259c] 2015-01-16 Lars Kanis * History.rdoc, ext/extconf.rb, ext/pg_connection.c, spec/pg/connection_spec.rb: Revert "Add PG::Connection#hostaddr. This is new in PostgreSQL-9.4." PQhostaddr was removed from final PostgreSQL-9.4.0. This fixes issue #202 :https://bitbucket.org/ged/ruby-pg/issue/202 This reverts commit 03deab7aa63f9a00984014ce59617d552b4eac34. [b51d736bca77] * History.rdoc: Add a missing enhancement for pg-0.18.0 [a7635c3425f3] * .travis.yml: Update ruby and postgresql versions for travic-ci [b67b92f7db97] 2015-01-06 Lars Kanis * Merge from git. [625e9359ac47] 2015-01-05 Lars Kanis * ext/pg_type_map_in_ruby.c: Use a simpler fix for https://bitbucket.org/ged/ruby- pg/commits/a38cf53a96f [3d89d3aae4fd] 2015-01-05 Michael Granger * .hgtags: Added tag v0.18.1 for changeset f97dd6cb4f34 [f8122014065a] * .hgsigs: Added signature for changeset ba5aff64b5cb [f97dd6cb4f34] [v0.18.1] * History.rdoc, lib/pg.rb: Bump the patch version, update history [ba5aff64b5cb] * Rakefile: Fix the minimum Ruby version (closes #199) [69422cc8dc45] 2015-01-03 Michael Granger * .hgtags: Added tag v0.18.0 for changeset cfb2bfc0f661 [8aff3973f2d2] * .hgsigs: Added signature for changeset c519766e3ec9 [cfb2bfc0f661] [v0.18.0] * History.rdoc: Update the History [c519766e3ec9] * Manifest.txt: Keep the manifest sorted so it can be diffed. [d7cdbfd1b516] * Rakefile: Add a Rake task for generating the gemspec [ec6d6ce61a15]- updated to version 0.18.1, huge Changelog- add rubygem-pg-0.17.1_shebang.patch- Added rubygem-pg-rpmlintrc to sources list- Fixed licenses related to the upstream source code- Added new ruby macrosobs-power8-03 1652089448 1.2.3-bp154.1.251.2.3-bp154.1.25specdataexpected_trace.outrandom_binary_datahelpers.rbpgbasic_type_mapping_spec.rbconnection_spec.rbconnection_sync_spec.rbresult_spec.rbtuple_spec.rbtype_map_by_class_spec.rbtype_map_by_column_spec.rbtype_map_by_mri_type_spec.rbtype_map_by_oid_spec.rbtype_map_in_ruby_spec.rbtype_map_spec.rbtype_spec.rbpg_spec.rb/usr/lib64/ruby/gems/2.5.0/gems/pg-1.2.3//usr/lib64/ruby/gems/2.5.0/gems/pg-1.2.3/spec//usr/lib64/ruby/gems/2.5.0/gems/pg-1.2.3/spec/data//usr/lib64/ruby/gems/2.5.0/gems/pg-1.2.3/spec/pg/-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:Backports:SLE-15-SP4/standard/b0f3c501c8b391ba85464b556a07d024-rubygem-pgcpioxz5ppc64le-suse-linuxdirectoryASCII textRuby script, ASCII textRuby script, UTF-8 Unicode text3^ E|qutf-860626c090db9bf381a16a76940abb51ff7c0da786e65c8337e16674ce4ea5c48?P7zXZ !t/R5] crt:bLL ?WK-s;uQ%E<efI> g"^|>G:1]\脍ڊv=LAJNpDL mA9Vz )UC(+ ;h_29JFۇ6IN>M^hVĚ*Cut.WO =N;f+S?CnO X0n;'p38BARWaAزsolrUQ`'B3ד$ϻWVբK:Z׸1 WLx?=cX e<4{Z^Dм Hy^BJ@K۞ [6ڧZ XH)V0weä]6Ȍĉ(pmr&ՏݸSqtQ-Bז=X[^lͅ*8G?|uHSj-^Y౔X:\qqeIY_X!PU{%[:cH?2K2"DU^a%8Lyu )C8p 0qqGX l͛S!xd]#cEܞuYe76V\::e8e/d{ [pdԩbXiw4..g FKm "M}Y Z(MDgq=뮎7 `PmRD@-b RjC0Wڃ%brR{ȭ W{DgNz<6j mFzz7bÆ+C>G |Z0+gF֕C%ǭH\ (5J$ ${O2" ; :{#Au-@ʼ9exƔ@߾|1UM!;ɾ㿉ol g~R;pW)v{z!Ȳ%cq%@7s !v9|(5 s}G` K-t32Lpv |;kG=o u=+'Mo00F5NYCsjwgu=;| EY?hT쎀,sVn:Zk>/au߭N  a O)"'T@* ,d*D^u?}}:]6#&= GH'ѻF пfL3%' GR϶|tRahXIP6ujKCEw`l#Z:or묭m7ZH+&H|ux 9&QіzgE!z .39=֭l|idG~`RVX,[tjM ,anH,[7m" "@JdN˚p6čf1.f}Eh$:抶)ĝ[3PW˦f`XuʢbH _stmXmFwUU@R{TŰ HtI>^Pvau}2K^/LՇva(  `fڔW><CNӉ>7qBp O;swƼ!ɋnVx8VK!2yN*5'SJ?S' M+UṪׅF! TL@f*LB@;>VƟt pP,b ?whoo*zf0HbA.JM"Z s w)̣ͨ퓿JyhbĕpO@=U T$Aׯ$QYY>o}~-wŻ0mH} Vǧ4< }%}`Kt$=0Y4F!Qԙ5Mhe=Ns|^~S1F. ?HL?cM/z%P~ ΧLKiL:EĽ,d0uBN7y-#8ד"FpW)i!g߮F{Kk,@@ho)[.+Rع^)Q!1o1s kʛUqvh5%v/llK7y1n$v'rԞ~!8lMRu- eSkL}ŢՈa7VvO VdaִnCB{+Ff(ࣘE{&6Ǩ)X+a,miRk&$1*_ }p BZkX'#@ǭщQ0փăC) s`:EŽUR`N,'{|;{hE\;`$;:JgF-vn̕!CwCxjH^ )3Ta*]]C)Jfp@gNE߬1^V2YK^RFUR)G)T!lZJ,pz8ߠgm;^ _|-e䬣Q?x}FÛ,$>5ϭv.WZ!C l#7|uO,Gg ؎#eD:A7@h}YBjA*"l= yk7Kop4:c\o5[ 33b$;j M4j4?Gb- ^72ւ!]SCeekwpν)bq+}!_/psM :{湆Qoq5&[TP(r|Bx7IF;srF 7 VZzT1h[?Qfγ/c݂/DO)hП^PE~S+C[($Ld0Q+ewQoT/ f[@9?q9 r=Fo,Ƣdw[iN?i5 ȼuqZnޠY eD{!"x1g`Mh_:Jիyh{87SyC_SC0#ڝa,s`u!#L錐,*ĐcLYN>V͊2HF]$ׇ[FeAx3a;GHEN(:9})@8YwrX s0G !c;=P{FUDhfg- (f= 4ruOf񏙄B~1 wǺ͗ ɴIN3 ձfPM$tz#Я>kT4g4rL@%(ZR9q +4QOs,K[`qdbDYzLX-SuTf wHWTxz슝ɹq%МjyH}%@, bił0|ԳZX}S:G0bD)+*_IjKOA`np ¼ E&E?EU{)7*u;:@"N[TŤ8@"f~V R@t?W }<-QjDni=  2|BUy0`?sԇ$PJg+ͫ5dBk2{^g tO'#w(T>g?HgZAXa+"RY" 1iŎlxio `46T0)7땅 "qFeH^:'MsU@:ꫢ4_QriA1ҟbFsb 'md5Oh!W{1߯z ̞WKi?̎N *,PН_&ޏDv)u\Ɯ;{TqV_ xx/郷L8jٔʘ{W{ZokjYl>#@<: q^Z09%ܹ(l\ue Xn,W,/tOMz;mÎߍ5_ʠO1 ̝-/ʁW~- 4j/oc:jܴ󞾰(Y9y9xYSoˈrXؾn5g3N?0XS]n"y|e/Sa?k $cl5O+v[U_A­a5)#:y8ʞ.VgJ 55Y>nun$צx~ 9e8?D7?v7~IJ6}\Dgs4](CURqLƱ%Y2zƳw `m9~(B&qY-{41qnлʭ@§1*p_"ľS[F]+:C?'E8DJ&ukO"af=b+ڼ/x'm\28;ǯKC{gUg'l;#ijMsžH-X0Y#0qAy\ ֆvl!B},B3Sj7, ;;Ӵ v(WIE9xB"AIhuadGA.lȎW& TBI3= ͸:]w"Q7k$ʖb%нF+峸Q©o*!KPk@>U3~T ԵJ7odW-hԧV1u@ka2Euli m3Ѝ1Dl_WՌ*{Ez*%1# U)"O9z(rw%*S]1EcΈXnB>b@GL?׸/(WZHO(F)!LDTrDni7oӯ4is8F*  *_ 7`i,2fFoi{1`!;N8*a(fj i0n#+Kb-d'ЭqA#G THA6d9^C!Ka&h)Wa1S`޹[zn`^V^W ]$3*q<اk P*hk@fpy^̲lh@~Wtف9Q5QuXĸes%s/,% ˭Tk-^5E]o7^B_̚Vg :zH$AQfι8[PU݁.t6jԽߛJ$2P &( / a-'/hP2V|?/~12#e=Д ?HݛQ>,[M^ 8̶,t aH.  Sp(\OIcI-$ S UWa\G끲; w;G~1yuP&, k?b̻{q&8J{B>#]y-[9eqs&f໡sy.`IH >flGN+pqvMhNZ9oT 0 cei/u [1}Q&7(X.*fHJ D҆zuာK٢G%P?,4%Z)vgcO PJ)uкNZ&% I{&L(UWw 1svAb <6HE{ɜ 8r)++) 七 E-{sUq׉.c"Ώ )H*Nw"Ch>qw/6roG7S)m{&V4 jr. y<9zʥd7kh)W\V$=z!ϡ{JKЍ]g!!B7O)zK5sFuo^"BtۇC6Zw P>Z P]ֆI_x(&|Һr1ry͙=l9C㭒ñf]w_(dȝ-/)r?aJM8y*/$ʠ\W``>Ud4?3E֖k4v>EԯMۚ2CqnV$D$lsI)%K.H ݰb$ zab䅒!C8A!/_xTlJ*Z݆Ǎ|4]:$am(x㞮C|f|KXg8r186n Fm8t,-R<{=2R)-A{+cy0p=nm&)z]^W>YNMZJtTГ>UTt)P 㼮{}`+dYGXz&HXmL7JPKUYUݺAnË`|P9d/!@\)9~=X&_/z6g޴4L^!u܀sU*Sl4wKdp׈n$"\NIzA%y0!|^SrR]z9L+B%>,c536Ŵv<@^-̳pGs@9tb-ǨAH<ԬZgkкHډWu-s"Y|B+4AĶU[A\%sM:z!AV tBCj!TcvUҢIBv_Ut=`MΤUz[UDdVpY e b{7LXK2*UՓ 5̗@ȟ *Q-XK^`c"GtAF7+Q>KC1ҷ8L!;[Rkw wXfJqfTQPh"9ySC_Y*‚xE= Up%KVA 7\No^Jc&58EKp=[z"$xe|hLmKWd:|wc8z/+A8 sB dVi q/@ݪY)O9S\Rv Fp_ Qj"\:J_CI,BH(ݎZ MT㧰tC#1;̊! ?ȯ/``"s&V%pk?F7I};g-sbHc3v/B $i Zy/i}DԮ3Y;]ɖV4M@%JtF\i&r[ tcC{ĚԸVE DM/bzjTjU! \wފ׷N%61QpJZ^)?$AW#)eAdG{&6NKd`+h<esEЍ}KR2ԣ(ΪxNlRGhj'!\k>Kx{sOjkqr K322FA%<78֜v]8)Hddy|ʱ9tZ0BV%I[:䓭csxWp/S8ZwI?mV`TI\!S`eǪ^V쑯2X H_OP6Δn6;-ZfB},˽;BUo6S0W~#VeKYLjGMY«8~_)аׁcKvE%Pɚ+y#dsq2]ye`,zL ƥxy%'`afr(U2;AȔ\é0q5b%u]AkD1x~jS3Tbܢg2 S 9Y"HPbYކ*-@:sSB= @G'C&*^`w M33 F1Պyd`mkj 2ޟ $ v4{Q >x{G5R)ܯ oȢQ ۊ\D#K|N%CCg˟}) Y { %Q@?v G*)~Xך`[q]I|C1I;Ee(J zc )̠ח@nD#X^   ݄>s.Ѻ`c@N"b0zjO@MG}CB7ﺦaJ+ѽ3 7mm뵅: Z]<%Ǯ̌ S#~gSHjJ 21chdևK.%ʰ3Tþ(t+BJ)}ۡ eœ(/ QQ*g jxCet, h|h!G<5ZD~䧮7jIWi?CL " 76"i}U:YC:2_dh#f1[d wxp%[>w~Y3]Fyİ jJjx36F`.^ pr,q+l2:f209I(&E=2 C2f]ȡҰ%AH a?%t>]mJw rN9l1`(ViQIej简/BN>3KeFquTOg2:/ژD'1xwujVnb?n` /XSC Rqqu(÷YI}Fv7Mr86sZRO%"[Vu}(v)d{9Q.c83{gܮ=O5R2gVʼnN8#y!G&h\\%KWʒY 8"ZSe lpDJrn.snX( ؐFNzDI!Ʀ&ܚI93c~ӁlԸ.ár)v+aw69K|4k+{k3:qVtL<?eɂP"{Rz< ;נ 8XQV0h377@KH K!>"5$q$Yr,isᅤوHZ=R0afVo$T9By X@DHna|a8 +$~|8ڷ)]pP2OSx&[ FF'=uR/MJk\ChцOL3}bB;{g~XR?6oϱD !l4,Ws?a2;HLTe$n)u3}W} ?,m{Uwlc)ܭ_ 91ex*+m'}10ZLmDÓCQ@ -t7'Bv(c6zߘ9TvjƢ@6b-C;.EA&P6__JB fOa\,,~y b^ ԅS5=WqAdM(Q/2.^~d S 6"|FO{ V Y`f%("'1S:ŋu&1>LnD'!r03Xr'PPaȹ0Hʨ?xRža6hР&dʭL]Io?i8›ʈ/֔v ޜMWgf\ lxɀmO]w gTsN7E"+k#j`+pBXUuYl`<"{|/ 1q+,e?i9gMt5[^sWg&c`jՇ{9ej#6d,9FL7rO \< A8KJ放~[P5FJT.乆 қnq]٫koVBҒ+QW j{6$ъg'MXza/BvC컂+ `\BpVx ~(a|^uD`~N=J*}+8A/![}*Op#P`=+g5ohϿQ]O Υ2h EB*vF@{ 4jB*C+ν=)grhScv+H$)N1­R˼IVȄNfLZb94(-g$Jtx-l}zԫ\n׭~v-=mT"}&26,гwQ'#u6S.ЈP%S=q\0 iUȑ{uљⒹզ׌˳b>2 *O!d:)h ~{,q`̆Ƴm;ĮJ fh4ů=1j1#+vAATIœHk)JyuGIUJ\iR."v#27wGC?<_g6%Zn#2S8b[DjMM]Jy_k}F!`ūl&;pqնcW]ؘ#8SU"t#dB:xDј\ ˂<tK&p G 1Eۈ`>+>J3rd÷>ן#iv^|G+EFg  ZAR-/&L7|P\? Q4Ÿ<+ӏ|!'D.A樻L1XW Q! o uYײ!&ؽl /# _(Vݤr`f ԐM`At /'.6U\x;^km k!,;U\Tm8p>r?0 9d҄XG|>Op^w^wԨ>8?ŭ:LSd@C["6L罵P" Z^ @,#=dr#:QkG2x0?qz#^*`W?dd36ŒgKQT/}yѪ>$-() MX{sc=$&PQH/3#eueQB%Sf㝖`C-)5{\JvOQtTl dB~n/bnW<7Z oBqrm٬ӛVA蚇}Yx[ڠAS̲q89g{^t$݂z!4d{Prz$dh!,VyDžQ;sGndHOݵ̷}§Q64t K/řnÃ[<4Ոt:j/{DnP?6 [>/0]𽨳QR)OR87e'V';G`&V_X^b>.KJL>i\x0 b/X kϱ J%2w.1N M/>;,c=Wn7ETD\Jbl+J 4b8!9vɖH׮깾s!+*ɬB% ޘ~q`ME?H 5H9t5US W,\…Ń^:S .mZ"Smzy yP?Q⚺C!!Vd ݁ƕ=,J2]E=Q,9.Dn^U Ԯi5Y'$LR$TՅAŇy1y̝Ex=K^FX 37 {KM!a{1aCi8mgE);b65U/]D6la'>Ǡرy9b%Q/,n"$f& DدNIAM2^fV&Ԭ\Uh^N^I3>7$X2}*HlAL L&dsԱ+rrYf2vYjoYVZ)TAWmx[!M*D%J{e큈 ɲZC?) \TL]{)5^ FYA-c <ǹ50w#m}ѨPhWWG{8W].o<¢~wLgؽ mO"^ln*̏-D8L Q>y'ր_31N`%둓;' ɩ"@h׉D/M\]鴅 y&qwcg;b]-&pj Y whR),MK5K Z'89/3@3&3pD_)mHamE5 mߛ* k_2=l-ȼab b߁Ӏul];vOXspLRz*?(#0IzlYF!wJ1Lˤzr٣~X%-jqG|}DUy42|)>l?B}|ŒDQXO<6c+cK)['Y様H(Wjab|a8O2ى;! #;ͽ#Б|zZO/ 'z,Ur##H.#]V4nao z~.ƙ%Q~a8EtMT=sr,|LKpOT.m#E")Uǥ@RAIQIMUX)]MN*g1pҩ3_MnAUr^u2LgE_B̙nמ?;Z{Kkx7=;՟X$!Qt8JGlцYՃ`7zc&2˖-;>3`@_MM$EAu_HfnFuPrdƺ$\c}e.wߡP,&,e[̡dZLK"zM7?|#3=j_7s M/瑀heUˇ^'&ʊXFs6 V]At2\mK>2\)L ho֌l^3ŒN16 bj[_'-oM(NJYBVB~'vc 2|CBQ)7j8=g58 ,Sy9+gj ]i 'A!ǭʟ'$ViS>J6+=oD/$CQRSI,WoċCŪrc\ JZ_Eps>A's j#ZELIŴTLDpx-d'ϊ1=2dȆT[rk!V3"⫁? rNS=qƲY-. =I/~*BngG~f[qK=`rv lZȟޮ}P'Z>0'#F'+ ?!=?V \ PV pnBq~ud`OLW=7BL>̈́dܘ ,TL+=Ƶz}=y5YDƣz,I|Gr{ hcaUjPg]wLh"kpO5S8š$ukH$ {{ybz6j=ŕcKx11TP友cVAN;]Se5B6,*T@(c;μѮBK7Lt71\Yȏ6r/ʞ_sEDX50HIvR;d.Gnm6'R&jKzM5a ň(65O<:›Et,ʹ"à`4;'`5޺q"uH|x:091 {p*hT扙")&cDR oD%gw.Cg50r3%~6x1A."ݲ$Re[bC"v1-iJ`%\smnk &8iWN uE .*D sdSfԣ05s . e744[%ArwcrxƊ D֐|c5w'f9D1t9RTdT͟FV5 zȎ뭬EI'(sŊ.f,cOe!gH Y_'+M_"ABvZ Z+u³zIM/[ `W?T>S}VW ''F5Kj^y7Ř3EAPm7E5װIϴa0PYD<_N~zuPP̶cT;i-00j9!y P ~E:M`+&mi ]/6"d(QZsRǙ09(R`1Б}_È|+f3gwzClK y'>RJh,yIi *95Ul̮mVqN'"[RFW|cX-2~;e= EmNE+*r6 .+,Q.َuPB)B8eĤw8+iȂPQbe5B()QT~P3O)9~u6Ey_Z\'(R*(Eݝ ]ֈ֤ˊ1ˬgs-5MٻW B(8?@]?Ԑ.&8S;CC~Jg q )[C@$" -H#2?b ~nd ,KeiGwW)xz92 7^M 5]EuVh7,Nb'P^N67=fG|vrhBb/lH@MV([nc>i&z: P2 :>l0>;w|L6 FZQv(N9D!t|@H(0D-ǜ†XTחEYC]q !N+98Vf3&_m7UH k)HH3z}A@yqDRc>(,ېQICeI<ɛ^0S{/0*t'P<xi m 4qkɧ0?8Pϸ):EnK+FOfIȘv,ۥ"rz:g+َ>b5Vј c0(Bf~zsۋӠs6FB .w^)wj 1d'@3Yysv+I&5_`0*\ s|:IReJu0{yGzK< y39DH WeƞRbҖsE^eZ0VqVQ6R,oo4'ey>"E?HwpO|_kW Wwa(p'q):[ 6K'Q vӢޑFʗgL;kqFRcA`b梸Q]u,NЬt3pꏅgAܮ( Ӿ^>bq[1%-:65]aF:1Hkc35Ae?jx鯛4Jп5d΀:{.EK̓Rrz!qֹv8"/ݒQYudhAF\t/r,%߸{epaշ)-aKI~g.ҩk`5hEc<PbOGw&Ai="W4GJoKx »=Os b%7Oluc49N;׹Z)J%Wlɀb=?YXx))(&]ǖ4a/rSK]u,CZ@NpڎXH+|CeȗP4ۘ^Ņn_F[3'aTKjw5; EEU'ǁaŴ+g|NA3rzѬBfHΦ51+>4-1)W, .Ma VÀR?3 gfn dW&x[V-~ X^/" D!vPw\?=SG\qO@M %*ϵs"05M'լ\2Wz36_<#*;*X`C?IweY,J@)qQu])SvZ%;e,.s3(?LkǴF1JSAnPyJ׎o-| GZf.*ᅦN]s 1н Th vo5>Ro]-C{x bTP J&-U;se> / ~@5pDuO@w|B:*CBJ-wBt^l@n+ER IH" Zs#8;F90mv,w~U hAf Tgڤ%!?: y|{F@ ,/ӕnOvNW ^HYߵTK=R:$1/OqdކNn1~VSܶ&)n+'T C#픔ci~s|VϮи<|z'+CʄЋAsnapIgQ'ѥV'I7~[31s.{uROxܪUmj# R=!;t&%HAV5#ߖɃU)"QP Wyghlj80j'Xo)5YzBa] C,/>_A/xGRwډzaE TWqT"yovVh0A8zz.I|*_1ĕmZ|f1Bϳm3+;xJ{v̅ZLvtch ݦƋ>!uU>|yܼu }eGSjitXcbޜԆ (@ 柔YړM7~eR%Z 8 wsԮ|)ݝ|3ߕzG7Gnmn?ۥO]fP6II5?BT>'.j* 4eXf]2W!s/,QafwX1)N7h\%` >hcL~JuJ5hF̾wA?z P*u/ ~,R7qpR4Nh"7U$]6E} k3MTȄq#Z$_llǭ3 Z_3x00gec|-/ ֏{i*oSkOg(l";~*13S˙2ݱh[@,;LZ9^𬸀N1Q-mS 㢪@i7(qXLeA'p@g6sX=#-2+c? 1{*j4TG^CEWȒ絝ЯbMRp)^W휼?; u% >qOg TӖw[Uc2XŴַjy"_&)ƙC^kcy탊f'Ky? Io( VL Co,)u?mXF,32$}xP 1{uU !h((kd4ә7GQqB)7*,XSn~&Q﷝sAw}FڹZ1\'L JnW ^yݲv( {bOȺs:9$  ew|]Ui6MАpљ}L]2NmJPXQzI 4)7l,>aB}.`o;qD}F)ɉE$| ֦&Qy\!1O@E|rpxe = "xӶ]S: Ć gT8sTkNXJٓFZQBI rMun)1*xv)ŊTLyJ!L^ GP/$@aArgECԺL-r&^Ųn_poC%]y*}C \xC\x5Ĥ)MٽP1OQa9G[] yM@zНmb% ?9TL u8,MVhMxqUmS$'X#?>D9>DY]L,:Qqf[l#@侒 wy!q] can4l£G7rP_nn))_eMIE9hR\!G|s!M#SLcyre}LTergNYfO]bY, gMػDF^+kp KXV[|\ ``n Q,+ VW Ic}^` 4vsMۗWZ{׌ UB?o}ðO竖ª Kgj%o]yS8;t\d #h}4qx4)4ۡ:%de)NG 1KZ+p;1'^_%F\:{Sa ).í@PM~o?$3'ņ`ћ9_Vz&֕x?p~lr?GѰQB h>; r)U(!oCFΛogl,e=p뚉+0<^^ipnSc<4\c{ ;bүknc;lG9Dѕ*bzl)TqW@sMɵϣ–DW>ɶlmqJtR6;_h3e,IPFqxNA ϑ;O+\K_Dl(._J+B8laC` & {~2')1G5Xqo($-|H<K=N*q[BKbG d֐vHtg JZZSġ,v䪷(C@|m0tGSW]df"`D*&;>=/4>'g#ԮU?Ũ bdڱJvBO{gYI۲ _'uW0Ss0 bg9љzVITc]և9 0A ,^Brʳ>ᰂ!쑳$&.PhisR9 ?eH,*"֢A0:C~("L8] Nﺃ69\m4yj)(_4,knNe%iqh(W@3%I=!2s@Qv#@zD.9?}a lZlSX7׋@ D҆>?%@@,b+d8"+F+4&2o ;f*5eN@=݈n9XGȰ 6h1ɹZ74b?j愈 Z*E&#ӌEė~?YMfif[{8 @gNGG'wcwnaX<=vto{SQbOX{E #w|cZ [U>{)XB:T͚zC#:M, ©)@'qjTP&;fY#(eUCMtf +` g>qN{tն dc[ģ~r:GFH6oڂp͖w"?SR`d,JR1W Ye >"Ҙ{D KP)7WX5ȋZ;Rh#ʔjN09}89OfP&zg'T%'h49rok6&vowkRRy.O8.[K=rO1e1}co /D|5p –iXv9{$_0[{G+-yȡa78ZP:(zS1(2ȕD<ֻ?S*Iޫw D$2&0`q6{Nd4;.4[%u~(tr  ;'2 ;\h T:?;)ENqSA^-_J9z%ļ|V ̕D*؍n_V,ֹ?G?Y/Uα'tAh`KbqJe1Fj$WH.(Ә?ӧ0fCB]WN H ?]G6k ?%t!(aL c9R$q埡ڠ4M5MqB[)K Ou)4ʫPoެ ;!/ ^9Z^k*iXus(SΌYק=sv:}pxSS{JQݢ _4A knv u,VJ[n֫tL\XQ621Of"( jsBB @˜&Sש`#%ߤ[@hO#(BÁ޼܃I40̵'K=Q ;EGG_p`zSz@l*O|:irjlI=;?zE .X LkxRsl"avHSqRO. B6p+J'מg!g ALԵ≠3gTD:T}Vk7'y' nY鴐؛}TuBM?$"jJ>A޿\mq^ђ*4> ޚ ]M>>B&Y<_h,iID AUu38}I0wZJoXEl{\&af:9G+](ݎzs޺6-/!VK筀qLS6]NGPM$?U1̩x%c.i:DYS) :4k7v`(>{(Z_{=~%@ IShLJʛթ런%#dkTU_"9G!7i/(/olv fh4cX`#HG{ED֝GsϖIJ+. S%s hŰ!meT>ra G!28SP]M0$"k濻|*ats[9Gl#a ,kbbUSŸ*=G c'a\NKVK<>f"ҟO:+^M?3|*wh%(N,xX@om8gh7n2S BCCf6 N8l$aas.0- ԠaOBҏv@F:H8fdnc }Bjۜ$Dǽ"mBz#F9U#ytkFBcn ! UHEYV:wq7䦗=ouǧ fΥXx7!kLJcfy_Ikjsf }NMسMU^zP/=-X]:X+{|sjsd${Grb4B#-. lǗ0>sT(P40\5xoɕ u2J[+qn@f*1RZ)YĔ3r9#?w9WS@)^NC?:̍o-`n ?֥M"Hik4 ._, lFϾ"X-4WtKy_d+gTE]Wo 9PfWVڇVVQ; :ui42wSzU/M/g\'1X 6J<)j"0uL(uI` #hOȸ (EN]xB< 56Sj/س,caܜg>/[MUQ3del&6\SY'К&ҢXi-_(@uNڨ\(2U.UeW3$|gi[&߷+䎃.R]##mOoY7hleq}4jwo:fAoJL[7 iv0`SـggmwΔbC2YK1}&Uʼn)8X +U?AMb 2o߸-"ջ"5O,n L"$B/,/D:# ;oDQ4JǑ;YLdKo%p?^$s'  GNiG{ k>CQܼ@P(zޠL4#7 2-Pq@8Kϕ(ɇىm#O]΀Gz9BN .e A*i w86;' T S2mcf t/<4s7X(G3P؅K[?C&MƒykT5r2 cC[“˦.͐/s+[&\ГBqF8C|{$ڬ[5Z'c&2y\T0NƒpxLBDUūoY 7J(چ0Cf8hoA- U~ArIiSjt<ޟ r-?uNAGU|c,A+LTfsk,w^͍]n8L(X'u6nzB1A$r-r*u >r+IU,5KQ2]iu]Hx]|Ʈv.SV`ﮠMc{dAC;Iunyi_J}A ҕ}u}ڙTzc2^ /H0~\pƮzj~]*@>]p/ݎ}w&?҃IR3ſ.H疭\/Yo k7جn5QB9큕g^Σ(/R1(!l) 5%_l 3̔F֯Vy|eK0pSłS4i^ySBQ ~ et#+ǮpXǷLXq,`ixM`^2x5Le n=( -x][&ԨbKn+D34 M-KD?@9R Du2q_˞hYc*dC>(i$e :"<45<djڇ5XhOq@ Y?8!ب?/onDnhf]SXݗ]=tfe#`yﴁJ ]H7Erbg?AM6`ȋ"ik&%}Z]xYVRJt9PvHrN#b~§'dBYaf$3a׆+{m[ #ji !{cr~O+S=lB +2Hth K oPou >>D^>ҥxV^&#R{=KrcD2Q"Fjeph.ՁRzo\>Lp_~Vn^wHfP(V gSAo-Ģs[| 6-l"I߫FٞAlw8b ÜARߎ%Ljb`%OnSkӍtQ>ɫUiƒ n7'Ł!?Tye٘ov?I+`ӳ]՝s(taJNVIsIa)xƫ{{TpL:/?RZPyq@bo%{@~RN B Ebk#hb>gB _Oh$ڳô\<7ہ.k z޶3D=u8ȖSYUIз\!tۍPbͪ_-\>pP^tGV m x)$$ݍhOZiBBe,6YVTd)#:ֱ{#R ^iΒ8}e>*tJbDݢ 8dD`RF(>\hf \v~>*̀܅W.!@sP!+j Uuf pǹ0vnHЄXp+j a #O$xh}|z C\&|hA^'A05 QX o#]-W 斧}=Qȟ44XKykJYu瓑N*]$S@9_DWh?q`&.:28%:M-& !Ta{[JLgՁAb0*hRw(m޸ 1%E0s@6/ ب^DW;{^}?鱴'O0E0ʤF*0۬9I{y.Mܹ֥͝VL.QM>ɝ~sKGwUj1\f%=>}_7tT@#; pUXmH,hgmaX(/RMr3ِ^'J} Vg. wu },l.NiG(Ext-=@`@^U60BޥTZ?]\^N~_OU#7›m^˄ ^#$yR9oGf>̈́Kg(CΣVG:/VǥɌ6fRcNa0*cWI9 l={`j H s!Lnj!bź9ГqxԖtBVA%`ҩZXm8H ١4/~ԃ /؍2s-}[PMђИctQa7Ѯ܏_.j//sZd2"=R~5qp/ PW"r`n1 Rda}H[lŘ@z w})H ZN2wEar^[E BʂyDDt-)ۻ0@ŦL%+]$ [7R|+9A Sdf0DQ>(Ͼ} .ҟO>e6.<#2a3Zt2GDo<2G[_α~EU҄?RὨ2T"Z~D"-7a-|=:ًHF6U/#;|w))LlBSPq7pv:m2"D;؜x,cm~ `!In 1la+@/}si@Q/P=QZ}g$spAK=%YŢE?o CRhY5e|QZyw~\j'<;gmD𹡢N)<ŋQ)F=ߑNρr~PCPALvI0MD<=Q|NOsj@s1`aD\d)'c \G YZ