Update to 5.1.4-4 from f12 branch.
Fixes 495095 and 629437
This commit is contained in:
parent
f9ac9fdaec
commit
a1ccfb4a19
72
lua.spec
72
lua.spec
@ -1,14 +1,15 @@
|
|||||||
Name: lua
|
Name: lua
|
||||||
Version: 5.1.2
|
Version: 5.1.4
|
||||||
Release: 1%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: Powerful light-weight programming language
|
Summary: Powerful light-weight programming language
|
||||||
Group: Development/Languages
|
Group: Development/Languages
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: http://www.lua.org/
|
URL: http://www.lua.org/
|
||||||
Source0: http://www.lua.org/ftp/lua-%{version}.tar.gz
|
Source0: http://www.lua.org/ftp/lua-%{version}.tar.gz
|
||||||
Patch0: lua-5.1.1-autotoolize.patch.gz
|
Patch0: lua-5.1.4-autotoolize.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||||
BuildRequires: readline-devel ncurses-devel
|
BuildRequires: readline-devel ncurses-devel
|
||||||
|
Provides: lua = 5.1
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Lua is a powerful light-weight programming language designed for
|
Lua is a powerful light-weight programming language designed for
|
||||||
@ -30,6 +31,14 @@ Requires: pkgconfig
|
|||||||
%description devel
|
%description devel
|
||||||
This package contains development files for %{name}.
|
This package contains development files for %{name}.
|
||||||
|
|
||||||
|
%package static
|
||||||
|
Summary: Static library for %{name}
|
||||||
|
Group: System Environment/Libraries
|
||||||
|
Requires: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description static
|
||||||
|
This package contains the static version of liblua for %{name}.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
@ -44,7 +53,7 @@ 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
|
sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool
|
||||||
# hack so that only /usr/bin/lua gets linked with readline as it is the
|
# 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
|
# only one which needs this and otherwise we get License troubles
|
||||||
make %{?_smp_mflags} LIBS="-ldl" luac_LDADD="liblua.la -lm -ldl"
|
make %{?_smp_mflags} LIBS="-lm -ldl" luac_LDADD="liblua.la -lm -ldl"
|
||||||
# also remove readline from lua.pc
|
# also remove readline from lua.pc
|
||||||
sed -i 's/-lreadline -lncurses //g' etc/lua.pc
|
sed -i 's/-lreadline -lncurses //g' etc/lua.pc
|
||||||
|
|
||||||
@ -52,7 +61,9 @@ sed -i 's/-lreadline -lncurses //g' etc/lua.pc
|
|||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
rm $RPM_BUILD_ROOT%{_libdir}/*.{la,a}
|
rm $RPM_BUILD_ROOT%{_libdir}/*.la
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_libdir}/lua/5.1
|
||||||
|
mkdir -p $RPM_BUILD_ROOT%{_datadir}/lua/5.1
|
||||||
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@ -65,6 +76,11 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_bindir}/lua*
|
%{_bindir}/lua*
|
||||||
%{_libdir}/liblua-*.so
|
%{_libdir}/liblua-*.so
|
||||||
%{_mandir}/man1/lua*.1*
|
%{_mandir}/man1/lua*.1*
|
||||||
|
%dir %{_libdir}/lua
|
||||||
|
%dir %{_libdir}/lua/5.1
|
||||||
|
%dir %{_datadir}/lua
|
||||||
|
%dir %{_datadir}/lua/5.1
|
||||||
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
@ -73,8 +89,54 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_libdir}/liblua.so
|
%{_libdir}/liblua.so
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
|
|
||||||
|
%files static
|
||||||
|
%defattr(-,root,root,-)
|
||||||
|
%{_libdir}/*.a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Thu Jun 11 2009 Tim Niemueller <tim@niemueller.de> - 5.1.4-2
|
||||||
|
- Link liblua.so with -lm (math lib), fixes rhbz #499238
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* Wed Sep 03 2008 Tim Niemueller <tim@niemueller.de> - 5.1.4-1
|
||||||
|
- New upstream release 5.1.4
|
||||||
|
|
||||||
|
* Mon May 12 2008 Tim Niemueller <tim@niemueller.de> - 5.1.3-6
|
||||||
|
- Add -static subpackage with static liblua, fixes rh bug #445939
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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.
|
||||||
|
|
||||||
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 5.1.3-2
|
||||||
|
- Autorebuild for GCC 4.3
|
||||||
|
|
||||||
|
* Sat Jan 26 2008 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.3-1
|
||||||
|
- New upstream release 5.1.3
|
||||||
|
|
||||||
|
* 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)
|
||||||
|
|
||||||
|
* 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
|
||||||
|
|
||||||
|
* 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)
|
||||||
|
|
||||||
* Mon Apr 2 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.2-1
|
* Mon Apr 2 2007 Hans de Goede <j.w.r.degoede@hhs.nl> 5.1.2-1
|
||||||
- New upstream release 5.1.2
|
- New upstream release 5.1.2
|
||||||
- Fix use of rpath on x86_64
|
- Fix use of rpath on x86_64
|
||||||
|
Loading…
Reference in New Issue
Block a user