Skip to content

Commit 15fa21e

Browse files
Upgraded mythes to version 1.2.5 (microsoft#11600)
Co-authored-by: Sandeep Karambelkar <[email protected]>
1 parent 2cbb172 commit 15fa21e

File tree

3 files changed

+56
-16
lines changed

3 files changed

+56
-16
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"Signatures": {
3-
"mythes-1.2.4.tar.gz": "1e81f395d8c851c3e4e75b568e20fa2fa549354e75ab397f9de4b0e0790a305f"
3+
"mythes-1.2.5.tar.xz": "19279f70707bbe5ffa619f2dc319f888cec0c4a8d339dc0a21330517bd6f521d"
44
}
5-
}
5+
}

SPECS-EXTENDED/mythes/mythes.spec

Lines changed: 52 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ Vendor: Microsoft Corporation
22
Distribution: Azure Linux
33
Name: mythes
44
Summary: A thesaurus library
5-
Version: 1.2.4
6-
Release: 14%{?dist}
7-
# Source: https://github.com/hunspell/mythes/archive/refs/heads/master.zip
8-
Source: https://github.com/hunspell/mythes/archive/refs/heads/%{name}-%{version}.tar.gz
5+
Version: 1.2.5
6+
Release: 7%{?dist}
7+
Source: https://github.com/hunspell/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.xz
98
URL: https://github.com/hunspell/mythes
10-
License: BSD and MIT
11-
BuildRequires: hunspell-devel, gcc-c++
12-
9+
License: BSD-3-Clause-Modification AND MIT
10+
BuildRequires: make
11+
BuildRequires: hunspell-devel
12+
BuildRequires: gcc-c++
1313
%description
1414
MyThes is a simple thesaurus that uses a structured text data file and an
1515
index file with binary search to look up words and phrases and return
@@ -27,23 +27,25 @@ Includes and definitions for developing with mythes
2727

2828
%build
2929
%configure --disable-rpath --disable-static
30-
make %{?_smp_mflags}
30+
%make_build
3131

3232
%check
33+
make check
3334
./example th_en_US_new.idx th_en_US_new.dat checkme.lst
3435
./example morph.idx morph.dat morph.lst morph.aff morph.dic
3536

3637
%install
3738
rm -rf $RPM_BUILD_ROOT
38-
make DESTDIR=$RPM_BUILD_ROOT install
39+
%make_install
3940
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.a
4041
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
4142
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/mythes
4243

4344
%ldconfig_scriptlets
4445

4546
%files
46-
%doc README COPYING AUTHORS
47+
%license COPYING
48+
%doc README AUTHORS
4749
%{_libdir}/*.so.*
4850
%{_datadir}/mythes
4951

@@ -55,8 +57,46 @@ mkdir -p $RPM_BUILD_ROOT/%{_datadir}/mythes
5557
%{_bindir}/th_gen_idx.pl
5658

5759
%changelog
58-
* Fri Oct 15 2021 Pawel Winogrodzki <[email protected]> - 1.2.4-14
59-
- Initial CBL-Mariner import from Fedora 32 (license: MIT).
60+
* Mon Dec 30 2024 Aninda Pradhan <[email protected]> - 1.2.5-7
61+
- Initial Azure Linux import from Fedora 41 (license: MIT)
62+
- License verified
63+
64+
* Thu Jan 25 2024 Fedora Release Engineering <[email protected]> - 1.2.5-6
65+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
66+
67+
* Sun Jan 21 2024 Fedora Release Engineering <[email protected]> - 1.2.5-5
68+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
69+
70+
* Thu Jul 20 2023 Fedora Release Engineering <[email protected]> - 1.2.5-4
71+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
72+
73+
* Thu Feb 23 2023 Caolán McNamara <[email protected]> - 1.2.5-3
74+
- migrated to SPDX license
75+
76+
* Thu Jan 19 2023 Fedora Release Engineering <[email protected]> - 1.2.5-2
77+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
78+
79+
* Sun Aug 21 2022 Caolán McNamara <[email protected]> - 1.2.5-1
80+
- latest version
81+
82+
* Fri Jul 22 2022 Fedora Release Engineering <[email protected]> - 1.2.4-19
83+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
84+
85+
* Thu Jan 20 2022 Fedora Release Engineering <[email protected]> - 1.2.4-18
86+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
87+
88+
* Thu Jul 22 2021 Fedora Release Engineering <[email protected]> - 1.2.4-17
89+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
90+
91+
* Tue Jan 26 2021 Fedora Release Engineering <[email protected]> - 1.2.4-16
92+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
93+
94+
* Tue Jul 28 2020 Fedora Release Engineering <[email protected]> - 1.2.4-15
95+
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
96+
97+
* Tue Jul 14 2020 Tom Stellard <[email protected]> - 1.2.4-14
98+
- Use make macros
99+
- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro
60100

61101
* Wed Jan 29 2020 Fedora Release Engineering <[email protected]> - 1.2.4-13
62102
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild

cgmanifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13882,8 +13882,8 @@
1388213882
"type": "other",
1388313883
"other": {
1388413884
"name": "mythes",
13885-
"version": "1.2.4",
13886-
"downloadUrl": "https://github.com/hunspell/mythes/archive/refs/heads/mythes-1.2.4.tar.gz"
13885+
"version": "1.2.5",
13886+
"downloadUrl": "https://github.com/hunspell/mythes/releases/download/v1.2.5/mythes-1.2.5.tar.xz"
1388713887
}
1388813888
}
1388913889
},

0 commit comments

Comments
 (0)