svn commit: r543918 - in head: finance/fava japanese/font-myrica japanese/font-myricam java/icedtea-web security/py-dfvfs www/qutebrowser
Danilo G. Baio
dbaio at FreeBSD.org
Sat Aug 1 18:17:54 UTC 2020
Author: dbaio
Date: Sat Aug 1 18:17:52 2020
New Revision: 543918
URL: https://svnweb.freebsd.org/changeset/ports/543918
Log:
Fix build (extract) with static bsdtar(1)
tar: Pathname can't be converted from UTF-8 to current locale.
tar: Error exit delayed from previous errors.
*** Error code 1
See more details for the same issue in bug 246618.
Reported by: pkg-fallout
Approved by: portmgr blanket
Modified:
head/finance/fava/Makefile
head/japanese/font-myrica/Makefile
head/japanese/font-myricam/Makefile
head/java/icedtea-web/Makefile
head/security/py-dfvfs/Makefile
head/www/qutebrowser/Makefile
Modified: head/finance/fava/Makefile
==============================================================================
--- head/finance/fava/Makefile Sat Aug 1 17:08:55 2020 (r543917)
+++ head/finance/fava/Makefile Sat Aug 1 18:17:52 2020 (r543918)
@@ -29,4 +29,7 @@ RUN_DEPENDS= beancount>=2.1.3:finance/beancount \
USES= python:3.5+ # same as finance/beancount
USE_PYTHON= autoplist distutils noflavors
+# Upstream archive contains files with UTF-8 names
+EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
+
.include <bsd.port.mk>
Modified: head/japanese/font-myrica/Makefile
==============================================================================
--- head/japanese/font-myrica/Makefile Sat Aug 1 17:08:55 2020 (r543917)
+++ head/japanese/font-myrica/Makefile Sat Aug 1 18:17:52 2020 (r543918)
@@ -23,6 +23,9 @@ SUB_FILES= pkg-install
WRKSRC= ${WRKDIR}/${DISTNAME}
PORTDOCS= LICENSE_M+.txt LICENSE_OFL.txt README.md
+# Upstream archive contains files with UTF-8 names
+EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
+
OPTIONS_DEFINE= DOCS
do-install:
Modified: head/japanese/font-myricam/Makefile
==============================================================================
--- head/japanese/font-myricam/Makefile Sat Aug 1 17:08:55 2020 (r543917)
+++ head/japanese/font-myricam/Makefile Sat Aug 1 18:17:52 2020 (r543918)
@@ -23,6 +23,9 @@ SUB_FILES= pkg-install
WRKSRC= ${WRKDIR}/${DISTNAME}
PORTDOCS= LICENSE_M+.txt LICENSE_OFL.txt README.md
+# Upstream archive contains files with UTF-8 names
+EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
+
OPTIONS_DEFINE= DOCS
do-install:
Modified: head/java/icedtea-web/Makefile
==============================================================================
--- head/java/icedtea-web/Makefile Sat Aug 1 17:08:55 2020 (r543917)
+++ head/java/icedtea-web/Makefile Sat Aug 1 18:17:52 2020 (r543918)
@@ -49,6 +49,9 @@ CONFIGURE_SHELL= ${bash_CMD}
TEST_TARGET= check
+# Upstream archive contains files with UTF-8 names
+EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
+
OPTIONS_DEFINE= DOCS PLUGIN RHINO TAGSOUP
OPTIONS_DEFAULT=PLUGIN
OPTIONS_SUB= yes
Modified: head/security/py-dfvfs/Makefile
==============================================================================
--- head/security/py-dfvfs/Makefile Sat Aug 1 17:08:55 2020 (r543917)
+++ head/security/py-dfvfs/Makefile Sat Aug 1 18:17:52 2020 (r543918)
@@ -44,6 +44,9 @@ USE_PYTHON= distutils autoplist concurrent
NO_ARCH= yes
+# Upstream archive contains files with UTF-8 names
+EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
+
post-patch:
${REINPLACE_CMD} "s,share/doc/dfvfs,${DOCSDIR_REL}," ${WRKSRC}/setup.py
Modified: head/www/qutebrowser/Makefile
==============================================================================
--- head/www/qutebrowser/Makefile Sat Aug 1 17:08:55 2020 (r543917)
+++ head/www/qutebrowser/Makefile Sat Aug 1 18:17:52 2020 (r543918)
@@ -29,6 +29,9 @@ USE_PYTHON= distutils autoplist noflavors
NO_ARCH= yes
PLIST_FILES= share/applications/${PORTNAME}-${PYTHON_VER}.desktop
+# Upstream archive contains files with UTF-8 names
+EXTRACT_CMD= ${SETENV} LC_ALL=en_US.UTF-8 /usr/bin/bsdtar
+
OPTIONS_MULTI= BACKEND
OPTIONS_MULTI_BACKEND= WEBKIT WEBENGINE
OPTIONS_DEFAULT= WEBKIT
More information about the svn-ports-all
mailing list