[-]
[+]
|
Deleted |
lua51.changes
|
@@ -1,5 +0,0 @@
--------------------------------------------------------------------
-Mon Nov 27 20:16:56 CET 2006 - mrueckert@suse.de
-
-- actually build again
-
|
[-]
[+]
|
Deleted |
lua.spec
^
|
@@ -1,187 +0,0 @@
-Name: lua
-Version: 5.1.3
-Release: 1
-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.3-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
-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.
-
-
-%package devel
-Summary: Development files for %{name}
-Group: System Environment/Libraries
-Requires: %{name} = %{version}-%{release}
-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
-%patch0 -p1 -E -z .autoxxx
-# fix perms on auto files
-chmod u+x autogen.sh config.guess config.sub configure depcomp install-sh missing
-
-
-%build
-%configure --with-readline
-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
-# 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="-ldl" luac_LDADD="liblua.la -lm -ldl"
-# also remove readline from lua.pc
-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
-mkdir -p $RPM_BUILD_ROOT%{_libdir}/lua/5.1
-mkdir -p $RPM_BUILD_ROOT%{_datadir}/lua/5.1
-
-
-%clean
-rm -rf $RPM_BUILD_ROOT
-
-
-%files
-%defattr(-,root,root,-)
-%doc COPYRIGHT HISTORY README doc/*.html doc/*.css doc/*.gif doc/*.png
-%{_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,-)
-%{_includedir}/l*.h
-%{_includedir}/l*.hpp
-%{_libdir}/liblua.so
-%{_libdir}/pkgconfig/*.pc
-
-%files static
-%defattr(-,root,root,-)
-%{_libdir}/*.a
-
-%changelog
-* 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
-
-* 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)
-
-* 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.
-
-* 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)
-
-* Mon Aug 27 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-7
-- Rebuild for FC6
-
-* Thu Jun 08 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-6
-- fixed broken provides
-
-* Tue Jun 06 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-5
-- split out devel subpackage
-
-* Thu Jun 01 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-4
-- added Requires for pkgconfig BZ#193674
-
-* 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
-
-* Mon May 08 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-2
-- fixed x86_64 builds
-
-* Mon May 08 2006 Michael J. Knox <michael[AT]knox.net.nz> - 5.1-1
-- version bump
-
-* Sun Oct 16 2005 Ville Skyttä <ville.skytta at iki.fi> - 5.0.2-5
-- Fix -debuginfo (#165304).
-- Cosmetic specfile improvements.
-
-* Sun May 22 2005 Jeremy Katz <katzj@redhat.com> - 5.0.2-4
-- rebuild on all arches
-
-* Fri Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 5.0.2-3
-- rebuilt
-
-* Sat Feb 12 2005 David Woodhouse <dwmw2@infradead.org> - 5.0.2-2
-- Don't use fastround on ppc
-
-* 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
-
-* Mon Nov 17 2003 Oren Tirosh <oren at hishome.net> - 0:5.0-0.fdr.2
-- Enable readline support.
-
-* Sat Jun 21 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:5.0-0.fdr.1
-- First build.
|
[-]
[+]
|
Deleted |
lua-5.1.3-autotoolize.patch
^
|
@@ -1,43652 +0,0 @@
-diff -up /dev/null lua-5.1.3/config.h.in
---- /dev/null 2008-01-26 09:26:21.331005882 +0100
-+++ lua-5.1.3/config.h.in 2008-01-26 11:16:57.000000000 +0100
-@@ -0,0 +1,64 @@
-+/* config.h.in. Generated from configure.ac by autoheader. */
-+
-+/* Define to 1 if you have the <dlfcn.h> header file. */
-+#undef HAVE_DLFCN_H
-+
-+/* Define to 1 if you have the <inttypes.h> header file. */
-+#undef HAVE_INTTYPES_H
-+
-+/* Define to 1 if you have the `readline' library (-lreadline). */
-+#undef HAVE_LIBREADLINE
-+
-+/* Define to 1 if you have the <memory.h> header file. */
-+#undef HAVE_MEMORY_H
-+
-+/* Define to 1 if you have the <readline/history.h> header file. */
-+#undef HAVE_READLINE_HISTORY_H
-+
-+/* Define to 1 if you have the <readline/readline.h> header file. */
-+#undef HAVE_READLINE_READLINE_H
-+
-+/* Define to 1 if you have the <stdint.h> header file. */
-+#undef HAVE_STDINT_H
-+
-+/* Define to 1 if you have the <stdlib.h> header file. */
-+#undef HAVE_STDLIB_H
-+
-+/* Define to 1 if you have the <strings.h> header file. */
-+#undef HAVE_STRINGS_H
-+
-+/* Define to 1 if you have the <string.h> header file. */
-+#undef HAVE_STRING_H
-+
-+/* Define to 1 if you have the <sys/stat.h> header file. */
-+#undef HAVE_SYS_STAT_H
-+
-+/* Define to 1 if you have the <sys/types.h> header file. */
-+#undef HAVE_SYS_TYPES_H
-+
-+/* Define to 1 if you have the <unistd.h> header file. */
-+#undef HAVE_UNISTD_H
-+
-+/* Name of package */
-+#undef PACKAGE
-+
-+/* Define to the address where bug reports for this package should be sent. */
-+#undef PACKAGE_BUGREPORT
-+
-+/* Define to the full name of this package. */
-+#undef PACKAGE_NAME
-+
-+/* Define to the full name and version of this package. */
-+#undef PACKAGE_STRING
-+
-+/* Define to the one symbol short name of this package. */
-+#undef PACKAGE_TARNAME
-+
-+/* Define to the version of this package. */
-+#undef PACKAGE_VERSION
-+
-+/* Define to 1 if you have the ANSI C header files. */
-+#undef STDC_HEADERS
-+
-+/* Version number of package */
-+#undef VERSION
-diff -up /dev/null lua-5.1.3/ltmain.sh
---- /dev/null 2008-01-26 09:26:21.331005882 +0100
-+++ lua-5.1.3/ltmain.sh 2008-01-26 11:16:57.000000000 +0100
-@@ -0,0 +1,6971 @@
-+# ltmain.sh - Provide generalized library-building support services.
-+# NOTE: Changing this file will not affect anything until you rerun configure.
-+#
-+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005
-+# Free Software Foundation, Inc.
-+# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
-+#
-+# This program is free software; you can redistribute it and/or modify
-+# it under the terms of the GNU General Public License as published by
-+# the Free Software Foundation; either version 2 of the License, or
-+# (at your option) any later version.
-+#
-+# This program is distributed in the hope that it will be useful, but
-+# WITHOUT ANY WARRANTY; without even the implied warranty of
-+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-+# General Public License for more details.
-+#
-+# You should have received a copy of the GNU General Public License
-+# along with this program; if not, write to the Free Software
-+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-+#
-+# As a special exception to the GNU General Public License, if you
-+# distribute this file as part of a program that contains a
-+# configuration script generated by Autoconf, you may include it under
-+# the same distribution terms that you use for the rest of that program.
-+
-+basename="s,^.*/,,g"
-+
-+# Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh
-+# is ksh but when the shell is invoked as "sh" and the current value of
-+# the _XPG environment variable is not equal to 1 (one), the special
-+# positional parameter $0, within a function call, is the name of the
-+# function.
-+progpath="$0"
-+
-+# define SED for historic ltconfig's generated by Libtool 1.3
-+test -z "$SED" && SED=sed
-+
-+# The name of this program:
-+progname=`echo "$progpath" | $SED $basename`
-+modename="$progname"
-+
-+# Global variables:
-+EXIT_SUCCESS=0
-+EXIT_FAILURE=1
-+
-+PROGRAM=ltmain.sh
-+PACKAGE=libtool
-+VERSION=1.5.22
-+TIMESTAMP=" (1.1220.2.365 2005/12/18 22:14:06)"
-+
-+# See if we are running on zsh, and set the options which allow our
-+# commands through without removal of \ escapes.
-+if test -n "${ZSH_VERSION+set}" ; then
-+ setopt NO_GLOB_SUBST
-+fi
-+# Same for EGREP, and just to be sure, do LTCC as well
-+if test "X$EGREP" = X ; then
-+ EGREP=egrep
-+fi
-+if test "X$LTCC" = X ; then
-+ LTCC=${CC-gcc}
-+fi
-+
-+# Check that we have a working $echo.
-+if test "X$1" = X--no-reexec; then
-+ # Discard the --no-reexec flag, and continue.
-+ shift
-+elif test "X$1" = X--fallback-echo; then
-+ # Avoid inline document here, it may be left over
-+ :
-+elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
-+ # Yippee, $echo works!
-+ :
-+else
-+ # Restart under the correct shell, and then maybe $echo will work.
-+ exec $SHELL "$progpath" --no-reexec ${1+"$@"}
-+fi
-+
-+if test "X$1" = X--fallback-echo; then
-+ # used as fallback echo
-+ shift
-+ cat <<EOF
-+$*
-+EOF
-+ exit $EXIT_SUCCESS
-+fi
-+
-+default_mode=
-+help="Try \`$progname --help' for more information."
-+magic="%%%MAGIC variable%%%"
-+mkdir="mkdir"
-+mv="mv -f"
-+rm="rm -f"
-+
-+# Sed substitution that helps us do robust quoting. It backslashifies
-+# metacharacters that are still active within double-quoted strings.
-+Xsed="${SED}"' -e 1s/^X//'
-+sed_quote_subst='s/\([\\`\\"$\\\\]\)/\\\1/g'
-+# test EBCDIC or ASCII
-+case `echo X|tr X '\101'` in
-+ A) # ASCII based system
-+ # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
-+ SP2NL='tr \040 \012'
-+ NL2SP='tr \015\012 \040\040'
-+ ;;
-+ *) # EBCDIC based system
-+ SP2NL='tr \100 \n'
-+ NL2SP='tr \r\n \100\100'
-+ ;;
-+esac
-+
-+# NLS nuisances.
-+# Only set LANG and LC_ALL to C if already set.
-+# These must not be set unconditionally because not all systems understand
-+# e.g. LANG=C (notably SCO).
-+# We save the old values to restore during execute mode.
-+if test "${LC_ALL+set}" = set; then
-+ save_LC_ALL="$LC_ALL"; LC_ALL=C; export LC_ALL
-+fi
-+if test "${LANG+set}" = set; then
-+ save_LANG="$LANG"; LANG=C; export LANG
-+fi
-+
-+# Make sure IFS has a sensible default
-+lt_nl='
-+'
|
|
Deleted |
lua-5.1.3.tar.gz
^
|