Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Apr 2019 07:36:42 +0000 (UTC)
From:      "Tobias C. Berner" <tcberner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r498059 - head/devel/cmake-doc
Message-ID:  <201904060736.x367agVF078095@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tcberner
Date: Sat Apr  6 07:36:42 2019
New Revision: 498059
URL: https://svnweb.freebsd.org/changeset/ports/498059

Log:
  devel/cmake-doc: fix build with python3.6 default
  
  File "/wrkdirs/usr/ports/devel/cmake-doc/work/cmake-3.14.1/Utilities/Sphinx/create_identifiers.py", line 14, in <module>
      lines = f.read().splitlines()
    File "/usr/local/lib/python3.6/encodings/ascii.py", line 26, in decode
      return codecs.ascii_decode(input, self.errors)[0]
  UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 38147: ordinal not in range(128)
  
  PR:		234633
  Reported by:	antoine

Modified:
  head/devel/cmake-doc/Makefile

Modified: head/devel/cmake-doc/Makefile
==============================================================================
--- head/devel/cmake-doc/Makefile	Sat Apr  6 07:36:14 2019	(r498058)
+++ head/devel/cmake-doc/Makefile	Sat Apr  6 07:36:42 2019	(r498059)
@@ -19,6 +19,7 @@ DISTINFO_FILE=	${.CURDIR}/../cmake/distinfo
 NO_ARCH=	yes
 USES=		cmake qt:5
 USE_QT=		help_build
+USE_LOCALE=	en_US.UTF-8
 
 CMAKE_OFF=	SPHINX_MAN
 CMAKE_ON=	SPHINX_HTML SPHINX_QTHELP



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