Date: Sun, 17 Jun 2018 14:42:24 +0000 (UTC) From: Diane Bruce <db@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472607 - in head/comms/quisk: . files Message-ID: <201806171442.w5HEgOCK040096@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: db Date: Sun Jun 17 14:42:24 2018 New Revision: 472607 URL: https://svnweb.freebsd.org/changeset/ports/472607 Log: Fix typo of locale.setlocal which should be locale.setlocale Pointy hat to: @shurd Modified: head/comms/quisk/Makefile head/comms/quisk/files/patch-quisk.py (contents, props changed) Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Sun Jun 17 14:30:31 2018 (r472606) +++ head/comms/quisk/Makefile Sun Jun 17 14:42:24 2018 (r472607) @@ -3,7 +3,7 @@ PORTNAME= quisk PORTVERSION= 4.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= comms hamradio MASTER_SITES= http://james.ahlstrom.name/quisk/ \ LOCAL/db Modified: head/comms/quisk/files/patch-quisk.py ============================================================================== --- head/comms/quisk/files/patch-quisk.py Sun Jun 17 14:30:31 2018 (r472606) +++ head/comms/quisk/files/patch-quisk.py Sun Jun 17 14:42:24 2018 (r472607) @@ -1,12 +1,12 @@ ---- quisk.py.orig 2016-11-30 18:26:59 UTC -+++ quisk.py -@@ -21,6 +21,13 @@ os.chdir(os.path.normpath(os.path.dirnam +--- quisk.py.orig 2016-11-30 13:26:59.000000000 -0500 ++++ quisk.py 2018-06-17 10:30:03.031192000 -0400 +@@ -21,6 +21,13 @@ if sys.path[0] != "'.'": # Make sure the current working directory is on path sys.path.insert(0, '.') +# Hack to ensure unicode is available. +import locale -+locale.setlocal(locale.LC_ALL, '') ++locale.setlocale(locale.LC_ALL, '') +cloc = locale.getdefaultlocale() +if locale.nl_langinfo(locale.CODESET) != 'UTF-8': + locale.setlocale(locale.LC_ALL, (cloc[0], 'UTF-8'))
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806171442.w5HEgOCK040096>