textproc/ruby-review: update to 5.7.0

5.7.0 (2023-02-28)

Bug Fixes

* Fixed error when omitting a bind address of review-init -w on Windows
  (#1824)
* EPUBMaker: escape <, >, and & when converting to MathJax to avoid HTML
  errors (#1876, #1877)

Breaking Changes

* Ruby 2.6 or earlier was excluded from the operation verification (#1871)
* EPUMaker: included a link to the cover in the table of contents according
  to EPUB validation rules (#1874)

Others

* Ruby 3.2 is now included in the testing target (#1871)
* refactor code with RuboCop 1.45.1 (#1878)
This commit is contained in:
taca 2023-03-05 14:15:33 +00:00
parent fb66eb80ab
commit 87ffd9c8b3
3 changed files with 8 additions and 72 deletions

View file

@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.11 2022/12/04 16:05:33 taca Exp $
# $NetBSD: Makefile,v 1.12 2023/03/05 14:15:33 taca Exp $
DISTNAME= review-5.6.0
DISTNAME= review-5.7.0
CATEGORIES= textproc
MAINTAINER= pkgsrc-users@NetBSD.org

View file

@ -1,4 +1,4 @@
@comment $NetBSD: PLIST,v 1.6 2021/08/30 15:54:03 taca Exp $
@comment $NetBSD: PLIST,v 1.7 2023/03/05 14:15:33 taca Exp $
bin/review-catalog-converter${RUBY_SUFFIX}
bin/review-check${RUBY_SUFFIX}
bin/review-checkdep${RUBY_SUFFIX}
@ -17,6 +17,7 @@ bin/review-vol${RUBY_SUFFIX}
bin/review-webmaker${RUBY_SUFFIX}
bin/review${RUBY_SUFFIX}
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/.github/workflows/rubocop.yml
${GEM_LIBDIR}/.github/workflows/ruby-tex.yml
${GEM_LIBDIR}/.github/workflows/ruby-win.yml
${GEM_LIBDIR}/.github/workflows/ruby.yml
@ -258,71 +259,6 @@ ${GEM_LIBDIR}/templates/opf/opf_tocx_epubv3.opf.erb
${GEM_LIBDIR}/templates/web/html/layout-html5.html.erb
${GEM_LIBDIR}/templates/web/html/layout-xhtml1.html.erb
${GEM_LIBDIR}/templates/xml/container.xml.erb
${GEM_LIBDIR}/test/assets/black.eps
${GEM_LIBDIR}/test/assets/fit.png
${GEM_LIBDIR}/test/assets/header_listener.html
${GEM_LIBDIR}/test/assets/img_math/img1.png
${GEM_LIBDIR}/test/assets/img_math/img2.png
${GEM_LIBDIR}/test/assets/img_math/img3.png
${GEM_LIBDIR}/test/assets/large.gif
${GEM_LIBDIR}/test/assets/large.jpg
${GEM_LIBDIR}/test/assets/large.png
${GEM_LIBDIR}/test/assets/large.svg
${GEM_LIBDIR}/test/assets/syntax_book_index_detail.txt
${GEM_LIBDIR}/test/assets/test.xml.erb
${GEM_LIBDIR}/test/assets/test_template.tex
${GEM_LIBDIR}/test/assets/test_template_backmatter.tex
${GEM_LIBDIR}/test/book_test_helper.rb
${GEM_LIBDIR}/test/run_test.rb
${GEM_LIBDIR}/test/test_book.rb
${GEM_LIBDIR}/test/test_book_chapter.rb
${GEM_LIBDIR}/test/test_book_part.rb
${GEM_LIBDIR}/test/test_builder.rb
${GEM_LIBDIR}/test/test_catalog.rb
${GEM_LIBDIR}/test/test_catalog_converter_cmd.rb
${GEM_LIBDIR}/test/test_compiler.rb
${GEM_LIBDIR}/test/test_configure.rb
${GEM_LIBDIR}/test/test_converter.rb
${GEM_LIBDIR}/test/test_epub3maker.rb
${GEM_LIBDIR}/test/test_epubmaker.rb
${GEM_LIBDIR}/test/test_epubmaker_cmd.rb
${GEM_LIBDIR}/test/test_extentions_hash.rb
${GEM_LIBDIR}/test/test_helper.rb
${GEM_LIBDIR}/test/test_htmlbuilder.rb
${GEM_LIBDIR}/test/test_htmltoc.rb
${GEM_LIBDIR}/test/test_htmlutils.rb
${GEM_LIBDIR}/test/test_i18n.rb
${GEM_LIBDIR}/test/test_idgxmlbuilder.rb
${GEM_LIBDIR}/test/test_idgxmlmaker_cmd.rb
${GEM_LIBDIR}/test/test_image_finder.rb
${GEM_LIBDIR}/test/test_img_math.rb
${GEM_LIBDIR}/test/test_index.rb
${GEM_LIBDIR}/test/test_indexbuilder.rb
${GEM_LIBDIR}/test/test_latexbuilder.rb
${GEM_LIBDIR}/test/test_latexbuilder_v2.rb
${GEM_LIBDIR}/test/test_lineinput.rb
${GEM_LIBDIR}/test/test_location.rb
${GEM_LIBDIR}/test/test_logger.rb
${GEM_LIBDIR}/test/test_makerhelper.rb
${GEM_LIBDIR}/test/test_markdownbuilder.rb
${GEM_LIBDIR}/test/test_md2inaobuilder.rb
${GEM_LIBDIR}/test/test_pdfmaker.rb
${GEM_LIBDIR}/test/test_pdfmaker_cmd.rb
${GEM_LIBDIR}/test/test_plaintextbuilder.rb
${GEM_LIBDIR}/test/test_preprocessor.rb
${GEM_LIBDIR}/test/test_review_ext.rb
${GEM_LIBDIR}/test/test_reviewheaderlistener.rb
${GEM_LIBDIR}/test/test_rstbuilder.rb
${GEM_LIBDIR}/test/test_sec_counter.rb
${GEM_LIBDIR}/test/test_template.rb
${GEM_LIBDIR}/test/test_textmaker_cmd.rb
${GEM_LIBDIR}/test/test_textutils.rb
${GEM_LIBDIR}/test/test_tocprinter.rb
${GEM_LIBDIR}/test/test_topbuilder.rb
${GEM_LIBDIR}/test/test_update.rb
${GEM_LIBDIR}/test/test_webtocprinter.rb
${GEM_LIBDIR}/test/test_yamlloader.rb
${GEM_LIBDIR}/test/test_zip_exporter.rb
${GEM_LIBDIR}/vendor/gentombow/.gitignore
${GEM_LIBDIR}/vendor/gentombow/LICENSE
${GEM_LIBDIR}/vendor/gentombow/Makefile

View file

@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.11 2022/12/04 16:05:33 taca Exp $
$NetBSD: distinfo,v 1.12 2023/03/05 14:15:33 taca Exp $
BLAKE2s (review-5.6.0.gem) = c3c58c1436a2bd27a35ba5c1b63190a237f06664305403f1533f3f9c38c41d1e
SHA512 (review-5.6.0.gem) = c6d99874760fe36254a4f58a2b7a7a044b0ff3b64094658bc2b4d38b999aa4370d1e73d8a92d4c3a4aabaa184dc2f3c9f213f47005c76b2eacf598708c602284
Size (review-5.6.0.gem) = 7620608 bytes
BLAKE2s (review-5.7.0.gem) = f76256bf90e8d4a115aeef0c6779cc6152f070b488b276a4c755db957d092412
SHA512 (review-5.7.0.gem) = 8cef8f169a209010531065f562e029ac5e09c2ae22bd8de3eb48fddb32e24aa371c0ab9142b3e2fbc18085ab5ecd220eca4957c4a0bdcc674d10462d3638a58c
Size (review-5.7.0.gem) = 7530496 bytes