Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 16 Oct 2023 06:32:04 GMT
From:      Fernando =?utf-8?Q?Apestegu=C3=ADa?= <fernape@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: a3fbfba4c96c - main - japanese/jacode.pl: Fix use of package separator
Message-ID:  <202310160632.39G6W4jN086890@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by fernape:

URL: https://cgit.FreeBSD.org/ports/commit/?id=a3fbfba4c96c38f375d7026a01a517c324ff5741

commit a3fbfba4c96c38f375d7026a01a517c324ff5741
Author:     Fernando ApesteguĂ­a <fernape@FreeBSD.org>
AuthorDate: 2023-10-13 12:05:25 +0000
Commit:     Fernando ApesteguĂ­a <fernape@FreeBSD.org>
CommitDate: 2023-10-16 06:31:49 +0000

    japanese/jacode.pl: Fix use of package separator
    
    Use of ' as a package name separator is deprecated in lang/perl5.38
    
    PR:             274445
    Reported by:    takefu@airport.fm
---
 japanese/jacode.pl/Makefile | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/japanese/jacode.pl/Makefile b/japanese/jacode.pl/Makefile
index ea6f6dbdd223..d7f003018f5a 100644
--- a/japanese/jacode.pl/Makefile
+++ b/japanese/jacode.pl/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	jacode.pl
 DISTVERSION=	2.13.4.31
+PORTREVISION=	1
 CATEGORIES=	japanese perl5
 MASTER_SITES=	CPAN
 MASTER_SITE_SUBDIR=	CPAN:INA/${PORTNAME:S|j|J|:S|.pl||}
@@ -20,6 +21,10 @@ NO_BUILD=	yes
 PLIST_FILES=	${SITE_PERL_REL}/${PORTNAME}\
 		${SITE_PERL_REL}/${PORTNAME:S|j|J|:S|.pl|.pm|}
 
+pre-patch:
+	@${FIND} ${WRKSRC}/lib/jacode.pl ${WRKSRC}/t -type f -exec\
+		${REINPLACE_CMD} -e "s|jacode'|jacode::|g" -e "s|jcode'|jcode::|g" {} \;
+
 do-install:
 	@${MKDIR} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}
 	${INSTALL_DATA} ${WRKSRC}/lib/${PORTNAME} ${STAGEDIR}${PREFIX}/${SITE_PERL_REL}/${PORTNAME}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202310160632.39G6W4jN086890>