Received: by mail.netbsd.org (Postfix, from userid 605) id 939BF85037; Sun, 4 Dec 2022 16:20:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C455A84FEE for ; Sun, 4 Dec 2022 16:20:27 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Kbm_oItDf26S for ; Sun, 4 Dec 2022 16:20:26 +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 CAA0784CE8 for ; Sun, 4 Dec 2022 16:20:26 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B9CD7FA90; Sun, 4 Dec 2022 16:20:26 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1670170826290010" MIME-Version: 1.0 Date: Sun, 4 Dec 2022 16:20:26 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/www/ruby-jekyll To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20221204162026.B9CD7FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1670170826290010 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Dec 4 16:20:26 UTC 2022 Modified Files: pkgsrc/www/ruby-jekyll: Makefile PLIST distinfo Log Message: www/ruby-jekyll: update to 4.3.1 Please refer for Development Fixes and Documentation updates. 4.3.0 (2022-10-20) Minor Enhancements * Add webrick as a dependency (#8524) * Regenerate supported mime types (#8542) * Update include tag to be more permissive (#8618) * Optimize Jekyll::Utils.parse_date (#8425) * Update rubocop from 1.12 to 1.18 and min ruby from 2.4 to 2.5 (#8741) * Always hide cache-dir contents from Git (#8798) * Remove the warning about auto-regeneration on Windows (#8821) * Propagate _data folder from theme (#8815) * Support both tzinfo v1 and v2 along with non-half hour offsets. (#8880) * Run vendor-mimes to update mime.types (#8940) * Expose collection static files via site.static_files (#8961) * Expose basename from document.rb as name to Liquid templates (#8761) * Allow Configurable Converters on CSV (#8858) * Introduce theme drop to expose theme-gem details (#9129) * Relax version constraint to allow Rouge 4.x (#9134) * Incrementally rebuild when a data file is changed (#8771) * Support jekyll-sass-converter 3.x (#9132) Bug Fixes * fix: pin rubocop to 1.12 due to error with ruby 2.4 (#8651) * Load Jekyll plugins from BUNDLE_GEMFILE location (#8585) * fix(security): CVE-2021-28834 (#8680) * Inject livereload script using location.protocol instead of http: (#8718) * Respect collections_dir config within include tag (#8756) * Fix regression in Convertible module from v4.2.0 (#8786) * Revert #7253: "Don't reset site.url to localhost:4000 by default" (#8620) * Improve readability of CI logs (#8877) * Fix deprecation message for missing doc method (#8960) * Fix response header for content served via jekyll serve (#8965) * Trigger livereload in sites without pages (#8337) * Only enable BOM encoding option on UTF encodings (#8363) * Ensure theme config is a Jekyll::Configuration object (#8988) * Remove misleading totals row from --profile table (#9039) * Unlock Psych dependency (#9135) * Fix false positive conflicts for static files in a collection (#9141) To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/www/ruby-jekyll/Makefile cvs rdiff -u -r1.16 -r1.17 pkgsrc/www/ruby-jekyll/PLIST cvs rdiff -u -r1.28 -r1.29 pkgsrc/www/ruby-jekyll/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1670170826290010 Content-Disposition: inline Content-Length: 5019 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/ruby-jekyll/Makefile diff -u pkgsrc/www/ruby-jekyll/Makefile:1.43 pkgsrc/www/ruby-jekyll/Makefile:1.44 --- pkgsrc/www/ruby-jekyll/Makefile:1.43 Sun Oct 16 04:17:23 2022 +++ pkgsrc/www/ruby-jekyll/Makefile Sun Dec 4 16:20:26 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.43 2022/10/16 04:17:23 taca Exp $ +# $NetBSD: Makefile,v 1.44 2022/12/04 16:20:26 taca Exp $ -DISTNAME= jekyll-4.2.2 -PKGREVISION= 1 +DISTNAME= jekyll-4.3.1 CATEGORIES= www MAINTAINER= pkgsrc-users@NetBSD.org @@ -12,17 +11,17 @@ LICENSE= mit DEPENDS+= ${RUBY_PKGPREFIX}-addressable>=2.4<3:../../net/ruby-addressable DEPENDS+= ${RUBY_PKGPREFIX}-colorator>=1.0<2:../../misc/ruby-colorator DEPENDS+= ${RUBY_PKGPREFIX}-em-websocket>=0.5<1:../../www/ruby-em-websocket -DEPENDS+= ${RUBY_PKGPREFIX}-i18n>=1:../../devel/ruby-i18n -DEPENDS+= ${RUBY_PKGPREFIX}-jekyll-sass-converter>=2.0<3:../../www/ruby-jekyll-sass-converter +DEPENDS+= ${RUBY_PKGPREFIX}-i18n>=1<2:../../devel/ruby-i18n +DEPENDS+= ${RUBY_PKGPREFIX}-jekyll-sass-converter>=2.0:../../www/ruby-jekyll-sass-converter DEPENDS+= ${RUBY_PKGPREFIX}-jekyll-watch>=2.0<3:../../www/ruby-jekyll-watch -DEPENDS+= ${RUBY_PKGPREFIX}-kramdown>=2.3<3:../../textproc/ruby-kramdown +DEPENDS+= ${RUBY_PKGPREFIX}-kramdown>=2.3.1<3:../../textproc/ruby-kramdown DEPENDS+= ${RUBY_PKGPREFIX}-kramdown-parser-gfm>=1.0.1<2:../../textproc/ruby-kramdown-parser-gfm DEPENDS+= ${RUBY_PKGPREFIX}-liquid>=4.0<5:../../www/ruby-liquid -DEPENDS+= ${RUBY_PKGPREFIX}-mercenary>=0.4.0<0.5:../../devel/ruby-mercenary +DEPENDS+= ${RUBY_PKGPREFIX}-mercenary>=0.4.0:../../devel/ruby-mercenary DEPENDS+= ${RUBY_PKGPREFIX}-pathutil>=0.9<1:../../devel/ruby-pathutil -DEPENDS+= ${RUBY_PKGPREFIX}-rouge>=3.0<4:../../www/ruby-rouge +DEPENDS+= ${RUBY_PKGPREFIX}-rouge>=3.0:../../www/ruby-rouge DEPENDS+= ${RUBY_PKGPREFIX}-safe_yaml>=1.0<2:../../textproc/ruby-safe_yaml -DEPENDS+= ${RUBY_PKGPREFIX}-terminal-table>=2.0<3:../../textproc/ruby-terminal-table +DEPENDS+= ${RUBY_PKGPREFIX}-terminal-table>=2.0:../../textproc/ruby-terminal-table # below packages are not listed in gemspec DEPENDS+= ${RUBY_PKGPREFIX}-jekyll-minima>=2.5<3:../../www/ruby-jekyll-minima DEPENDS+= ${RUBY_PKGPREFIX}-jekyll-feed>=0.12<1:../../www/ruby-jekyll-feed @@ -34,7 +33,7 @@ RUBYGEM_OPTIONS+= --format-executable .include "../../lang/ruby/rubyversion.mk" .if ${RUBY_VER} >= 30 -DEPENDS+= ${RUBY_PKGPREFIX}-webrick>=1.6.0:../../www/ruby-webrick +DEPENDS+= ${RUBY_PKGPREFIX}-webrick>=1.7.0:../../www/ruby-webrick .endif .include "../../lang/ruby/gem.mk" Index: pkgsrc/www/ruby-jekyll/PLIST diff -u pkgsrc/www/ruby-jekyll/PLIST:1.16 pkgsrc/www/ruby-jekyll/PLIST:1.17 --- pkgsrc/www/ruby-jekyll/PLIST:1.16 Fri Aug 14 04:49:21 2020 +++ pkgsrc/www/ruby-jekyll/PLIST Sun Dec 4 16:20:26 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.16 2020/08/14 04:49:21 ryoon Exp $ +@comment $NetBSD: PLIST,v 1.17 2022/12/04 16:20:26 taca Exp $ bin/jekyll${RUBY_SUFFIX} ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/.rubocop.yml @@ -24,6 +24,7 @@ ${GEM_LIBDIR}/lib/jekyll/commands/new_th ${GEM_LIBDIR}/lib/jekyll/commands/serve.rb ${GEM_LIBDIR}/lib/jekyll/commands/serve/live_reload_reactor.rb ${GEM_LIBDIR}/lib/jekyll/commands/serve/livereload_assets/livereload.js +${GEM_LIBDIR}/lib/jekyll/commands/serve/mime_types_charset.json ${GEM_LIBDIR}/lib/jekyll/commands/serve/servlet.rb ${GEM_LIBDIR}/lib/jekyll/commands/serve/websockets.rb ${GEM_LIBDIR}/lib/jekyll/configuration.rb @@ -42,6 +43,7 @@ ${GEM_LIBDIR}/lib/jekyll/drops/excerpt_d ${GEM_LIBDIR}/lib/jekyll/drops/jekyll_drop.rb ${GEM_LIBDIR}/lib/jekyll/drops/site_drop.rb ${GEM_LIBDIR}/lib/jekyll/drops/static_file_drop.rb +${GEM_LIBDIR}/lib/jekyll/drops/theme_drop.rb ${GEM_LIBDIR}/lib/jekyll/drops/unified_payload_drop.rb ${GEM_LIBDIR}/lib/jekyll/drops/url_drop.rb ${GEM_LIBDIR}/lib/jekyll/entry_filter.rb Index: pkgsrc/www/ruby-jekyll/distinfo diff -u pkgsrc/www/ruby-jekyll/distinfo:1.28 pkgsrc/www/ruby-jekyll/distinfo:1.29 --- pkgsrc/www/ruby-jekyll/distinfo:1.28 Sun Oct 16 04:17:23 2022 +++ pkgsrc/www/ruby-jekyll/distinfo Sun Dec 4 16:20:26 2022 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.28 2022/10/16 04:17:23 taca Exp $ +$NetBSD: distinfo,v 1.29 2022/12/04 16:20:26 taca Exp $ -BLAKE2s (jekyll-4.2.2.gem) = 83b28534052835db7b6f0674b7a2c769eb1d9452d5c56b1d5588f9f75d0530f0 -SHA512 (jekyll-4.2.2.gem) = c49692d12905915021c5d5b18da4a808c09da04e7338995e7385ecb4b48c39e6cd019378457dc97ee5f16fdfe403e8db53ca151e181e6853f2e3adbb19ac16be -Size (jekyll-4.2.2.gem) = 124928 bytes +BLAKE2s (jekyll-4.3.1.gem) = e02e460f33b52ef46dd7f3017b2afc30d71d7a0a621f6a0e723c833bb1074a5d +SHA512 (jekyll-4.3.1.gem) = f7c456d0fbfde80ea7f0c1bcb194404362cd11e1a580830826dfb56b9bc76181481e5e5a944758322f920a3a0e968709f30850e7d8b8858aa73557e9f258d942 +Size (jekyll-4.3.1.gem) = 127488 bytes SHA1 (patch-lib_jekyll_commands_new.rb) = 5a58a44fe851fb95d03a86a9df4f5671f2b73502 SHA1 (patch-lib_jekyll_commands_serve.rb) = ac115a7a8f85487105b62a44d0746912892dd8b5 --_----------=_1670170826290010--