From 9676dd0c6abcf5160456a1bc769d71dbcb44d966 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Tue, 29 Sep 2009 05:26:29 +0000 Subject: [PATCH 1/7] Initialize branch F-12 for lua-posix --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From 54e3809bf2393d58eb91c7c7da10168f3e8eb88b Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:51:38 +0000 Subject: [PATCH 2/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3d49665..a9c27ab 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: lua-posix -# $Id$ +# $Id: Makefile,v 1.1 2008/04/08 18:08:44 kevin Exp $ NAME := lua-posix 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)) From b70ed59a8c6012eb20c1c49bb0bcd26fb2dcf1e2 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:58:53 +0000 Subject: [PATCH 3/7] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3d49665..207ca31 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := lua-posix 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)) From a8933e25ce342763497d2a562289a84d9bdf0994 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 02:38:33 +0000 Subject: [PATCH 4/7] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 207ca31..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: lua-posix -# $Id$ -NAME := lua-posix -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 $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12 From 5f4ec87196815cd4b76bd791f7d70c47d37f5056 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 02:38:34 +0000 Subject: [PATCH 5/7] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index a9c27ab..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: lua-posix -# $Id: Makefile,v 1.1 2008/04/08 18:08:44 kevin Exp $ -NAME := lua-posix -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 $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From fcca322f6faafbef40c66aefa77576629c07c12c Mon Sep 17 00:00:00 2001 From: Tim Niemueller Date: Sun, 15 Aug 2010 12:52:20 -0400 Subject: [PATCH 6/7] Update to 5.1.7 --- .gitignore | 1 + lua-posix.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 5e844e6..018a8e9 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ luaposix-5.1.4.tar.gz +luaposix-5.1.7.tar.bz2 diff --git a/lua-posix.spec b/lua-posix.spec index 28c826b..1885644 100644 --- a/lua-posix.spec +++ b/lua-posix.spec @@ -3,14 +3,14 @@ %define luapkgdir %{_datadir}/lua/%{luaver} Name: lua-posix -Version: 5.1.4 -Release: 3%{?dist} +Version: 5.1.7 +Release: 1%{?dist} Summary: A POSIX library for Lua Group: Development/Libraries License: Public Domain URL: http://luaforge.net/projects/luaposix/ -Source0: http://luaforge.net/frs/download.php/3572/luaposix-5.1.4.tar.gz +Source0: http://git.alpinelinux.org/cgit/luaposix/snapshot/luaposix-5.1.7.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: lua >= %{luaver}, lua-devel >= %{luaver} @@ -44,6 +44,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 15 2010 Tim Niemueller - 5.1.7-1 +- Update to 5.1.7 + * Sat Jul 25 2009 Fedora Release Engineering - 5.1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild diff --git a/sources b/sources index 654596d..b05a052 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -073019b1a52bfddb94e2521553b47ef5 luaposix-5.1.4.tar.gz +e7ed42536548ebc109bc1cb73f08b1e9 luaposix-5.1.7.tar.bz2 From 6ddb270fa0342eb0dc845b32373e13bc5c618462 Mon Sep 17 00:00:00 2001 From: Tim Niemueller Date: Sun, 15 Aug 2010 13:13:46 -0400 Subject: [PATCH 7/7] Add -fPIC to CFLAGS --- lua-posix.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lua-posix.spec b/lua-posix.spec index 1885644..0352c55 100644 --- a/lua-posix.spec +++ b/lua-posix.spec @@ -25,7 +25,7 @@ to Lua programs. %build -make %{?_smp_mflags} PREFIX=%{_prefix} LUALIB=%{lualibdir} LUABIN=%{_bindir} CFLAGS="%{optflags}" +make %{?_smp_mflags} PREFIX=%{_prefix} LUALIB=%{lualibdir} LUABIN=%{_bindir} CFLAGS="%{optflags} -fPIC" %install @@ -46,6 +46,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Sun Aug 15 2010 Tim Niemueller - 5.1.7-1 - Update to 5.1.7 +- Add -fPIC to CFLAGS * Sat Jul 25 2009 Fedora Release Engineering - 5.1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild