pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/net/ruby-net-ping Update ruby-net-ping to 1.7.2.
details: https://anonhg.NetBSD.org/pkgsrc/rev/3f8ba40ef3a5
branches: trunk
changeset: 631989:3f8ba40ef3a5
user: taca <taca%pkgsrc.org@localhost>
date: Fri Mar 14 18:14:26 2014 +0000
description:
Update ruby-net-ping to 1.7.2.
== 1.7.2 - 21-Jan-2014
* Fixed a bug in the Ping::HTTP constructor where it was not honoring the
port if provided as the second argument. Thanks go to Florian Anderiasch
for the spot.
* Removed win32-open3 require in the Ping::External class since it isn't
needed in Ruby 1.9.x or later.
* Refactored the Ping::External class so that it checks the exit status rather
than try to parse output. Thanks go to Miguel Tubia for the suggestion.
* Dropped explicit support for Windows XP.
* Removed reference to win32-open3 in README.
== 1.7.1 - 26-Sep-2013
* Fixed a bug in the Ping::TCP class where it could return nil instead
of false. Thanks go to Grandy Nguyen for the patch.
== 1.7.0 - 25-Aug-2013
* Now requires Ruby 1.9.x or later.
* Replaced the main ping code for the Ping::TCP class. The timeout module
really doesn't work very well with sockets, and so a raw socket approach
combined with IO.select is now used instead.
* Updates to the doc/ping.txt file.
== 1.6.2 - 8-Aug-2013
* Fixed a bug in the ICMP ping helper module. Thanks go to Yuichi
Tsunematsu for the spot.
* The win32-security library is not just a development dependency. Thanks
again go to Yuichi Tsunematsu for the spot.
* Updated the icmp ping tests.
* Updated the gemspec for MS Windows.
== 1.6.1 - 17-Jul-2013
* Automatically set the scheme to "http" if not present when performing
HTTP pings. See https://bugs.ruby-lang.org/issues/8645 for an issue
with the uri library that led to this change. Thanks go to Preston Lee
for the spot.
* Removed the windows/system_info dependency, since it added other
dependencies just to check the Windows version. Instead, I added a
helper file that adds some needed Windows functions using FFI.
* Added Rake as a development dependency and updated the Gemfile
source because Bundler. Thanks to Jean-Philippe Doyle for the patches.
* Added some warning text to the Net::Ping::External tests for users
who are using OpenDNS. In short, you will probably get test failures
and surprising true results for bad hosts.
== 1.6.0 - 19-Mar-2013
* Split out the ldap portion of the code into its own branch.
* Don't require resolv-replace on Ruby 1.9.3 or later.
* Now gets proxy information from the http_proxy, https_proxy, and
no_proxy environment variables and uses that when making requests.
Thanks go to Kevin Olbrich for the patch.
diffstat:
net/ruby-net-ping/Makefile | 9 ++-------
net/ruby-net-ping/PLIST | 6 ++----
net/ruby-net-ping/distinfo | 8 ++++----
3 files changed, 8 insertions(+), 15 deletions(-)
diffs (70 lines):
diff -r 6a14e1f8b54c -r 3f8ba40ef3a5 net/ruby-net-ping/Makefile
--- a/net/ruby-net-ping/Makefile Fri Mar 14 18:12:46 2014 +0000
+++ b/net/ruby-net-ping/Makefile Fri Mar 14 18:14:26 2014 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2012/03/17 16:58:19 taca Exp $
+# $NetBSD: Makefile,v 1.5 2014/03/14 18:14:26 taca Exp $
-DISTNAME= net-ping-1.5.3
+DISTNAME= net-ping-1.7.2
CATEGORIES= print
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
@@ -8,10 +8,5 @@
COMMENT= Ping interface for Ruby
LICENSE= mit
-DEPENDS+= ${RUBY_PKGPREFIX}-net-ldap>=0.2.2<0.4:../../net/ruby-net-ldap
-DEPENDS+= ${RUBY_PKGPREFIX}-ffi>=1.0.0:../../devel/ruby-ffi
-
-OVERRIDE_GEMSPEC+= ruby-net-ldap~>0.2
-
.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"
diff -r 6a14e1f8b54c -r 3f8ba40ef3a5 net/ruby-net-ping/PLIST
--- a/net/ruby-net-ping/PLIST Fri Mar 14 18:12:46 2014 +0000
+++ b/net/ruby-net-ping/PLIST Fri Mar 14 18:14:26 2014 +0000
@@ -1,20 +1,19 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2011/06/19 14:09:52 taca Exp $
+@comment $NetBSD: PLIST,v 1.2 2014/03/14 18:14:26 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/CHANGES
+${GEM_LIBDIR}/Gemfile
${GEM_LIBDIR}/MANIFEST
${GEM_LIBDIR}/README
${GEM_LIBDIR}/Rakefile
${GEM_LIBDIR}/doc/ping.txt
${GEM_LIBDIR}/examples/example_pingexternal.rb
${GEM_LIBDIR}/examples/example_pinghttp.rb
-${GEM_LIBDIR}/examples/example_pingldap.rb
${GEM_LIBDIR}/examples/example_pingtcp.rb
${GEM_LIBDIR}/examples/example_pingudp.rb
${GEM_LIBDIR}/lib/net/ping.rb
${GEM_LIBDIR}/lib/net/ping/external.rb
${GEM_LIBDIR}/lib/net/ping/http.rb
${GEM_LIBDIR}/lib/net/ping/icmp.rb
-${GEM_LIBDIR}/lib/net/ping/ldap.rb
${GEM_LIBDIR}/lib/net/ping/ping.rb
${GEM_LIBDIR}/lib/net/ping/tcp.rb
${GEM_LIBDIR}/lib/net/ping/udp.rb
@@ -24,7 +23,6 @@
${GEM_LIBDIR}/test/test_net_ping_external.rb
${GEM_LIBDIR}/test/test_net_ping_http.rb
${GEM_LIBDIR}/test/test_net_ping_icmp.rb
-${GEM_LIBDIR}/test/test_net_ping_ldap.rb
${GEM_LIBDIR}/test/test_net_ping_tcp.rb
${GEM_LIBDIR}/test/test_net_ping_udp.rb
${GEM_LIBDIR}/test/test_net_ping_wmi.rb
diff -r 6a14e1f8b54c -r 3f8ba40ef3a5 net/ruby-net-ping/distinfo
--- a/net/ruby-net-ping/distinfo Fri Mar 14 18:12:46 2014 +0000
+++ b/net/ruby-net-ping/distinfo Fri Mar 14 18:14:26 2014 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2012/03/17 16:58:19 taca Exp $
+$NetBSD: distinfo,v 1.5 2014/03/14 18:14:26 taca Exp $
-SHA1 (net-ping-1.5.3.gem) = 925448a283726bc159e3f896ceb6252f1d059560
-RMD160 (net-ping-1.5.3.gem) = f71bceccb98635272827938b6cd02781409aa2d6
-Size (net-ping-1.5.3.gem) = 25600 bytes
+SHA1 (net-ping-1.7.2.gem) = 3bddacd120a7a333c94ced064bc2da301c5c1e86
+RMD160 (net-ping-1.7.2.gem) = ee10b42e25c4e2630d6cb4415ce5ceb4447c390b
+Size (net-ping-1.7.2.gem) = 26112 bytes
Home |
Main Index |
Thread Index |
Old Index