summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authortaca <taca>2014-03-14 18:14:26 +0000
committertaca <taca>2014-03-14 18:14:26 +0000
commitb344e4e831209bbba4252b09ef3066810a0389e9 (patch)
tree0e187ba51f9c246a6b3994cc5a89b593c8d17567 /net
parentd58f3b27a3c9089eabaa1ad38f0566ffe2147570 (diff)
downloadpkgsrc-b344e4e831209bbba4252b09ef3066810a0389e9.tar.gz
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 (limited to 'net')
-rw-r--r--net/ruby-net-ping/Makefile9
-rw-r--r--net/ruby-net-ping/PLIST6
-rw-r--r--net/ruby-net-ping/distinfo8
3 files changed, 8 insertions, 15 deletions
diff --git a/net/ruby-net-ping/Makefile b/net/ruby-net-ping/Makefile
index d2a51fe4ecf..5035ebb1b03 100644
--- a/net/ruby-net-ping/Makefile
+++ b/net/ruby-net-ping/Makefile
@@ -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
@@ -8,10 +8,5 @@ HOMEPAGE= http://www.rubyforge.org/projects/shards
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 --git a/net/ruby-net-ping/PLIST b/net/ruby-net-ping/PLIST
index 139445e9bd1..4ec16a6bce6 100644
--- a/net/ruby-net-ping/PLIST
+++ b/net/ruby-net-ping/PLIST
@@ -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.rb
${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 --git a/net/ruby-net-ping/distinfo b/net/ruby-net-ping/distinfo
index b494884a51e..42339cdb0d5 100644
--- a/net/ruby-net-ping/distinfo
+++ b/net/ruby-net-ping/distinfo
@@ -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