diff options
author | Julien Lepiller <julien@lepiller.eu> | 2023-04-01 16:13:13 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2023-04-01 16:37:46 +0200 |
commit | 3ab24ba216ce91210b93ec61554b3343fbc3aaab (patch) | |
tree | 4c31577889873df4ef9f274e59029992eeeaa7f1 /gnu/packages/patches/mecab-variable-param.patch | |
parent | 47ea688fd27d0ce0c8ea5481f1f94d0ebc3e37eb (diff) | |
download | guix-3ab24ba216ce91210b93ec61554b3343fbc3aaab.tar.gz guix-3ab24ba216ce91210b93ec61554b3343fbc3aaab.zip |
gnu: Add mecab.
* gnu/packages/language.scm (mecab): New variable.
* gnu/packages/patches/mecab-variable-param.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/patches/mecab-variable-param.patch')
-rw-r--r-- | gnu/packages/patches/mecab-variable-param.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/patches/mecab-variable-param.patch b/gnu/packages/patches/mecab-variable-param.patch new file mode 100644 index 0000000000..4457cf3f44 --- /dev/null +++ b/gnu/packages/patches/mecab-variable-param.patch @@ -0,0 +1,30 @@ +From 2396e90056706ef897acab3aaa081289c7336483 Mon Sep 17 00:00:00 2001 +From: LEPILLER Julien <julien.lepiller@irisa.fr> +Date: Fri, 19 Apr 2019 11:48:39 +0200 +Subject: [PATCH] Allow variable parameters + +--- + mecab/src/param.cpp | 6 +++++- + 1 file changed, 5 insertions(+), 1 deletion(-) + +diff --git a/mecab/src/param.cpp b/mecab/src/param.cpp +index 65328a2..006b1b5 100644 +--- a/mecab/src/param.cpp ++++ b/mecab/src/param.cpp +@@ -79,8 +79,12 @@ bool Param::load(const char *filename) { + size_t s1, s2; + for (s1 = pos+1; s1 < line.size() && isspace(line[s1]); s1++); + for (s2 = pos-1; static_cast<long>(s2) >= 0 && isspace(line[s2]); s2--); +- const std::string value = line.substr(s1, line.size() - s1); ++ std::string value = line.substr(s1, line.size() - s1); + const std::string key = line.substr(0, s2 + 1); ++ ++ if(value.find('$') == 0) { ++ value = std::getenv(value.substr(1).c_str()); ++ } + set<std::string>(key.c_str(), value, false); + } + +-- +2.20.1 + |