2015-01-16 15:14:21 +00:00
|
|
|
%global major_version 5.3
|
|
|
|
# If you are incrementing major_version, enable bootstrapping and adjust accordingly.
|
|
|
|
# Version should be the latest prior build. If you don't do this, RPM will break and
|
|
|
|
# everything will grind to a halt.
|
|
|
|
%global bootstrap 1
|
|
|
|
%global bootstrap_major_version 5.2
|
|
|
|
%global bootstrap_version %{bootstrap_major_version}.3
|
|
|
|
|
2013-05-14 20:40:40 +00:00
|
|
|
|
2004-11-08 04:49:49 +00:00
|
|
|
Name: lua
|
2015-01-16 15:14:21 +00:00
|
|
|
Version: %{major_version}.0
|
2014-12-10 21:50:23 +00:00
|
|
|
Release: 1%{?dist}
|
2005-10-16 18:00:53 +00:00
|
|
|
Summary: Powerful light-weight programming language
|
2004-11-08 04:49:49 +00:00
|
|
|
Group: Development/Languages
|
|
|
|
License: MIT
|
|
|
|
URL: http://www.lua.org/
|
2005-02-01 16:15:27 +00:00
|
|
|
Source0: http://www.lua.org/ftp/lua-%{version}.tar.gz
|
2014-07-18 19:57:31 +00:00
|
|
|
# copied from doc/readme.html on 2014-07-18
|
|
|
|
Source1: mit.txt
|
2015-01-16 15:14:21 +00:00
|
|
|
%if 0%{?bootstrap}
|
|
|
|
Source2: http://www.lua.org/ftp/lua-%{bootstrap_version}.tar.gz
|
|
|
|
%endif
|
|
|
|
Patch0: %{name}-5.3.0-autotoolize.patch
|
|
|
|
Patch1: %{name}-5.3.0-idsize.patch
|
|
|
|
Patch2: %{name}-5.3.0-luac-shared-link-fix.patch
|
2014-12-10 21:50:23 +00:00
|
|
|
Patch3: %{name}-5.2.2-configure-linux.patch
|
2015-01-16 15:14:21 +00:00
|
|
|
Patch4: %{name}-5.3.0-configure-compat-module.patch
|
|
|
|
%if 0%{?bootstrap}
|
|
|
|
Patch5: %{name}-5.2.3-autotoolize.patch
|
|
|
|
Patch6: %{name}-5.2.2-idsize.patch
|
|
|
|
Patch7: %{name}-5.2.2-luac-shared-link-fix.patch
|
|
|
|
Patch8: %{name}-5.2.2-configure-compat-module.patch
|
|
|
|
%endif
|
|
|
|
|
2013-05-14 20:40:40 +00:00
|
|
|
BuildRequires: automake autoconf libtool readline-devel ncurses-devel
|
|
|
|
Provides: lua(abi) = %{major_version}
|
2004-11-08 04:49:49 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
Lua is a powerful light-weight programming language designed for
|
|
|
|
extending applications. Lua is also frequently used as a
|
|
|
|
general-purpose, stand-alone language. Lua is free software.
|
|
|
|
Lua combines simple procedural syntax with powerful data description
|
|
|
|
constructs based on associative arrays and extensible semantics. Lua
|
|
|
|
is dynamically typed, interpreted from bytecodes, and has automatic
|
|
|
|
memory management with garbage collection, making it ideal for
|
|
|
|
configuration, scripting, and rapid prototyping.
|
|
|
|
|
2007-04-02 18:17:55 +00:00
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Group: System Environment/Libraries
|
2013-05-14 20:40:40 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2007-04-02 18:17:55 +00:00
|
|
|
Requires: pkgconfig
|
2006-06-06 02:14:28 +00:00
|
|
|
|
2007-04-02 18:17:55 +00:00
|
|
|
%description devel
|
2006-06-06 02:14:28 +00:00
|
|
|
This package contains development files for %{name}.
|
2004-11-08 04:49:49 +00:00
|
|
|
|
2008-05-12 16:59:32 +00:00
|
|
|
%package static
|
|
|
|
Summary: Static library for %{name}
|
|
|
|
Group: System Environment/Libraries
|
2013-05-14 20:40:40 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2008-05-12 16:59:32 +00:00
|
|
|
|
|
|
|
%description static
|
|
|
|
This package contains the static version of liblua for %{name}.
|
|
|
|
|
2006-10-14 20:32:35 +00:00
|
|
|
|
2004-11-08 04:49:49 +00:00
|
|
|
%prep
|
2015-01-16 15:14:21 +00:00
|
|
|
%setup -q -a 2
|
2014-07-18 19:57:31 +00:00
|
|
|
cp %{SOURCE1} .
|
2013-05-14 20:40:40 +00:00
|
|
|
mv src/luaconf.h src/luaconf.h.template.in
|
2007-04-02 18:17:55 +00:00
|
|
|
%patch0 -p1 -E -z .autoxxx
|
2013-05-14 20:40:40 +00:00
|
|
|
%patch1 -p1 -z .idsize
|
|
|
|
%patch2 -p1 -z .luac-shared
|
2013-10-23 15:08:13 +00:00
|
|
|
%patch3 -p1 -z .configure-linux
|
2013-10-23 16:12:32 +00:00
|
|
|
%patch4 -p1 -z .configure-compat-all
|
2013-05-14 20:40:40 +00:00
|
|
|
autoreconf -i
|
|
|
|
|
2015-01-16 15:14:21 +00:00
|
|
|
%if 0%{?bootstrap}
|
|
|
|
cd lua-%{bootstrap_version}/
|
|
|
|
mv src/luaconf.h src/luaconf.h.template.in
|
|
|
|
%patch5 -p1 -b .autoxxx
|
|
|
|
%patch6 -p1 -b .idsize
|
|
|
|
%patch7 -p1 -b .luac-shared
|
|
|
|
%patch3 -p1 -z .configure-linux
|
|
|
|
%patch8 -p1 -z .configure-compat-all
|
|
|
|
autoreconf -i
|
|
|
|
cd ..
|
|
|
|
%endif
|
|
|
|
|
2004-11-08 04:49:49 +00:00
|
|
|
|
2006-10-14 20:32:35 +00:00
|
|
|
%build
|
2013-05-14 20:40:40 +00:00
|
|
|
%configure --with-readline --with-compat-module
|
2007-04-02 18:17:55 +00:00
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
2013-05-14 20:40:40 +00:00
|
|
|
# Autotools give me a headache sometimes.
|
|
|
|
sed -i 's|@pkgdatadir@|%{_datadir}|g' src/luaconf.h.template
|
|
|
|
|
2006-10-15 07:44:53 +00:00
|
|
|
# hack so that only /usr/bin/lua gets linked with readline as it is the
|
|
|
|
# only one which needs this and otherwise we get License troubles
|
2009-06-11 22:37:45 +00:00
|
|
|
make %{?_smp_mflags} LIBS="-lm -ldl" luac_LDADD="liblua.la -lm -ldl"
|
2004-11-08 04:49:49 +00:00
|
|
|
|
2015-01-16 15:14:21 +00:00
|
|
|
%if 0%{?bootstrap}
|
|
|
|
pushd lua-%{bootstrap_version}
|
|
|
|
%configure --with-readline --with-compat-module
|
|
|
|
sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool
|
|
|
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
|
|
|
# Autotools give me a headache sometimes.
|
|
|
|
sed -i 's|@pkgdatadir@|%{_datadir}|g' src/luaconf.h.template
|
|
|
|
|
|
|
|
# hack so that only /usr/bin/lua gets linked with readline as it is the
|
|
|
|
# only one which needs this and otherwise we get License troubles
|
|
|
|
make %{?_smp_mflags} LIBS="-lm -ldl" luac_LDADD="liblua.la -lm -ldl"
|
|
|
|
popd
|
|
|
|
%endif
|
2006-10-14 20:32:35 +00:00
|
|
|
|
2006-05-29 07:01:54 +00:00
|
|
|
%install
|
2006-10-14 20:32:35 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2008-05-12 16:59:32 +00:00
|
|
|
rm $RPM_BUILD_ROOT%{_libdir}/*.la
|
2013-05-14 20:40:40 +00:00
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/lua/%{major_version}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/lua/%{major_version}
|
2004-11-08 04:49:49 +00:00
|
|
|
|
2015-01-16 15:14:21 +00:00
|
|
|
%if 0%{?bootstrap}
|
|
|
|
pushd lua-%{bootstrap_version}
|
|
|
|
mkdir $RPM_BUILD_ROOT/installdir
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT/installdir
|
|
|
|
cp -a $RPM_BUILD_ROOT/installdir/%{_libdir}/liblua-%{bootstrap_major_version}.so $RPM_BUILD_ROOT%{_libdir}/
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/lua/%{bootstrap_major_version}
|
|
|
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/lua/%{bootstrap_major_version}
|
|
|
|
rm -rf $RPM_BUILD_ROOT/installdir
|
|
|
|
popd
|
|
|
|
%endif
|
2004-11-08 04:49:49 +00:00
|
|
|
|
|
|
|
%files
|
2014-07-18 19:57:31 +00:00
|
|
|
%{!?_licensedir:%global license %%doc}
|
|
|
|
%license mit.txt
|
2015-01-16 15:14:21 +00:00
|
|
|
|
2013-05-14 20:40:40 +00:00
|
|
|
%doc README doc/*.html doc/*.css doc/*.gif doc/*.png
|
|
|
|
%{_bindir}/lua
|
|
|
|
%{_bindir}/luac
|
2015-01-16 15:14:21 +00:00
|
|
|
%{_libdir}/liblua-%{major_version}.so
|
|
|
|
%if 0%{?bootstrap}
|
|
|
|
%{_libdir}/liblua-%{bootstrap_major_version}.so
|
|
|
|
%dir %{_libdir}/lua/%{bootstrap_major_version}
|
|
|
|
%dir %{_datadir}/lua/%{bootstrap_major_version}
|
|
|
|
%endif
|
2006-06-06 02:14:28 +00:00
|
|
|
%{_mandir}/man1/lua*.1*
|
2008-04-05 07:24:12 +00:00
|
|
|
%dir %{_libdir}/lua
|
2013-05-14 20:40:40 +00:00
|
|
|
%dir %{_libdir}/lua/%{major_version}
|
2008-04-05 07:24:12 +00:00
|
|
|
%dir %{_datadir}/lua
|
2013-05-14 20:40:40 +00:00
|
|
|
%dir %{_datadir}/lua/%{major_version}
|
2006-06-06 02:14:28 +00:00
|
|
|
|
|
|
|
%files devel
|
2004-11-08 04:49:52 +00:00
|
|
|
%{_includedir}/l*.h
|
2006-05-07 22:26:23 +00:00
|
|
|
%{_includedir}/l*.hpp
|
2006-06-06 02:14:28 +00:00
|
|
|
%{_libdir}/liblua.so
|
2006-05-29 07:01:54 +00:00
|
|
|
%{_libdir}/pkgconfig/*.pc
|
2004-11-08 04:49:49 +00:00
|
|
|
|
2008-05-12 16:59:32 +00:00
|
|
|
%files static
|
|
|
|
%{_libdir}/*.a
|
2004-11-08 04:49:49 +00:00
|
|
|
|
2013-05-14 20:40:40 +00:00
|
|
|
|
2004-11-08 04:49:49 +00:00
|
|
|
%changelog
|
2015-01-16 15:14:21 +00:00
|
|
|
* Thu Jan 15 2015 Tom Callaway <spot@fedoraproject.org> - 5.3.0-1
|
|
|
|
- update to 5.3.0
|
|
|
|
- add bootstrapping glue
|
|
|
|
|
2014-12-10 21:50:23 +00:00
|
|
|
* Wed Dec 10 2014 Tom Callaway <spot@fedoraproject.org> - 5.2.3-1
|
|
|
|
- update to 5.2.3
|
|
|
|
|
2014-08-17 07:52:21 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2.2-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-18 19:57:31 +00:00
|
|
|
* Fri Jul 18 2014 Tom Callaway <spot@fedoraproject.org> - 5.2.2-7
|
|
|
|
- fix license handling
|
|
|
|
|
2014-06-07 07:08:47 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2.2-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-10-23 16:12:32 +00:00
|
|
|
* Wed Oct 23 2013 Tom Callaway <spot@fedoraproject.org> - 5.2.2-5
|
|
|
|
- readd and fix configure-compat-module.patch to use LUA_CONFIG_ALL instead
|
|
|
|
|
2013-10-23 15:08:13 +00:00
|
|
|
* Wed Oct 23 2013 Tom Callaway <spot@fedoraproject.org> - 5.2.2-4
|
|
|
|
- drop configure-compat-module.patch, if you really need old lua behavior, use compat-lua
|
|
|
|
|
2013-08-05 20:10:14 +00:00
|
|
|
* Mon Aug 05 2013 Hans de Goede <hdegoede@redhat.com> - 5.2.2-3
|
|
|
|
- Drop compat-lua-libs package, as there now is a separate compat-lua
|
|
|
|
package (including a -devel)
|
|
|
|
|
2013-08-03 08:20:09 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.2.2-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-05-14 20:40:40 +00:00
|
|
|
* Thu Apr 11 2013 Tom Callaway <spot@fedoraproject.org> - 5.2.2-1
|
|
|
|
- update to 5.2.2
|
|
|
|
- incorporate Aaron Faanes's changes
|
|
|
|
|
2013-02-14 05:56:15 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.4-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-19 22:26:37 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.4-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-13 08:59:54 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.4-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-04-06 13:29:15 +00:00
|
|
|
* Wed Apr 06 2011 Tim Niemueller <tim@niemueller.de> - 5.1.4-9
|
|
|
|
- Provide lua(abi) = 5.1 for better distro updates later
|
|
|
|
|
2011-02-08 14:06:21 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.4-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-01-29 10:41:27 +00:00
|
|
|
* Fri Jan 28 2011 Tim Niemueller <tim@niemueller.de> - 5.1.4-7
|
|
|
|
- Add patch to from lua.org with smaller bugfixes
|
|
|
|
- sed -i -e 's/5\.1\.3/5.1.4/g' on autotoolize patch, bug #641144
|
|
|
|
|
2011-01-28 18:32:52 +00:00
|
|
|
* Fri Jan 28 2011 Tim Niemueller <tim@niemueller.de> - 5.1.4-6
|
|
|
|
- Add patch to increase IDSIZE for more useful error messages
|
|
|
|
|
2010-05-09 10:46:41 +00:00
|
|
|
* Sun May 09 2010 Tim Niemueller <tim@niemueller.de> - 5.1.4-5
|
|
|
|
- Add patch regarding dlopen flags to support Lunatic (Lua-Python bridge)
|
|
|
|
|
2009-07-25 11:23:42 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.4-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-11 22:37:45 +00:00
|
|
|
* Thu Jun 11 2009 Tim Niemueller <tim@niemueller.de> - 5.1.4-2
|
|
|
|
- Link liblua.so with -lm (math lib), fixes rhbz #499238
|
|
|
|
|
2009-02-25 21:58:04 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 5.1.4-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-09-03 12:27:53 +00:00
|
|
|
* Wed Sep 03 2008 Tim Niemueller <tim@niemueller.de> - 5.1.4-1
|
|
|
|
- New upstream release 5.1.4
|
|
|
|
|
2008-05-12 16:59:32 +00:00
|
|
|
* Mon May 12 2008 Tim Niemueller <tim@niemueller.de> - 5.1.3-6
|
|
|
|
- Add -static subpackage with static liblua, fixes rh bug #445939
|
|
|
|
|
2008-04-13 20:39:17 +00:00
|
|
|
* Sun Apr 13 2008 Tim Niemueller <tim@niemueller.de> - 5.1.3-5
|
|
|
|
- Provide lua = 5.1, this way add-on packages can easily depend on the Lua
|
|
|
|
base version and expect certain paths for packages
|
|
|
|
|
2008-04-05 07:24:12 +00:00
|
|
|
* Sat Apr 5 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.3-4
|
|
|
|
- Not only own $libdir/lua/5.1 and $datadir/lua/5.1 but also $libdir/lua
|
|
|
|
and $datadir/lua for proper removal of these dirs upon lua removal
|
|
|
|
|
2008-03-14 10:20:17 +00:00
|
|
|
* Fri Mar 14 2008 Tim Niemueller <tim@niemueller.de> - 5.1.3-3
|
|
|
|
- own $libdir/lua/5.1 and $datadir/lua/5.1. These are the standard package
|
|
|
|
search path for Lua. Packaging them properly allows for easy creation of
|
|
|
|
Lua addon packages.
|
|
|
|
|
2008-02-19 09:11:48 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 5.1.3-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2008-01-26 23:07:49 +00:00
|
|
|
* Sat Jan 26 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.3-1
|
|
|
|
- New upstream release 5.1.3
|
|
|
|
|
2007-11-26 08:44:36 +00:00
|
|
|
* Mon Nov 26 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.2-4
|
|
|
|
- Fix libdir in lua.pc being /usr/lib on x86_64 (bz 399101)
|
|
|
|
|
2007-10-21 18:02:12 +00:00
|
|
|
* Sun Oct 21 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.2-3
|
|
|
|
- Also use lib64 instead of lib on ia64 and sparc64
|
|
|
|
|
2007-10-21 17:43:45 +00:00
|
|
|
* Sun Oct 21 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.2-2
|
|
|
|
- Fix multilib condlict in luaconf.h (bz 342561)
|
|
|
|
|
2007-04-02 18:17:55 +00:00
|
|
|
* Mon Apr 2 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.2-1
|
|
|
|
- New upstream release 5.1.2
|
|
|
|
- Fix use of rpath on x86_64
|
|
|
|
|
2007-01-19 15:02:30 +00:00
|
|
|
* Fri Jan 19 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.1-3
|
|
|
|
- Remove "-lreadline -lncurses" from lua.pc (bz 213895)
|
|
|
|
|
2006-10-15 07:44:53 +00:00
|
|
|
* Sun Oct 15 2006 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.1-2
|
|
|
|
- Only link /usr/bin/lua with readline / do not link %%{_libdir}/liblua-5.1.so
|
|
|
|
with readline so that we don't cause any License troubles for packages
|
|
|
|
linking against liblua-5.1.so, otherwise lua could drag the GPL only readline
|
|
|
|
lib into the linking of non GPL apps.
|
|
|
|
|
2006-10-14 20:32:35 +00:00
|
|
|
* Sat Oct 14 2006 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.1-1
|
|
|
|
- New upstream release 5.1.1
|
|
|
|
- Fix detection of readline during compile (iow add readline support back)
|
|
|
|
|
2013-08-05 20:10:14 +00:00
|
|
|
* Sun Aug 27 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-7
|
2006-08-28 04:24:13 +00:00
|
|
|
- Rebuild for FC6
|
|
|
|
|
2006-06-07 20:03:20 +00:00
|
|
|
* Thu Jun 08 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-6
|
|
|
|
- fixed broken provides
|
|
|
|
|
2006-06-06 02:14:28 +00:00
|
|
|
* Tue Jun 06 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-5
|
|
|
|
- split out devel subpackage
|
|
|
|
|
2006-05-31 20:02:47 +00:00
|
|
|
* Thu Jun 01 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-4
|
|
|
|
- added Requires for pkgconfig BZ#193674
|
|
|
|
|
2006-05-29 07:01:54 +00:00
|
|
|
* Mon May 29 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-3
|
|
|
|
- added autotools patch from Petri Lehtinen, http://lua-users.org
|
|
|
|
|
2006-05-07 22:52:05 +00:00
|
|
|
* Mon May 08 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-2
|
|
|
|
- fixed x86_64 builds
|
|
|
|
|
2006-05-07 22:26:23 +00:00
|
|
|
* Mon May 08 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-1
|
|
|
|
- version bump
|
|
|
|
|
2005-10-16 18:00:53 +00:00
|
|
|
* Sun Oct 16 2005 Ville Skyttä <ville.skytta at iki.fi> - 5.0.2-5
|
|
|
|
- Fix -debuginfo (#165304).
|
|
|
|
- Cosmetic specfile improvements.
|
|
|
|
|
2005-05-23 00:06:22 +00:00
|
|
|
* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 5.0.2-4
|
|
|
|
- rebuild on all arches
|
|
|
|
|
2013-08-05 20:10:14 +00:00
|
|
|
* Thu Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 5.0.2-3
|
2005-04-06 22:12:23 +00:00
|
|
|
- rebuilt
|
|
|
|
|
2005-02-12 14:19:55 +00:00
|
|
|
* Sat Feb 12 2005 David Woodhouse <dwmw2@infradead.org> - 5.0.2-2
|
|
|
|
- Don't use fastround on ppc
|
|
|
|
|
2005-02-01 16:15:27 +00:00
|
|
|
* Tue Feb 01 2005 Panu Matilainen <pmatilai@welho.com> - 5.0.2-1
|
|
|
|
- update to 5.0.2
|
|
|
|
- remove epoch 0, drop fedora.us release tag
|
|
|
|
|
2004-11-08 04:49:52 +00:00
|
|
|
* Mon Nov 17 2003 Oren Tirosh <oren at hishome.net> - 0:5.0-0.fdr.2
|
|
|
|
- Enable readline support.
|
|
|
|
|
2004-11-08 04:49:49 +00:00
|
|
|
* Sat Jun 21 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:5.0-0.fdr.1
|
|
|
|
- First build.
|