pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/misc/ruby-ohai



Module Name:    pkgsrc
Committed By:   mef
Date:           Sun Feb 12 05:11:57 UTC 2017

Modified Files:
        pkgsrc/misc/ruby-ohai: Makefile PLIST distinfo

Log Message:
Updated misc/ruby-ohai to 8.23.0
--------------------------------
## [8.23.0](https://github.com/chef/ohai/tree/8.23.0) (2017-01-23)

**Implemented enhancements:**
- C Plugin: Expand GCC data & only shellout to gcc if Xcode is installed on macOS
- Improve debug logging in multiple plugins
- Detect guests running on Veertu hypervisor
- Properly detect Cumulus Linux platform / version
- Fetch AWS Account ID from metadata

**Fixed bugs:**
- Fix log level selection when running the ohai command
- updating cloud plugin to populate azure private_ip as it's currently nil

## [v8.22.1](https://github.com/chef/ohai/tree/v8.22.1) (2016-12-07)

**Implemented enhancements:**
- Pull the complete version string of Erlang
- Add sysconf plugin to expose system configuration variables

## [8.22.0](https://github.com/chef/ohai/tree/8.22.0) (2016-11-30)

**Implemented enhancements:**
- Detect the global zone of a Solaris system as a virt host even without guests
- Add new haskell language plugin
- Better handle errors in fetching the hostname on darwin (macOS) systems
- Prefer lsb_release tool to /etc/lsb-release data
- Extend set_attribute plugin helper method to set sub-attributes.

**Fixed bugs:**
- Rework / fix logic in the joyent plugin and improve specs
- Avoid  ip_scopes returning tunl/docker interfaces as privateaddress


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 pkgsrc/misc/ruby-ohai/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/misc/ruby-ohai/PLIST
cvs rdiff -u -r1.12 -r1.13 pkgsrc/misc/ruby-ohai/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/misc/ruby-ohai/Makefile
diff -u pkgsrc/misc/ruby-ohai/Makefile:1.16 pkgsrc/misc/ruby-ohai/Makefile:1.17
--- pkgsrc/misc/ruby-ohai/Makefile:1.16 Thu Oct 20 15:01:41 2016
+++ pkgsrc/misc/ruby-ohai/Makefile      Sun Feb 12 05:11:57 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.16 2016/10/20 15:01:41 taca Exp $
+# $NetBSD: Makefile,v 1.17 2017/02/12 05:11:57 mef Exp $
 
-DISTNAME=      ohai-8.21.0
+DISTNAME=      ohai-8.23.0
 CATEGORIES=    misc
 
 MAINTAINER=    pkgsrc-users%NetBSD.org@localhost

Index: pkgsrc/misc/ruby-ohai/PLIST
diff -u pkgsrc/misc/ruby-ohai/PLIST:1.8 pkgsrc/misc/ruby-ohai/PLIST:1.9
--- pkgsrc/misc/ruby-ohai/PLIST:1.8     Thu Oct 20 15:01:41 2016
+++ pkgsrc/misc/ruby-ohai/PLIST Sun Feb 12 05:11:57 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2016/10/20 15:01:41 taca Exp $
+@comment $NetBSD: PLIST,v 1.9 2017/02/12 05:11:57 mef Exp $
 bin/ohai${RUBY_SUFFIX}
 ${GEM_HOME}/cache/${GEM_NAME}.gem
 ${GEM_LIBDIR}/Gemfile
@@ -76,6 +76,7 @@ ${GEM_LIBDIR}/lib/ohai/plugins/freebsd/p
 ${GEM_LIBDIR}/lib/ohai/plugins/gce.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/go.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/groovy.rb
+${GEM_LIBDIR}/lib/ohai/plugins/haskell.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/hostname.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/init_package.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/ip_scopes.rb
@@ -147,6 +148,7 @@ ${GEM_LIBDIR}/lib/ohai/plugins/solaris2/
 ${GEM_LIBDIR}/lib/ohai/plugins/solaris2/virtualization.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/solaris2/zpools.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/ssh_host_key.rb
+${GEM_LIBDIR}/lib/ohai/plugins/sysconf.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/timezone.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/uptime.rb
 ${GEM_LIBDIR}/lib/ohai/plugins/virtualbox.rb
@@ -262,6 +264,7 @@ ${GEM_LIBDIR}/spec/unit/plugins/freebsd/
 ${GEM_LIBDIR}/spec/unit/plugins/gce_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/go_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/groovy_spec.rb
+${GEM_LIBDIR}/spec/unit/plugins/haskell_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/hostname_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/init_package_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/ip_scopes_spec.rb
@@ -327,6 +330,7 @@ ${GEM_LIBDIR}/spec/unit/plugins/solaris2
 ${GEM_LIBDIR}/spec/unit/plugins/solaris2/virtualization_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/solaris2/zpools_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/ssh_host_keys_spec.rb
+${GEM_LIBDIR}/spec/unit/plugins/sysconf_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/timezone_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/virtualbox_spec.rb
 ${GEM_LIBDIR}/spec/unit/plugins/vmware_spec.rb

Index: pkgsrc/misc/ruby-ohai/distinfo
diff -u pkgsrc/misc/ruby-ohai/distinfo:1.12 pkgsrc/misc/ruby-ohai/distinfo:1.13
--- pkgsrc/misc/ruby-ohai/distinfo:1.12 Thu Oct 20 15:01:41 2016
+++ pkgsrc/misc/ruby-ohai/distinfo      Sun Feb 12 05:11:57 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.12 2016/10/20 15:01:41 taca Exp $
+$NetBSD: distinfo,v 1.13 2017/02/12 05:11:57 mef Exp $
 
-SHA1 (ohai-8.21.0.gem) = 2d8154efaccac9ffc9edb4dc0a28796463ccc67b
-RMD160 (ohai-8.21.0.gem) = 8c1f87f00637bbe73ed3ca2f3d4eeb0b9a69cd86
-SHA512 (ohai-8.21.0.gem) = 84b8da5648570101921f93480bc67a12d0b781ecd07a00a711933e6049d644d5dc5f2333af0dd60e9135594f21ebfe8c1903a4aac0503c30bec19479713b89cc
-Size (ohai-8.21.0.gem) = 512512 bytes
+SHA1 (ohai-8.23.0.gem) = a35ec149515e714ed863b5a8c92f24ee215f2037
+RMD160 (ohai-8.23.0.gem) = 40192c812834067dd61e7ef53cbe5ac03f1cbd51
+SHA512 (ohai-8.23.0.gem) = 33ed9f04c254662ec35e3540570da16ce4719f2d76feeea099e07f5aedb659b4dd604e267054582a8b435144e75c39845875f70dc304baea5044619a007c072d
+Size (ohai-8.23.0.gem) = 521728 bytes



Home | Main Index | Thread Index | Old Index