pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/ruby-jekyll www/ruby-jekyll: update to 4.2.2
details: https://anonhg.NetBSD.org/pkgsrc/rev/912aba0184a7
branches: trunk
changeset: 384552:912aba0184a7
user: taca <taca%pkgsrc.org@localhost>
date: Thu Sep 01 14:53:14 2022 +0000
description:
www/ruby-jekyll: update to 4.2.2
4.2.2 (2022-03-03)
Bug Fixes
* Lock http_parser.rb gem to v0.6.x on JRuby.
Development Fixes
* Backport #8830 for v4.2.x: Add a workflow to build gems consistently
(#8869)
* Lock rubocop-performance to v1.11.x.
diffstat:
www/ruby-jekyll/Makefile | 4 +-
www/ruby-jekyll/distinfo | 10 +-
www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb | 56 ++++++++--------
3 files changed, 35 insertions(+), 35 deletions(-)
diffs (92 lines):
diff -r 72f204f70990 -r 912aba0184a7 www/ruby-jekyll/Makefile
--- a/www/ruby-jekyll/Makefile Thu Sep 01 14:51:45 2022 +0000
+++ b/www/ruby-jekyll/Makefile Thu Sep 01 14:53:14 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.41 2021/12/12 13:40:33 taca Exp $
+# $NetBSD: Makefile,v 1.42 2022/09/01 14:53:14 taca Exp $
-DISTNAME= jekyll-4.2.1
+DISTNAME= jekyll-4.2.2
CATEGORIES= www
MAINTAINER= pkgsrc-users%NetBSD.org@localhost
diff -r 72f204f70990 -r 912aba0184a7 www/ruby-jekyll/distinfo
--- a/www/ruby-jekyll/distinfo Thu Sep 01 14:51:45 2022 +0000
+++ b/www/ruby-jekyll/distinfo Thu Sep 01 14:53:14 2022 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.26 2021/12/12 13:40:33 taca Exp $
+$NetBSD: distinfo,v 1.27 2022/09/01 14:53:14 taca Exp $
-BLAKE2s (jekyll-4.2.1.gem) = ac5914abf1b97205e0c15e2228fac9692b5fa543521012cdb885e88b396a1856
-SHA512 (jekyll-4.2.1.gem) = 7526ee78faea3ee61617f0ab501c3b3d88df762f8db1a27def161226a25c60f555bc7332f45478063b28ea1ef9aeb05aed50957bf8168188924daae79e773295
-Size (jekyll-4.2.1.gem) = 125440 bytes
-SHA1 (patch-lib_jekyll_commands_new.rb) = 78e78814225ffbd3000b3643718cf5ce085bf6df
+BLAKE2s (jekyll-4.2.2.gem) = 83b28534052835db7b6f0674b7a2c769eb1d9452d5c56b1d5588f9f75d0530f0
+SHA512 (jekyll-4.2.2.gem) = c49692d12905915021c5d5b18da4a808c09da04e7338995e7385ecb4b48c39e6cd019378457dc97ee5f16fdfe403e8db53ca151e181e6853f2e3adbb19ac16be
+Size (jekyll-4.2.2.gem) = 124928 bytes
+SHA1 (patch-lib_jekyll_commands_new.rb) = 5a58a44fe851fb95d03a86a9df4f5671f2b73502
diff -r 72f204f70990 -r 912aba0184a7 www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb
--- a/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb Thu Sep 01 14:51:45 2022 +0000
+++ b/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb Thu Sep 01 14:53:14 2022 +0000
@@ -1,33 +1,33 @@
-$NetBSD: patch-lib_jekyll_commands_new.rb,v 1.3 2021/12/12 13:40:34 taca Exp $
+$NetBSD: patch-lib_jekyll_commands_new.rb,v 1.4 2022/09/01 14:53:14 taca Exp $
Do not use bundle unless specify --execute-bundle option.
--- lib/jekyll/commands/new.rb.orig 2021-10-25 13:37:13.511954374 +0000
+++ lib/jekyll/commands/new.rb
-@@ -14,6 +14,7 @@ module Jekyll
- c.option "force", "--force", "Force creation even if PATH already exists"
- c.option "blank", "--blank", "Creates scaffolding but with empty files"
- c.option "skip-bundle", "--skip-bundle", "Skip 'bundle install'"
-+ c.option "execute-bundle", "--execute-bundle", "Use 'bundle install'"
-
- c.action do |args, options|
- Jekyll::Commands::New.process(args, options)
-@@ -137,7 +138,8 @@ module Jekyll
- # unless the user opts to generate a blank blog or skip 'bundle install'.
-
- def after_install(path, options = {})
-- unless options["blank"] || options["skip-bundle"]
-+ execute_bundle = options["execute-bundle"]
-+ unless options["blank"] || options["skip-bundle"] || (not execute_bundle)
- begin
- require "bundler"
- bundle_install path
-@@ -147,7 +149,7 @@ module Jekyll
- end
-
- Jekyll.logger.info "New jekyll site installed in #{path.cyan}."
-- Jekyll.logger.info "Bundle install skipped." if options["skip-bundle"]
-+ Jekyll.logger.info "Bundle install skipped." if options["skip-bundle"] || (not execute_bundle)
- end
-
- def bundle_install(path)
+@@ -14,6 +14,7 @@ module Jekyll
+ c.option "force", "--force", "Force creation even if PATH already exists"
+ c.option "blank", "--blank", "Creates scaffolding but with empty files"
+ c.option "skip-bundle", "--skip-bundle", "Skip 'bundle install'"
++ c.option "execute-bundle", "--execute-bundle", "Use 'bundle install'"
+
+ c.action do |args, options|
+ Jekyll::Commands::New.process(args, options)
+@@ -137,7 +138,8 @@ module Jekyll
+ # unless the user opts to generate a blank blog or skip 'bundle install'.
+
+ def after_install(path, options = {})
+- unless options["blank"] || options["skip-bundle"]
++ execute_bundle = options["execute-bundle"]
++ unless options["blank"] || options["skip-bundle"] || (not execute_bundle)
+ begin
+ require "bundler"
+ bundle_install path
+@@ -147,7 +149,7 @@ module Jekyll
+ end
+
+ Jekyll.logger.info "New jekyll site installed in #{path.cyan}."
+- Jekyll.logger.info "Bundle install skipped." if options["skip-bundle"]
++ Jekyll.logger.info "Bundle install skipped." if options["skip-bundle"] || (not execute_bundle)
+ end
+
+ def bundle_install(path)
Home |
Main Index |
Thread Index |
Old Index