From owner-svn-ports-all@freebsd.org Sun Sep 27 19:30:29 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7D0194255AC; Sun, 27 Sep 2020 19:30:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BzwjJ5Zt3z49Dv; Sun, 27 Sep 2020 19:30:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF85111D0C; Sun, 27 Sep 2020 19:30:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08RJURA6034619; Sun, 27 Sep 2020 19:30:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08RJURDv034616; Sun, 27 Sep 2020 19:30:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202009271930.08RJURDv034616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 27 Sep 2020 19:30:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r550300 - head/devel/gettext-msghack X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/gettext-msghack X-SVN-Commit-Revision: 550300 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Sep 2020 19:30:29 -0000 Author: sunpoet Date: Sun Sep 27 19:30:26 2020 New Revision: 550300 URL: https://svnweb.freebsd.org/changeset/ports/550300 Log: Update to 0.21 - Update LICENSE - Use USES=shebangfix - Install manpage - Add WWW - Take maintainership Modified: head/devel/gettext-msghack/Makefile head/devel/gettext-msghack/distinfo head/devel/gettext-msghack/pkg-descr Modified: head/devel/gettext-msghack/Makefile ============================================================================== --- head/devel/gettext-msghack/Makefile Sun Sep 27 19:30:20 2020 (r550299) +++ head/devel/gettext-msghack/Makefile Sun Sep 27 19:30:26 2020 (r550300) @@ -2,28 +2,28 @@ # $FreeBSD$ PORTNAME= msghack -PORTVERSION= 0.2 +PORTVERSION= 0.21 CATEGORIES= devel -MASTER_SITES= LOCAL/rene +MASTER_SITES= LOCAL/sunpoet PKGNAMEPREFIX= gettext- -# Bundled in fedora gettext srpm -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Alter gettext po files in special ways -LICENSE= GPLv2+ +LICENSE= GPLv3+ -NO_BUILD= yes +USES= python:3.5+ shebangfix tar:xz + NO_ARCH= yes +NO_BUILD= yes -USES= python tar:bzip2 -PLIST_FILES= bin/${PORTNAME} +PLIST_FILES= bin/msghack \ + share/man/man1/msghack.1.gz -post-patch: - ${REINPLACE_CMD} -e '1s|/usr/bin/python|${PYTHON_CMD}|'\ - ${WRKSRC}/${PORTNAME}.py +SHEBANG_FILES= msghack.py do-install: - ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + ${INSTALL_SCRIPT} ${WRKSRC}/msghack.py ${STAGEDIR}${PREFIX}/bin/msghack + ${INSTALL_MAN} ${WRKSRC}/msghack.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include Modified: head/devel/gettext-msghack/distinfo ============================================================================== --- head/devel/gettext-msghack/distinfo Sun Sep 27 19:30:20 2020 (r550299) +++ head/devel/gettext-msghack/distinfo Sun Sep 27 19:30:26 2020 (r550300) @@ -1,2 +1,3 @@ -SHA256 (msghack-0.2.tar.bz2) = c2b3ab088dd3e909649bee7840603d232ede6447176ed4e5d41df33b30a53664 -SIZE (msghack-0.2.tar.bz2) = 3149 +TIMESTAMP = 1601031532 +SHA256 (msghack-0.21.tar.xz) = d98e29f3027847150fb3cf2a87862dcca55969d321c1c9150bda0271c84405ee +SIZE (msghack-0.21.tar.xz) = 3308 Modified: head/devel/gettext-msghack/pkg-descr ============================================================================== --- head/devel/gettext-msghack/pkg-descr Sun Sep 27 19:30:20 2020 (r550299) +++ head/devel/gettext-msghack/pkg-descr Sun Sep 27 19:30:26 2020 (r550300) @@ -1,3 +1,5 @@ -Msghack can be used to alter gettext .po files in ways no sane mind -would think about. It is a reimplementation of the original msghack -in Python. +Msghack can be used to alter gettext .po files in ways no sane mind would think +about. It is a reimplementation of the original msghack in Python. + +WWW: https://src.fedoraproject.org/rpms/gettext/blob/master/f/msghack.py +WWW: https://src.fedoraproject.org/rpms/gettext/blob/master/f/msghack.1