ruby2.5-rubygem-pg-testsuite-1.2.3-bp153.1.20 >  A `k!M@eeeR -Ҕ.5i{fLrTX5`p k=a\\{?DQE*2`1Qk8$5mJ7NIg54@ö-/-Y*'1GŲ?hvf{cgvMu IJ6@-x۸f07ɴqOa!.h@u%&c,ǮMW~&|)gUZ:!]p;~?~d% 0 Btx  l     ,x6\z(89: LFyuGyHyIz$Xz8Yz@\zd]z^{b|c}bd}e}f}l}u}v~8z~~~~~Cruby2.5-rubygem-pg-testsuite1.2.3bp153.1.20Test suite for pgTest::Unit or RSpec files, useful for developers.`knobs-arm-8DSUSE Linux Enterprise 15 SP3openSUSEBSD-2-Clausehttps://bugs.opensuse.orgDevelopment/Languages/Rubyhttps://github.com/ged/ruby-pglinuxaarch64'_ [(s #AA큤A큤`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR`kR1f954fe808507fe6daf8eb800d37cbf5307e29ad4782023eb8f38585ad08531ebe7051500994f08aadeeeb7a3b7a0cc0b6c86e16270968305a7928056a2c185783ec3041411b61f3ad123ae06ec04d29c635c51aeb7ee119d12203eaf1939f538f6b09d284b7e570d2e290418c72beacbaa1887a20fee904153d49e33303680f4b55ff575d66a3d2f7d5fdabe5da8fe0b8085428900d934012b981e6b65038245a233c71be2db9ae060160488378b533c40d36f17daf614b77cb411d7f5ef634349b21b4175e12b8ea048f295d800a4db68bc6f372f462e7521a702f869e2de07a1ece4585a060a5b6c465a39e5caa637098650c00f8d06c6895e71cbee5ab10cd1f32ea8b796cdd4f8c4e4930303b10c981511172fac9095cd40e45496f5c279344d93e0c4a6097bcc85356b04dc0141dde04132581a0cef074ab0eae27003a1104712e30a0b434fc90cb51eaa7583c444ad10bcc9af4a6d2a6591ce57fd972f9a37e3ffd149b61b3c11136cb569e07a53ad61855a9ef145ef3c7a11b125dd23f8cf000f134f720cec17b41991232c6cbd63cf761362664007b67fdee88469070ca877fd3eb73cfc1e1ab5f76dac637b8f280c66fd42ad1572f4961c1c85ea0324b36759773f1889a9373c39ade524512445ea339f66b7c01398f66a11483a1d4c7a54c72ca5ee522838db48a75d983fab40137061c74dce5b041a8fe98e424rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrubygem-pg-1.2.3-bp153.1.20.src.rpmruby2.5-rubygem-pg-testsuiteruby2.5-rubygem-pg-testsuite(aarch-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.1^@^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-arm-8 1620667246 1.2.3-bp153.1.201.2.3-bp153.1.20specdataexpected_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-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/b0f3c501c8b391ba85464b556a07d024-rubygem-pgcpioxz5aarch64-suse-linuxdirectoryASCII textRuby script, ASCII textRuby script, UTF-8 Unicode text'ȒKnf]futf-844f27a3a35ba9a6d94c7cdc6d7d4c3e8b315f88fd9acc41d0b233a0f313f26f9?P7zXZ !t/R<] crt:bLL ;U$'$ |R$ꩪ,)m|nqب1<<0X^i a(ˑ+檠-$Pyv)h)  itIݻ#zk.bDsq DH&1yhX=0Rs1Ept&`U`r6^Ɉ_ v6| x?<ڀOrVU*-* V2g7.KɊe/mC5Ԗh«j3Annɜ@csdg53 輇k\ [~e'b:Rr /cji J. ՌݔP-V2;I4i;;k̘h~E Z9?UeF}h`ΰ¹ n]I{b?,nCx^8#p~j}hBй^`M!?!t7RU=i~Va!,guL01~Naz R3͈sM_gFFߺu.BR직[)dW[S ]d-..~8rC1 ΐ!J#n62(̝TieBbaHc5>ѰwtU&,~?ݸ||S{wdwYouaa[s(~!x }q cAw#3JˑL뚮u Y;9FBMyqsxU'8LFIJuAYLPܥf?Ch Q}ħ[{e-ҹt&8Ս4~[&*FNVx12uG/ϸv8(3ͨcibjau)4q=dls\5قH7 t>b::Ķ~MCD?Wh+\DP fy@5/􎑍V<2`*s"H >* u1] R+h}""mzDE6 9I ${_%r~Rzk_;C3FkW첦̥ j Ĕ> :X(nŊ,zqw-¦vp`—c:ta8Ә*wC#N ;n^Lz"PCJ IE?u\wC>fg,;R|xU)GgGti=p/y \]C 'v:c"aVǡʢ#1 s[H Y{#7ܪD.1;-r<F|+zfFm]8G^:4R.ppky0#]sCrfo){~~dij-53FZL|OO iWNmgEeф!z߰tN>{ +?@Cv9l!r r鞌>-h, qٌMzJ$Wi^`[*Q8AL5 yPķN&-:q8@W@ :MGPҸojˆn38sN7O_WU*s˄ᆻ  3 |`2vmwȬ/}۬5ˌ @tľ_X:EkV2.F N"ga=L.EwF/DTlR>[|qIw.:{ж.= K;ǵ7 I/qv-̈́7^Ak&-! w`^p:QgDD&u7r7e+ TÒFO^hp"&e,M3YHNodr]Y!'L>:R5#("g Uc`7xT FH|DԠ 0I3:3&oYfcͤJ- +iGᗒ1Bl`(33H=犘I(|/6}BNTM|a y5lUƙϔ# 2i<=6#+!MNs{{/ fݔQ3 Pz;|Yuthp_ex0{ͭ%^nިP!#T-}ir7rbPQqMJ}@_>;4XK [d٭lR0 /O;sZ&E|#7Ic߽a@U.DhA4,pԴHN\Y;9:dvFRkJgP!Jɝó@G]o!Sݙ S'?UHvh۞lH6o]}#mi:6J$z7hQ/oC}]C@5§ȡF~I%%9>q"Z7i\+`״4U"ۧz/46-+#N5 ƲzRĉ8$y5Լ/t&"'\K *RF *0J.bv}i?k>KaEynVȎHw'Xz5fT Shoڋ2q}kT?bHaF3pZ7#qj#[콫΁]KKh-Q ړ$2IO'Kǟ߯;>gM_<;'qc^ӊ =kz.9IBIDpU1Xu0 ^ v4+nr=CW]rUZ|)+(p:v,$j-ns( ֢w Bh كWh Q ^)m0?F ͎8x{y;be4( B a8 /jTI|C?D/awC% L IǏv| B *dZV%Dgi[o\~}]J\:/p0.,F8wae7 'S7;! 0Fj_%;waj5G;!<`'lLy[%UU~PŴQ`^1lKknei@~&K!yp4uz3KB$/B}7U n>,y[^B\xp.ɊƔҁd Xyy%,-:I7"d&CE*hCd*1)VkKY WoE^H['փχ>>¹k=a+}BZq7 mUooz8G ~*-Œ<&A3 eca ((Hr"x⊕ˀhA`t/9_vcx:S ^p+.Q( \+]R˷gEΙz tA{/]NpL%+(pXw] 2V;L>s}X? f&*`^mdƀ1|I4A ĚBB4iL{GPԞWm$^NJxOW )5x8'f_#$-x6m.uϦDeO^r :kM!$Rr+֥_9>Խ͓)Z>"tlSLEG䌌ā$J&[.|(_qYk۵ Ev )"6=XL椑+e!(j>.v8}xe@y=U:^R`W ke]DWx7\FㅅFYA pi_c,-9c1,0Ւ&p6B2+{Xp5[}ËY"yU؇?܃aI|lSMrH~BzAui܁0M̩*C1K>ݞE^Kg;F0vLo1Gl?G3\U [mȉV^]DO+ ̄fKҸxNpxIMM3iu~ۦ:uaXۗ ęfH2wR$uԆ׮LcIpIŨWg)_s0gKfO^8I'f' Ae-0ԯc=E*ݜn۶Cў| #Bߒ&LJBT7U|aiyT/ (}X;LAu%1ՀX$,w\:th%[ mnBE[ߣ# d8mVa<Ҟ|t,~VQ.BM9UGxPq Merv :sɸ*Lb.PD+LQ߹m.Um18•3q@eY %;}69@ x *ui6K&H3FU1{fpő|OP.3`KJ\qWB8,k8X @qɫ,LٚBk5g$ΖEVՓxpPשtץofE9cAaBK@4ȡq6*Bw_\=BԉŒٝ0%53Bm ׸"[I:> D7HϓL9<eb<ɴ1V5lky/}~wyb^[=50GB僌zS!j^J(9A38 xYj {=Qwpu0㪪S.5,#Qa!a}w2%Y`ǭ>( wpQȑ=ra9ϕ%mYpvZyD<;W*:/NR3:^}V#u:F&jRadYLQ_g~8iN QDU`X@V[CƑghM-BTKw6ѶAmoвVYPGdIecJ0xz@aVTggK!YNIC23 !_yhuY0)ۜOEl8H-uGTQr"oopH YXۂwWhw rK"Ѵ Bt\2Q& R"ns5o4ʌ6_ e-p]pr+$ۖs*RдKHKko?/m?AOcb/Vx$ zw7픻[4K >hbg]@Yn䘶u|z킔8T&SXdlcS!,T+ :NZ\Ub8@MH,"UFKu_S *$UT^Zgګ+$jeNy1DUOj tisfUFD[\Pi|tUm\h@b~} sS=1QRWbgIOGuVv.so*Χp ww΅9TY˰tGR osØ?:;:נK tBjDP4?B ̿'9.`Փg#+KfϨsP=`̵KFžA%J=얄?b7V5 HGgܪ '&bhUHD Fjr>`/'+؟ڦ\Na ,և}:JT}5*,F!]n2W-L2>ә uy`W+3<;\8i;1=XkgPA$6l>٦_Fy;Ѽx~e2%ʾ)yepQе)`;׍~?.\wWc_qfn䭡 y O{c*vmr=/jKJ{=7K}F!oda׳dr_vvKM9TZ^p-?ڪT0b %ۊ 9{W%\)\3[ýY/Mm1ԣ򷼐= S(|_ 'WBDM׃L{XޥTF܎&X1`0wnԂiApNt0;^U,(BU>C0 ,shv$Y- }bykc]"3]3@󚠤(RaT}y#x@tO+i sAhW̠g#7[N8IcNi_ PL_R-G*`nztB߽ H`)܂F keЍ"3'~JI-nc\ N ܄@lwgʡ;m&ޟ20܆L!TntN97q lʞslJ.ga31Kj;M Q|ZLV>R?ʭ8[Z*=~>"1"fa`}(Ao hc:Jn%gQ?fAqh`}:^SX[8%:OOVG021* OpMdHKuJ8Dʰ3$ R =tOgj~wbE3Ycf6P=j NӜMO DP^%Sl"eiH!bAHgq 8N2a_W(WVF4`ܠVP YLiW{\V- *$RMX#Κÿ*7;(dižlljv?|`t(Z?9x\ ڃC٘" Ig*# к޺ruCAN" 1R)U&>]@*K;B-JJHZIڝ5Lk}6"cP ]q ]nD{E n3?E=GyV:mP['.P &xj,ghW-m ad Oڶv0;6G=ej!By"Z<bNQ/ֶ1X|v֭B̞:Y}ʒSh]zMrZX峋`7B@" fNr TIVS߷e,=kv,02].5nycaR(Og8 >>aI`D|B^TFJ@TgCOLͨEoA={:N>Q gK վN~ р&lbuUMS;#<8vIC=ccI}٘J;F pJ.sG,?\g%]wBʶ:-~-蛐+xPL"%sA]e`<+Sɼ6 P<(& Dz@Ԕ^ t8VKKT籷62҅bQp ih )Q*=Z{mdO J\e$bZ!G5]Ct"0a!|@(5z+a3_by93V3RKA5o:8;5z)ҝȭ.)PCˌ?PV>k:?6NjpŅ՛U/Of].(ozNjfzHaZ,?^"rx8}ߓtNZa'<8KXYNouyjYZEwqQ@̃*)UgtP9X0lxxD%r1WMS(nec\Hݾ2 VZgC<|ǔ{tEȅ3P@΃wV'.iA>& ZŊb҄JOǵ *5pUBB/?h>,4?Fo~;?8A O!ezP4,ģ򵥣:ʒoai\uVqFBbHXd͇ɲJ%TڤLxCa]P KץEl|piSiftuVX;U"gFM1H8.73Y<% o~rjNZ&``us!10[b :HÍhU 3%h3} +=S(0> d-Dޫc 88g+D23Io^+24] ljI"{+;7h$kv06De@aԾ3] [Đg}6O?k`%< qE3mOvpao ڳN;#[)snr7.֣Kd . i0ID UY}ͨd5G] uxJqWH\ GK8T]X9K<" HjU4sH.ѹm8H~MFaBL꬀)+.ge:Eg ?%9GA<ԽjCٞ=G\*^[9.;H{0޶h#zy%ɐyIQIF]o $h(UP 6w$ Hޔ߮GJҢcL׿COҺ1rSgGD33 ]#E 20$:x7"Ag19j3m(k4nX& 뺝 ؍gLNl(ĉbJ#[6HeZ=XJ#*9/!T_ uOAnGo`T-'ca?Tn]٫@v&2GFsȳŌ>RO-I㟥ߩz`=1-s~љKpR^m* XKD{$ IσOԑ6WJ!c*ܣ g3O;maw;[G.yN[KJAd/MjVsg{MZ YrUDm4=Ȫ'Ρ.8yGUT2ΜvW3Ly]Ҧ"LYa o8b  { ])?]|&N9j|-uil4j}EKs\ DF$X[ELH+ W"ܑT)]U棘O}I:-[YOY ټ'B|:a_X^&&|mr3 /_$J}D=}9S`6<eJSU vׅt0-Wkr}ؔbXM&:#U^uM@]&*|Lsp-@IԦ5ƴx /H?6j,=](. {$*k#LX]Oĸjדt<3e o粄l:z޿|OGo4V^8 !29x h=w#7p4k D]pvw2&<?kc"Lo_oیpwAY/ 4 eք܎oVUybS0ơmOð0lYz4DN۾L Rݼ2:v+>A=/jSR*E耨G\ڔ${N$@ Kv3"ףˋx!7c4\m-;M0/ܞv"*%`^޷rẝ%! 9g`Bg#TJz+_X`lc W^jsW'pK#|Npw ^ ~lye*yu^C gZ$ĎfJsA>եq"`U{% [ $Yi|S$/pbQt_9ކ 1%Jue\l.kf:# _{Ѿ"-!add/uHyăn"6 Ǫ'`0SYC z}l-59!HX@pkCBu@BЖYZYIH uNW3ۓF-x53.11=qN +QѹТߴ`XIQ;i>LN܀S4CW^'G9~ٜ/[5beTMK8Ε 5nD?*^l~. >HKD5En ƙJZ{͖b^IZ]]j%IA?}kk:67`Zd^~? Zt/t(nM?]ڹ q;Ռ:i;@b3KjD$mKޖ]~_Vɫ4Z El0ҘB'&ӄwO7cjR-}7]#Yw Qc1i}eA ‹A ̾/ ̱gұ/F!AwZXgE~4(ncGߦւq.Z dfy;R+uڛ_\ H߿>G0&1:+jg{a5?5C|nѼʁo5F1 )@ՑC6/u06YHu#UD.|WL~ǻH썍`=ڈ{vg 2_ ,R4I/Y:E2!a ȐcС/"r~r2!<"m#H.C_5 CKHJܘYDj i'[TOW#l}O  LOْf]Sc9SQ{N-ws cye2^׹ Kig [YXiv0[{_<;1gH*@"A8MZy{dI FzGE$Pu6j 䅟Ntϯ{ xjU-7IP+? uB+Rc5",w[vWCMI:@!&=1f9yE A(殦*@KR 0r'ZѦbb=+PmAMA:ӻ~:Z˵ Vc K/:;ƴ1b۩i+Ctq Xr )kB}rm/c&۞5==WPAwnI5 X{ge;iZG6ApCd K@ yo@"i(j.gBnUb;3&DvMwWCĪC74"0=$;R߅Hb6a(hT6 Ut%9$Ft#Tk\xm(I1jQ#h3ՄK?1}]y37Xa|ݑoh+`Jȓ}źud1Mw'\-saeOV n9׿R1G mѠ`xyΎՑ%aaCx}9>M\Ph0"fwQ/P]3 eG<mN& ゥ kxr:7 (sGS;/ފ/W301tjJSR0cS6,]̥2bcW\ms\B7hA$'AZru,k>YHoH$+YI:B0 -H eH(RB;(@yќUX$gT<}%fUK3հFX9Y_kYn֥h.=dY׫I[9ܥG@7% `WJay۰n\̥SvC+ꅅ9NpZِ3Ė_G.mQ(zbQc"%* [@r% y&29lG+TdJsjS@z%o<$TCfM{r'9Le>tvS|^B7{c~n/ R+" wԸ` @"(2$"+*̈́qbQlF}")ӻ%/x/M}rG v{{ v:;dA㲾utc-VO-͋K&?*\1e?8br]"9o[QCF zФ/r_K,+b$˅fD@x[6౔\n-+9H#7iM@ZtrWճJ9v&\dېͱJdG.BЌ7uƺDn3+^eZ K͹L=#Jzϱ@p5. Џ3b(vn}&#lq6~}1*A̸X{apzO MX1(hW_ֱqЩ%!_ЊT6G72oŁqTHn2RQ[wM}5ķ0Hge>ܤ9" <8  ^ *?.h}c+x9*;z.V4W,-kS;1 @tgL<)YQ ^Z0 =7"(^M[Y+؇ Aq! mgU>@B--+:GQqeqE.wcUZүp>̀?{s@iR.ۡb7êgeɳEQ77K}Pv"Kk*zL]U^M7BٓOыMC9Ls«8BsLK犢IϠ5B9^WRN2fV0wɢ|Wy*seShxdc#0 ȍ@jcE?"\yb̪6f&珨OSr C[9L'翹o;O/%0s15X (5D/ y8UR7aܢ1x5Qe5#M6G&OW5"rWqQsk'F{NA/Ug`QOcdni8|M>ha$_,^Pp47R,U 8K>emoG C'*쵯%ZS4gY}45lck=Rz>g)gՀhDG:ЩOnn'|tR 1ʽ )U4|nNi-tX F,l5=99qLm6f:/0_*B1zM iY.aSQHgZNrXnf&Aiy&ॹk1&R.=p{H@%=VVےhqEc*16g]G%H;кg3B2f?$%EAae2V*?P *za: L$tYϞ;WynHC swt"{oDZwaѢ´ p|c[.I<`MbdJ6"CBOW}c*d&u߈a7ݕm?I"&|PryqT(+^%{ė4eiϪ/I=5bYԚQQ=Jf|JU\_Uj:iP8 14ɛ`⮦ߛ5t"̱Nxsu PXZ~? H}%5@!քdEx9ȃI& q[!/ohv#Eou}0W(B^\q^^.xבbwῼf\\7yF=F_HM&Q?/t" .дC̫f9zeRX. gjincaM_ z< HDtjl KA_~K!96!`&AZWjU38 3hval>L(&@-*hdwꅊ2:I"ND)l6k}]n^Dk{uv0U %Iivzd\\#7TM{M+X]UpJC bF|iE[ЛAc"N\%1SoRsqsDf BO|RnP2@13c!EQO_źo]R ˫\]lEf VmS:5kPcF%ixօ%trA>#bͣeQyhknw!޸E&OeF[KH%M6){RTd`UYצVQjcc !{ŢP H0hU& Ө;Ӈ>K: 1'\$um)1Au$ yaܦR}UGx$/ nϸ 3Bh&T1qnr64tcnYkE5#wxTr#c“[=ʄ{I )IXؑ&C*4R=*Em u`f3u.՛p_Όv-o:Ίi~ 9 JNAFm}/m)%f2(,-q'RM7- 0t%2 q]..! 1#݊Vq$qJa>ت!\ZXBmfLtvVrV"f9B߀y.vtS [BsHzt>QJ *w`fJDX:Y#rLSA?ٽҶ%8 5`cWy q#mr~K D LchwAl/׺l>4ƒY7YQ3kJ}0DE'7DL'lyW׼+p̈́D3 bAp [./3X}dJ*&=M>#BR`-5yzm-i:)>k(! >lO/uy`ElMySZX𥞳9T>h_H~xzCVѬ[v:V|ץ &ql||f?X#iUm!6l^zg; | -c1}xjecD 5Dd/6E =ڰ$/g,NٿkŢR%&G~6ARl|{y3}{O4 W(6&_2S\K7=Eh]OKIO&6)&S (3T4fkfdy3Os5L1~Ԟ--C R!F=ʒ I\;Z>Mozlä@ T U0x1<15c>4l+['OHb{@Н'Vzмռ>g sՖΪ3-N?69]8jKNC)XFh<Ɉg"!"@u(lpcd|0˛6ɵֻ8Kൕm??!ؓ+gf$wѨ*7J&Hhlg(H|l-p:ncܮt֮X5 N_!/ͅ0!2TRˎ}J=zz@X!<# u*N轞>r+@p$P8W d/Lmke|wuN5J ʊF#SVy:L}`@H _Or B]suBr6h2@VXSPWٖN"bTΚs/+{GVjV&X,wW:XIܣ3~g :v5 r[Uz GՔT\O`@ߕX?WNSv&JܟӴp(=7/+·aG%K=1<2ْ{E5_qͨmΊ.Kyq,~嵘r1RDem dw7Tt~<")_R8֨1 䇼 `@~]\Lsp߁ph;ȊyҾoexoH )(6J) ΎmMFv;߳Ñ/?ͻ6 oG3&ct⠒?#]ZqBG3~;T<$(i(_ Wj٥曰?¼S[w>NwʲvL|xD9Lyo:ƜU L8!3U9]dvUf50T;K__4 4!̀@1 vZB.4uB5fk3{YDG :,Z3EO¹N=. *xAy;[9y7v L)2=zd\@boF}0~9-+8GT?R edT9%z/uc%õUȖW(<.-n}6~[n4q xjF8*%`;Y-dN];nq#Tz<8  /0X>TCmyd=tbTtAH {ϐ9 [CDmd ArW)<ɠI_VRFi,W:n+y cy WKpܭ `D\YPb!t1[,e.Dxjf:`;p鱩Lyab`w+n2DhHג)q\BW*Rs͚k"R3ؐ34X@iu J:1G%QsaV$*8C|;gpkހaLR >SK)\ʞSsݢvM1MM O3?tScd]_A[,*b{0Z({#$u2>|@6^/G( ~ jO,EWmOS!Y^!\gcQ~1d..Y|i>֋lw.@+Ka)1Ctjj4 (! }ߎ`vːvFõ^๭Cr]i_P4n}~b9IIuxDL1C9's"dp|}gX ˰-S~: Z@V WX/Lc{C9[C69~_0&=`?ݰE y'`ϠqglrS@ 0{"5W635L3K?TZXPYz0c^ڠI_7M >!,LњVp"dՐ~M|-eKqWȇY3>ԞS&CIJIi e+EEͦly@!U =<@` "N\WCI?6`|oCs1btMBZ9ev^0qɟX(ݺGpvX{1)_:@J;թ(}cB͇jy䀯-'A "O\djr*"_aبu9ƅJ~<ۈr6lݍ V Zmsڹ94i|QYޟo&֩VƎN~竼1$PI 17˟xR(Cۯ:fy[ZECYqX+}Nľܒcp!#"Ў =}keҶm1ϨM#s~Ē^|hP$- ܗobK)1㯞 rOk\3lw8l=0; SmJ_7^$4+XmAGVŒ1ǯfʓ"%9-S%y]'oۃY{ob\0`R51z#f93Ƃ`_ч0`Rx?0 tVNjR|C HTϯtBp9ȊʄԬT<{=F4Ϣpӧ0/x`3Qm8F9j* ލ;6AICҪ!Z.լ1#$sj7,_KTr]더I&P TΨ1o\Pv`$ ;##NIOG%J?xMtwJ%̨$} C(9(() *^u8r]R5N8ꓤ}Z:5AZ$Dɴ|;p',#:s`l6s~ J]"Δo>7 <*͞2{Lly 5T@ׁH2vDQfX`;x}@0^q|z^ŎKY!Zze0ŀ%Vsܕ:xştʂH뒛nV|X^xa9LTM|;fOfHq@Fɯm*p,k˄ y'Rn`ofq,?AZBdZ\7kg]Hڐ~hjda#+M@3pi.1rZ96xEÑ2eaE8Nx>_;[ig JV_$.P 6=aLy^F sJ~%Us ];$ PGJc!?d| q^^xKC%Ne%2F£Wl"^3gP֬k5Tt_Gw&PB1 9Zp&|\5Q.0:@@]27S![yE, )ЈS[(}ȠG ']bPV{َG[%zq]>UI%ƿQ3,Y ~ :pê GPhh6X0?hv߶JdoW/.=]n)b *G=Tɑn5iu+CrC+sRc!bZeּt >kVi@N=szz*Q!Eݬ,C1J0fT&KDq@P1>*>m#=m&.6g!=/~鴲eLjgugaCחJ崃 )c\sD %fNps=%YCK׋QθwAZj(\A8N@"<WHg e\(!vt_+O2Vt` lEv4?%ʶ#V:͉?Xx3_5N>h4F,Ud4kt[xhcI7jed8[a;,[CQm@ 8IQ 'ˠޠwdd˖X8fZRUc6r7)^gmp{SJ)~ y&Ipx2 JV~^8hC,GZh=\+Ћb|-o:N׭ޡǃ4c+SyzDҟTwk%*&|[9x㘫0֥v7<Iw-ӏ1GHM*ߨ㡔T̔*Ѣ~M_ L 1xQ.W+DHShN)$8CT`pWKCwR hߨrX荦ZfG>&Wۢb8r=!PqZkKPϏvHi7^rZ:' `H}9,~adAx(m*i& g#x!R$QbR0Z2|0(D d Vpt!˾.顒n!Wggr7]r{Ι끘ԓ|a%c8M&|Å>VK>kc VTB[NHi[L>x`$5SeSt-N) YetL0bfaz+Ҋ$B+ls}˒T<;ކ$E"HVCE3<UGrz9OHi4\OqW9A_qεr~o!% jۮ:mbWvp9ckEl@Lx_/Tپy+Vj4*$Amf&1~jž8Ec4Q,&FJdGF|j A2 l6b+/pfS\ :$QVxr0^ۨ xR;f-ܱ] iKQsL[[̃,Lƒݳ]k['3{/UTLFr9 Pe6Wa2_:<P'/w0R6azg=>ӆ+o9ݥ?%d{\Q\o}4? 4(PJ*2 I\o^=wB'QoEۭzCB^&޾Q[l1x`1Y@ă64߸)S] gәY {pQ,ɹN6$X#mdP-JB?y~>3'KgD$U)hrjBT.5!蟵< ?Sz%loRۃg~c|Q@<G$]֕ܿ5veS=4z?[e ΁0KNvS-ا #̶Of~RmtᢨOjKM:(>%0'-'j +.'}jt ߂*wPދfBBюI!Nˑ$pP1>Nr'@%Z[E[Io@=HBJZ%= MaޚQN!¤{@MJy&lOG pD (ÍR0Jn@6ܖy;)1`#"S)S67 ?7Pٳ7?ig7fDv* w %EJ6.qq\\eVwwh4GUG}"G3i5(MhI48[٬D{sp!-n'Gy}R'?$ϻ$L¢C=0mJ\^AZ(D,fg8 ڙs4y` 5C0u9=]˵dY ;%6 rMVd ۣ%u;sjȲyi#}ƚ4':FAA|H}Sm(MOSѕ{DPlI N)èe hL::I+v(Q)[H%.,0'y#|U,IݪG<|VF!DwF =9YQD} n'xb]+Z+sS\܉2&vR{ 4h t<\R]g.*I䅜( E)VҒ .])|,`b9O5:1gN Q5JXk}=},ct9jY]Xa&`PvWTGCQ2Xzu2Cg܌ ۿd΄%^Jg}H*Ntw , GuaߏSR54I}/Fޒxu,&ޓ/A>F/w.rwEF^iYҠMQ,CԊJz@)1q޼ ۣc;՗I,+TM-.S&N39{\&\O9wV5}K: _JN^L(P'8b5>R ǭ~сC{9`-U$lAkc֭:5="PFS;ljJES(>7ad%4VGybrS4nx.h4?Ub%5g#G2I!$9 L&Þ@ҪNѯL[|wa3K4fOah~5pbGs3XooU@Ô=7j ـ= ,%',>5+ZT_ar@^#I2xQMM|^ߟ|c )=bswz`Rm"'4r0+`ͻ79'R*'U0]j.XC`V-рQ3We}O2IXpL-X@D 232P{xh^J@b2Cٵ1⴪.9aC'b>X0S?r®,>Hw,udT\uvb}|z~߆;ٶjɊG_p#;RQ]%]E J/qu>xyR@&k5 U@}/x恑$:?>V£LS˻q!#.LrcscRR ?GfV2S2M{@qoё?qHvSB1F\M4+p49*_atmrD:8{4۠6чHnxi)&!oHezh%P'V"-qh_pq7I`\XWw>cgtak $:0SN?l\aߋLW ԷJ%p@շkX@]QT^f57{9|!T>AqiH[W6*5drܽZ*GxݹMfkgPd'Y#\ֳ1&JhJ֊.JkQIPdc^R$9rq؛۟"ocY4֒6ZXW=z,ۓqHᔥLQ-s3\}cB17WU%uJ$ 9DWVFS!L{bnZI?jX|:f1p6p|?tR8 P_b.8)=dKEI!cg:mM~ X+xC;CC>J?^X& )^H |lֶȠH&]$?I4˃#[bQObvtg{=yĴ7P-ZR$ { OlR[&P)۔k«jYڊx'P&Ґ^DE@{+i`2Z~@=GTY1S?~5~5gɍZsg֬\Y:0t?NKqPERTpSdL?y[+AɊtɝ28ʤ`N. ݽ ,R+"9qVK`$3X=nt`F@}3M!L, nGG"^d #dG7s`{ɻ׾kg|&_^w*tmk]T$lk֥A7$õc(6kI%Q*=D,rO>.p`AaLf|▔7hbyfu!p*xn/*@e=`vzvXC[2簖Hl-qdሽoE8zvǂ? q$`o9(C6a3!wM Z_KS DQF5(4&NEPgxq!eW( 4&Dnߩ`S-to C(YCe5IePƟ'a]eӛ*͙DUqHW N|ٹa8gM&5N8-3U1fdroSpqs fKc,t A@ywM%*T}PaZƭ`hbpf7kZaI3xE'+*/PC\qŶ;SˊuM L->pE_4:v\3ΠCU@Wի<;lr[8s~A! 2v;KMxbTw:%W/^^t?%椪 'rQp?''3GZW{Ń/7k֦p9ǧ0oQ 8˞KpC9'y_P6zUt0@%IGl2'gQ ,ވ)bGz_IwCF) :Q:$kPڼm{zS|EZ-EP2"ٖ5!^*X:Hu;i-ISv Xr3 tx`=Ki`H|rd[-貭 vS,aڕX2O6ѡ 1Y݂oKBWnPYLӲH(k+ )ȭD㑍h@zU ~D﬍\o,-22`pXrw%Ȱ5r1]d"Uc/zQhp k 5MmKZP^ M|Nc1)Al4_g7>hP= MWu/ 5XbDMąVLLΫ%nSuc7\$1ףɯ zpp'Eƙ#vj֭&q1::6ɝ%lS^W(xFG.wXWW/zsA("M}S+]6B|hZcHNꠣ:%a7_*'_Bz["qx{uݢƚKK ~W5}m@[y _з9d`BcndV oŲ e,AdӊE,ͼyԶ aca02s!UNS愍!ߵ7kϋnQoI5GnLؗ걜1dS^y17auDRs21#FlkT" -,4c/lJp?ut%=;Vۘ lh嶺ɗS5C{,}f])=^V@k`K҃> ;_z  ՇJ.zY=9GZ[vIf zۭ dl2#y3޷F5a@LzU鞮UЀL4#f~%&ZK*RB\=J1et9maKﲓ1.(dh@Myj}`8>1.(1uc;5u b? -lsis FECr΢|ci BXw@.z;N4gW&!(U̦qY)?c%|? ZR$HmXR20WfL&؉Ѭ͌OA^z8[J[?+_0OYİB)pC{X!ئ[_fI5p*Xu=ZΔ*bxE.7I3 7JhLko9 ?u:.lf:6^t* 9#V[WJS?`dbG7 3s-cXČJdUi|B8qmueԻFdD)׌۔4:O"z*Kn_QOC}uz:էq_J%q9']2J1u|R G?XsJGd_Œcm`Wqя F/4&/s^>mGc1xvd%6]m^5_%(R&2R r>A |ǣļ+9&$5X٦bYxUIwj9H!/R,g,a^ tc"3I VaK_`||6 o"u-'r:(VH׽c.iqB)OPke3^&J{XX8#@0X#~4{ی1.~0`asró".hQrUDB 88$&.nYu9 8 [T#R)$$ 4o5Cyk;ʂd&jziCL&9ƐQZF7iUg-IQc/ sg \֜N6" ܞc+ [ AoQ{e8YVH< 45@ꮘcy(.jnY%yg d7Ƒ!ohN,'RQ`oʹCb9=7=! գi{QF]e+0Ӧû ~/EG%b[Rqna1&C@|۬< 1*Hc&PLw抆p_.xI>CCk*k{_+ ;+@rh+\1Ǥk}@DGaȾl)- SĿ!y k QxԐ` D&]a8NٸN~\ +QV# ЉK1s5%$c"HRPvUJV&JRت4jj42Hd\ΠY 8Y60sKVm "9 Ƕ_׵J}Q'CY5)|:,Sͩ/&72`p_\+ΏRZ_ *Qs=;̩7X(y8=U~`>ӀQ!! ']M}]a[ +i9)_pȶ֛-Vj>D?J-\n mbxW@&)/3q*q8֓dKlŒJ{'KG__Z?kEmk ֭+ſ Yk 8\+=\S{?d(B&{q>9؂j=_ b̖&r)˜RvV^PKE9<b$,[GB#/&V|ܽʘ*"Lʔ4RbZ %RKC]k 9)!@53m746/mvBmzdfW_O^tF7۽νۿwofL: W2g4@|Vvz0' N@M_|4S. _kf-lr5դ[aD 9gDd }|-seɥ'lN\G 4.~fvJ8NjnlH+ E`>bÐ&3$a+so)C+3+#A7Z(eah}Nea1}C9Uzp9;| <,*_AB6N wu>|S3s+) ʆZPpD Z".l^.o;jE5|T2IYma._dUnHhH6d}?!n"Y)RfzyHiMOHD1HyYFPd`+JtEy.2y3YFz6Sv5`6p\3̻!t ºzX~gFN-!e,uUT -Lmr#P^)%w ; 㢿 .#{VuGF0⊥vdk|v#aGlP:ф:5³c3e1c~a&LB Kx4qVw:q78nHY=^(^v}H ۱6']!h)WQI|o)}46Q\ v HPI^@}͛#)~t V$cMϜ#a~,tI]J`̾cԞ0p-4JWm52( k]͉,$1G|5 c2q!Ai+$a68w =ykKZԣ HU|S9lh2/:nE mܸua2SO"-_TXS:3[BZڗT<ld:qX5ܔFezkl-9cJMXhj^>a6t*`w d_p ٦|˞u0ujUyT3.adOV1|T80u[O$nXe'3gZ~o遗_TUNs.,dޭJpLwo1{`bYУ;U CAf a!7D:jiGE@ڪarS/;ԽҟsijSda. E-7ϻsՄk|>y!W{lW7K|e?\nu#P'@3uȐkD,>hX1ctNkgKV#gxz<SW5ׇ9S:7=fJbʃekphHqRdyFHG2U{x,䚱WK{_ <[oj.oz1h62n'&]!.rj%5)괩I{zn @)7 X$c^Q5T9Nc)ޜ[oHSi<\MK6Ua7}ʅqP:JlvCua3l/j6W|󣪃~>b6c B{ z؊DLxQM1g|19Hh"(S;zJI +ҫjSwq3c9d1(Sռ)o{t^F]ճwMlTEÈݭ, rް яKxckc,%xv@<^"oZ# nx¾{*jG|((Bٮ&iw- ;w<-Nf afg} HODzY洱F{:\Nt_*aV.) ռ ]SO&-Iҵ%KW/:Qm“.2k0G{5 2@!-M{Xѝ)䙫 V֕v +DsIJ5jp@hr~,."#nNa7:al|ֽ;`jcGP}$O.w8ӎL={ o{:Wq.q-}v,~n>~Pd4<u <Y/Kq V&$T8~p-|ov1t=`x`|4Ag1o9RjJIׄ[ ɃXؚPXU[`G?} 1fvCP^n#qo\OM` OOPQY1`Yr?o[y7pIzOKJڤ_fEynS(:5[3҄kudt `o/KNGE0HK7uczsޣ!TvNdf4xA5`U * *or ^H/W]bcH ;"9IEn2sLAu =2'a(>>9!S0't!L]?XV {L>3g戍@ fhିTxaƠ*J'HCa ʮANfdl3 ZJ$Z}=pa$jbi_a(dcXK\տxciYx˪Q얼^${fC޽. \^ gb~3dco)4woݯ;M_TAհwDt H8Z4 LKoq!e=?Cx~TC-Brmv0VAmK¯H . 12s'րy-:*!Zw!kb:#Ws~X@1#) aWSG\?ƞT*ef\4gCq=tYE_ÑY3ಔPϧ0}T៝iAZ[\#V *, 8g1$IG?jGk)q㩸I dt"T/ZieQS_aZY,bnc]; kV%qIbm+ 2JdB=f$x[ [r8č6ֆJ(7u^#֯$eΨʦ]ws%? M{YelO6:FZV L& wnRyaX?N[0d|4r|KtDeal!~%eL'JGk%h.䇷XYmw .R}7^ ջxT%'rL~!>j~d. ?E/#P`?QUuhNz;Y{g azKӀ Wc YZ