| 1 | %define _noVersionedDependencies 1 |
|---|
| 2 | |
|---|
| 3 | %define ver 0.60.6.1 |
|---|
| 4 | %define rel 1 |
|---|
| 5 | |
|---|
| 6 | Summary: A spelling checker. |
|---|
| 7 | Summary(ja): スペルチェッカ |
|---|
| 8 | Name: aspell |
|---|
| 9 | Version: %{ver} |
|---|
| 10 | Release: %{rel}%{?_dist_release} |
|---|
| 11 | License: LGPL |
|---|
| 12 | Group: Applications/Text |
|---|
| 13 | URL: http://aspell.net/ |
|---|
| 14 | Source0: ftp://ftp.gnu.org/gnu/aspell/aspell-%{version}.tar.gz |
|---|
| 15 | Source10: %{name}-install.sh |
|---|
| 16 | Source11: %{name}-remove.sh |
|---|
| 17 | Source12: %{name}-init.el |
|---|
| 18 | Source100: aspell.conf |
|---|
| 19 | Patch1003: aspell-0.60.3-install_info.patch |
|---|
| 20 | Patch1005: aspell-0.60.5-fileconflict.patch |
|---|
| 21 | Patch1007: aspell-0.60.5-pspell_conf.patch |
|---|
| 22 | Patch1008: aspell-0.60.6-zero.patch |
|---|
| 23 | Patch1009: aspell-0.60.6-mp.patch |
|---|
| 24 | |
|---|
| 25 | BuildRequires: gcc-c++ gettext ncurses-devel pkgconfig |
|---|
| 26 | BuildRequires: chrpath |
|---|
| 27 | Requires(post): %{_syssbindir}/install-info |
|---|
| 28 | Requires(preun): %{_syssbindir}/install-info |
|---|
| 29 | BuildRoot: %{_tmppath}/%{name}-%{version}-root |
|---|
| 30 | Provides: pspell |
|---|
| 31 | Obsoletes: ispell, pspell |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | %description |
|---|
| 35 | GNU Aspell is a spell checker designed to eventually replace Ispell. It can |
|---|
| 36 | either be used as a library or as an independent spell checker. Its main |
|---|
| 37 | feature is that it does a much better job of coming up with possible |
|---|
| 38 | suggestions than just about any other spell checker out there for the |
|---|
| 39 | English language, including Ispell and Microsoft Word. It also has many |
|---|
| 40 | other technical enhancements over Ispell such as using shared memory for |
|---|
| 41 | dictionaries and intelligently handling personal dictionaries when more |
|---|
| 42 | than one Aspell process is open at once. |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | %package devel |
|---|
| 46 | Summary: Static libraries and header files for Aspell development. |
|---|
| 47 | Group: Development/Libraries |
|---|
| 48 | Requires: aspell = %{version}-%{release} |
|---|
| 49 | Obsoletes: pspell-devel |
|---|
| 50 | |
|---|
| 51 | %description devel |
|---|
| 52 | Aspell is a spelling checker. The aspell-devel package includes the |
|---|
| 53 | static libraries and header files needed for Aspell development. |
|---|
| 54 | |
|---|
| 55 | |
|---|
| 56 | %package el |
|---|
| 57 | Summary: Emacs lisp for aspell |
|---|
| 58 | Group: Applications/Editors/Emacs |
|---|
| 59 | Requires: aspell = %{version}-%{release} |
|---|
| 60 | Requires: emacsen-common |
|---|
| 61 | |
|---|
| 62 | %description el |
|---|
| 63 | Aspell is a spelling checker. The aspell-el package includes the |
|---|
| 64 | elisp for using aspell within emacsen. |
|---|
| 65 | |
|---|
| 66 | |
|---|
| 67 | %prep |
|---|
| 68 | %setup -q |
|---|
| 69 | %patch1003 -p1 -b .iinfo |
|---|
| 70 | %patch1005 -p1 -b .fc |
|---|
| 71 | %patch1007 -p1 -b .mlib |
|---|
| 72 | %patch1008 -p1 -b .zero |
|---|
| 73 | %patch1009 -p1 -b .ai |
|---|
| 74 | iconv -f windows-1252 -t utf-8 manual/aspell.info -o manual/aspell.info.aux |
|---|
| 75 | mv manual/aspell.info.aux manual/aspell.info |
|---|
| 76 | |
|---|
| 77 | %build |
|---|
| 78 | %configure --disable-rpath |
|---|
| 79 | make %{?_smp_mflags} |
|---|
| 80 | cp scripts/aspell-import examples/aspell-import |
|---|
| 81 | chmod 644 examples/aspell-import |
|---|
| 82 | cp manual/aspell-import.1 examples/aspell-import.1 |
|---|
| 83 | |
|---|
| 84 | |
|---|
| 85 | %install |
|---|
| 86 | rm -rf %{buildroot} |
|---|
| 87 | %makeinstall |
|---|
| 88 | |
|---|
| 89 | mv %{buildroot}%{_libdir}/aspell-*/ispell %{buildroot}%{_bindir} |
|---|
| 90 | mv %{buildroot}%{_libdir}/aspell-*/spell %{buildroot}%{_bindir} |
|---|
| 91 | |
|---|
| 92 | chrpath --delete %{buildroot}%{_libdir}/aspell-0.60//nroff-filter.so |
|---|
| 93 | chrpath --delete %{buildroot}%{_libdir}/aspell-0.60//sgml-filter.so |
|---|
| 94 | chrpath --delete %{buildroot}%{_libdir}/aspell-0.60//context-filter.so |
|---|
| 95 | chrpath --delete %{buildroot}%{_libdir}/aspell-0.60//email-filter.so |
|---|
| 96 | chrpath --delete %{buildroot}%{_libdir}/aspell-0.60//tex-filter.so |
|---|
| 97 | chrpath --delete %{buildroot}%{_libdir}/aspell-0.60//texinfo-filter.so |
|---|
| 98 | chrpath --delete %{buildroot}%{_bindir}/aspell |
|---|
| 99 | chrpath --delete %{buildroot}%{_libdir}/libpspell.so.* |
|---|
| 100 | |
|---|
| 101 | rm -f %{buildroot}%{_libdir}/libaspell.la |
|---|
| 102 | rm -f %{buildroot}%{_libdir}/libpspell.la |
|---|
| 103 | rm -f %{buildroot}%{_libdir}/aspell-0.60/*-filter.la |
|---|
| 104 | rm -f %{buildroot}%{_bindir}/aspell-import |
|---|
| 105 | rm -f %{buildroot}%{_mandir}/man1/aspell-import.1* |
|---|
| 106 | |
|---|
| 107 | |
|---|
| 108 | # Add by H.Irokawa(2004.02.23) |
|---|
| 109 | mkdir -p %{buildroot}%{_sysconfdir} |
|---|
| 110 | install -m 644 %{SOURCE100} %{buildroot}%{_sysconfdir}/aspell.conf |
|---|
| 111 | |
|---|
| 112 | mkdir -p $RPM_BUILD_ROOT/usr/share/emacs/site-lisp/aspell |
|---|
| 113 | mkdir -p %{buildroot}%{_prefix}/lib/emacsen-common/packages/install |
|---|
| 114 | mkdir -p %{buildroot}%{_prefix}/lib/emacsen-common/packages/remove |
|---|
| 115 | |
|---|
| 116 | install -m 644 %{SOURCE12} %{buildroot}/usr/share/emacs/site-lisp/%{name} |
|---|
| 117 | |
|---|
| 118 | # install script( bytecompile el and install elc , remove ) |
|---|
| 119 | |
|---|
| 120 | %_installemacsenscript %{name} %{SOURCE10} |
|---|
| 121 | |
|---|
| 122 | %_removeemacsenscript %{name} %{SOURCE11} |
|---|
| 123 | |
|---|
| 124 | rm -f $RPM_BUILD_ROOT/usr/share/doc/aspell/manual.aux |
|---|
| 125 | |
|---|
| 126 | %find_lang %{name} |
|---|
| 127 | |
|---|
| 128 | %post |
|---|
| 129 | /sbin/ldconfig |
|---|
| 130 | # info |
|---|
| 131 | if [ "$1" = 0 ] ; then |
|---|
| 132 | %{_syssbindir}/install-info %{_infodir}/aspell.info.gz %{_infodir}/dir |
|---|
| 133 | fi |
|---|
| 134 | |
|---|
| 135 | %post devel |
|---|
| 136 | /sbin/ldconfig |
|---|
| 137 | # info |
|---|
| 138 | if [ "$1" = 0 ] ; then |
|---|
| 139 | %{_syssbindir}/install-info %{_infodir}/aspell-dev.info.gz %{_infodir}/dir |
|---|
| 140 | fi |
|---|
| 141 | |
|---|
| 142 | %post el |
|---|
| 143 | if [ "$1" = 2 ]; then |
|---|
| 144 | |
|---|
| 145 | %_emacsenPackageRemove %{name} |
|---|
| 146 | |
|---|
| 147 | fi |
|---|
| 148 | |
|---|
| 149 | %_addemacsenlist %{name} |
|---|
| 150 | |
|---|
| 151 | %_emacsenPackageInstall %{name} |
|---|
| 152 | |
|---|
| 153 | |
|---|
| 154 | %postun |
|---|
| 155 | /sbin/ldconfig |
|---|
| 156 | |
|---|
| 157 | %preun |
|---|
| 158 | if [ $1 = 0 ]; then |
|---|
| 159 | %{_syssbindir}/install-info --delete %{_infodir}/aspell.info.gz %{_infodir}/dir |
|---|
| 160 | fi |
|---|
| 161 | |
|---|
| 162 | %preun devel |
|---|
| 163 | if [ $1 = 0 ]; then |
|---|
| 164 | %{_syssbindir}/install-info --delete %{_infodir}/aspell-dev.info.gz %{_infodir}/dir |
|---|
| 165 | fi |
|---|
| 166 | |
|---|
| 167 | %preun el |
|---|
| 168 | if [ "$1" = 0 ]; then |
|---|
| 169 | |
|---|
| 170 | %_emacsenPackageRemove %{name} |
|---|
| 171 | |
|---|
| 172 | %_removeemacsenlist %{name} |
|---|
| 173 | |
|---|
| 174 | fi |
|---|
| 175 | |
|---|
| 176 | |
|---|
| 177 | %clean |
|---|
| 178 | rm -rf %{buildroot} |
|---|
| 179 | |
|---|
| 180 | %files -f %{name}.lang |
|---|
| 181 | %defattr(-,root,root) |
|---|
| 182 | %config(noreplace) %{_sysconfdir}/aspell.conf |
|---|
| 183 | %doc README TODO COPYING examples/aspell-import examples/aspell-import.1 |
|---|
| 184 | %dir %{_libdir}/aspell-0.60 |
|---|
| 185 | %{_bindir}/a* |
|---|
| 186 | %{_bindir}/ispell |
|---|
| 187 | %{_bindir}/pr* |
|---|
| 188 | %{_bindir}/run-with-aspell |
|---|
| 189 | %{_bindir}/spell |
|---|
| 190 | %{_bindir}/word-list-compress |
|---|
| 191 | %{_libdir}/lib*.so.* |
|---|
| 192 | %{_libdir}/aspell-0.60/* |
|---|
| 193 | %{_infodir}/aspell.* |
|---|
| 194 | %{_mandir}/man1/aspell.1.* |
|---|
| 195 | %{_mandir}/man1/run-with-aspell.1* |
|---|
| 196 | %{_mandir}/man1/word-list-compress.1* |
|---|
| 197 | %{_mandir}/man1/prezip-bin.1.* |
|---|
| 198 | |
|---|
| 199 | %files devel |
|---|
| 200 | %defattr(-,root,root) |
|---|
| 201 | %{_bindir}/pspell-config |
|---|
| 202 | %{_includedir}/aspell.h |
|---|
| 203 | %{_includedir}/pspell |
|---|
| 204 | %{_infodir}/aspell-dev.info* |
|---|
| 205 | %{_libdir}/lib*spell.so |
|---|
| 206 | %{_libdir}/pkgconfig/aspell.pc |
|---|
| 207 | %{_mandir}/man1/pspell-config.1* |
|---|
| 208 | |
|---|
| 209 | %files el |
|---|
| 210 | %{_datadir}/emacs/site-lisp/%{name}/ |
|---|
| 211 | %{_prefix}/lib/emacsen-common/packages/install/%{name} |
|---|
| 212 | %{_prefix}/lib/emacsen-common/packages/remove/%{name} |
|---|
| 213 | |
|---|
| 214 | %changelog |
|---|
| 215 | * Tue Mar 06 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.60.6.1-1 |
|---|
| 216 | - updated to 0.60.6.1 |
|---|
| 217 | - import Patch1009 from Fedora |
|---|
| 218 | |
|---|
| 219 | * Tue May 3 2011 IWAI, Masaharu <iwai@alib.jp> 0.60.6-2 |
|---|
| 220 | - update aspell.conf (Source100) |
|---|
| 221 | |
|---|
| 222 | * Sat Apr 16 2011 IWAI, Masaharu <iwai@alib.jp> 0.60.6-1 |
|---|
| 223 | - new upstream release |
|---|
| 224 | - sync Fedora 0.60.6-14 |
|---|
| 225 | - split English dictionary package: create aspell-en package |
|---|
| 226 | - drop unnecessary patches |
|---|
| 227 | - prefix patch (Patch0) |
|---|
| 228 | - fix compress patch (Patch1) |
|---|
| 229 | - add some patches (Patch1003, 1005, 1007, 1008) |
|---|
| 230 | - create aspell.pc file |
|---|
| 231 | - update files |
|---|
| 232 | - add post, preun scripts for info file |
|---|
| 233 | - add Requires(post,preun) for installing info file |
|---|
| 234 | - noreplace aspell.conf |
|---|
| 235 | |
|---|
| 236 | * Fri Aug 15 2008 Shu KONNO <owa@bg.wakwak.com> 0.50.5-1vl5 |
|---|
| 237 | - applied new versioning policy, spec in utf-8 |
|---|
| 238 | |
|---|
| 239 | * Sun May 20 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.50.5-0vl3 |
|---|
| 240 | - rebuilt with new toolchain |
|---|
| 241 | |
|---|
| 242 | * Mon Sep 11 2006 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.50.5-0vl2 |
|---|
| 243 | - changed aspell-el Group to Appliations/Editors/Emacs <BTS:VineLinux:163> |
|---|
| 244 | |
|---|
| 245 | * Sun Jul 23 2006 NAKAMURA Kenta <kenta@vinelinux.org> 0.50.5-0vl1 |
|---|
| 246 | - upgrade to new upstream |
|---|
| 247 | - drop aspell-0.50.3-gcc33.patch |
|---|
| 248 | - update prefix.patch |
|---|
| 249 | |
|---|
| 250 | * Sat Oct 30 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.50.3-0vl8 |
|---|
| 251 | - merged with errata package |
|---|
| 252 | * Wed Oct 6 2004 IKEDA Katsumi <ikeda@webmasters.gr.jp> 0.50.3-0vl5.1 |
|---|
| 253 | - added aspell-compress-bug.patch (CAN-2004-0548). |
|---|
| 254 | |
|---|
| 255 | * Fri Oct 15 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.50.3-0vl7 |
|---|
| 256 | - fixed typo (s/%postun el/%preun el/) |
|---|
| 257 | |
|---|
| 258 | * Fri Oct 15 2004 MATSUBAYASHI Kohji <shaolin@vinelinux.org> 0.50.3-0vl6 |
|---|
| 259 | - split elisp-related files into the aspell-el subpackage |
|---|
| 260 | |
|---|
| 261 | * Thu Mar 4 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.50.3-0vl5 |
|---|
| 262 | - add PreReq: emacsen-common |
|---|
| 263 | |
|---|
| 264 | * Mon Feb 23 2004 Hiroaki Irokawa <irorin@terra.dti.ne.jp> 0.50.3-0vl4 |
|---|
| 265 | - add /etc/aspell.conf |
|---|
| 266 | - modded aspell-init.el(Japanese blended English spell check) |
|---|
| 267 | |
|---|
| 268 | * Wed Feb 18 2004 Daisuke SUZUKI <daisuke@linux.or.jp> 0.50.3-0vl3 |
|---|
| 269 | - add %{_bindir}/{ispell,spell} for compatibility script |
|---|
| 270 | - enable site-start.d stuff |
|---|
| 271 | |
|---|
| 272 | * Mon Nov 17 2003 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.50.3-0vl2 |
|---|
| 273 | - fixed spec file character code to EUC-JP |
|---|
| 274 | |
|---|
| 275 | * Wed Jun 11 2003 Daisuke SUZUKI <daisuke@linux.or.jp> 0.50.3-0vl1 |
|---|
| 276 | - build for Vine Linux |
|---|
| 277 | - merge aspell-en |
|---|
| 278 | |
|---|
| 279 | * Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com> |
|---|
| 280 | - rebuilt |
|---|
| 281 | |
|---|
| 282 | * Fri May 30 2003 Joe Orton <jorton@redhat.com> 7:0.50.3-10 |
|---|
| 283 | - rebuild again to fix libpspell deps |
|---|
| 284 | |
|---|
| 285 | * Fri May 30 2003 Joe Orton <jorton@redhat.com> 7:0.50.3-9 |
|---|
| 286 | - remove ExcludeArch |
|---|
| 287 | |
|---|
| 288 | * Thu May 22 2003 Jeremy Katz <katzj@redhat.com> 7:0.50.3-8 |
|---|
| 289 | - fix build with gcc 3.3 |
|---|
| 290 | |
|---|
| 291 | * Wed May 22 2003 Adrian Havill <havill@redhat.com> 0.50.3-7 |
|---|
| 292 | - require aspell-en for upgrades |
|---|
| 293 | |
|---|
| 294 | * Sun May 11 2003 Jeremy Katz <katzj@redhat.com> 6:0.50.3-6 |
|---|
| 295 | - -devel should obsolete pspell-devel |
|---|
| 296 | |
|---|
| 297 | * Tue May 6 2003 Joe Orton <jorton@redhat.com> 0.50.3-5 |
|---|
| 298 | - include libpspell.so in devel package |
|---|
| 299 | |
|---|
| 300 | * Wed May 1 2003 Adrian Havill <havill@redhat.com> 0.50.3-4 |
|---|
| 301 | - removed .la files |
|---|
| 302 | |
|---|
| 303 | * Wed Apr 16 2003 Adrian Havill <havill@redhat.com> 0.50.3-3 |
|---|
| 304 | - Changed the header for provides, obsoletes, epoch |
|---|
| 305 | - fixed config prefix in dirs.h |
|---|
| 306 | |
|---|
| 307 | * Wed Apr 16 2003 Adrian Havill <havill@redhat.com> 0.50.3-1 |
|---|
| 308 | - upgrade to 0.50.3 |
|---|
| 309 | |
|---|
| 310 | * Wed Jan 22 2003 Tim Powers <timp@redhat.com> |
|---|
| 311 | - rebuilt |
|---|
| 312 | |
|---|
| 313 | * Fri Nov 8 2002 Tim Powers <timp@redhat.com> |
|---|
| 314 | - fix broken pspell epoch dep |
|---|
| 315 | - create $RPM_BUILD_ROOT/usr/bin by hand |
|---|
| 316 | - remove /usr/doc |
|---|
| 317 | - fix hardcoding of /usr/lib so that we can build on x86_64 |
|---|
| 318 | |
|---|
| 319 | * Tue Aug 13 2002 Nalin Dahyabhai <nalin@redhat.com> 0.33.7.1-16 |
|---|
| 320 | - require pspell and pspell-devel using the proper epoch |
|---|
| 321 | |
|---|
| 322 | * Sat Aug 10 2002 Elliot Lee <sopwith@redhat.com> |
|---|
| 323 | - rebuilt with gcc-3.2 (we hope) |
|---|
| 324 | |
|---|
| 325 | * Mon Jul 22 2002 Tim Powers <timp@redhat.com> 0.33.7.1-14 |
|---|
| 326 | - rebuild using gcc-3.2-0.1 |
|---|
| 327 | |
|---|
| 328 | * Fri Jun 21 2002 Tim Powers <timp@redhat.com> 0.33.7.1-13 |
|---|
| 329 | - automated rebuild |
|---|
| 330 | |
|---|
| 331 | * Thu Jun 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-12 |
|---|
| 332 | - Rebuild to make it work again... #66708 |
|---|
| 333 | |
|---|
| 334 | * Thu May 23 2002 Tim Powers <timp@redhat.com> |
|---|
| 335 | - automated rebuild |
|---|
| 336 | |
|---|
| 337 | * Mon May 13 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-10 |
|---|
| 338 | - Rebuild |
|---|
| 339 | |
|---|
| 340 | * Thu Feb 21 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-9 |
|---|
| 341 | - Disable evil patch |
|---|
| 342 | |
|---|
| 343 | * Mon Jan 28 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-8 |
|---|
| 344 | - Build on more archs (doh) |
|---|
| 345 | |
|---|
| 346 | * Tue Jan 22 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-7 |
|---|
| 347 | - Make it compile with new compiler (evil workaround) |
|---|
| 348 | |
|---|
| 349 | * Wed Jan 16 2002 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-5 |
|---|
| 350 | - Rebuild |
|---|
| 351 | - Unexclude alpha |
|---|
| 352 | |
|---|
| 353 | * Fri Dec 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-3 |
|---|
| 354 | - Rebuild |
|---|
| 355 | - Don't build on alpha |
|---|
| 356 | |
|---|
| 357 | * Mon Oct 29 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.33.7.1-2 |
|---|
| 358 | - "make it work with gcc 3.1" ;) |
|---|
| 359 | |
|---|
| 360 | * Tue Sep 18 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7.1-1 |
|---|
| 361 | - 0.33.7.1, which is a "make it work with gcc 3" release |
|---|
| 362 | |
|---|
| 363 | * Wed Sep 12 2001 Tim Powers <timp@redhat.com> |
|---|
| 364 | - rebuild with new gcc and binutils |
|---|
| 365 | |
|---|
| 366 | * Thu Aug 9 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.33.7-1 |
|---|
| 367 | - 0.33.7 bugfix release. Requested by the author, it fixes |
|---|
| 368 | coredumps in sug-mode and when not using typo-analyses. |
|---|
| 369 | It also contains code cleanups so it compiles with -ansi |
|---|
| 370 | - should fix coredump on IA64 (#49746) |
|---|
| 371 | |
|---|
| 372 | * Wed Jul 11 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 373 | - Add the .la files in the main package - used for dynamic loading |
|---|
| 374 | |
|---|
| 375 | * Sun Jun 3 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 376 | - 0.33.6.3, which includes the fix made yesterday |
|---|
| 377 | |
|---|
| 378 | * Sat Jun 2 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 379 | - Make it search for directories in the correct location |
|---|
| 380 | |
|---|
| 381 | * Wed May 30 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 382 | - No more workarounds at the specfile level |
|---|
| 383 | |
|---|
| 384 | * Tue May 29 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 385 | - Use custom ltmain.sh to work around buggy bundled libtool |
|---|
| 386 | |
|---|
| 387 | * Sun May 20 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 388 | - 0.33.6 |
|---|
| 389 | - use standard %%configure macro - it works now. |
|---|
| 390 | |
|---|
| 391 | * Fri May 11 2001 Bernhard Rosenkraenzer <bero@redhat.com> 0.33.5-2 |
|---|
| 392 | - Rebuild with new libltdl |
|---|
| 393 | |
|---|
| 394 | * Mon Apr 23 2001 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 395 | - 0.33.5 |
|---|
| 396 | |
|---|
| 397 | * Thu Nov 30 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 398 | - use new emacs init scheme for Emacs and XEmacs |
|---|
| 399 | |
|---|
| 400 | * Wed Nov 22 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 401 | - .32.6 |
|---|
| 402 | |
|---|
| 403 | * Sat Aug 19 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 404 | - .32.5 bugfix release (also contains improved documentation), |
|---|
| 405 | obsolete old patch |
|---|
| 406 | - the compatibility scripts are now part of the package itself |
|---|
| 407 | - clean up build procedure |
|---|
| 408 | - remove manual.aux file from docs (#16424) |
|---|
| 409 | |
|---|
| 410 | * Sun Aug 06 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 411 | - .32.1 bugfix release, obsolete old patch |
|---|
| 412 | - rename to 0.32.1 |
|---|
| 413 | - add patch from author to change his email address |
|---|
| 414 | - add spell and ispell compatibility scripts |
|---|
| 415 | |
|---|
| 416 | * Fri Aug 04 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 417 | - rebuild |
|---|
| 418 | |
|---|
| 419 | * Tue Aug 01 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 420 | - remember to obsolete ispell |
|---|
| 421 | - build the Canadian and British dictionaries here now, |
|---|
| 422 | as part of the main package. Same package names and |
|---|
| 423 | descriptions. |
|---|
| 424 | |
|---|
| 425 | * Mon Jul 24 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 426 | - .32 |
|---|
| 427 | - remove old patches, add a patch since namespace isn't |
|---|
| 428 | polluted as much anymore (as opposed to older toolchain) |
|---|
| 429 | |
|---|
| 430 | * Wed Jul 19 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 431 | - rebuild |
|---|
| 432 | |
|---|
| 433 | * Wed Jul 12 2000 Prospector <bugzilla@redhat.com> |
|---|
| 434 | - automatic rebuild |
|---|
| 435 | |
|---|
| 436 | * Tue Jul 4 2000 Jakub Jelinek <jakub@redhat.com> |
|---|
| 437 | - Rebuild with new C++ |
|---|
| 438 | |
|---|
| 439 | * Fri Jun 30 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 440 | - use RPM_OPT_FLAGS, not just -O0 |
|---|
| 441 | - dont include .la-files |
|---|
| 442 | |
|---|
| 443 | * Fri Jun 23 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 444 | - excludearch ia64 |
|---|
| 445 | |
|---|
| 446 | * Fri Jun 23 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 447 | - patch to work around compiler bug(?) wrt. inline functions |
|---|
| 448 | - use CFLAGS and CXXFLAGS |
|---|
| 449 | - set them to -O0 to work around YACB |
|---|
| 450 | - copy libtool files for IA64 support |
|---|
| 451 | |
|---|
| 452 | * Sun Jun 18 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 453 | - update to .31.1. My patch was upstreamed and is no longer needed. |
|---|
| 454 | - new patch added so DESTDIR works properly |
|---|
| 455 | |
|---|
| 456 | * Fri Jun 16 2000 Trond Eivind Glomsrød <teg@redhat.com> |
|---|
| 457 | - (this entry includes some old ones...) |
|---|
| 458 | - update to .31 |
|---|
| 459 | - added patch to make it compile with a pickier compiler |
|---|
| 460 | - include /usr/share/pspell |
|---|
| 461 | |
|---|
| 462 | * Mon May 1 2000 Tim Powers <timp@redhat.com> |
|---|
| 463 | - updated to .30.1 |
|---|
| 464 | - used build fixes from Ryan Weaver's 0.30.1-1 package on sourceforge |
|---|
| 465 | - updated URL, download/ftp location |
|---|
| 466 | - removed redundant define's at top of spec file |
|---|
| 467 | |
|---|
| 468 | * Thu Jul 8 1999 Tim Powers <timp@redhat.com> |
|---|
| 469 | - built for Powertools 6.1 |
|---|
| 470 | - removed %serial definitions from spec file to make versioning |
|---|
| 471 | consistant with the other packages we ship. |
|---|
| 472 | - changed build root path |
|---|
| 473 | - general spec file cleanups |
|---|
| 474 | |
|---|
| 475 | * Tue Mar 2 1999 Ryan Weaver <ryanw@infohwy.com> |
|---|
| 476 | [aspell-.27.2-2] |
|---|
| 477 | - Changes from .27.1 to .27.2 (Mar 1, 1999) |
|---|
| 478 | - Fixed a major bug that caused aspell to dump core when used |
|---|
| 479 | without any arguments |
|---|
| 480 | - Fixed another major bug that caused aspell to do nothing when used |
|---|
| 481 | in interactive mode. |
|---|
| 482 | - Added an option to exit in Aspell's interactive mode. |
|---|
| 483 | - Removed some old documentation files from the distribution. |
|---|
| 484 | - Minor changes on to the section on using Aspell with egcs. |
|---|
| 485 | - Minor changes to remove -Wall warnings. |
|---|