Received: by mail.netbsd.org (Postfix, from userid 605) id B014884D27; Sun, 30 Apr 2023 15:37:59 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E0E7684CFD for ; Sun, 30 Apr 2023 15:37:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id CRTy5n-IZbtD for ; Sun, 30 Apr 2023 15:37:58 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 15DD984CC9 for ; Sun, 30 Apr 2023 15:37:58 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 0D719FA87; Sun, 30 Apr 2023 15:37:58 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1682869078510" MIME-Version: 1.0 Date: Sun, 30 Apr 2023 15:37:58 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/sysutils/puppet To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20230430153758.0D719FA87@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1682869078510 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Apr 30 15:37:57 UTC 2023 Modified Files: pkgsrc/sysutils/puppet: Makefile PLIST distinfo Log Message: sysutils/puppet: update to 7.24.0 pkgsrc change: change order of DEPENDS lines to gemspec. 7.24.0 (2023-04) Resolved issues * Puppet resource can't load time object to YAML The file resource now supports puppet resource file --to_yaml. PUP-11763 each, map, and filter functions are slow and buggy on jruby Fixed an issue where the each, map, and filter built-in functions in Puppet language had poor performance and consumed unnecessary resources. PUP-11755 Enhancements * Warn if Puppet falls back to PSON Puppet Server now logs a warning instead of debug message if it fails to serialize a catalog and falls back to PSON, which usually occurs when binary data is present in the catalog. PUP-11787 * Setting to report non-versioned path to resource when using versioned dirs When the versioned_environment_dirs setting is enabled, Puppet would previously report the full directory path to the environment after resolving symlinks as the source for resources in a catalog. Puppet now reports the path to the resource before resolving symlinks in the environmentpath. You may revert to the previous behavior by setting the new configuration option report_configured_environmentpath to false. PUP-11691 To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 pkgsrc/sysutils/puppet/Makefile cvs rdiff -u -r1.37 -r1.38 pkgsrc/sysutils/puppet/PLIST cvs rdiff -u -r1.43 -r1.44 pkgsrc/sysutils/puppet/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1682869078510 Content-Disposition: inline Content-Length: 4557 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/puppet/Makefile diff -u pkgsrc/sysutils/puppet/Makefile:1.63 pkgsrc/sysutils/puppet/Makefile:1.64 --- pkgsrc/sysutils/puppet/Makefile:1.63 Sat Feb 11 13:31:56 2023 +++ pkgsrc/sysutils/puppet/Makefile Sun Apr 30 15:37:57 2023 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.63 2023/02/11 13:31:56 taca Exp $ +# $NetBSD: Makefile,v 1.64 2023/04/30 15:37:57 taca Exp $ -DISTNAME= puppet-7.23.0 +DISTNAME= puppet-7.24.0 CATEGORIES= sysutils MAINTAINER= pkgsrc-users@NetBSD.org @@ -8,16 +8,16 @@ HOMEPAGE= https://puppet.com/ COMMENT= Configuration management framework written in Ruby LICENSE= apache-2.0 -DEPENDS+= ${RUBY_PKGPREFIX}-facter>=4.2.0:../../sysutils/ruby-facter -DEPENDS+= ${RUBY_PKGPREFIX}-hiera>=3.2.1:../../databases/ruby-hiera -DEPENDS+= ${RUBY_PKGPREFIX}-semantic_puppet>=1.0<2:../../devel/ruby-semantic_puppet -DEPENDS+= ${RUBY_PKGPREFIX}-fast_gettext>=1.1:../../devel/ruby-fast_gettext +DEPENDS+= ${RUBY_PKGPREFIX}-concurrent-ruby>=1.0<1.2.0:../../devel/ruby-concurrent-ruby +DEPENDS+= ${RUBY_PKGPREFIX}-deep_merge>=1.0<2:../../devel/ruby-deep_merge +DEPENDS+= ${RUBY_PKGPREFIX}-facter>=2.0.1<5:../../sysutils/ruby-facter +DEPENDS+= ${RUBY_PKGPREFIX}-fast_gettext>=1.1<3:../../devel/ruby-fast_gettext +DEPENDS+= ${RUBY_PKGPREFIX}-hiera>=3.2.1<4:../../databases/ruby-hiera DEPENDS+= ${RUBY_PKGPREFIX}-locale>=2.1<3:../../devel/ruby-locale DEPENDS+= ${RUBY_PKGPREFIX}-multi_json>=1.10<2:../../textproc/ruby-multi_json DEPENDS+= ${RUBY_PKGPREFIX}-puppet-resource_api>=1.5<2:../../sysutils/ruby-puppet-resource_api -DEPENDS+= ${RUBY_PKGPREFIX}-concurrent-ruby>=1.0<1.2.0:../../devel/ruby-concurrent-ruby -DEPENDS+= ${RUBY_PKGPREFIX}-deep_merge>=1.0<2:../../devel/ruby-deep_merge DEPENDS+= ${RUBY_PKGPREFIX}-scanf>=1.0.0<2:../../devel/ruby-scanf +DEPENDS+= ${RUBY_PKGPREFIX}-semantic_puppet>=1.0<2:../../devel/ruby-semantic_puppet RUBYGEM_OPTIONS+= --format-executable RUBYGEM_MANPAGES= yes Index: pkgsrc/sysutils/puppet/PLIST diff -u pkgsrc/sysutils/puppet/PLIST:1.37 pkgsrc/sysutils/puppet/PLIST:1.38 --- pkgsrc/sysutils/puppet/PLIST:1.37 Sat Dec 31 16:21:51 2022 +++ pkgsrc/sysutils/puppet/PLIST Sun Apr 30 15:37:57 2023 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.37 2022/12/31 16:21:51 taca Exp $ +@comment $NetBSD: PLIST,v 1.38 2023/04/30 15:37:57 taca Exp $ bin/puppet${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/CODEOWNERS @@ -1115,6 +1115,9 @@ ${GEM_LIBDIR}/spec/fixtures/integration/ ${GEM_LIBDIR}/spec/fixtures/integration/application/agent/lib/facter/agent_spec_role.rb ${GEM_LIBDIR}/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/provider/applytest/applytest.rb ${GEM_LIBDIR}/spec/fixtures/integration/application/apply/environments/spec/modules/amod/lib/puppet/type/applytest.rb +${GEM_LIBDIR}/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/README +${GEM_LIBDIR}/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/manifests/init.pp +${GEM_LIBDIR}/spec/fixtures/integration/application/module/environments/direnv/modules/nginx/metadata.json ${GEM_LIBDIR}/spec/fixtures/integration/l10n/envs/prod/modules/demo/Gemfile ${GEM_LIBDIR}/spec/fixtures/integration/l10n/envs/prod/modules/demo/Rakefile ${GEM_LIBDIR}/spec/fixtures/integration/l10n/envs/prod/modules/demo/lib/puppet/functions/l10n.rb Index: pkgsrc/sysutils/puppet/distinfo diff -u pkgsrc/sysutils/puppet/distinfo:1.43 pkgsrc/sysutils/puppet/distinfo:1.44 --- pkgsrc/sysutils/puppet/distinfo:1.43 Sat Feb 11 13:31:56 2023 +++ pkgsrc/sysutils/puppet/distinfo Sun Apr 30 15:37:57 2023 @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.43 2023/02/11 13:31:56 taca Exp $ +$NetBSD: distinfo,v 1.44 2023/04/30 15:37:57 taca Exp $ -BLAKE2s (puppet-7.23.0.gem) = 777d008ca255d7b23c4fd6ecf9f1b5b0503c47d93a3d4c55ac662278ee9f1e67 -SHA512 (puppet-7.23.0.gem) = 093284a3b54b52bc1e30cfefd7c2cb5455d00543df98690d56803d4d201f402ef67b355cddfa78a50bd525bdc5cff3dd11543851a359adacadd3ad94ff8623d8 -Size (puppet-7.23.0.gem) = 2781696 bytes +BLAKE2s (puppet-7.24.0.gem) = f8eb1ad15e201b3b1bd773d79e3a8ecb296cf223f68361f235c452e24d60ebd3 +SHA512 (puppet-7.24.0.gem) = 9c2400cc5e98dae4c9ead78ec4ae8cb261769507c93636e205099f503b672481bd12d8b7e0de0bc9438893db08963c6aa6db43fa7f1ff94faf80c058f87a6e16 +Size (puppet-7.24.0.gem) = 2783744 bytes SHA1 (patch-aa) = 8b25b975647023902f5d84cc2980f777f23e789c SHA1 (patch-ab) = 2e80fc9ca8a9326d69c72149e6fd97738cfd2e1e SHA1 (patch-ac) = 38fd0797438e9d6dcbc88e99354dae4ef0b9cba0 --_----------=_1682869078510--