mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-27 03:26:07 +02:00
puppet: Fix runtime
Added new dependencies that fixes runtime Closes #17162 Signed-off-by: Nathan Owens <ndowens04@gmail.com>
This commit is contained in:
parent
b5cafe01f7
commit
c26e0dad41
2 changed files with 28 additions and 2 deletions
|
@ -0,0 +1,25 @@
|
||||||
|
From 6ce9bee9e23010893952a5b2f6e8fbeb6c4b3628 Mon Sep 17 00:00:00 2001
|
||||||
|
From: =?UTF-8?q?Romain=20Tarti=C3=A8re?= <romain@blogreen.org>
|
||||||
|
Date: Mon, 25 Nov 2019 15:11:45 -1000
|
||||||
|
Subject: [PATCH] (maint) Add missing require: singleton
|
||||||
|
|
||||||
|
This file use the Singleton pattern implemented by Ruby's Singleton
|
||||||
|
class in the singleton module. Require the singleton module before
|
||||||
|
using the Singleton class.
|
||||||
|
---
|
||||||
|
lib/puppet/runtime.rb | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git lib/puppet/runtime.rb lib/puppet/runtime.rb
|
||||||
|
index 1d52cec59b..73bd9eb07f 100644
|
||||||
|
--- lib/puppet/runtime.rb
|
||||||
|
+++ lib/puppet/runtime.rb
|
||||||
|
@@ -1,4 +1,5 @@
|
||||||
|
require 'puppet/http'
|
||||||
|
+require 'singleton'
|
||||||
|
|
||||||
|
class Puppet::Runtime
|
||||||
|
include Singleton
|
||||||
|
--
|
||||||
|
2.24.0
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
# Template file for 'puppet'
|
# Template file for 'puppet'
|
||||||
pkgname=puppet
|
pkgname=puppet
|
||||||
version=6.11.1
|
version=6.11.1
|
||||||
revision=1
|
revision=2
|
||||||
archs=noarch
|
archs=noarch
|
||||||
build_style=ruby-module
|
build_style=ruby-module
|
||||||
hostmakedepends="ruby facter-devel hiera"
|
hostmakedepends="ruby facter-devel hiera"
|
||||||
makedepends="facter-devel"
|
makedepends="facter-devel"
|
||||||
depends="ruby facter hiera ruby-semantic_puppet"
|
depends="ruby facter-devel hiera ruby-semantic_puppet
|
||||||
|
ruby-concurrent-ruby ruby-rubysl-singleton ruby-deep_merge"
|
||||||
short_desc="Server automation framework and application"
|
short_desc="Server automation framework and application"
|
||||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||||
license="Apache-2.0"
|
license="Apache-2.0"
|
||||||
|
|
Loading…
Add table
Reference in a new issue