public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-i18n/skk-jisyo/files/
@ 2017-06-25  7:06 Akinori Hattori
  0 siblings, 0 replies; only message in thread
From: Akinori Hattori @ 2017-06-25  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     21eaa91cd4e0f8ced7ccd6c53154c31006793aeb
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 25 07:06:34 2017 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Sun Jun 25 07:06:34 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21eaa91c

app-i18n/skk-jisyo: remove unused file

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-i18n/skk-jisyo/files/unannotation.awk | 75 -------------------------------
 1 file changed, 75 deletions(-)

diff --git a/app-i18n/skk-jisyo/files/unannotation.awk b/app-i18n/skk-jisyo/files/unannotation.awk
deleted file mode 100644
index 88d9eb25434..00000000000
--- a/app-i18n/skk-jisyo/files/unannotation.awk
+++ /dev/null
@@ -1,75 +0,0 @@
-# unannotation.awk: filter to remove annotations in dictionaries.
-#
-# Copyright (C) 2001, 2002 SKK Development Team <skk@ring.gr.jp>
-#
-# Maintainer: SKK Development Team <skk@ring.gr.jp>
-# Version: $Id: unannotation.awk,v 1.3 2006/01/04 10:35:06 skk-cvs Exp $
-# Last Modified: $Date: 2006/01/04 10:35:06 $
-#
-# This file is part of Daredevil SKK.
-#
-# Daredevil SKK is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License as
-# published by the Free Software Foundation; either version 2, or
-# (at your option) any later version.
-#
-# Daredevil SKK is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with Daredevil SKK, see the file COPYING.  If not, write to
-# the Free Software Foundation Inc., 51 Franklin St, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-
-BEGIN{
-    print ";; -*- text -*-";
-    ctime = myctime(0);
-    this = ARGV[1];
-    if (match(this, /\.annotated$/) != 0){
-	this = substr(this, 1, RSTART - 1);
-    } else
-	this = this ".unannotated";
-    printf(";; %s was generated automatically by unannotation.awk at %s\n",
-	   this, ctime);
-    #getline modeindicator
-    #if (match(modeindicator, /;; -*- text -*-/) != 0){
-    #    print modeindicator;
-    #}
-}
-#$0 !~ /"^;; -\*- text -\*-\n"/{
-{
-    if (match($0, /^;/) == 0) {
-	gsub(";[^/]*/", "/");
-	if (DEQUOTE && $0 ~ /\\073/) {
-	    $0 = dequote($0);
-	}
-    }
-    print;
-}
-function myctime(ts,    format) {
-    format = "%a %b %e %H:%M:%S %Y";
-    if (ts == 0)
-	ts = systime();         # use current time as default
-    return strftime(format, ts);
-}
-# convert '\073' to ';' and strip '(concat "...")'.
-# example: 'smile /(concat "^_^\073\073")/:-)/' to 'smile /^_^;;/:-)/'
-# @param s string to convert
-# @return converted string
-function dequote(s) {
-    ret = "";
-    n = split(s, a, "/");
-    for (i = 1; i < n; i++) {
-	if (a[i] ~ /^\(concat ".*\\073.*"\)$/) {	# \073 = ';'
-	    gsub(/\\073/, ";", a[i]);
-	    if (a[i] !~ /\\/) {	# no other quote
-		a[i] = gensub(/^\(concat "(.*)"\)$/, "\\1", "g", a[i]);
-	    }
-	}
-	ret = ret a[i] "/";
-    }
-    return ret;
-}
-# end of unannotation.awk.


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-06-25  7:06 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-25  7:06 [gentoo-commits] repo/gentoo:master commit in: app-i18n/skk-jisyo/files/ Akinori Hattori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox