svn commit: r472607 - in head/comms/quisk: . files

Diane Bruce db at FreeBSD.org
Sun Jun 17 14:42:25 UTC 2018


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'))


More information about the svn-ports-all mailing list