2005-09-26 17:18:54 +00:00
|
|
|
|
Summary: A Hebrew spell checker
|
|
|
|
|
Name: hspell
|
2015-02-26 12:49:48 +00:00
|
|
|
|
Version: 1.3
|
2017-02-10 12:43:36 +00:00
|
|
|
|
Release: 4%{?dist}
|
2012-02-29 19:23:21 +00:00
|
|
|
|
License: AGPLv3
|
2005-09-26 17:18:54 +00:00
|
|
|
|
Group: Applications/Text
|
2012-11-12 14:37:03 +00:00
|
|
|
|
URL: http://hspell.ivrix.org.il/
|
|
|
|
|
Source: http://hspell.ivrix.org.il/%{name}-%{version}.tar.gz
|
|
|
|
|
|
2016-06-24 08:18:12 +00:00
|
|
|
|
BuildRequires: hunspell-devel, perl-generators, zlib-devel
|
2005-09-26 17:18:54 +00:00
|
|
|
|
|
|
|
|
|
%description
|
2009-12-31 23:02:41 +00:00
|
|
|
|
Hspell is a Hebrew SPELLer and morphological analyzer. It provides a mostly
|
2009-12-31 13:00:36 +00:00
|
|
|
|
spell-like interface (gives the list of wrong words in the input text), but can
|
2009-12-31 23:02:41 +00:00
|
|
|
|
also suggest corrections (-c). It also provides a true morphological analyzer
|
|
|
|
|
(-l), that prints all known meanings of a Hebrew string.
|
2005-09-26 17:18:54 +00:00
|
|
|
|
|
|
|
|
|
%description -l he
|
2009-12-31 13:00:36 +00:00
|
|
|
|
Hspell הוא מאיית ומנתח צורני עברי, המספק מנשק דמוי-spell - פולט רשימה של המילים
|
|
|
|
|
השגויות המופיעות בקלט. Hspell מקפיד מאוד כללי האקדמיה העברית לכתיב חסר ניקוד
|
2009-12-31 23:02:41 +00:00
|
|
|
|
("כתיב מלא"). כמו כן, Hspell מספק (-l) מנתח מורפולוגי אשר מדפיס את כל
|
2006-05-15 06:06:17 +00:00
|
|
|
|
המשמעויות האפשריות של מחרוזת אותיות עברית.
|
2005-09-26 17:18:54 +00:00
|
|
|
|
|
|
|
|
|
%package devel
|
2012-11-12 14:37:03 +00:00
|
|
|
|
Summary: Library and include files for Hspell, the Hebrew spell checker
|
2005-09-26 17:18:54 +00:00
|
|
|
|
Group: Applications/Text
|
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
|
Library and include files for applications that want to use Hspell.
|
|
|
|
|
|
|
|
|
|
%description -l he devel
|
2006-05-15 06:06:17 +00:00
|
|
|
|
ספרייה וקובצי כותרת עבור יישומים שרוצים להשתמש ב-Hspell.
|
2005-09-26 17:18:54 +00:00
|
|
|
|
|
2007-05-22 11:28:43 +00:00
|
|
|
|
%package -n hunspell-he
|
|
|
|
|
Summary: Hebrew hunspell dictionaries
|
|
|
|
|
Group: Applications/Text
|
|
|
|
|
Requires: hunspell
|
|
|
|
|
|
|
|
|
|
%description -n hunspell-he
|
|
|
|
|
Hebrew hunspell dictionaries.
|
|
|
|
|
|
2005-09-26 17:18:54 +00:00
|
|
|
|
%prep
|
|
|
|
|
%setup -q
|
2009-12-31 13:00:36 +00:00
|
|
|
|
/usr/bin/iconv -f hebrew -t utf8 -o WHATSNEW WHATSNEW
|
2005-09-26 17:18:54 +00:00
|
|
|
|
|
|
|
|
|
%build
|
2012-02-29 19:23:21 +00:00
|
|
|
|
%configure --enable-fatverb --enable-linginfo --enable-shared
|
2014-06-12 12:35:29 +00:00
|
|
|
|
make
|
2009-12-31 13:00:36 +00:00
|
|
|
|
make hunspell
|
2007-05-22 11:28:43 +00:00
|
|
|
|
|
2005-09-26 17:18:54 +00:00
|
|
|
|
%install
|
2014-06-12 12:35:29 +00:00
|
|
|
|
make DESTDIR=$RPM_BUILD_ROOT STRIP=: install
|
2008-05-14 22:04:14 +00:00
|
|
|
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/libhspell.a
|
2005-09-26 17:18:54 +00:00
|
|
|
|
|
2007-05-22 11:28:43 +00:00
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/%{_datadir}/myspell
|
2012-02-29 19:23:21 +00:00
|
|
|
|
cp -p he.dic $RPM_BUILD_ROOT/%{_datadir}/myspell/he_IL.dic
|
|
|
|
|
cp -p he.aff $RPM_BUILD_ROOT/%{_datadir}/myspell/he_IL.aff
|
|
|
|
|
|
|
|
|
|
%check
|
|
|
|
|
# there are three known failures
|
2012-11-12 14:37:03 +00:00
|
|
|
|
! make test | grep FAILED | grep -E -v '1/aspell/[489]'
|
2005-09-26 17:18:54 +00:00
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
|
%doc LICENSE README WHATSNEW COPYING
|
|
|
|
|
%{_bindir}/hspell
|
|
|
|
|
%{_bindir}/hspell-i
|
|
|
|
|
%{_bindir}/multispell
|
2008-05-14 22:04:14 +00:00
|
|
|
|
%{_libdir}/libhspell.so.0
|
2005-09-26 17:18:54 +00:00
|
|
|
|
%{_mandir}/man1/hspell.1*
|
|
|
|
|
%{_datadir}/hspell/
|
|
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
|
%{_includedir}/*.h
|
2008-05-14 22:04:14 +00:00
|
|
|
|
%{_libdir}/libhspell.so
|
2005-09-26 17:18:54 +00:00
|
|
|
|
%{_mandir}/man3/hspell.3*
|
|
|
|
|
|
2007-05-22 11:28:43 +00:00
|
|
|
|
%files -n hunspell-he
|
|
|
|
|
%doc LICENSE
|
|
|
|
|
%{_datadir}/myspell/*
|
|
|
|
|
|
2009-12-31 13:00:36 +00:00
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
2005-09-26 17:18:54 +00:00
|
|
|
|
%changelog
|
2017-02-10 12:43:36 +00:00
|
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
|
2016-02-03 23:54:07 +00:00
|
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.3-3
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
|
2015-06-17 10:32:52 +00:00
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
|
2015-02-26 12:49:48 +00:00
|
|
|
|
* Thu Feb 26 2015 Dan Kenigsberg <danken@cs.technion.ac.il> - 1.3-1
|
|
|
|
|
- Sync with upstream hspell-1.3
|
|
|
|
|
|
2014-08-16 20:41:20 +00:00
|
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-9
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
|
2014-06-12 12:35:29 +00:00
|
|
|
|
* Thu Jun 12 2014 Peter Schiffer <pschiffe@redhat.com> - 1.2-8
|
|
|
|
|
- cleaned build section:
|
|
|
|
|
STRIP variable is used in make install
|
|
|
|
|
CFLAGS are picked up already by configure script
|
|
|
|
|
fixed bogus dates in changelog
|
|
|
|
|
|
2014-06-07 20:24:41 +00:00
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-7
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
|
2013-08-03 17:54:29 +00:00
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-6
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
2013-07-17 12:20:02 +00:00
|
|
|
|
* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 1.2-5
|
|
|
|
|
- Perl 5.18 rebuild
|
|
|
|
|
|
2013-02-14 01:13:42 +00:00
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
|
2012-11-12 14:37:03 +00:00
|
|
|
|
* Mon Nov 12 2012 Peter Schiffer <pschiffe@redhat.com> - 1.2-3
|
|
|
|
|
- .spec file cleanup
|
|
|
|
|
|
2012-07-19 13:08:16 +00:00
|
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2-2
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
|
2012-02-29 19:23:21 +00:00
|
|
|
|
* Wed Feb 29 2012 Dan Kenigsberg <danken@cs.technion.ac.il> - 1.2-1
|
|
|
|
|
- Sync with upstream hspell-1.2
|
2012-01-13 04:58:13 +00:00
|
|
|
|
|
2011-02-09 09:26:14 +00:00
|
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1-4
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
|
2010-01-09 21:06:23 +00:00
|
|
|
|
* Sat Jan 9 2010 Dan Kenigsberg <danken@cs.technion.ac.il> - 1.1-3
|
|
|
|
|
- Rebuild with proper hunspell-devel dependency
|
|
|
|
|
|
2009-12-31 23:02:41 +00:00
|
|
|
|
* Fri Jan 1 2010 Dan Kenigsberg <danken@cs.technion.ac.il> - 1.1-2
|
|
|
|
|
- Rebase to upstream version 1.1 and fix spec typos.
|
|
|
|
|
|
2009-12-31 13:00:36 +00:00
|
|
|
|
* Thu Dec 31 2009 Dan Kenigsberg <danken@cs.technion.ac.il> - 1.1-1
|
|
|
|
|
- Rebase to upstream version 1.1
|
|
|
|
|
|
2009-07-25 02:13:23 +00:00
|
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-13
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
|
2009-02-25 04:01:34 +00:00
|
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-12
|
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
|
2008-09-21 08:33:25 +00:00
|
|
|
|
* Sun Sep 21 2008 Ville Skyttä <ville.skytta at iki.fi> - 1.0-11
|
|
|
|
|
- Fix Patch0:/%%patch mismatch.
|
|
|
|
|
|
2008-07-31 17:21:04 +00:00
|
|
|
|
* Thu Jul 31 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.0-10
|
|
|
|
|
- fix license tag
|
|
|
|
|
|
2008-05-14 22:04:14 +00:00
|
|
|
|
* Wed May 14 2008 Caolan McNamara <caolanm@redhat.com> - 1.0-9
|
|
|
|
|
- Resolves: rhbz#313231 build hspell.so instead of a .a
|
|
|
|
|
|
2008-02-19 00:17:10 +00:00
|
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.0-8
|
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
|
2007-05-22 11:28:43 +00:00
|
|
|
|
* Tue May 22 2007 Dan Kenigsberg <danken@cs.technion.ac.il> 1.0-7
|
|
|
|
|
- Move the hunspell-he dictionaries into hspell package (Bug #240696).
|
|
|
|
|
Mostly applying Caolan McNamara's patch #155078.
|
2007-02-11 16:01:06 +00:00
|
|
|
|
* Sun Feb 11 2007 Dan Kenigsberg <danken@cs.technion.ac.il> 1.0-6
|
|
|
|
|
- Use gzip -n to exclude MTIME from compressed data and resolve bug #228171
|
2014-06-12 12:35:29 +00:00
|
|
|
|
* Tue Sep 12 2006 Dan Kenigsberg <danken@cs.technion.ac.il> 1.0-5
|
2006-09-11 15:05:57 +00:00
|
|
|
|
- Rebuild for Fedora Extras 6
|
2006-07-09 08:45:36 +00:00
|
|
|
|
* Sun Jul 9 2006 Dan Kenigsberg <danken@cs.technion.ac.il> 1.0-4
|
|
|
|
|
- bump version to mend upgrade path. Bug #197125
|
2006-05-20 18:07:07 +00:00
|
|
|
|
* Sat May 20 2006 Dan Kenigsberg <danken@cs.technion.ac.il> 1.0-3
|
|
|
|
|
- do not strip the binary, create useful defuginfo package (Bug #192437).
|
2014-06-12 12:35:29 +00:00
|
|
|
|
* Mon May 15 2006 Dan Kenigsberg <danken@cs.technion.ac.il> 1.0-2
|
2006-05-15 06:06:17 +00:00
|
|
|
|
- new upstream release.
|
|
|
|
|
- Hebrew description converted to utf8.
|
2006-02-28 18:27:10 +00:00
|
|
|
|
* Tue Feb 28 2006 Dan Kenigsberg <danken@cs.technion.ac.il> 0.9-7
|
|
|
|
|
- Rebuild for Fedora Extras 5
|
2005-09-26 17:18:54 +00:00
|
|
|
|
* Mon Sep 26 2005 Dan Kenigsberg <danken@cs.technion.ac.il> 0.9-6
|
|
|
|
|
- Add the text of the GPL to the binary package. It seems that I'll do anything
|
|
|
|
|
to make my sponsor Tom happy.
|
2014-06-12 12:35:29 +00:00
|
|
|
|
* Thu Sep 22 2005 Dan Kenigsberg <danken@cs.technion.ac.il> 0.9-5
|
2005-09-26 17:18:54 +00:00
|
|
|
|
- According to Tom's request, distribute the fat version.
|
|
|
|
|
- Add short Hebrew description to the devel package.
|
2014-06-12 12:35:29 +00:00
|
|
|
|
* Tue Sep 20 2005 Dan Kenigsberg <danken@cs.technion.ac.il> 0.9-4
|
2005-09-26 17:18:54 +00:00
|
|
|
|
- Distribute the "slim" flavor, as I suspect it is better suited for the casual
|
|
|
|
|
user (even though I personally enjoy the chubby morphological analizer).
|
|
|
|
|
* Mon Sep 19 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.9-3
|
|
|
|
|
- minor spec file cleanups, eliminate "fat" variant
|
|
|
|
|
* Thu Sep 15 2005 Dan Kenigsberg <danken@cs.technion.ac.il> 0.9-2
|
|
|
|
|
- version 0.9, some magic to silence rpmlint
|
|
|
|
|
* Fri Jun 4 2004 Dan Kenigsberg <danken@cs.technion.ac.il> 0.8-1
|
|
|
|
|
- Some cleanups, and a devel package
|
2014-06-12 12:35:29 +00:00
|
|
|
|
* Fri Dec 19 2003 Dan Kenigsberg <danken@cs.technion.ac.il> 0.7-1
|
2005-09-26 17:18:54 +00:00
|
|
|
|
- Changes for version 0.7
|
|
|
|
|
* Tue Jul 29 2003 Dan Kenigsberg <danken@cs.technion.ac.il> 0.6-1
|
|
|
|
|
- Tiny changes for the C frontend
|
|
|
|
|
* Fri May 2 2003 Dan Kenigsberg <danken@cs.technion.ac.il> 0.5-1
|
|
|
|
|
- create the "fat" variant
|
|
|
|
|
* Mon Feb 17 2003 Dan Kenigsberg <danken@cs.technion.ac.il> 0.3-2
|
|
|
|
|
- The release includes only the compressed database.
|
|
|
|
|
- Added signature, and some other minor changes.
|
|
|
|
|
* Sun Jan 5 2003 Tzafrir Cohen <tzafrir@technion.ac.il> 0.2-1
|
|
|
|
|
- Initial build.
|