From ad373d6b52ccfc18070c94c3d33e5ed66028038f Mon Sep 17 00:00:00 2001 From: thomasj Date: Thu, 1 Jul 2010 12:04:36 +0000 Subject: [PATCH 1/4] initial import --- .cvsignore | 1 + import.log | 1 + sources | 1 + vor-fix-DSO.patch | 11 ++++++++++ vor.desktop | 10 +++++++++ vor.spec | 55 +++++++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 79 insertions(+) create mode 100644 import.log create mode 100644 vor-fix-DSO.patch create mode 100644 vor.desktop create mode 100644 vor.spec diff --git a/.cvsignore b/.cvsignore index e69de29..7b06778 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +vor-0.5.5.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..d03b634 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +vor-0_5_5-2_fc13:HEAD:vor-0.5.5-2.fc13.src.rpm:1277985848 diff --git a/sources b/sources index e69de29..9f619ea 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +a4eb90351dc19413e82ac0bc5269bc42 vor-0.5.5.tar.bz2 diff --git a/vor-fix-DSO.patch b/vor-fix-DSO.patch new file mode 100644 index 0000000..a5384c6 --- /dev/null +++ b/vor-fix-DSO.patch @@ -0,0 +1,11 @@ +--- Makefile.in 2009-12-09 22:28:59.000000000 +0100 ++++ Makefile.in.old 2010-05-14 20:37:03.000000000 +0200 +@@ -43,7 +43,7 @@ + SDL_CFLAGS := @SDL_CFLAGS@ + SDL_LIBS := @SDL_LIBS@ + +-ldflags := $(SDL_LIBS) -lSDL_image -lSDL_mixer $(LDFLAGS) ++ldflags := $(SDL_LIBS) -lm -lSDL_image -lSDL_mixer $(LDFLAGS) + cflags := -I. $(SDL_CFLAGS) $(paths) $(CFLAGS) + + my_objects := args.@OBJEXT@ dust.@OBJEXT@ file.@OBJEXT@ mt.@OBJEXT@ rocks.@OBJEXT@ score.@OBJEXT@ sprite.@OBJEXT@ sound.@OBJEXT@ autopilot.@OBJEXT@ diff --git a/vor.desktop b/vor.desktop new file mode 100644 index 0000000..8c0edf2 --- /dev/null +++ b/vor.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Version=1.0 +Categories=Game;ArcadeGame; +Comment=A quick action game +Type=Application +Terminal=false +StartupNotify=false +Exec=vor +Name=VoR +Icon=/usr/share/vor/icon.png \ No newline at end of file diff --git a/vor.spec b/vor.spec new file mode 100644 index 0000000..97e50bc --- /dev/null +++ b/vor.spec @@ -0,0 +1,55 @@ +Name: vor +Version: 0.5.5 +Release: 2%{?dist} +Summary: Variations on Rockdogders is an 2D space shooter + +Group: Amusements/Games +License: GPLv2+ +URL: http://jasonwoof.org/vor +Source0: http://qualdan.com/%{name}/%{name}-%{version}.tar.bz2 +Source1: vor.desktop +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: SDL, SDL_mixer, SDL_image, SDL_image-devel, SDL_mixer-devel, desktop-file-utils + +Patch10: vor-fix-DSO.patch + +Requires: SDL, SDL_mixer, SDL_image + +%description +VoR is a simple, fast-paced action game that will challenge your reflexes. +It has excellent game-play, great physics, good graphics, and a retro/synthoid +thumpy beat to help put you in the mood for old-school 2D gaming. + +%prep +%setup -q +%patch10 -p0 + +%build +%configure --prefix=/usr +make %{?_smp_mflags} + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} + +desktop-file-install \ +--dir=%{buildroot}%{_datadir}/applications \ +%{SOURCE1} + +%clean +rm -rf %{buildroot} + +%files +%defattr(-,root,root,-) +%doc COPYING README +%{_bindir}/%{name} +%{_datadir}/applications/%{name}.desktop +%{_datadir}/%{name} + +%changelog +* Tue Jun 29 2010 Thomas Janssen 0.5.5-2 +- spelling error fixes + +* Mon Dec 28 2009 Thomas Janssen 0.5.5-1 +- Initial Fedora release From 3a46d9101b766153f6df079155bb5817468f7647 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:07:59 +0000 Subject: [PATCH 2/4] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log 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 283ce79..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: vor -# $Id$ -NAME := vor -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/import.log b/import.log deleted file mode 100644 index d03b634..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -vor-0_5_5-2_fc13:HEAD:vor-0.5.5-2.fc13.src.rpm:1277985848 From 7577b59e29ef1b9439351f170ef6b53e1985a372 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 19:49:02 -0600 Subject: [PATCH 3/4] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- vor.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vor.spec b/vor.spec index 97e50bc..c16aea7 100644 --- a/vor.spec +++ b/vor.spec @@ -1,6 +1,6 @@ Name: vor Version: 0.5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Variations on Rockdogders is an 2D space shooter Group: Amusements/Games @@ -48,6 +48,9 @@ rm -rf %{buildroot} %{_datadir}/%{name} %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Tue Jun 29 2010 Thomas Janssen 0.5.5-2 - spelling error fixes From cdaddb6df60de658908097bfee210979d78e78b2 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 25 Jul 2011 18:23:17 -0400 Subject: [PATCH 4/4] Retire vor. --- dead.package | 1 + sources | 1 - vor-fix-DSO.patch | 11 --------- vor.desktop | 10 -------- vor.spec | 58 ----------------------------------------------- 5 files changed, 1 insertion(+), 80 deletions(-) create mode 100644 dead.package delete mode 100644 sources delete mode 100644 vor-fix-DSO.patch delete mode 100644 vor.desktop delete mode 100644 vor.spec diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..6c90bdc --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This package was retired on 2011-07-25 due to it being unable to build this package for multiple releases (FTBFS). diff --git a/sources b/sources deleted file mode 100644 index 9f619ea..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -a4eb90351dc19413e82ac0bc5269bc42 vor-0.5.5.tar.bz2 diff --git a/vor-fix-DSO.patch b/vor-fix-DSO.patch deleted file mode 100644 index a5384c6..0000000 --- a/vor-fix-DSO.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- Makefile.in 2009-12-09 22:28:59.000000000 +0100 -+++ Makefile.in.old 2010-05-14 20:37:03.000000000 +0200 -@@ -43,7 +43,7 @@ - SDL_CFLAGS := @SDL_CFLAGS@ - SDL_LIBS := @SDL_LIBS@ - --ldflags := $(SDL_LIBS) -lSDL_image -lSDL_mixer $(LDFLAGS) -+ldflags := $(SDL_LIBS) -lm -lSDL_image -lSDL_mixer $(LDFLAGS) - cflags := -I. $(SDL_CFLAGS) $(paths) $(CFLAGS) - - my_objects := args.@OBJEXT@ dust.@OBJEXT@ file.@OBJEXT@ mt.@OBJEXT@ rocks.@OBJEXT@ score.@OBJEXT@ sprite.@OBJEXT@ sound.@OBJEXT@ autopilot.@OBJEXT@ diff --git a/vor.desktop b/vor.desktop deleted file mode 100644 index 8c0edf2..0000000 --- a/vor.desktop +++ /dev/null @@ -1,10 +0,0 @@ -[Desktop Entry] -Version=1.0 -Categories=Game;ArcadeGame; -Comment=A quick action game -Type=Application -Terminal=false -StartupNotify=false -Exec=vor -Name=VoR -Icon=/usr/share/vor/icon.png \ No newline at end of file diff --git a/vor.spec b/vor.spec deleted file mode 100644 index c16aea7..0000000 --- a/vor.spec +++ /dev/null @@ -1,58 +0,0 @@ -Name: vor -Version: 0.5.5 -Release: 3%{?dist} -Summary: Variations on Rockdogders is an 2D space shooter - -Group: Amusements/Games -License: GPLv2+ -URL: http://jasonwoof.org/vor -Source0: http://qualdan.com/%{name}/%{name}-%{version}.tar.bz2 -Source1: vor.desktop -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: SDL, SDL_mixer, SDL_image, SDL_image-devel, SDL_mixer-devel, desktop-file-utils - -Patch10: vor-fix-DSO.patch - -Requires: SDL, SDL_mixer, SDL_image - -%description -VoR is a simple, fast-paced action game that will challenge your reflexes. -It has excellent game-play, great physics, good graphics, and a retro/synthoid -thumpy beat to help put you in the mood for old-school 2D gaming. - -%prep -%setup -q -%patch10 -p0 - -%build -%configure --prefix=/usr -make %{?_smp_mflags} - -%install -rm -rf %{buildroot} -make install DESTDIR=%{buildroot} - -desktop-file-install \ ---dir=%{buildroot}%{_datadir}/applications \ -%{SOURCE1} - -%clean -rm -rf %{buildroot} - -%files -%defattr(-,root,root,-) -%doc COPYING README -%{_bindir}/%{name} -%{_datadir}/applications/%{name}.desktop -%{_datadir}/%{name} - -%changelog -* Mon Feb 07 2011 Fedora Release Engineering - 0.5.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Tue Jun 29 2010 Thomas Janssen 0.5.5-2 -- spelling error fixes - -* Mon Dec 28 2009 Thomas Janssen 0.5.5-1 -- Initial Fedora release