svn commit: r472052 - head/deskutils/gucharmap/files

Christoph Moench-Tegeder cmt at FreeBSD.org
Sat Jun 9 17:17:00 UTC 2018


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/_/ /;


More information about the svn-ports-all mailing list