2004-09-09 04:52:48 +00:00
|
|
|
Summary: Library implementing the Unicode Bidirectional Algorithm
|
|
|
|
Name: fribidi
|
2019-12-13 10:35:56 +00:00
|
|
|
Version: 1.0.8
|
2020-01-15 08:12:12 +00:00
|
|
|
Release: 2%{?dist}
|
2018-02-28 10:27:17 +00:00
|
|
|
URL: https://github.com/fribidi/fribidi/
|
2019-09-30 12:05:49 +00:00
|
|
|
Source: https://github.com/%{name}/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2
|
2012-11-27 14:53:38 +00:00
|
|
|
License: LGPLv2+ and UCD
|
2018-07-17 07:25:23 +00:00
|
|
|
BuildRequires: gcc
|
2019-09-27 09:38:00 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 8
|
2018-07-26 10:09:42 +00:00
|
|
|
BuildRequires: automake autoconf libtool
|
2019-09-27 09:38:00 +00:00
|
|
|
%else
|
|
|
|
BuildRequires: meson
|
|
|
|
%endif
|
2018-07-26 09:59:09 +00:00
|
|
|
Patch0: %{name}-drop-bundled-gnulib.patch
|
2019-09-27 09:38:00 +00:00
|
|
|
Patch1: %{name}-automake.patch
|
2020-01-15 08:12:12 +00:00
|
|
|
Patch2: %{name}-restore-deprecated-api.patch
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%description
|
2007-02-05 09:40:47 +00:00
|
|
|
A library to handle bidirectional scripts (for example Hebrew, Arabic),
|
|
|
|
so that the display is done in the proper way; while the text data itself
|
|
|
|
is always written in logical order.
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%package devel
|
2007-02-05 09:39:54 +00:00
|
|
|
Summary: Libraries and include files for FriBidi
|
2012-10-16 05:50:50 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%description devel
|
|
|
|
Include files and libraries needed for developing applications which use
|
2007-02-05 09:39:54 +00:00
|
|
|
FriBidi.
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%prep
|
2018-07-26 09:59:09 +00:00
|
|
|
%autosetup -p1
|
2019-09-27 09:38:00 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 8
|
2018-07-26 09:59:09 +00:00
|
|
|
autoreconf -i
|
2019-09-27 09:38:00 +00:00
|
|
|
%endif
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%build
|
2019-09-27 09:38:00 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 8
|
2010-07-08 11:24:59 +00:00
|
|
|
%if 0%{?el5}
|
|
|
|
# FORTIFY_SOURCE=2 breaks EL-5 build
|
|
|
|
export CFLAGS=`echo $RPM_OPT_FLAGS | sed -e 's|FORTIFY_SOURCE=2|FORTIFY_SOURCE=1|'`
|
|
|
|
%ifarch ppc ppc64 x86_64
|
|
|
|
export CFLAGS="$CFLAGS -DPAGE_SIZE=4096"
|
|
|
|
%endif
|
|
|
|
%else
|
|
|
|
# outside of EL-5, only ppc* needs modification
|
2008-01-16 10:35:19 +00:00
|
|
|
%ifarch ppc ppc64
|
|
|
|
export CFLAGS="$RPM_OPT_FLAGS -DPAGE_SIZE=4096"
|
|
|
|
%endif
|
2010-07-08 11:24:59 +00:00
|
|
|
%endif
|
2018-05-04 08:42:43 +00:00
|
|
|
%configure --disable-static --disable-docs
|
2019-09-27 09:38:00 +00:00
|
|
|
make %{?_smp_mflags} V=1
|
|
|
|
%else
|
|
|
|
%meson -Ddocs=false
|
|
|
|
%meson_build
|
|
|
|
%endif
|
2004-09-09 04:52:48 +00:00
|
|
|
|
2017-10-16 15:25:43 +00:00
|
|
|
%check
|
2019-09-27 09:38:00 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 8
|
2017-10-16 15:25:43 +00:00
|
|
|
make check
|
2019-09-27 09:38:00 +00:00
|
|
|
%else
|
|
|
|
%meson_test
|
|
|
|
%endif
|
2017-10-16 15:25:43 +00:00
|
|
|
|
2004-09-09 04:52:48 +00:00
|
|
|
%install
|
2019-09-27 09:38:00 +00:00
|
|
|
%if 0%{?rhel} && 0%{?rhel} <= 8
|
2012-10-16 05:50:50 +00:00
|
|
|
make DESTDIR=$RPM_BUILD_ROOT install INSTALL="install -p"
|
2019-09-27 09:38:00 +00:00
|
|
|
%else
|
|
|
|
%meson_install
|
|
|
|
%endif
|
2013-02-13 13:09:20 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
|
2004-09-09 04:52:48 +00:00
|
|
|
|
2018-06-29 07:43:36 +00:00
|
|
|
%ldconfig_scriptlets
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%files
|
2019-09-30 12:05:49 +00:00
|
|
|
%doc README AUTHORS ChangeLog THANKS NEWS TODO
|
2018-07-12 10:44:02 +00:00
|
|
|
%license COPYING
|
2004-09-09 04:52:48 +00:00
|
|
|
%{_bindir}/fribidi
|
2018-05-31 07:38:44 +00:00
|
|
|
%{_libdir}/libfribidi.so.0*
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/fribidi
|
2006-06-07 21:46:41 +00:00
|
|
|
%{_libdir}/libfribidi.so
|
2004-09-09 04:52:48 +00:00
|
|
|
%{_libdir}/pkgconfig/*.pc
|
2019-09-27 09:38:00 +00:00
|
|
|
#%%{_mandir}/man3/*.gz
|
2004-09-09 04:52:48 +00:00
|
|
|
|
|
|
|
%changelog
|
2020-01-15 08:12:12 +00:00
|
|
|
* Wed Jan 15 2020 Akira TAGOH <tagoh@redhat.com> - 1.0.8-2
|
|
|
|
- Restore the deprecated API that was accidentally removed in the previous release.
|
|
|
|
Resolves: rhbz#1787293
|
|
|
|
|
2019-12-13 10:35:56 +00:00
|
|
|
* Fri Dec 13 2019 Akira TAGOH <tagoh@redhat.com> - 1.0.8-1
|
|
|
|
- New upstream release.
|
|
|
|
Resolves: rhbz#1783205
|
|
|
|
|
2019-12-11 04:51:20 +00:00
|
|
|
* Wed Dec 11 2019 Akira TAGOH <tagoh@redhat.com> - 1.0.7-2
|
|
|
|
- Fix CVE-2019-18397
|
|
|
|
Resolves: rhbz#1781218
|
|
|
|
|
2019-09-30 12:05:49 +00:00
|
|
|
* Mon Sep 30 2019 Akira TAGOH <tagoh@redhat.com> - 1.0.7-1
|
|
|
|
- New upstream release.
|
|
|
|
Resolves: rhbz#1756434
|
|
|
|
|
2019-09-27 08:23:27 +00:00
|
|
|
* Fri Sep 27 2019 Akira TAGOH <tagoh@redhat.com> - 1.0.6-1
|
|
|
|
- New upstream release.
|
|
|
|
Resolves: rhbz#1756212
|
2019-09-27 09:38:00 +00:00
|
|
|
- Use meson to build.
|
2019-09-27 08:23:27 +00:00
|
|
|
|
2019-07-25 01:05:06 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-07-23 07:25:21 +00:00
|
|
|
* Tue Jul 23 2019 Akira TAGOH <tagoh@redhat.com> - 1.0.5-3
|
|
|
|
- Backport upstream patch to remove HAVE_CONFIG_H from public API.
|
|
|
|
Fixes rhbz#1730516
|
|
|
|
|
2019-01-31 20:12:49 +00:00
|
|
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.5-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-08-06 10:35:09 +00:00
|
|
|
* Mon Aug 06 2018 Akira TAGOH <tagoh@redhat.com> - 1.0.5-1
|
|
|
|
- New upstream release. (#1609080)
|
|
|
|
|
2018-07-26 09:59:09 +00:00
|
|
|
* Thu Jul 26 2018 Akira TAGOH <tagoh@redhat.com> - 1.0.4-6
|
|
|
|
- Drop bundled gnulib code.
|
|
|
|
|
2018-07-17 07:25:23 +00:00
|
|
|
* Tue Jul 17 2018 Akira TAGOH <tagoh@redhat.com> - 1.0.4-5
|
|
|
|
- Add BR: gcc.
|
|
|
|
|
2018-07-13 00:52:58 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-07-12 10:44:02 +00:00
|
|
|
* Thu Jul 12 2018 Akira TAGOH <tagoh@redhat.com> - 1.0.4-3
|
|
|
|
- Modernize spec file.
|
|
|
|
|
2018-06-29 07:43:36 +00:00
|
|
|
* Fri Jun 29 2018 Akira TAGOH <tagoh@redhat.com> - 1.0.4-2
|
|
|
|
- Use ldconfig rpm macro.
|
|
|
|
|
2018-06-08 12:05:12 +00:00
|
|
|
* Fri Jun 08 2018 Akira TAGOH <tagoh@redhat.com> - 1.0.4-1
|
|
|
|
- New upstream release. (#1587985)
|
|
|
|
|
2018-05-31 07:38:44 +00:00
|
|
|
* Thu May 31 2018 Akira TAGOH <tagoh@redhat.com> - 1.0.3-1
|
2018-05-31 07:47:30 +00:00
|
|
|
- New upstream release. (#1584541)
|
2018-05-31 07:38:44 +00:00
|
|
|
|
2018-05-04 08:27:45 +00:00
|
|
|
* Fri May 04 2018 Caolán McNamara <caolanm@redhat.com> - 1.0.2-1
|
2018-05-04 08:42:43 +00:00
|
|
|
- Resolves: rhbz#1574858 latest version, --disable-docs because there's no c2man
|
2018-05-04 08:27:45 +00:00
|
|
|
|
2018-02-28 10:27:17 +00:00
|
|
|
* Wed Feb 28 2018 Caolán McNamara <caolanm@redhat.com> - 1.0.1-1
|
|
|
|
- Resolves: rhbz#1549934 latest version
|
|
|
|
|
2018-02-07 10:13:15 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.7-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-10-16 15:25:43 +00:00
|
|
|
* Mon Oct 16 2017 Caolán McNamara <caolanm@redhat.com> - 0.19.7-6
|
|
|
|
- Resolves: rhbz#1502675 enable make check
|
|
|
|
|
2017-08-02 20:49:13 +00:00
|
|
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.7-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 08:48:06 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.7-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 10:02:32 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.7-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-02-03 20:49:51 +00:00
|
|
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.19.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-08-11 15:48:25 +00:00
|
|
|
* Tue Aug 11 2015 Caolán McNamara <caolanm@redhat.com> - 0.19.7-1
|
|
|
|
- Resolves: rhbz#1250755 latest fribidi
|
|
|
|
|
2015-06-17 06:45:06 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.6-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-02-21 21:26:13 +00:00
|
|
|
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 0.19.6-4
|
|
|
|
- Rebuilt for Fedora 23 Change
|
|
|
|
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
|
|
|
|
|
2014-08-16 13:17:13 +00:00
|
|
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.6-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 12:55:29 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.6-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-01-13 13:07:11 +00:00
|
|
|
* Mon Jan 13 2014 Caolán McNamara <caolanm@redhat.com> - 0.19.6-1
|
|
|
|
- Resolves: rhbz#1052148 latest fribidi
|
|
|
|
- drop integrated signedwarning.patch
|
|
|
|
- drop integrated fribidi-aarch64.patch
|
|
|
|
|
2013-08-03 12:00:16 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.4-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-03 07:59:55 +00:00
|
|
|
* Wed Apr 03 2013 Caolán McNamara <caolanm@redhat.com> - 0.19.4-4
|
|
|
|
- Resolves: rhbz#925368 support aarch64
|
|
|
|
|
2014-01-13 13:07:11 +00:00
|
|
|
* Mon Feb 18 2013 Caolán McNamara <caolanm@redhat.com> - 0.19.4-3
|
2013-02-13 13:09:20 +00:00
|
|
|
- Resolves: rhbz#884000 remove empty man pages
|
|
|
|
|
2012-12-10 11:46:58 +00:00
|
|
|
* Mon Dec 10 2012 Caolán McNamara <caolanm@redhat.com> - 0.19.4-2
|
|
|
|
- Resolves: rhbz#884000 signed warning (thanks mfabian)
|
|
|
|
|
2012-11-27 14:53:38 +00:00
|
|
|
* Tue Nov 27 2012 Caolán McNamara <caolanm@redhat.com> - 0.19.4-1
|
|
|
|
- Resolves: rhbz#880490 bump to latest version
|
|
|
|
|
2012-10-16 05:50:50 +00:00
|
|
|
* Tue Oct 16 2012 Parag Nemade <paragn AT fedoraproject DOT org> - 0.19.2-6
|
|
|
|
- spec cleanup for changed packaging guidelines
|
|
|
|
|
2012-07-19 03:20:58 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.2-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 02:45:49 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.2-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-08 21:47:01 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.2-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2009-07-24 23:13:00 +00:00
|
|
|
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-03-26 23:01:51 +00:00
|
|
|
* Thu Mar 26 2009 Behdad Esfahbod <besfahbo@redhat.com> 0.19.2-1
|
|
|
|
- Update to 0.19.2
|
|
|
|
|
2009-02-24 18:31:26 +00:00
|
|
|
* Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-12 09:21:31 +00:00
|
|
|
* Mon Jan 12 2009 Caolán McNamara <caolanm@redhat.com> - 0.19.1-3
|
|
|
|
- rebuild to get provides pkgconfig(fribidi)
|
|
|
|
|
2008-02-18 22:17:33 +00:00
|
|
|
* Mon Feb 18 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.19.1-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-16 10:21:50 +00:00
|
|
|
* Wed Jan 16 2008 Caolan McNamara <caolanm@redhat.com> 0.19.1-1
|
|
|
|
- next version
|
2008-01-16 10:35:19 +00:00
|
|
|
- workaround PAGE_SIZE requirement
|
2008-01-16 10:21:50 +00:00
|
|
|
|
2007-08-29 07:16:34 +00:00
|
|
|
* Wed Aug 29 2007 Caolan McNamara <caolanm@redhat.com> 0.10.9-2
|
|
|
|
- rebuild
|
|
|
|
|
2007-08-10 08:59:12 +00:00
|
|
|
* Fri Aug 10 2007 Caolan McNamara <caolanm@redhat.com> 0.10.9-1
|
|
|
|
- next version
|
|
|
|
|
2007-08-02 19:42:14 +00:00
|
|
|
* Thu Aug 02 2007 Caolan McNamara <caolanm@redhat.com> 0.10.8-2
|
2007-08-02 19:27:06 +00:00
|
|
|
- clarify license
|
|
|
|
|
2007-05-31 19:18:50 +00:00
|
|
|
* Thu May 31 2007 Caolan McNamara <caolanm@redhat.com> 0.10.8-1
|
|
|
|
- next version
|
|
|
|
|
2007-02-05 09:39:54 +00:00
|
|
|
* Mon Feb 05 2007 Caolan McNamara <caolanm@redhat.com> 0.10.7-6
|
|
|
|
- Resolves: rhbz#225771 spec cleanups
|
|
|
|
|
2006-07-12 05:52:04 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.10.7-5.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-06-29 13:41:19 +00:00
|
|
|
* Thu Jun 29 2006 Caolan McNamara <caolanm@redhat.com> 0.10.7-5
|
|
|
|
- rh#197223# devel Require pkg-config
|
|
|
|
|
2006-06-07 21:46:41 +00:00
|
|
|
* Wed Jun 7 2006 Jeremy Katz <katzj@redhat.com> - 0.10.7-4
|
|
|
|
- put devel .so symlink in the right subpackage
|
|
|
|
|
2006-05-23 07:37:22 +00:00
|
|
|
* Tue May 23 2006 Caolan McNamara <caolanm@redhat.com> 0.10.7-3
|
|
|
|
- rh#192669# clearly I didn't actually get around to basing fribidi-config
|
|
|
|
of pkg-config output
|
|
|
|
|
2006-05-02 10:06:41 +00:00
|
|
|
* Tue May 02 2006 Caolan McNamara <caolanm@redhat.com> 0.10.7-2
|
|
|
|
- base fribidi-config on pkg-config output
|
|
|
|
- allow fribidi_config.h to be the same on 32 and 64 bit
|
|
|
|
|
2006-03-27 13:48:06 +00:00
|
|
|
* Mon Mar 27 2006 Caolan McNamara <caolanm@redhat.com> 0.10.7-1
|
|
|
|
- latest version
|
|
|
|
|
2006-02-11 02:46:37 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.10.4-8.2.1
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 11:41:50 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.10.4-8.2
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-09 22:40:29 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-03-02 14:40:15 +00:00
|
|
|
* Wed Mar 2 2005 Caolan McNamara <caolanm@redhat.com> 0.10.4-8
|
|
|
|
- rebuild with gcc4
|
|
|
|
|
2005-02-09 09:26:07 +00:00
|
|
|
* Wed Feb 09 2005 Caolan McNamara <caolanm@redhat.com> 0.10.4-7
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:53:29 +00:00
|
|
|
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:53:25 +00:00
|
|
|
* Tue Mar 02 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2004-09-09 04:52:48 +00:00
|
|
|
* Wed Sep 24 2003 Jeremy Katz <katzj@redhat.com> 0.10.4-4
|
|
|
|
- update description
|
|
|
|
- include docs (#104964)
|
|
|
|
|
|
|
|
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
|
|
|
* Sat May 24 2003 Florian La Roche <Florian.LaRoche@redhat.de>
|
|
|
|
- add ldconfig to post/postun
|
|
|
|
|
|
|
|
* Fri May 16 2003 Jeremy Katz <katzj@redhat.com> 0.10.4-2
|
|
|
|
- Initial build in Red Hat Linux
|
|
|
|
|