pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/ruby-jekyll



Module Name:    pkgsrc
Committed By:   taca
Date:           Thu Sep  1 14:53:15 UTC 2022

Modified Files:
        pkgsrc/www/ruby-jekyll: Makefile distinfo
        pkgsrc/www/ruby-jekyll/patches: patch-lib_jekyll_commands_new.rb

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 pkgsrc/www/ruby-jekyll/Makefile
cvs rdiff -u -r1.26 -r1.27 pkgsrc/www/ruby-jekyll/distinfo
cvs rdiff -u -r1.3 -r1.4 \
    pkgsrc/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/ruby-jekyll/Makefile
diff -u pkgsrc/www/ruby-jekyll/Makefile:1.41 pkgsrc/www/ruby-jekyll/Makefile:1.42
--- pkgsrc/www/ruby-jekyll/Makefile:1.41        Sun Dec 12 13:40:33 2021
+++ pkgsrc/www/ruby-jekyll/Makefile     Thu Sep  1 14:53:14 2022
@@ -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

Index: pkgsrc/www/ruby-jekyll/distinfo
diff -u pkgsrc/www/ruby-jekyll/distinfo:1.26 pkgsrc/www/ruby-jekyll/distinfo:1.27
--- pkgsrc/www/ruby-jekyll/distinfo:1.26        Sun Dec 12 13:40:33 2021
+++ pkgsrc/www/ruby-jekyll/distinfo     Thu Sep  1 14:53:14 2022
@@ -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

Index: pkgsrc/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb
diff -u pkgsrc/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb:1.3 pkgsrc/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb:1.4
--- pkgsrc/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb:1.3 Sun Dec 12 13:40:34 2021
+++ pkgsrc/www/ruby-jekyll/patches/patch-lib_jekyll_commands_new.rb     Thu Sep  1 14:53:14 2022
@@ -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