forked from pool/enchant
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
|
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.
|
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
# This file and all modifications and additions to the pristine
|
# This file and all modifications and additions to the pristine
|
||||||
@ -12,15 +12,14 @@
|
|||||||
|
|
||||||
Name: enchant
|
Name: enchant
|
||||||
BuildRequires: aspell-devel gcc-c++ glib2-devel
|
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
|
Group: Productivity/Text/Spell
|
||||||
Autoreqprov: on
|
AutoReqProv: on
|
||||||
Version: 1.2.0
|
Version: 1.3.0
|
||||||
Release: 51
|
Release: 1
|
||||||
Summary: An Enchanting Spell Checking Library
|
Summary: An Enchanting Spell Checking Library
|
||||||
Source: %{name}-%{version}.tar.bz2
|
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
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
|
|
||||||
%description
|
%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:
|
Authors:
|
||||||
--------
|
--------
|
||||||
Dom Lachowicz <cinamod@hotmail.com>
|
Dom Lachowicz <cinamod@hotmail.com>
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Include Files and Libraries mandatory for Development.
|
Summary: Include Files and Libraries mandatory for Development.
|
||||||
Group: Productivity/Text/Spell
|
Group: Development/Libraries/C and C++
|
||||||
Requires: %{name} = %{version} glib2-devel
|
Requires: %{name} = %{version} glib2-devel
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
@ -49,11 +62,10 @@ Authors:
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
ACLOCAL="aclocal -I ac-helpers" autoreconf -f -i
|
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"
|
export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
|
||||||
%configure\
|
%configure\
|
||||||
--disable-static
|
--disable-static
|
||||||
@ -66,22 +78,25 @@ rm $RPM_BUILD_ROOT%{_libdir}/*/*.*a
|
|||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%post
|
%post -n libenchant1
|
||||||
%run_ldconfig
|
%run_ldconfig
|
||||||
|
|
||||||
%postun
|
%postun -n libenchant1
|
||||||
%run_ldconfig
|
%run_ldconfig
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%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)
|
%defattr (-, root, root)
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_datadir}/enchant
|
%{_datadir}/enchant
|
||||||
%{_libdir}/*.so.*
|
|
||||||
%{_libdir}/enchant
|
%{_libdir}/enchant
|
||||||
%doc %{_mandir}/man?/*.*
|
%doc %{_mandir}/man?/*.*
|
||||||
|
|
||||||
|
%files -n libenchant1
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%{_libdir}/*.so.*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@ -89,8 +104,12 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/*.so
|
%{_libdir}/*.so
|
||||||
%{_libdir}/*.*a
|
%{_libdir}/*.*a
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
%changelog
|
||||||
%changelog -n enchant
|
* 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
|
* Tue Feb 13 2007 - sbrabec@suse.cz
|
||||||
- Do not build unusable static libraries (#238552#c17).
|
- Do not build unusable static libraries (#238552#c17).
|
||||||
* Thu Jan 04 2007 - sbrabec@suse.cz
|
* Thu Jan 04 2007 - sbrabec@suse.cz
|
||||||
|
Loading…
x
Reference in New Issue
Block a user