From owner-svn-ports-all@freebsd.org Sun Jun 17 14:42:25 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9757810214DF; Sun, 17 Jun 2018 14:42:25 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E92870AF5; Sun, 17 Jun 2018 14:42:25 +0000 (UTC) (envelope-from db@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 5095816B6B; Sun, 17 Jun 2018 14:42:25 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w5HEgPx3040098; Sun, 17 Jun 2018 14:42:25 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w5HEgOCK040096; Sun, 17 Jun 2018 14:42:24 GMT (envelope-from db@FreeBSD.org) Message-Id: <201806171442.w5HEgOCK040096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Sun, 17 Jun 2018 14:42:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r472607 - in head/comms/quisk: . files X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/comms/quisk: . files X-SVN-Commit-Revision: 472607 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.26 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, 17 Jun 2018 14:42:25 -0000 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'))