git: cd5188305b52 - main - devel/rubygem-dig_rb: fix bad comment
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 02 Nov 2023 20:26:07 UTC
The branch main has been updated by girgen: URL: https://cgit.FreeBSD.org/ports/commit/?id=cd5188305b5264e2f19522c5074e3748051d288a commit cd5188305b5264e2f19522c5074e3748051d288a Author: Palle Girgensohn <girgen@FreeBSD.org> AuthorDate: 2023-11-02 16:17:33 +0000 Commit: Palle Girgensohn <girgen@FreeBSD.org> CommitDate: 2023-11-02 20:25:55 +0000 devel/rubygem-dig_rb: fix bad comment The # would cut the line when just wrapped in quotes. It requires a `\' to be accepted by make(1). Reported by: fernape@ --- devel/rubygem-dig_rb/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/devel/rubygem-dig_rb/Makefile b/devel/rubygem-dig_rb/Makefile index 35bd62c01f80..783d9157a645 100644 --- a/devel/rubygem-dig_rb/Makefile +++ b/devel/rubygem-dig_rb/Makefile @@ -1,10 +1,11 @@ PORTNAME= dig_rb PORTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org -COMMENT= "Array/Hash/Struct#dig backfill for ruby" +COMMENT= Use \#dig on ruby pre 2.3.0, or any ruby lacking dig WWW= https://github.com/jrochkind/dig_rb LICENSE= MIT