Bugfixing update to ruby-redis-2.2.0 OK?
Ciao, David Index: Makefile =================================================================== RCS file: /cvs/ports/databases/ruby-redis/Makefile,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 Makefile --- Makefile 26 Mar 2011 08:23:25 -0000 1.1.1.1 +++ Makefile 3 Jun 2011 08:50:40 -0000 @@ -2,7 +2,7 @@ COMMENT = client library for the Redis key-value store -VERSION = 2.1.1 +VERSION = 2.2.0 DISTNAME = redis-${VERSION} CATEGORIES = databases @@ -19,5 +19,8 @@ PERMIT_DISTFILES_FTP = Yes MODULES = lang/ruby CONFIGURE_STYLE = ruby gem + +post-install: + @find ${PREFIX}/${GEM_LIB}/ -name '.git*' -print|xargs rm .include <bsd.port.mk> Index: distinfo =================================================================== RCS file: /cvs/ports/databases/ruby-redis/distinfo,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 distinfo --- distinfo 26 Mar 2011 08:23:25 -0000 1.1.1.1 +++ distinfo 3 Jun 2011 08:50:40 -0000 @@ -1,5 +1,5 @@ -MD5 (redis-2.1.1.gem) = XnrGXps9VoKuxQJNs9aNLA== -RMD160 (redis-2.1.1.gem) = cpwgP/wTzLhclgLlKOPS6Ry5uPE= -SHA1 (redis-2.1.1.gem) = e60mYbyZJcvx0bim5NZSnLA3+sA= -SHA256 (redis-2.1.1.gem) = OqssM4+7jl1nDta3rZegvD7V5PCYPo5yCyG8ycqO9yI= -SIZE (redis-2.1.1.gem) = 15360 +MD5 (redis-2.2.0.gem) = qFvqBIZ5e1OchyJtklSNbQ== +RMD160 (redis-2.2.0.gem) = QVYg9f4Vv9bMmsW4FRdt8Z7g2zM= +SHA1 (redis-2.2.0.gem) = ZqkGGXadHi7n/2NCsOPzclzmu08= +SHA256 (redis-2.2.0.gem) = 6O68X85cPyf3srjtCA245M4Hhky0vvyDkwJUhhf/rag= +SIZE (redis-2.2.0.gem) = 40448 Index: pkg/PLIST =================================================================== RCS file: /cvs/ports/databases/ruby-redis/pkg/PLIST,v retrieving revision 1.1.1.1 diff -u -p -r1.1.1.1 PLIST --- pkg/PLIST 26 Mar 2011 08:23:25 -0000 1.1.1.1 +++ pkg/PLIST 3 Jun 2011 08:50:40 -0000 @@ -1,17 +1,92 @@ @comment $OpenBSD: PLIST,v 1.1.1.1 2011/03/26 08:23:25 dcoppa Exp $ ${GEM_LIB}/cache/${DISTNAME}.gem ${GEM_LIB}/gems/${DISTNAME}/ +${GEM_LIB}/gems/${DISTNAME}/CHANGELOG.md ${GEM_LIB}/gems/${DISTNAME}/LICENSE -${GEM_LIB}/gems/${DISTNAME}/README.markdown +${GEM_LIB}/gems/${DISTNAME}/README.md ${GEM_LIB}/gems/${DISTNAME}/Rakefile +${GEM_LIB}/gems/${DISTNAME}/benchmarking/ +${GEM_LIB}/gems/${DISTNAME}/benchmarking/logging.rb +${GEM_LIB}/gems/${DISTNAME}/benchmarking/pipeline.rb +${GEM_LIB}/gems/${DISTNAME}/benchmarking/speed.rb +${GEM_LIB}/gems/${DISTNAME}/benchmarking/suite.rb +${GEM_LIB}/gems/${DISTNAME}/benchmarking/thread_safety.rb +${GEM_LIB}/gems/${DISTNAME}/benchmarking/worker.rb +${GEM_LIB}/gems/${DISTNAME}/examples/ +${GEM_LIB}/gems/${DISTNAME}/examples/basic.rb +${GEM_LIB}/gems/${DISTNAME}/examples/dist_redis.rb +${GEM_LIB}/gems/${DISTNAME}/examples/incr-decr.rb +${GEM_LIB}/gems/${DISTNAME}/examples/list.rb +${GEM_LIB}/gems/${DISTNAME}/examples/pubsub.rb +${GEM_LIB}/gems/${DISTNAME}/examples/sets.rb +${GEM_LIB}/gems/${DISTNAME}/examples/unicorn/ +${GEM_LIB}/gems/${DISTNAME}/examples/unicorn/config.ru +${GEM_LIB}/gems/${DISTNAME}/examples/unicorn/unicorn.rb ${GEM_LIB}/gems/${DISTNAME}/lib/ ${GEM_LIB}/gems/${DISTNAME}/lib/redis/ ${GEM_LIB}/gems/${DISTNAME}/lib/redis.rb ${GEM_LIB}/gems/${DISTNAME}/lib/redis/client.rb ${GEM_LIB}/gems/${DISTNAME}/lib/redis/compat.rb +${GEM_LIB}/gems/${DISTNAME}/lib/redis/connection/ ${GEM_LIB}/gems/${DISTNAME}/lib/redis/connection.rb +${GEM_LIB}/gems/${DISTNAME}/lib/redis/connection/command_helper.rb +${GEM_LIB}/gems/${DISTNAME}/lib/redis/connection/hiredis.rb +${GEM_LIB}/gems/${DISTNAME}/lib/redis/connection/registry.rb +${GEM_LIB}/gems/${DISTNAME}/lib/redis/connection/ruby.rb +${GEM_LIB}/gems/${DISTNAME}/lib/redis/connection/synchrony.rb ${GEM_LIB}/gems/${DISTNAME}/lib/redis/distributed.rb ${GEM_LIB}/gems/${DISTNAME}/lib/redis/hash_ring.rb ${GEM_LIB}/gems/${DISTNAME}/lib/redis/pipeline.rb ${GEM_LIB}/gems/${DISTNAME}/lib/redis/subscribe.rb +${GEM_LIB}/gems/${DISTNAME}/lib/redis/version.rb +${GEM_LIB}/gems/${DISTNAME}/redis.gemspec +${GEM_LIB}/gems/${DISTNAME}/test/ +${GEM_LIB}/gems/${DISTNAME}/test/commands_on_hashes_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/commands_on_lists_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/commands_on_sets_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/commands_on_sorted_sets_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/commands_on_strings_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/commands_on_value_types_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/connection_handling_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/db/ +${GEM_LIB}/gems/${DISTNAME}/test/distributed_blocking_commands_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_commands_on_hashes_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_commands_on_lists_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_commands_on_sets_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_commands_on_strings_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_commands_on_value_types_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_commands_requiring_clustering_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_connection_handling_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_internals_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_key_tags_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_persistence_control_commands_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_publish_subscribe_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_remote_server_control_commands_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_sorting_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/distributed_transactions_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/encoding_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/error_replies_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/helper.rb +${GEM_LIB}/gems/${DISTNAME}/test/internals_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/lint/ +${GEM_LIB}/gems/${DISTNAME}/test/lint/hashes.rb +${GEM_LIB}/gems/${DISTNAME}/test/lint/internals.rb +${GEM_LIB}/gems/${DISTNAME}/test/lint/lists.rb +${GEM_LIB}/gems/${DISTNAME}/test/lint/sets.rb +${GEM_LIB}/gems/${DISTNAME}/test/lint/sorted_sets.rb +${GEM_LIB}/gems/${DISTNAME}/test/lint/strings.rb +${GEM_LIB}/gems/${DISTNAME}/test/lint/value_types.rb +${GEM_LIB}/gems/${DISTNAME}/test/persistence_control_commands_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/pipelining_commands_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/publish_subscribe_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/redis_mock.rb +${GEM_LIB}/gems/${DISTNAME}/test/remote_server_control_commands_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/sorting_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/synchrony_driver.rb +${GEM_LIB}/gems/${DISTNAME}/test/test.conf +${GEM_LIB}/gems/${DISTNAME}/test/thread_safety_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/transactions_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/unknown_commands_test.rb +${GEM_LIB}/gems/${DISTNAME}/test/url_param_test.rb ${GEM_LIB}/specifications/${DISTNAME}.gemspec