This commit is contained in:
parent
fa3c663a85
commit
2b9e5c88fa
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e2433d4aec5c74f6b4d6ccb4a7c02c0a2d39ba9e8e710230dec5354e04073dc0
|
||||
size 322551
|
3
enchant-1.3.0.tar.bz2
Normal file
3
enchant-1.3.0.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:d30a7fe8126aa89792b99267c5b84e08058c61897db7b44460e24142b7027f44
|
||||
size 413732
|
@ -1,11 +0,0 @@
|
||||
--- src/myspell/suggestmgr.cxx
|
||||
+++ src/myspell/suggestmgr.cxx
|
||||
@@ -440,7 +440,7 @@
|
||||
guess[lp] = glst[k].word;
|
||||
glst[k].word = NULL;
|
||||
lval = sc;
|
||||
- for (j=0; j < MAX_GUESS; j)
|
||||
+ for (j=0; j < MAX_GUESS; j++)
|
||||
{
|
||||
if (gscore[j] < lval)
|
||||
{
|
@ -1,3 +1,11 @@
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 18 12:43:19 CEST 2007 - sbrabec@suse.cz
|
||||
|
||||
- Updated to version 1.3.0:
|
||||
* New personal wordlist implementation.
|
||||
* Bug and compilation fixes.
|
||||
- Split according to shared library packaging policy.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 13 11:50:51 CET 2007 - sbrabec@suse.cz
|
||||
|
||||
|
53
enchant.spec
53
enchant.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package enchant (Version 1.2.0)
|
||||
# spec file for package enchant (Version 1.3.0)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
@ -12,15 +12,14 @@
|
||||
|
||||
Name: enchant
|
||||
BuildRequires: aspell-devel gcc-c++ glib2-devel
|
||||
License: GNU Library General Public License v. 2.0 and 2.1 (LGPL)
|
||||
License: LGPL v2 or later
|
||||
Group: Productivity/Text/Spell
|
||||
Autoreqprov: on
|
||||
Version: 1.2.0
|
||||
Release: 51
|
||||
AutoReqProv: on
|
||||
Version: 1.3.0
|
||||
Release: 1
|
||||
Summary: An Enchanting Spell Checking Library
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Patch: %{name}-infinite-loop.patch
|
||||
URL: http://www.abisource.com/
|
||||
Url: http://www.abisource.com/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
|
||||
%description
|
||||
@ -28,13 +27,27 @@ A library that wraps around other spell checking back-ends.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Dom Lachowicz <cinamod@hotmail.com>
|
||||
|
||||
%package -n libenchant1
|
||||
Summary: An Enchanting Spell Checking Library
|
||||
Group: System/Libraries
|
||||
Requires: %{name} >= %{version}
|
||||
|
||||
%description -n libenchant1
|
||||
A library that wraps around other spell checking back-ends.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Dom Lachowicz <cinamod@hotmail.com>
|
||||
|
||||
%package devel
|
||||
Summary: Include Files and Libraries mandatory for Development.
|
||||
Group: Productivity/Text/Spell
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: %{name} = %{version} glib2-devel
|
||||
|
||||
%description devel
|
||||
@ -49,11 +62,10 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch
|
||||
|
||||
%build
|
||||
ACLOCAL="aclocal -I ac-helpers" autoreconf -f -i
|
||||
# needed for enchant-1.2.0:
|
||||
# needed for enchant-1.3.0:
|
||||
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||
%configure\
|
||||
--disable-static
|
||||
@ -66,22 +78,25 @@ rm $RPM_BUILD_ROOT%{_libdir}/*/*.*a
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
%post -n libenchant1
|
||||
%run_ldconfig
|
||||
|
||||
%postun
|
||||
%postun -n libenchant1
|
||||
%run_ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc AUTHORS BUGS COPYING.LIB ChangeLog MAINTAINERS NEWS README TODO
|
||||
# AUTHORS == MAINTAINERS in 1.3.0
|
||||
%doc AUTHORS BUGS COPYING.LIB ChangeLog NEWS README TODO
|
||||
%defattr (-, root, root)
|
||||
%{_bindir}/*
|
||||
%{_datadir}/enchant
|
||||
%{_libdir}/*.so.*
|
||||
%{_libdir}/enchant
|
||||
%doc %{_mandir}/man?/*.*
|
||||
|
||||
|
||||
%files -n libenchant1
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.so.*
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
@ -89,8 +104,12 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/*.*a
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
|
||||
%changelog -n enchant
|
||||
%changelog
|
||||
* Thu Oct 18 2007 - sbrabec@suse.cz
|
||||
- Updated to version 1.3.0:
|
||||
* New personal wordlist implementation.
|
||||
* Bug and compilation fixes.
|
||||
- Split according to shared library packaging policy.
|
||||
* Tue Feb 13 2007 - sbrabec@suse.cz
|
||||
- Do not build unusable static libraries (#238552#c17).
|
||||
* Thu Jan 04 2007 - sbrabec@suse.cz
|
||||
|
Loading…
Reference in New Issue
Block a user