Compare commits

...

8 Commits
rawhide ... f8

Author SHA1 Message Date
Fedora Release Engineering 1dbba3b796 dist-git conversion 2010-10-07 00:55:29 +00:00
Bill Nottingham 43d602ac10 Fix typo that causes a failure to update the common directory. (releng #2781) 2009-11-26 01:58:41 +00:00
Tim Niemueller 26c974d5b2 New upstream release 5.1.4 2008-09-03 12:13:46 +00:00
Tim Niemueller 3a3b30c411 Add -static subpackage with static liblua.a, fix for #445939 2008-05-12 16:48:00 +00:00
Tim Niemueller 7eec0b5a4b * 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
2008-04-13 20:42:28 +00:00
Tim Niemueller f4f0169841 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.

timn
2008-03-14 10:24:26 +00:00
Hans de Goede eb242124fb * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 5.1.3-2
- Autorebuild for GCC 4.3
2008-03-11 10:20:21 +00:00
Jesse Keating 9c521a1c99 Initialize branch F-8 for lua 2007-10-21 00:32:48 +00:00
7 changed files with 43720 additions and 8 deletions

View File

@ -1,2 +0,0 @@
lua-5.1.1-autotoolize.patch.gz
lua-5.1.2.tar.gz

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
lua-5.1.4.tar.gz

View File

@ -4,7 +4,7 @@ NAME := lua
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))

1
branch Normal file
View File

@ -0,0 +1 @@
F-8

43660
lua-5.1.4-autotoolize.patch Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,14 +1,15 @@
Name: lua
Version: 5.1.2
Version: 5.1.4
Release: 1%{?dist}
Summary: Powerful light-weight programming language
Group: Development/Languages
License: MIT
URL: http://www.lua.org/
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)
BuildRequires: readline-devel ncurses-devel
Provides: lua = 5.1
%description
Lua is a powerful light-weight programming language designed for
@ -30,6 +31,14 @@ Requires: pkgconfig
%description devel
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
%setup -q
@ -52,7 +61,9 @@ sed -i 's/-lreadline -lncurses //g' etc/lua.pc
%install
rm -rf $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
@ -65,6 +76,11 @@ rm -rf $RPM_BUILD_ROOT
%{_bindir}/lua*
%{_libdir}/liblua-*.so
%{_mandir}/man1/lua*.1*
%dir %{_libdir}/lua
%dir %{_libdir}/lua/5.1
%dir %{_datadir}/lua
%dir %{_datadir}/lua/5.1
%files devel
%defattr(-,root,root,-)
@ -73,8 +89,45 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/liblua.so
%{_libdir}/pkgconfig/*.pc
%files static
%defattr(-,root,root,-)
%{_libdir}/*.a
%changelog
* 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
- New upstream release 5.1.2
- Fix use of rpath on x86_64

View File

@ -1,2 +1 @@
751d2dfd522941e82571195aa81abe4c lua-5.1.1-autotoolize.patch.gz
687ce4c2a1ddff18f1008490fdc4e5e0 lua-5.1.2.tar.gz
d0870f2de55d59c1c8419f36e8fac150 lua-5.1.4.tar.gz