Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 9 Jun 2018 12:50:08 +0000 (UTC)
From:      Christoph Moench-Tegeder <cmt@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r472052 - head/deskutils/gucharmap/files
Message-ID:  <201806091250.w59Co8nb068966@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cmt
Date: Sat Jun  9 12:50:08 2018
New Revision: 472052
URL: https://svnweb.freebsd.org/changeset/ports/472052

Log:
  unbreak deskutils/gucharmap after update of textproc/UCD
  
  gen-guch-unicode-tables.pl generated a unicode-versions.h file with
  all unicode versions found in UCD's DerivedAge.txt file - regardless
  of wether gucharmap itself supports that unicode version. This makes
  sure that codepoints with a higer unicode version than supported are
  skipped.
  
  PR:		228830
  Approved by:	maintainer (pi)

Added:
  head/deskutils/gucharmap/files/
  head/deskutils/gucharmap/files/patch-gucharmap_gen-guch-unicode-tables.pl   (contents, props changed)

Added: head/deskutils/gucharmap/files/patch-gucharmap_gen-guch-unicode-tables.pl
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/gucharmap/files/patch-gucharmap_gen-guch-unicode-tables.pl	Sat Jun  9 12:50:08 2018	(r472052)
@@ -0,0 +1,10 @@
+--- gucharmap/gen-guch-unicode-tables.pl.orig	2017-05-09 22:11:10 UTC
++++ gucharmap/gen-guch-unicode-tables.pl
+@@ -999,6 +999,7 @@ sub process_versions_txt
+         {
+             next;
+         }
++        next if $raw_version > $v;
+ 
+         my $version = $raw_version;
+         $version =~ tr/_/ /;



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