svn commit: r558122 - head/sysutils/rubygem-facter

Romain Tartière romain at FreeBSD.org
Tue Dec 15 00:53:14 UTC 2020


Author: romain
Date: Tue Dec 15 00:53:13 2020
New Revision: 558122
URL: https://svnweb.freebsd.org/changeset/ports/558122

Log:
  Add an explicit dependency on rubygem-ffi
  
  Facter is able to operate without FFI support, but some FreeBSD facts depend on
  FFI to be fetched, so add an explicit dependency in order to make sure the
  following facts are resolvable:
  
    * disks
    * dmi
    * load_averages
    * memory.system
    * partitions
    * processors.count
    * processors.models
    * processors.speed
  
  Bump PORTREVISION.
  
  With hat:	puppet

Modified:
  head/sysutils/rubygem-facter/Makefile

Modified: head/sysutils/rubygem-facter/Makefile
==============================================================================
--- head/sysutils/rubygem-facter/Makefile	Tue Dec 15 00:45:47 2020	(r558121)
+++ head/sysutils/rubygem-facter/Makefile	Tue Dec 15 00:53:13 2020	(r558122)
@@ -3,6 +3,7 @@
 
 PORTNAME=	facter
 PORTVERSION=	4.0.44
+PORTREVISION=	1
 CATEGORIES=	sysutils rubygems
 MASTER_SITES=	RG
 
@@ -11,7 +12,8 @@ COMMENT=	Cross-platform Ruby library for retrieving fa
 
 LICENSE=	APACHE20
 
-RUN_DEPENDS=	rubygem-hocon>=1.3:devel/rubygem-hocon \
+RUN_DEPENDS=	rubygem-ffi>=1.0:devel/rubygem-ffi \
+		rubygem-hocon>=1.3:devel/rubygem-hocon \
 		rubygem-thor>=1.0.1:devel/rubygem-thor
 
 USES=		gem


More information about the svn-ports-all mailing list