From 9f2261715c0748141887fccc66d5e4ba15d283ed Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 11:10:52 +0000 Subject: [PATCH 1/4] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- anthy.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/anthy.spec b/anthy.spec index b3c5ba9..f9bf097 100644 --- a/anthy.spec +++ b/anthy.spec @@ -10,7 +10,7 @@ Name: anthy Version: 9100h -Release: 56%{?dist} +Release: 57%{?dist} # The entire source code is LGPLv2+ and dictionaries is GPLv2. the corpus data is under Public Domain. License: LGPL-2.1-or-later AND GPL-2.0-only AND LicenseRef-Fedora-Public-Domain URL: http://sourceforge.jp/projects/anthy/ @@ -179,6 +179,9 @@ popd %changelog +* Thu Jan 16 2025 Fedora Release Engineering - 9100h-57 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Thu Sep 19 2024 Akira TAGOH - 9100h-56 - Fix an infinite loop when missing EOL in record file. Resolves: rhbz#1944546 From b818691011b489fa27c3a8bc622243512b57818b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 17:03:25 +0000 Subject: [PATCH 2/4] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- anthy.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/anthy.spec b/anthy.spec index f9bf097..32d54ff 100644 --- a/anthy.spec +++ b/anthy.spec @@ -10,7 +10,7 @@ Name: anthy Version: 9100h -Release: 57%{?dist} +Release: 58%{?dist} # The entire source code is LGPLv2+ and dictionaries is GPLv2. the corpus data is under Public Domain. License: LGPL-2.1-or-later AND GPL-2.0-only AND LicenseRef-Fedora-Public-Domain URL: http://sourceforge.jp/projects/anthy/ @@ -179,6 +179,9 @@ popd %changelog +* Wed Jul 23 2025 Fedora Release Engineering - 9100h-58 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Thu Jan 16 2025 Fedora Release Engineering - 9100h-57 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 80d1caa5bc6c98914b9aadfe61795c2cff3034fd Mon Sep 17 00:00:00 2001 From: Akira TAGOH Date: Mon, 18 Aug 2025 19:35:28 +0900 Subject: [PATCH 3/4] ci: migrate STI tests to tmt Resolves: rhbz#2382857 --- .fmf/version | 1 + plans/basic.fmf | 5 +++++ tests/basic/main.fmf | 5 +++++ tests/basic/test.sh | 14 ++++++++++++++ tests/basic/word.txt | 8 ++++++++ tests/runtest.sh | 4 ---- tests/tests.yml | 9 --------- 7 files changed, 33 insertions(+), 13 deletions(-) create mode 100644 .fmf/version create mode 100644 plans/basic.fmf create mode 100644 tests/basic/main.fmf create mode 100755 tests/basic/test.sh create mode 100644 tests/basic/word.txt delete mode 100755 tests/runtest.sh delete mode 100644 tests/tests.yml diff --git a/.fmf/version b/.fmf/version new file mode 100644 index 0000000..d00491f --- /dev/null +++ b/.fmf/version @@ -0,0 +1 @@ +1 diff --git a/plans/basic.fmf b/plans/basic.fmf new file mode 100644 index 0000000..c1627f9 --- /dev/null +++ b/plans/basic.fmf @@ -0,0 +1,5 @@ +summary: Basic smoke test +discover: + how: fmf +execute: + how: tmt diff --git a/tests/basic/main.fmf b/tests/basic/main.fmf new file mode 100644 index 0000000..3cde53c --- /dev/null +++ b/tests/basic/main.fmf @@ -0,0 +1,5 @@ +summary: Basic test for anthy +require: + - anthy +test: ./test.sh +framework: beakerlib diff --git a/tests/basic/test.sh b/tests/basic/test.sh new file mode 100755 index 0000000..e71c4ce --- /dev/null +++ b/tests/basic/test.sh @@ -0,0 +1,14 @@ +#!/bin/bash +# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k + +basedir=$(pwd) + +. /usr/share/beakerlib/beakerlib.sh || exit 1 + +rlJournalStart + rlPhaseStartTest + rlRun "cat word.txt | iconv -f utf-8 -t euc-jp | anthy-dic-tool --load 0 "Registering a word to dict" + rlRun "anthy-dic-tool --dump | iconv -f euc-jp -t utf-8 | grep -v "#" | tee output" 0 "Dumping dict" + rlRun "diff -u word.txt output" 0 "Check difference" + rlPhaseEnd +rlJournalEnd diff --git a/tests/basic/word.txt b/tests/basic/word.txt new file mode 100644 index 0000000..781130e --- /dev/null +++ b/tests/basic/word.txt @@ -0,0 +1,8 @@ +てすと 1 テスト +格助詞接続 = y +語幹のみで文節 = y +する接続 = y +さ接続 = y +な接続 = y +品詞 = 名詞 + diff --git a/tests/runtest.sh b/tests/runtest.sh deleted file mode 100755 index 26aba13..0000000 --- a/tests/runtest.sh +++ /dev/null @@ -1,4 +0,0 @@ -#! /bin/sh - -echo "RESULT: PASS" - diff --git a/tests/tests.yml b/tests/tests.yml deleted file mode 100644 index b7184da..0000000 --- a/tests/tests.yml +++ /dev/null @@ -1,9 +0,0 @@ -- hosts: localhost - roles: - - role: standard-test-basic - tags: - - classic - required_packages: - - anthy - tests: - - run: ./runtest.sh From ed90f959162924647d59d5624ce7173655f550f2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Jan 2026 03:44:38 +0000 Subject: [PATCH 4/4] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- anthy.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/anthy.spec b/anthy.spec index 32d54ff..d12eca0 100644 --- a/anthy.spec +++ b/anthy.spec @@ -10,7 +10,7 @@ Name: anthy Version: 9100h -Release: 58%{?dist} +Release: 59%{?dist} # The entire source code is LGPLv2+ and dictionaries is GPLv2. the corpus data is under Public Domain. License: LGPL-2.1-or-later AND GPL-2.0-only AND LicenseRef-Fedora-Public-Domain URL: http://sourceforge.jp/projects/anthy/ @@ -179,6 +179,9 @@ popd %changelog +* Fri Jan 16 2026 Fedora Release Engineering - 9100h-59 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Wed Jul 23 2025 Fedora Release Engineering - 9100h-58 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild