Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 54EDD7A2DD for ; Sun, 9 Oct 2016 15:10:45 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 052E085EB6; Sun, 9 Oct 2016 15:10:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8A2F685EB2 for ; Sun, 9 Oct 2016 15:10:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id vYnsjHdBVQHv for ; Sun, 9 Oct 2016 15:10:43 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D4B6085EA7 for ; Sun, 9 Oct 2016 15:10:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CE7C6FBD2; Sun, 9 Oct 2016 15:10:43 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1476025843165900" MIME-Version: 1.0 Date: Sun, 9 Oct 2016 15:10:43 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-stomp To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20161009151043.CE7C6FBD2@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1476025843165900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Oct 9 15:10:43 UTC 2016 Modified Files: pkgsrc/devel/ruby-stomp: Makefile PLIST distinfo Log Message: Update ruby-stomp to 1.4.3. ## 1.4.3 20160821 * Quick fix of install failures. Do not try to use install 1.4.2. ## 1.4.2 20160820 * Refine SSL examples. * Address issue #124 with additional RDOC. * spec for Stomp::Client - check that headers passed to connection contain required values as well as given custom and that given hash is not modified. * Stomp::Client now does not modify given headers hash * spec description enhancement. * fix build_subscription_id - symbol and string were mixed up. * STOMP_TESTSSL flag should enable all SSL tests. * Add a basic Gemfile. * Fix a memory leak in receipt implementation. * Add unit test helper script. ## 1.4.1 20160623 * Add call to #post_connection_check to normal SSL processing. This change further validates the name of the broker connected to. This change adds to the current SSL connection processing logic, and is **highly recommended**. In the case a client cannot tolerate this logic, it can be disabled by adding :ssl_post_conn_check => false to the connection hash. * Fix typo in SSL failure recovery processing. ## 1.4.0 20160608 * Connection parameter :parse_timeout now means IO:select wait time for socket reads. Consumer clients should see a significantly reduced memory footprint. If the default (5 seconds) is not used by your client, we suggest you test carefully. * Add example programs for sending / receiving large messages. * Changelog format is changed from .rdoc to .md. * README format is changed from .rdoc to .md. * README format change of contributor's list. * Add example utilities for generating the contributor's list. * Eliminate many warnings when using 'rake test', mostly from the 2.x Ruby series. * Get rakefile up to date. * Add the 'adhoc' subdirectory, an area for experiments and issue recreation code. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-stomp/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/devel/ruby-stomp/PLIST cvs rdiff -u -r1.9 -r1.10 pkgsrc/devel/ruby-stomp/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1476025843165900 Content-Disposition: inline Content-Length: 4387 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-stomp/Makefile diff -u pkgsrc/devel/ruby-stomp/Makefile:1.8 pkgsrc/devel/ruby-stomp/Makefile:1.9 --- pkgsrc/devel/ruby-stomp/Makefile:1.8 Tue Mar 8 14:51:43 2016 +++ pkgsrc/devel/ruby-stomp/Makefile Sun Oct 9 15:10:43 2016 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2016/03/08 14:51:43 taca Exp $ +# $NetBSD: Makefile,v 1.9 2016/10/09 15:10:43 taca Exp $ -DISTNAME= stomp-1.3.5 +DISTNAME= stomp-1.4.3 CATEGORIES= devel MAINTAINER= imil@NetBSD.org @@ -9,9 +9,7 @@ COMMENT= Ruby library for the Stomp prot LICENSE= apache-2.0 RUBYGEM_OPTIONS+= --format-executable - -pre-configure: - ${CHMOD} +x ${WRKSRC}/bin/catstomp ${WRKSRC}/bin/stompcat +OVERRIDE_GEMSPEC+= rake: stomp: rspec: .include "../../lang/ruby/gem.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/devel/ruby-stomp/PLIST diff -u pkgsrc/devel/ruby-stomp/PLIST:1.5 pkgsrc/devel/ruby-stomp/PLIST:1.6 --- pkgsrc/devel/ruby-stomp/PLIST:1.5 Tue Mar 8 14:51:43 2016 +++ pkgsrc/devel/ruby-stomp/PLIST Sun Oct 9 15:10:43 2016 @@ -1,11 +1,20 @@ -@comment $NetBSD: PLIST,v 1.5 2016/03/08 14:51:43 taca Exp $ +@comment $NetBSD: PLIST,v 1.6 2016/10/09 15:10:43 taca Exp $ bin/catstomp${RUBY_SUFFIX} bin/stompcat${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem -${GEM_LIBDIR}/CHANGELOG.rdoc +${GEM_LIBDIR}/CHANGELOG.md ${GEM_LIBDIR}/LICENSE -${GEM_LIBDIR}/README.rdoc +${GEM_LIBDIR}/README.md ${GEM_LIBDIR}/Rakefile +${GEM_LIBDIR}/adhoc/.gitignore +${GEM_LIBDIR}/adhoc/README.md +${GEM_LIBDIR}/adhoc/issue121_01.rb +${GEM_LIBDIR}/adhoc/issue121_01_conn.rb +${GEM_LIBDIR}/adhoc/issue121_02.rb +${GEM_LIBDIR}/adhoc/issue121_03.rb +${GEM_LIBDIR}/adhoc/payload_generator.rb +${GEM_LIBDIR}/adhoc/payload_generator_adhoctest.rb +${GEM_LIBDIR}/adhoc/stomp_adhoc_common.rb ${GEM_LIBDIR}/bin/catstomp ${GEM_LIBDIR}/bin/stompcat ${GEM_LIBDIR}/examples/amqdurasub.rb @@ -14,15 +23,22 @@ ${GEM_LIBDIR}/examples/client11_putget1. ${GEM_LIBDIR}/examples/conn11_ex1.rb ${GEM_LIBDIR}/examples/conn11_ex2.rb ${GEM_LIBDIR}/examples/conn11_hb1.rb +${GEM_LIBDIR}/examples/consume_file.rb ${GEM_LIBDIR}/examples/consumer.rb +${GEM_LIBDIR}/examples/contrib.sh +${GEM_LIBDIR}/examples/contributors.rb ${GEM_LIBDIR}/examples/examplogger.rb ${GEM_LIBDIR}/examples/get11conn_ex1.rb ${GEM_LIBDIR}/examples/get11conn_ex2.rb +${GEM_LIBDIR}/examples/lflogger.rb ${GEM_LIBDIR}/examples/logexamp.rb ${GEM_LIBDIR}/examples/logexamp_ssl.rb +${GEM_LIBDIR}/examples/publish_file.rb +${GEM_LIBDIR}/examples/publish_file_conn.rb ${GEM_LIBDIR}/examples/publisher.rb ${GEM_LIBDIR}/examples/put11conn_ex1.rb ${GEM_LIBDIR}/examples/putget11_rh1.rb +${GEM_LIBDIR}/examples/ssl_common.rb ${GEM_LIBDIR}/examples/ssl_ctxoptions.rb ${GEM_LIBDIR}/examples/ssl_newparm.rb ${GEM_LIBDIR}/examples/ssl_uc1.rb @@ -61,6 +77,8 @@ ${GEM_LIBDIR}/spec/connection_spec.rb ${GEM_LIBDIR}/spec/message_spec.rb ${GEM_LIBDIR}/spec/spec_helper.rb ${GEM_LIBDIR}/stomp.gemspec +${GEM_LIBDIR}/test/.gitignore +${GEM_LIBDIR}/test/funcs.sh ${GEM_LIBDIR}/test/test_anonymous.rb ${GEM_LIBDIR}/test/test_client.rb ${GEM_LIBDIR}/test/test_codec.rb @@ -71,4 +89,5 @@ ${GEM_LIBDIR}/test/test_message.rb ${GEM_LIBDIR}/test/test_ssl.rb ${GEM_LIBDIR}/test/test_urlogin.rb ${GEM_LIBDIR}/test/tlogger.rb +${GEM_LIBDIR}/test/unitst.sh ${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/devel/ruby-stomp/distinfo diff -u pkgsrc/devel/ruby-stomp/distinfo:1.9 pkgsrc/devel/ruby-stomp/distinfo:1.10 --- pkgsrc/devel/ruby-stomp/distinfo:1.9 Tue Mar 8 14:51:43 2016 +++ pkgsrc/devel/ruby-stomp/distinfo Sun Oct 9 15:10:43 2016 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2016/03/08 14:51:43 taca Exp $ +$NetBSD: distinfo,v 1.10 2016/10/09 15:10:43 taca Exp $ -SHA1 (stomp-1.3.5.gem) = c53a44fce680e0d934ea3371f9516398dc90421d -RMD160 (stomp-1.3.5.gem) = 72fcfa7cb91e9dac24c77b1e883d421c4278a773 -SHA512 (stomp-1.3.5.gem) = d546f262d9a2d6a4934d66b9849f59e1d4676ffc35ad1d476477a2736e1eba3c8da9ab684204f97935ba6aaf83271a1d8fdeff8ebcdd4446ecababa366940284 -Size (stomp-1.3.5.gem) = 78848 bytes +SHA1 (stomp-1.4.3.gem) = e3043951f022a5becddf8186e5be3782b177df01 +RMD160 (stomp-1.4.3.gem) = bc24bfe3e6cdbe98fbd1558c1f21102342e20932 +SHA512 (stomp-1.4.3.gem) = b23eb5af9323107fddfb1d8d11c8039f567452674e38c7da5a3709412d56489f462b5d0634459c750525ef9a909c988e44a53aefda7e6b6bb30eee4b90a2b948 +Size (stomp-1.4.3.gem) = 91136 bytes --_----------=_1476025843165900--