ccf486
# Build with Emacs support
ccf486
%bcond_without libidn_enables_emacs
ccf486
# Build with Java support
ccf486
%bcond_with libidn_enables_java
ccf486
ccf486
Summary: Internationalized Domain Name support library
ccf486
Name: libidn
ccf486
Version: 1.34
5518ce
Release: 7%{?dist}
ccf486
URL: http://www.gnu.org/software/libidn/
ccf486
License: LGPLv2+ and GPLv3+ and GFDL
ccf486
Source0: http://ftp.gnu.org/gnu/libidn/libidn-%{version}.tar.gz
ccf486
# Allow disabling Emacs support
ccf486
Patch0: libidn-1.33-Allow-disabling-Emacs-support.patch
ccf486
# Fix ABI compatibility with libidn-1.33 and earlier
ccf486
Patch1: libidn-tablesize-revert.patch
ccf486
ccf486
BuildRequires: autoconf
ccf486
BuildRequires: automake
ccf486
BuildRequires: libtool
ccf486
BuildRequires: texinfo
ccf486
BuildRequires: gcc
ccf486
BuildRequires: gettext gettext-devel
ccf486
%if %{with libidn_enables_emacs}
ccf486
BuildRequires: emacs
ccf486
%endif
ccf486
BuildRequires: pkgconfig
ccf486
BuildRequires: help2man
ccf486
Requires(post): /sbin/install-info
ccf486
Requires(preun): /sbin/install-info
ccf486
# gnulib is a copylib, bundling is allowed
ccf486
Provides: bundled(gnulib)
ccf486
%if %{with libidn_enables_emacs}
ccf486
# emacs-libidn merged with main package in 1.30-4
ccf486
Obsoletes: emacs-libidn < 1.30-4
ccf486
Provides: emacs-libidn < 1.30-4
ccf486
Requires: emacs-filesystem >= %{_emacs_version}
ccf486
%endif
ccf486
ccf486
%description
ccf486
GNU Libidn is an implementation of the Stringprep, Punycode and
ccf486
IDNA specifications defined by the IETF Internationalized Domain
ccf486
Names (IDN) working group, used for internationalized domain
ccf486
names.
ccf486
ccf486
%package devel
ccf486
Summary: Development files for the libidn library
ccf486
Requires: %{name}%{?_isa} = %{version}-%{release}
ccf486
Requires: pkgconfig
ccf486
ccf486
%description devel
ccf486
This package includes header files and libraries necessary for
ccf486
developing programs which use the GNU libidn library.
ccf486
ccf486
%if %{with libidn_enables_java}
ccf486
%package java
ccf486
Summary:       Java port of the GNU Libidn library
ccf486
BuildRequires: java-devel
ccf486
BuildRequires: javapackages-local
ccf486
BuildRequires: mvn(com.google.code.findbugs:annotations)
ccf486
BuildRequires: mvn(com.google.guava:guava)
ccf486
BuildRequires: mvn(junit:junit)
ccf486
BuildArch:     noarch
ccf486
ccf486
%description java
ccf486
GNU Libidn is a fully documented implementation of the Stringprep,
ccf486
Punycode and IDNA specifications. Libidn's purpose is to encode
ccf486
and decode internationalized domain names.
ccf486
ccf486
This package contains the native Java port of the library.
ccf486
ccf486
%package javadoc
ccf486
Summary:       Javadoc for %{name}-java
ccf486
BuildArch:     noarch
ccf486
ccf486
%description javadoc
ccf486
This package contains javadoc for %{name}-java.
ccf486
%endif
ccf486
ccf486
%prep
ccf486
%setup -q
ccf486
%patch0 -p1
ccf486
%patch1 -p1 -b .tablesize-revert
ccf486
autoreconf -vif
ccf486
# Prevent from regenerating sources by gengetopt because it's broken.
ccf486
touch src/idn_cmd.c src/idn_cmd.h
ccf486
ccf486
# Cleanup
ccf486
find . -name '*.jar' -print -delete
ccf486
find . -name '*.class' -print -delete
ccf486
ccf486
%if %{with libidn_enables_java}
ccf486
# Not available test dep
ccf486
%pom_remove_dep com.google.caliper:caliper java/pom.xml.in
ccf486
%endif
ccf486
ccf486
# Name directory sections consistently in the info file, #209491
ccf486
sed -i '/^INFO-DIR-SECTION/{s/GNU Libraries/Libraries/;s/GNU utilities/Utilities/;}' doc/libidn.info
ccf486
ccf486
iconv -f ISO-8859-1 -t UTF-8 doc/libidn.info > iconv.tmp
ccf486
mv iconv.tmp doc/libidn.info
ccf486
ccf486
%build
ccf486
%configure --disable-csharp --disable-static \
ccf486
%if %{with libidn_enables_emacs}
ccf486
    --enable-emacs \
ccf486
    --with-lispdir=%{_emacs_sitelispdir}/%{name} \
ccf486
%else
ccf486
    --disable-emacs \
ccf486
%endif
ccf486
%if %{with libidn_enables_java}
ccf486
    --enable-java
ccf486
%else
ccf486
    --disable-java
ccf486
%endif
ccf486
ccf486
# remove RPATH hardcoding
ccf486
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
ccf486
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
ccf486
ccf486
# without RPATH this needs to be set for idn executed by help2man
ccf486
export LD_LIBRARY_PATH=$(pwd)/lib/.libs
ccf486
ccf486
make %{?_smp_mflags} V=1
ccf486
ccf486
%check
ccf486
# without RPATH this needs to be set to test the compiled library
ccf486
export LD_LIBRARY_PATH=$(pwd)/lib/.libs
ccf486
make %{?_smp_mflags} -C tests check VALGRIND=env
ccf486
ccf486
%install
ccf486
make install DESTDIR=$RPM_BUILD_ROOT pkgconfigdir=%{_libdir}/pkgconfig \
ccf486
%if %{with libidn_enables_java}
ccf486
    libidn_jardir=%{_javadir} \
ccf486
%endif
ccf486
    ;
ccf486
ccf486
# provide more examples
ccf486
make %{?_smp_mflags} -C examples distclean
ccf486
ccf486
# clean up docs
ccf486
find doc -name "Makefile*" | xargs rm
ccf486
rm -rf $RPM_BUILD_ROOT%{_datadir}/info/dir
ccf486
ccf486
# Make multilib safe:
ccf486
sed -i '/gnu compiler/d' $RPM_BUILD_ROOT%{_includedir}/idn-int.h
ccf486
ccf486
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la \
ccf486
      $RPM_BUILD_ROOT%{_datadir}/info/*.png
ccf486
ccf486
%if %{with libidn_enables_emacs}
ccf486
%{_emacs_bytecompile} $RPM_BUILD_ROOT%{_emacs_sitelispdir}/%{name}/*.el
ccf486
%endif
ccf486
ccf486
%if %{with libidn_enables_java}
ccf486
# regenerate java documentation
ccf486
rm -rf doc/java/*
ccf486
%javadoc -source 1.6 -d doc/java $(find java/src/main/java -name "*.java")
ccf486
# generate maven depmap
ccf486
rm -rf $RPM_BUILD_ROOT%{_javadir}/libidn*.jar
ccf486
%mvn_artifact java/pom.xml java/libidn-%{version}.jar
ccf486
%mvn_file org.gnu.inet:libidn libidn
ccf486
%mvn_install -J doc/java
ccf486
%endif
ccf486
ccf486
%find_lang %{name}
ccf486
ccf486
%post
ccf486
/sbin/install-info %{_infodir}/%{name}.info* %{_infodir}/dir || :
ccf486
%?ldconfig
ccf486
ccf486
%preun
ccf486
if [ $1 = 0 ]; then
5518ce
    /sbin/install-info --delete %{_infodir}/%{name}.info* %{_infodir}/dir || :
ccf486
fi
ccf486
ccf486
%ldconfig_postun
ccf486
ccf486
%files -f %{name}.lang
ccf486
%{!?_licensedir:%global license %%doc}
ccf486
%license COPYING*
ccf486
%doc AUTHORS NEWS FAQ README THANKS
ccf486
%{_bindir}/idn
ccf486
%{_mandir}/man1/idn.1*
ccf486
%{_libdir}/libidn.so.11*
ccf486
%{_infodir}/%{name}.info*
ccf486
%if %{with libidn_enables_emacs}
ccf486
%{_emacs_sitelispdir}/%{name}
ccf486
%endif
ccf486
ccf486
%files devel
ccf486
%doc doc/libidn.html examples
ccf486
%{_libdir}/libidn.so
ccf486
%{_includedir}/*.h
ccf486
%{_libdir}/pkgconfig/*.pc
ccf486
%{_mandir}/man3/*
ccf486
ccf486
%if %{with libidn_enables_java}
ccf486
%files java -f .mfiles
ccf486
%license COPYING* java/LICENSE-2.0.txt
ccf486
ccf486
%files javadoc -f .mfiles-javadoc
ccf486
%license COPYING* java/LICENSE-2.0.txt
ccf486
%endif
ccf486
ccf486
%changelog
5518ce
* Tue Jan 12 2021 Miroslav Lichvar <mlichvar@redhat.com> - 1.34-7
5518ce
- handle uncompressed info pages (#1907489)
ccf486
ccf486
* Wed May 30 2018 Mikolaj Izdebski <mizdebsk@redhat.com> - 1.34-5
ccf486
- disable Java support (#1584067)
ccf486
ccf486
* Tue May 22 2018 Miroslav Lichvar <mlichvar@redhat.com> - 1.34-4
ccf486
- fix building with no libidn in build root (#1580762)
ccf486
ccf486
* Mon May 14 2018 Miroslav Lichvar <mlichvar@redhat.com> - 1.34-3
ccf486
- ignore install-info errors in post scriptlet (#1573966)
ccf486
ccf486
* Fri May 04 2018 Miroslav Lichvar <mlichvar@redhat.com> - 1.34-2
ccf486
- fix ABI compatibility with libidn-1.33 and earlier (#1566414 #1573961)
ccf486
- add texinfo to build requirements
ccf486
ccf486
* Wed Apr 04 2018 Miroslav Lichvar <mlichvar@redhat.com> - 1.34-1
ccf486
- update to 1.34 (CVE-2017-14062)
ccf486
- include soname in file list
ccf486
- use macros for ldconfig
ccf486
- add gcc to build requirements
ccf486
ccf486
* Tue Feb 20 2018 Peter Robinson <pbrobinson@fedoraproject.org> 1.33-6
ccf486
- Add missing libtool dep, minor cleanups
ccf486
ccf486
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.33-5
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ccf486
ccf486
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.33-4
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
ccf486
ccf486
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.33-3
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ccf486
ccf486
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.33-2
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ccf486
ccf486
* Thu Jul 21 2016 Miroslav Lichvar <mlichvar@redhat.com> - 1.33-1
ccf486
- update to 1.33 (CVE-2015-8948 CVE-2016-6261 CVE-2016-6262 CVE-2016-6263)
ccf486
ccf486
* Sat Jun 18 2016 gil cattaneo <puntogil@libero.it> 1.32-3
ccf486
- rebuilt for re-generate maven depmap
ccf486
ccf486
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.32-2
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
ccf486
ccf486
* Mon Aug 03 2015 Miroslav Lichvar <mlichvar@redhat.com> - 1.32-1
ccf486
- update to 1.32
ccf486
ccf486
* Mon Jul 13 2015 Miroslav Lichvar <mlichvar@redhat.com> - 1.31-1
ccf486
- update to 1.31 (CVE-2015-2059)
ccf486
ccf486
* Thu Jun 25 2015 Miroslav Lichvar <mlichvar@redhat.com> - 1.30-4
ccf486
- merge emacs-libidn with main package (#1234563)
ccf486
ccf486
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.30-3
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
ccf486
ccf486
* Tue Mar 31 2015 gil cattaneo <puntogil@libero.it> 1.30-2
ccf486
- build java libidn library
ccf486
ccf486
* Mon Mar 02 2015 Miroslav Lichvar <mlichvar@redhat.com> - 1.30-1
ccf486
- update to 1.30
ccf486
ccf486
* Sat Feb 21 2015 Till Maas <opensource@till.name> - 1.29-3
ccf486
- Rebuilt for Fedora 23 Change
ccf486
  https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
ccf486
ccf486
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.29-2
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
ccf486
ccf486
* Wed Aug 13 2014 Miroslav Lichvar <mlichvar@redhat.com> - 1.29-1
ccf486
- update to 1.29
ccf486
ccf486
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 1.28-4
ccf486
- fix license handling
ccf486
ccf486
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.28-3
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
ccf486
ccf486
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.28-2
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
ccf486
ccf486
* Thu Jul 18 2013 Miroslav Lichvar <mlichvar@redhat.com> - 1.28-1
ccf486
- update to 1.28
ccf486
- remove RPATH hardcoding
ccf486
- move library to /usr
ccf486
ccf486
* Fri Jun 07 2013 Miroslav Lichvar <mlichvar@redhat.com> - 1.27-1
ccf486
- update to 1.27
ccf486
- make devel dependency arch-specific
ccf486
- remove obsolete macros
ccf486
ccf486
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.26-2
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ccf486
ccf486
* Mon Dec 17 2012 Miroslav Lichvar <mlichvar@redhat.com> - 1.26-1
ccf486
- update to 1.26
ccf486
ccf486
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.25-3
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ccf486
ccf486
* Tue May 29 2012 Joe Orton <jorton@redhat.com> - 1.25-2
ccf486
- update to 1.25
ccf486
ccf486
* Tue May 15 2012 Miroslav Lichvar <mlichvar@redhat.com> - 1.24-2
ccf486
- provide bundled(gnulib) (#821768)
ccf486
ccf486
* Sun Jan 15 2012 Robert Scheck <robert@fedoraproject.org> - 1.24-1
ccf486
- Update to 1.24 (#781379)
ccf486
ccf486
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.23-2
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ccf486
ccf486
* Fri Nov 25 2011 Miroslav Lichvar <mlichvar@redhat.com> - 1.23-1
ccf486
- update to 1.23
ccf486
ccf486
* Tue May 31 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.22-3
ccf486
- Split emacs-libidn subpackage to avoid *.elc arch conflicts (#709136).
ccf486
ccf486
* Sun May 29 2011 Ville Skyttä <ville.skytta@iki.fi> - 1.22-2
ccf486
- Byte compile Emacs lisp files, require emacs-filesystem for dir ownership.
ccf486
ccf486
* Thu May 05 2011 Miroslav Lichvar <mlichvar@redhat.com> - 1.22-1
ccf486
- update to 1.22
ccf486
ccf486
* Tue Apr 26 2011 Miroslav Lichvar <mlichvar@redhat.com> - 1.21-1
ccf486
- update to 1.21
ccf486
ccf486
* Thu Mar 03 2011 Miroslav Lichvar <mlichvar@redhat.com> - 1.20-1
ccf486
- update to 1.20
ccf486
- fix requires
ccf486
ccf486
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.19-2
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ccf486
ccf486
* Mon May 24 2010 Joe Orton <jorton@redhat.com> - 1.19-1
ccf486
- update to 1.19 (#595086)
ccf486
ccf486
* Tue Mar 30 2010 Joe Orton <jorton@redhat.com> - 1.18-2
ccf486
- add GFDL to License
ccf486
ccf486
* Mon Mar 29 2010 Joe Orton <jorton@redhat.com> - 1.18-1
ccf486
- update to 1.18
ccf486
- fix Source0 to reference gnu.org repository
ccf486
ccf486
* Fri Jan 29 2010 Joe Orton <jorton@redhat.com> - 1.16-1
ccf486
- update to 1.16
ccf486
ccf486
* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9-5
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
ccf486
ccf486
* Tue Mar 10 2009 Joe Orton <jorton@redhat.com> 1.9-4
ccf486
- update to 1.9 (#302111)
ccf486
- update License to reflect GPLv3+ binaries, LGPLv2+ library
ccf486
ccf486
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.6.14-10
ccf486
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
ccf486
ccf486
* Mon Dec 29 2008 Kedar Sovani <kedars@marvell.com> 0.6.14-9
ccf486
- fix the problem with #include_next
ccf486
ccf486
* Tue Jun 10 2008 Joe Orton <jorton@redhat.com> 0.6.14-8
ccf486
- fix build with latest autoconf (#449440)
ccf486
ccf486
* Mon Mar 31 2008 Joe Orton <jorton@redhat.com> 0.6.14-7
ccf486
- fix libidn.pc for correct libdir (#439549)
ccf486
ccf486
* Fri Mar  7 2008 Joe Orton <jorton@redhat.com> 0.6.14-6
ccf486
- drop libidn.a
ccf486
- move shared library to /lib{,64} (#283651)
ccf486
ccf486
* Thu Feb  7 2008 Joe Orton <jorton@redhat.com> 0.6.14-5
ccf486
- fix DT_RPATH in /usr/bin/idn
ccf486
- convert libidn.iconv to UTF-8 (Jon Ciesla, #226029)
ccf486
- fix BuildRoot tag (Jon Ciesla, #226029)
ccf486
ccf486
* Tue Aug 21 2007 Joe Orton <jorton@redhat.com> 0.6.14-4
ccf486
- drop contrib directory from docs
ccf486
ccf486
* Mon Aug 20 2007 Joe Orton <jorton@redhat.com> 0.6.14-3
ccf486
- fix License
ccf486
ccf486
* Mon Jun 18 2007 Joe Orton <jorton@redhat.com> 0.6.14-2
ccf486
- update to 0.6.14
ccf486
ccf486
* Mon Jan 29 2007 Joe Orton <jorton@redhat.com> 0.6.9-2
ccf486
- update to 0.6.9
ccf486
- make install-info use failsafe (Ville Skyttä, #223707)
ccf486
ccf486
* Wed Nov 15 2006 Joe Orton <jorton@redhat.com> 0.6.8-4
ccf486
- use non-GNU section in info directory (#209491)
ccf486
ccf486
* Wed Nov 15 2006 Joe Orton <jorton@redhat.com> 0.6.8-3
ccf486
- update to 0.6.8
ccf486
ccf486
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.6.5-1.1
ccf486
- rebuild
ccf486
ccf486
* Fri Jul  7 2006 Joe Orton <jorton@redhat.com> 0.6.5-1
ccf486
- update to 0.6.5
ccf486
ccf486
* Fri Jul  7 2006 Joe Orton <jorton@redhat.com> 0.6.4-1
ccf486
- update to 0.6.4
ccf486
ccf486
* Thu Jun  1 2006 Joe Orton <jorton@redhat.com> 0.6.3-1
ccf486
- update to 0.6.3
ccf486
- fix some places where gettext() was not getting used
ccf486
ccf486
* Thu Jun  1 2006 Joe Orton <jorton@redhat.com> 0.6.2-4
ccf486
- remove the libidn.la (#172639)
ccf486
ccf486
* Thu May 11 2006 Joe Orton <jorton@redhat.com> 0.6.2-3
ccf486
- make idn-int.h multilib-safe
ccf486
ccf486
* Wed Feb 22 2006 Joe Orton <jorton@redhat.com> 0.6.2-2
ccf486
- disable C# support (#182393)
ccf486
ccf486
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.6.2-1.1
ccf486
- bump again for double-long bug on ppc(64)
ccf486
ccf486
* Mon Feb 06 2006 Florian La Roche <laroche@redhat.com>
ccf486
- 0.6.1
ccf486
ccf486
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
ccf486
- rebuilt
ccf486
ccf486
* Sun Dec  4 2005 Joe Orton <jorton@redhat.com> 0.6.0-1
ccf486
- update to 0.6.0
ccf486
ccf486
* Mon Oct 24 2005 Joe Orton <jorton@redhat.com> 0.5.20-1
ccf486
- update to 0.5.20
ccf486
ccf486
* Mon Sep 19 2005 Joe Orton <jorton@redhat.com> 0.5.19-1
ccf486
- update to 0.5.19
ccf486
ccf486
* Fri May 27 2005 Joe Orton <jorton@redhat.com> 0.5.17-1
ccf486
- update to 0.5.17
ccf486
ccf486
* Fri May  6 2005 Joe Orton <jorton@redhat.com> 0.5.16-1
ccf486
- update to 0.5.16
ccf486
ccf486
* Thu May  5 2005 Joe Orton <jorton@redhat.com> 0.5.15-2
ccf486
- constify data tables in pr29.c
ccf486
- clean up pre/post/postun requires
ccf486
ccf486
* Sun Mar 20 2005 Joe Orton <jorton@redhat.com> 0.5.15-1
ccf486
- update to 0.5.15
ccf486
ccf486
* Fri Mar  4 2005 Joe Orton <jorton@redhat.com> 0.5.13-2
ccf486
- rebuild
ccf486
ccf486
* Mon Jan 31 2005 Joe Orton <jorton@redhat.com> 0.5.13-1
ccf486
- update to 0.5.13
ccf486
ccf486
* Sun Dec  5 2004 Joe Orton <jorton@redhat.com> 0.5.12-1
ccf486
- update to 0.5.12
ccf486
ccf486
* Mon Nov 29 2004 Joe Orton <jorton@redhat.com> 0.5.11-1
ccf486
- update to 0.5.11 (#141094)
ccf486
ccf486
* Tue Nov  9 2004 Joe Orton <jorton@redhat.com> 0.5.10-1
ccf486
- update to 0.5.10
ccf486
- buildroot cleanup fix (Robert Scheck)
ccf486
ccf486
* Mon Nov  8 2004 Joe Orton <jorton@redhat.com> 0.5.9-1
ccf486
- update to 0.5.9 (#138296)
ccf486
ccf486
* Thu Oct  7 2004 Joe Orton <jorton@redhat.com> 0.5.6-1
ccf486
- update to 0.5.6 (#134343)
ccf486
ccf486
* Thu Sep 30 2004 Miloslav Trmac <mitr@redhat.com> - 0.5.4-3
ccf486
- Fix Group: (#134068)
ccf486
ccf486
* Tue Aug 31 2004 Joe Orton <jorton@redhat.com> 0.5.4-2
ccf486
- move ldconfig from preun to postun (#131280)
ccf486
ccf486
* Sun Aug  8 2004 Joe Orton <jorton@redhat.com> 0.5.4-1
ccf486
- update to 0.5.4 (#129341)
ccf486
ccf486
* Thu Jul 15 2004 Robert Scheck <redhat@linuxnetz.de> 0.5.2-1
ccf486
- upgrade to 0.5.2, enabled i18n support and info files (#127906)
ccf486
ccf486
* Fri Jul  9 2004 Joe Orton <jorton@redhat.com> 0.5.1-1
ccf486
- update to 0.5.1 (#127496)
ccf486
ccf486
* Mon Jun 28 2004 Joe Orton <jorton@redhat.com> 0.5.0-1
ccf486
- update to 0.5.0 (#126836)
ccf486
ccf486
* Tue Jun 22 2004 Than Ngo <than@redhat.com> 0.4.9-2
ccf486
- add prereq: /sbin/ldconfig
ccf486
- move la file in main package
ccf486
ccf486
* Tue Jun 15 2004 Robert Scheck <redhat@linuxnetz.de> 0.4.9-1
ccf486
- upgrade to 0.4.9 (#126353)
ccf486
ccf486
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
ccf486
- rebuilt
ccf486
ccf486
* Thu Apr 29 2004 Joe Orton <jorton@redhat.com> 0.4.4-1
ccf486
- update to 0.4.4; remove contrib from -devel docs
ccf486
ccf486
* Thu Apr 29 2004 Joe Orton <jorton@redhat.com> 0.4.3-1
ccf486
- update to 0.4.3, remove -rpath patch
ccf486
ccf486
* Tue Jan 27 2004 Joe Orton <jorton@redhat.com> 0.3.7-1
ccf486
- update to 0.3.7, simplify
ccf486
ccf486
* Wed Jan 07 2004 Lenny Cartier <lenny@mandrakesoft.com> 0.3.6-1mdk
ccf486
- 0.3.6
ccf486
ccf486
* Mon Dec 15 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.5-1mdk
ccf486
- 0.3.5
ccf486
ccf486
* Sun Oct 19 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.3-2mdk
ccf486
- drop the "soname fix" and use the correct way...
ccf486
ccf486
* Sat Oct 18 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.3-1mdk
ccf486
- 0.3.3
ccf486
ccf486
* Mon Oct 13 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 0.3.2-1mdk
ccf486
- initial cooker contrib
ccf486
- used the package from PLD as a start point