Sun Oct 4 13:01:04 2015 UTC ()
Update ruby-ohai to 8.6.0.

Release 8.6.0

Phil Dibowitz:

  * Provide a new and improved filesystem plugin for Linux & Mac
    (filesystem2), to support CentOS7, multiple virtual filesystems, etc.
  * Fix Darwin filesystem plugin on newer MacOSX

Jonathan Amiez:

  * Linux filesystems plugin report wrong fs-type for logical volumes

involucelate

  * Fix Windows 2008 hostname truncation #554

Pavel Yudin:

  * Detect Parallels host and guest virtualization

Claire McQuin:

  * Deprecate Ohai::Config in favor of Ohai::Config.ohai.
  * Load a configuration file while running as an application.

PR #597:

  * Correct platform, platform_family and version detection on Cisco's Nexus
    platforms.

cmluciano:

  * add vmware plugin

Jean Baptiste Favre:

  * Detect updated docker cgroup format

Shahul Khajamohideen:

  * Fix memory plugin output on Solaris
  * Add swap space attributes for Solaris memory plugin
  * Add swap space attributes for AIX
  * Add support for SPARC based processors in Solaris cpu plugin
  * Make AIX cpu plugin's output consistent with Solaris cpu plugin
  * Make AIX, Solaris memory output consistent to Linux

Sean Horn:

  * ec2 plugin should handle binary userdata too

Alexey Karpik:

  * Add support for SoftLayer cloud

MichaelSp:

  * return correct ipaddress for openvz guests

Anthony Caiafa:

  * Only run ifconfig against active interfaces

Shahul Khajamohideen and Sean Escriva:

  * Windows Memory plugin

Chris Chambers:

  * Convert Solaris OHAI CPU detection to kstat from psrinfo

Release 8.5.0

  * PR #548: Coerce non-UTF8 strings to UTF8 in output to suppress UTF8
    encoding exceptions

  * PR #544 add support for Wind River Linux and Cisco's Nexus platforms


(taca)
diff -r1.7 -r1.8 pkgsrc/misc/ruby-ohai/Makefile
diff -r1.4 -r1.5 pkgsrc/misc/ruby-ohai/distinfo

cvs diff -r1.7 -r1.8 pkgsrc/misc/ruby-ohai/Makefile (expand / switch to unified diff)

--- pkgsrc/misc/ruby-ohai/Makefile 2015/06/11 17:28:17 1.7
+++ pkgsrc/misc/ruby-ohai/Makefile 2015/10/04 13:01:04 1.8
@@ -1,28 +1,34 @@ @@ -1,28 +1,34 @@
1# $NetBSD: Makefile,v 1.7 2015/06/11 17:28:17 taca Exp $ 1# $NetBSD: Makefile,v 1.8 2015/10/04 13:01:04 taca Exp $
2 2
3DISTNAME= ohai-8.4.0 3DISTNAME= ohai-8.6.0
4CATEGORIES= misc 4CATEGORIES= misc
5 5
6MAINTAINER= pkgsrc-users@NetBSD.org 6MAINTAINER= pkgsrc-users@NetBSD.org
7HOMEPAGE= https://github.com/opscode/ohai 7HOMEPAGE= https://github.com/opscode/ohai
8COMMENT= Ohai profiles your system and emits JSON 8COMMENT= Ohai profiles your system and emits JSON
9LICENSE= apache-2.0 9LICENSE= apache-2.0
10 10
11DEPENDS+= ${RUBY_PKGPREFIX}-mime-types>=2.0:../../mail/ruby-mime-types 11DEPENDS+= ${RUBY_PKGPREFIX}-mime-types>=2.0:../../mail/ruby-mime-types
12DEPENDS+= ${RUBY_PKGPREFIX}-systemu>=2.6.4:../../misc/ruby-systemu 12DEPENDS+= ${RUBY_PKGPREFIX}-systemu>=2.6.4:../../misc/ruby-systemu
13DEPENDS+= ${RUBY_PKGPREFIX}-ffi>=1.9:../../devel/ruby-ffi 13DEPENDS+= ${RUBY_PKGPREFIX}-ffi>=1.9:../../devel/ruby-ffi
14DEPENDS+= ${RUBY_PKGPREFIX}-ffi-yajl>=1.1.0:../../devel/ruby-ffi-yajl 14DEPENDS+= ${RUBY_PKGPREFIX}-ffi-yajl>=1.1.0:../../devel/ruby-ffi-yajl
15DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-cli>=1.5.0:../../devel/ruby-mixlib-cli 15DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-cli>=1.5.0:../../devel/ruby-mixlib-cli
16DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-config>=2.1.0:../../devel/ruby-mixlib-config 16DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-config>=2.1.0:../../devel/ruby-mixlib-config
17DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-log>=1.6.0:../../devel/ruby-mixlib-log 17DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-log>=1.6.0:../../devel/ruby-mixlib-log
18DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-shellout>=2.0.0:../../devel/ruby-mixlib-shellout 18DEPENDS+= ${RUBY_PKGPREFIX}-mixlib-shellout>=2.0.0:../../devel/ruby-mixlib-shellout
19DEPENDS+= ${RUBY_PKGPREFIX}-rake>=10.1:../../devel/ruby-rake 
20DEPENDS+= ${RUBY_PKGPREFIX}-wmi-lite>=1.0:../../devel/ruby-wmi-lite 19DEPENDS+= ${RUBY_PKGPREFIX}-wmi-lite>=1.0:../../devel/ruby-wmi-lite
21DEPENDS+= ${RUBY_PKGPREFIX}-ipaddress>=0.8.0:../../net/ruby-ipaddress 20DEPENDS+= ${RUBY_PKGPREFIX}-ipaddress>=0.8.0:../../net/ruby-ipaddress
 21DEPENDS+= ${RUBY_PKGPREFIX}-chef-config<13:../../sysutils/ruby-chef-config
22 22
23RUBY_VERSION_SUPPORTED= 200 21 22 23RUBY_VERSION_SUPPORTED= 200 21 22
24 24
25RUBYGEM_OPTIONS+= --format-executable 25RUBYGEM_OPTIONS+= --format-executable
26 26
 27.include "../../lang/ruby/rubyversion.mk"
 28
 29.if ${RUBY_VER} == 200
 30DEPENDS+= ${RUBY_PKGPREFIX}-rake>=10.1:../../devel/ruby-rake
 31.endif
 32
27.include "../../lang/ruby/gem.mk" 33.include "../../lang/ruby/gem.mk"
28.include "../../mk/bsd.pkg.mk" 34.include "../../mk/bsd.pkg.mk"

cvs diff -r1.4 -r1.5 pkgsrc/misc/ruby-ohai/distinfo (expand / switch to unified diff)

--- pkgsrc/misc/ruby-ohai/distinfo 2015/06/11 17:28:17 1.4
+++ pkgsrc/misc/ruby-ohai/distinfo 2015/10/04 13:01:04 1.5
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.4 2015/06/11 17:28:17 taca Exp $ 1$NetBSD: distinfo,v 1.5 2015/10/04 13:01:04 taca Exp $
2 2
3SHA1 (ohai-8.4.0.gem) = bde318dbf69be3c21e95eeb3fedd19a3ed85abec 3SHA1 (ohai-8.6.0.gem) = 2eb368734bcc4a265845d89dcbce09f854bb0a48
4RMD160 (ohai-8.4.0.gem) = 3057402129cbe3288fd5bd4c1c5e0fbcbbdd9bd8 4RMD160 (ohai-8.6.0.gem) = 90f8265d0fe6222ffd693e818efbb4dbc277d234
5Size (ohai-8.4.0.gem) = 433664 bytes 5Size (ohai-8.6.0.gem) = 470016 bytes