pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/www/ruby-html-proofer www/ruby-html-proofer: update to...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/28a234b14fad
branches:  trunk
changeset: 387981:28a234b14fad
user:      taca <taca%pkgsrc.org@localhost>
date:      Fri Nov 11 13:49:57 2022 +0000

description:
www/ruby-html-proofer: update to 5.0.1

pkgsrc change:
* Add "USE_LANGUAGES=   # none".
* Add pkg_alternatives support.

5.0.0 (2022-10-08)

Closed issues:

* Options validation breaking for booleans #773

Merged pull requests:

* Native async #766 (gjtorikian)
* Lock to >= Ruby 3.1 #760 (gjtorikian)
* V5 #759 (gjtorikian)
* CLI Args: A New Hope #758 (gjtorikian)


5.0.1 (2022-11-01)

Closed issues:

* QUESTION - ignore-files syntax not ignore entire directories as I would
  expect it to. Is my approach syntax incorrect? #775

Merged pull requests:

* Accept regexp values for ignore-files via CLI #776 (gjtorikian)

diffstat:

 www/ruby-html-proofer/ALTERNATIVES |   1 +
 www/ruby-html-proofer/Makefile     |  13 ++++++++-----
 www/ruby-html-proofer/PLIST        |   9 +++++----
 www/ruby-html-proofer/distinfo     |   8 ++++----
 4 files changed, 18 insertions(+), 13 deletions(-)

diffs (80 lines):

diff -r ef221fa96c3c -r 28a234b14fad www/ruby-html-proofer/ALTERNATIVES
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/ruby-html-proofer/ALTERNATIVES        Fri Nov 11 13:49:57 2022 +0000
@@ -0,0 +1,1 @@
+bin/htmlproofer @PREFIX@/bin/htmlproofer@RUBY_SUFFIX@
diff -r ef221fa96c3c -r 28a234b14fad www/ruby-html-proofer/Makefile
--- a/www/ruby-html-proofer/Makefile    Fri Nov 11 13:42:51 2022 +0000
+++ b/www/ruby-html-proofer/Makefile    Fri Nov 11 13:49:57 2022 +0000
@@ -1,21 +1,24 @@
-# $NetBSD: Makefile,v 1.6 2022/10/09 09:17:01 taca Exp $
+# $NetBSD: Makefile,v 1.7 2022/11/11 13:49:57 taca Exp $
 
-DISTNAME=      html-proofer-4.4.3
+DISTNAME=      html-proofer-5.0.1
 CATEGORIES=    www
 
 MAINTAINER=    ryoon%NetBSD.org@localhost
-HOMEPAGE=      https://rubygems.org/gems/html-proofer/
+HOMEPAGE=      https://github.com/gjtorikian/html-proofer
 COMMENT=       Test your rendered HTML files to make sure they're accurate
 LICENSE=       mit
 
 DEPENDS+=      ${RUBY_PKGPREFIX}-addressable>=2.3<3:../../net/ruby-addressable
-DEPENDS+=      ${RUBY_PKGPREFIX}-mercenary>=0.3<1:../../devel/ruby-mercenary
+DEPENDS+=      ${RUBY_PKGPREFIX}-async>=2.1<3:../../devel/ruby-async
 DEPENDS+=      ${RUBY_PKGPREFIX}-nokogiri>=1.13<2:../../textproc/ruby-nokogiri
-DEPENDS+=      ${RUBY_PKGPREFIX}-parallel>=1.10<2:../../misc/ruby-parallel
 DEPENDS+=      ${RUBY_PKGPREFIX}-rainbow>=3.0<4:../../misc/ruby-rainbow
 DEPENDS+=      ${RUBY_PKGPREFIX}-typhoeus>=1.3.1<2:../../www/ruby-typhoeus
 DEPENDS+=      ${RUBY_PKGPREFIX}-yell>=2.0<3:../../devel/ruby-yell
 DEPENDS+=      ${RUBY_PKGPREFIX}-zeitwerk>=2.5<3:../../devel/ruby-zeitwerk
 
+USE_LANGUAGES= # none
+
+RUBYGEM_OPTIONS+=      --format-executable
+
 .include "../../lang/ruby/gem.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r ef221fa96c3c -r 28a234b14fad www/ruby-html-proofer/PLIST
--- a/www/ruby-html-proofer/PLIST       Fri Nov 11 13:42:51 2022 +0000
+++ b/www/ruby-html-proofer/PLIST       Fri Nov 11 13:49:57 2022 +0000
@@ -1,7 +1,7 @@
-@comment $NetBSD: PLIST,v 1.2 2022/08/31 14:47:35 taca Exp $
-bin/htmlproofer
+@comment $NetBSD: PLIST,v 1.3 2022/11/11 13:49:57 taca Exp $
+bin/htmlproofer${RUBY_SUFFIX}
 ${GEM_HOME}/cache/${GEM_NAME}.gem
-${GEM_LIBDIR}/bin/htmlproofer
+${GEM_LIBDIR}/exe/htmlproofer
 ${GEM_LIBDIR}/lib/html-proofer.rb
 ${GEM_LIBDIR}/lib/html_proofer.rb
 ${GEM_LIBDIR}/lib/html_proofer/attribute.rb
@@ -13,12 +13,13 @@
 ${GEM_LIBDIR}/lib/html_proofer/check/links.rb
 ${GEM_LIBDIR}/lib/html_proofer/check/open_graph.rb
 ${GEM_LIBDIR}/lib/html_proofer/check/scripts.rb
+${GEM_LIBDIR}/lib/html_proofer/cli.rb
 ${GEM_LIBDIR}/lib/html_proofer/configuration.rb
 ${GEM_LIBDIR}/lib/html_proofer/element.rb
 ${GEM_LIBDIR}/lib/html_proofer/failure.rb
 ${GEM_LIBDIR}/lib/html_proofer/log.rb
 ${GEM_LIBDIR}/lib/html_proofer/reporter.rb
-${GEM_LIBDIR}/lib/html_proofer/reporter/cli.rb
+${GEM_LIBDIR}/lib/html_proofer/reporter/terminal.rb
 ${GEM_LIBDIR}/lib/html_proofer/runner.rb
 ${GEM_LIBDIR}/lib/html_proofer/url_validator.rb
 ${GEM_LIBDIR}/lib/html_proofer/url_validator/external.rb
diff -r ef221fa96c3c -r 28a234b14fad www/ruby-html-proofer/distinfo
--- a/www/ruby-html-proofer/distinfo    Fri Nov 11 13:42:51 2022 +0000
+++ b/www/ruby-html-proofer/distinfo    Fri Nov 11 13:49:57 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2022/10/09 09:17:01 taca Exp $
+$NetBSD: distinfo,v 1.9 2022/11/11 13:49:57 taca Exp $
 
-BLAKE2s (html-proofer-4.4.3.gem) = 865af86d5e02245bca7f385b963724207c8efe0c442e9cc349697592953cfa9f
-SHA512 (html-proofer-4.4.3.gem) = e503162094d90e4448f20afbed818694053a313646973a4772cc7bbeff090c1f287e5df2c5530c4edcc0dbfafbec9c14e4c7a09678f4a8b847a71423bb32b875
-Size (html-proofer-4.4.3.gem) = 23040 bytes
+BLAKE2s (html-proofer-5.0.1.gem) = 105963b3f1d28200f3d372119c21728b5753d6133f521398d708e1491b9b7ea4
+SHA512 (html-proofer-5.0.1.gem) = 896645c3a826356484bd116ad4c35857884ac4a8702b52eca9d9a4656919be696ebe95d7dcfa75ebf09a0f554ec3a535cffba800f33b8e61f863798ba6c03ed1
+Size (html-proofer-5.0.1.gem) = 23552 bytes



Home | Main Index | Thread Index | Old Index