rpms/roadfighter/devel roadfighter-1.0.1269-Makefile.patch, NONE, 1.1 roadfighter.sh, NONE, 1.1 roadfighter.spec, NONE, 1.1 .cvsignore, 1.1, 1.2 sources, 1.1, 1.2
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/roadfighter/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16286/devel
Modified Files:
.cvsignore sources
Added Files:
roadfighter-1.0.1269-Makefile.patch roadfighter.sh
roadfighter.spec
Log Message:
First release
roadfighter-1.0.1269-Makefile.patch:
--- NEW FILE roadfighter-1.0.1269-Makefile.patch ---
--- roadfighter-1.0.1269.orig/build/linux/Makefile 2008-03-19 21:58:51.000000000 +0100
+++ roadfighter-1.0.1269/build/linux/Makefile 2009-06-22 17:39:28.000000000 +0200
@@ -37,14 +38,14 @@
$(SRC)/main.o
CC = g++
-CFLAGS = -g3 -O3 `sdl-config --cflags` -I/usr/X11R6/include
-LDFLAGS = `sdl-config --libs` -L/usr/X11R6/lib/ -lSDL_image -lSDL_mixer -lSDL_sound -lSDL_ttf
+CFLAGS += `sdl-config --cflags` -I/usr/X11R6/include
+LIBS = `sdl-config --libs` -L/usr/X11R6/lib/ -lSDL_image -lSDL_mixer -lSDL_sound -lSDL_ttf
+LDFLAGS += -L/usr/X11R6/lib/
RM = rm -f
CP = cp -r
MD = mkdir -p
ECHO = echo
CHMOD = chmod
-STRIP = strip
all: $(EXE)
@@ -52,8 +53,7 @@
$(CC) $(CFLAGS) -c $< -o $@
$(EXE): $(OBJS)
- $(CC) $(LDFLAGS) $^ -o $@
- @$(STRIP) $@
+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
@$(ECHO) " o If there are no errors, the game compiled succesfully"
clean:
--- NEW FILE roadfighter.sh ---
#!/bin/sh
GAME=roadfighter
GAME_LOCAL_DIR=$HOME/.$GAME
GAME_DATA_DIR=/usr/share/$GAME
GAME_EXECUTABLE=/usr/libexec/$GAME/$GAME
mkdir -p $GAME_LOCAL_DIR
cd $GAME_LOCAL_DIR
for dir in fonts graphics maps sound; do
ln -snf $GAME_DATA_DIR/$dir $dir
done
exec $GAME_EXECUTABLE "$@"
--- NEW FILE roadfighter.spec ---
Name: roadfighter
Version: 1.0.1269
Release: 2%{?dist}
Summary: Konami's Road Fighter remake
Group: Amusements/Games
# http://www.braingames.getput.com/forum/forum_posts.asp?TID=678&PN=1
License: Distributable
URL: http://roadfighter.jorito.net/
Source0: http://braingames.jorito.net/roadfighter/downloads/%{name}.src_%{version}...
Source1: roadfighter.sh
Patch0: %{name}-1.0.1269-Makefile.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: SDL_image-devel
BuildRequires: SDL_mixer-devel
BuildRequires: SDL_sound-devel
BuildRequires: SDL_ttf-devel
BuildRequires: ImageMagick
BuildRequires: desktop-file-utils
Requires: hicolor-icon-theme
%description
This is a remake of a car-based arcade game developed by Konami and released
in 1984. The goal is to reach the finish line within the stages without
running out of time, hitting other cars or running out of fuel.
%prep
%setup -q
%patch0 -p1
# Fix char encondig
iconv --from=ISO-8859-1 --to=UTF-8 readme.txt > readme.txt.utf8
touch -r readme.txt readme.txt.utf8
mv readme.txt.utf8 readme.txt
%build
export CFLAGS="%{optflags}"
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
# Install wrapper script
install -d %{buildroot}%{_bindir}
install -m 755 -p %{SOURCE1} %{buildroot}%{_bindir}/%{name}
# Install game and data
install -d %{buildroot}%{_libexecdir}/%{name}
install -m 755 -p %{name} %{buildroot}%{_libexecdir}/%{name}
install -d %{buildroot}%{_datadir}/%{name}
cp -pr fonts graphics maps sound %{buildroot}%{_datadir}/%{name}
# Install icon
mkdir -p %{buildroot}%{_datadir}/icons/hicolor/32x32/apps
convert -resize 32x32 \
-frame 0x3 \
-mattecolor '#dfdfdf' \
-transparent '#dfdfdf' \
build/linux/roadfighter.png \
%{buildroot}%{_datadir}/icons/hicolor/32x32/apps/%{name}.png
# Install desktop file
mkdir -p %{buildroot}%{_datadir}/applications
desktop-file-install \
--dir %{buildroot}%{_datadir}/applications \
build/linux/%{name}.desktop
%clean
rm -rf %{buildroot}
%post
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
%postun
if [ $1 -eq 0 ] ; then
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
fi
%posttrans
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%files
%defattr(-,root,root,-)
%{_bindir}/%{name}
%{_datadir}/%{name}
%{_libexecdir}/%{name}
%{_datadir}/icons/hicolor/*/apps/%{name}.png
%{_datadir}/applications/%{name}.desktop
%doc readme.txt
%changelog
* Fri Aug 07 2009 Andrea Musuruane <musuruan(a)gmail.com> 1.0.1269-2
- Preserved timestamps
* Thu Jul 23 2009 Andrea Musuruane <musuruan(a)gmail.com> 1.0.1269-1
- First release
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/roadfighter/devel/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- .cvsignore 8 Aug 2009 17:12:26 -0000 1.1
+++ .cvsignore 9 Aug 2009 08:18:58 -0000 1.2
@@ -0,0 +1 @@
+roadfighter.src_1.0.1269.tgz
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/roadfighter/devel/sources,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- sources 8 Aug 2009 17:12:26 -0000 1.1
+++ sources 9 Aug 2009 08:18:58 -0000 1.2
@@ -0,0 +1 @@
+a1626dda4d17ae30bbdd9c1ede2cd555 roadfighter.src_1.0.1269.tgz
15 years, 3 months
rpms/mythtv-themes/devel mythtv-themes.spec,1.15,1.16
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv-themes/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29313
Modified Files:
mythtv-themes.spec
Log Message:
oops, forgot to bump svnrev in the spec
Index: mythtv-themes.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv-themes/devel/mythtv-themes.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- mythtv-themes.spec 9 Aug 2009 02:33:38 -0000 1.15
+++ mythtv-themes.spec 9 Aug 2009 02:34:22 -0000 1.16
@@ -17,7 +17,7 @@
%define desktop_vendor RPMFusion
# SVN Revision number and branch ID
-%define _svnrev r20488
+%define _svnrev r21179
%define branch trunk
#
15 years, 3 months
rpms/mythtv-themes/devel .cvsignore, 1.3, 1.4 mythtv-themes.spec, 1.14, 1.15 sources, 1.10, 1.11
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv-themes/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29223
Modified Files:
.cvsignore mythtv-themes.spec sources
Log Message:
* Sat Aug 08 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.22-0.4.svn.r21179
- Update to pre-0.22 svn trunk, rev 21179
- Add Robert McNamara's excellent new Graphite theme
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/mythtv-themes/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 18 Dec 2008 02:23:41 -0000 1.3
+++ .cvsignore 9 Aug 2009 02:33:38 -0000 1.4
@@ -3,3 +3,4 @@
themes-0.21.tar.bz2
myththemes-0.22.tar.bz2
themes-0.22.tar.bz2
+graphite.080409.tar.gz
Index: mythtv-themes.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv-themes/devel/mythtv-themes.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- mythtv-themes.spec 4 Jun 2009 04:23:02 -0000 1.14
+++ mythtv-themes.spec 9 Aug 2009 02:33:38 -0000 1.15
@@ -1,33 +1,87 @@
-Name: mythtv-themes
-Version: 0.21
-Release: 4
-Summary: Additional User Interface themes for MythTV
-Group: Applications/Multimedia
-License: GPLv2
-URL: http://www.mythtv.org/
-Source0: http://www.mythtv.org/mc/myththemes-%{version}.tar.bz2
-# created from svn rev 17859:
-# http://svn.mythtv.org/var/lib/svn/branches/release-0-21-fixes/themes
-Source1: themes-%{version}.tar.bz2
-# Upstream url dead, extracted from mythbuntu packages
-Source2: glass-wide-20071107.tar.gz
-Patch0: myththemes-0.21-svnfixes.patch
-BuildRequires: libmyth-devel = %{version}
-Requires: mythtv-themes = %{version}
-BuildArch: noarch
-BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+#
+# Specfile for building MythTV RPMs from a subversion checkout.
+#
+# by: Chris Petersen <rpm(a)forevermore.net>
+# Jarod Wilson <jarod(a)wilsonet.com>
+#
+# Modified/Extended from the great (non-svn based) work of:
+# Axel Thimm <Axel.Thimm(a)ATrpms.net>
+# and others; see changelog at bottom for details.
+#
+# The latest version of this file can be found at:
+#
+# http://www.mythtv.org/wiki/index.php/Mythtv-themes-svn-rpmbuild.spec
+#
+
+# The vendor name we should attribute the aforementioned entries to
+%define desktop_vendor RPMFusion
+
+# SVN Revision number and branch ID
+%define _svnrev r20488
+%define branch trunk
+
+#
+# Basic descriptive tags for this package:
+#
+Name: mythtv-themes
+Summary: Additional themes for mythtv's frontend
+URL: http://www.mythtv.org/
+Group: Applications/Multimedia
+License: GPLv2
+
+# Version/Release info
+Version: 0.22
+%if "%{branch}" == "trunk"
+Release: 0.4.svn.%{_svnrev}%{?dist}
+%else
+Release: 1%{?dist}
+%endif
+
+################################################################################
+
+# Tarballs created from svn "themes" and "myththemes" directories
+# Hopefully these will merge before 0.22 is released.
+Source0: http://www.mythtv.org/mc/myththemes-%{version}.tar.bz2
+Source1: themes-%{version}.tar.bz2
+# Very nice user-created theme using the new MythUI bits
+Source2: http://www.fecitfacta.com/graphite.080409.tar.gz
+
+BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+
+BuildArch: noarch
+
+# no mythtv in RPM Fusion's ppc64 repo, hence ExcludeArch this package on ppc64
+# to have broken deps:
+ExcludeArch: ppc64
+
+################################################################################
+
+BuildRequires: libmyth-devel = %{version}
+BuildRequires: qt4-devel
+
+# Themes do require a frontend
+Requires: mythtv-frontend
+
+# And obselete a bunch of packages from when themes were packaged individually
+Obsoletes: mythtv-theme-MythCenter
+Obsoletes: mythtv-theme-Retro
+Obsoletes: mythtv-theme-Titivillus
+Obsoletes: mythtv-theme-isthmus
+
+################################################################################
%description
MythTV provides a unified graphical interface for recording and viewing
television programs. Refer to the mythtv-docs package for more information.
-This package contains themes for the mythtv user interface.
+This package contains additional themes for the mythtv user interface.
+
+################################################################################
%prep
%setup -q -c -a 1 -a 2
-cd myththemes-%{version}
-%patch0 -p1
-cd ..
+
+################################################################################
%build
cd myththemes-%{version}
@@ -38,6 +92,8 @@
%configure
cd ..
+################################################################################
+
%install
rm -rf %{buildroot}
@@ -49,18 +105,63 @@
make install INSTALL_ROOT=%{buildroot}
cd ..
-cp -rp glass-wide %{buildroot}%{_datadir}/mythtv/themes/
+cp -a Graphite %{buildroot}%{_datadir}/mythtv/themes/
+
+################################################################################
%clean
rm -rf %{buildroot}
+################################################################################
+
%files
%defattr(-,root,root,-)
%{_datadir}/mythtv/themes/*
%changelog
-* Thu Jun 04 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-4
-- Rebuild
+* Sat Aug 08 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.22-0.4.svn.r21179
+- Update to pre-0.22 svn trunk, rev 21179
+- Add Robert McNamara's excellent new Graphite theme
+
+* Fri Jun 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.22-0.4.svn.r20488
+- rebuilt
+
+* Tue May 05 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.22-0.3.svn.r20488
+- excludearch ppc64 to fix broken deps in RPM Fusions ppc64 repo
+
+* Mon May 04 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.2.svn.r20488
+- Update to pre-0.22 svn trunk, rev 20488
+
+* Fri Apr 24 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.2.svn.r20448
+- Update to pre-0.22 svn trunk, rev 20448
+
+* Tue Apr 07 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.2.svn.r20317
+- Update to pre-0.22 svn trunk, rev 20317
+
+* Sun Mar 29 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 0.22-0.2.svn.r20196
+- rebuild for new F11 features
+
+* Thu Mar 12 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.1.svn.r20196
+- Update to pre-0.22 svn trunk, rev 20196
+
+* Wed Mar 04 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.1.svn.r20107
+- Update to pre-0.22 svn trunk, rev 20107
+
+* Mon Mar 02 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.1.svn.r20089
+- Update to pre-0.22 svn trunk, rev 20089
+
+* Sat Jan 24 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.1.svn.r19811
+- Update to pre-0.22 svn trunk, rev 19811
+
+* Wed Dec 31 2008 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.1.svn.r19506
+- Update to pre-0.22 svn trunk, rev 19506
+
+* Wed Dec 17 2008 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.1.svn.r19390
+- Build svn trunk themes to go with svn trunk mythtv, rev 19390
+- Drop glass-wide
+
+* Sat Nov 01 2008 Chris Petersen <rpm(a)forevermore.net> 0.22-0.1.svn
+- Clean and standardize package to match mythtv-svn spec
* Sun Aug 03 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info - 0.21-3
- rebuild
@@ -72,3 +173,4 @@
* Sun Mar 09 2008 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-1
- Initial package
+
Index: sources
===================================================================
RCS file: /cvs/free/rpms/mythtv-themes/devel/sources,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- sources 4 Jun 2009 04:23:02 -0000 1.10
+++ sources 9 Aug 2009 02:33:38 -0000 1.11
@@ -1,3 +1,3 @@
-7cdec1649d3a94a8dbf96d129421cdac glass-wide-20071107.tar.gz
-9a569ab5561f348fdbf82cdc46a1df9b myththemes-0.21.tar.bz2
-8a036cbbb8cf29c5512931e1f6f5445f themes-0.21.tar.bz2
+727aad649046b62b225c1eb63df168a4 myththemes-0.22.tar.bz2
+6ff1838b9901edd65ebf30480e748f5b themes-0.22.tar.bz2
+8a94d02a711c3a05b384ec9963d02cac graphite.080409.tar.gz
15 years, 3 months
rpms/mythtv/devel mythtv.spec,1.40,1.41 sources,1.20,1.21
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28786
Modified Files:
mythtv.spec sources
Log Message:
* Sat Aug 09 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.2.svn.r21179
- Update to pre-0.22 svn trunk revision 21179
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/devel/mythtv.spec,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- mythtv.spec 4 Aug 2009 06:15:04 -0000 1.40
+++ mythtv.spec 9 Aug 2009 02:18:03 -0000 1.41
@@ -61,7 +61,7 @@
%define desktop_vendor RPMFusion
# SVN Revision number and branch ID
-%define _svnrev r21118
+%define _svnrev r21179
%define branch trunk
#
@@ -103,6 +103,7 @@
# The following options are disabled by default. Use --with to enable them
%define with_directfb %{?_with_directfb: 1} %{!?_with_directfb: 0}
%define with_xvmcnvidia %{?_with_xvmcnvidia: 1} %{?!_with_xvmcnvidia: 0}
+# We want this enabled by default once libvdpau is available to BR
%define with_vdpau %{?_with_vdpau: 1} %{?!_with_vdpau: 0}
# All plugins get built by default, but you can disable them as you wish
@@ -1470,6 +1471,9 @@
################################################################################
%changelog
+* Sat Aug 09 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.2.svn.r21179
+- Update to pre-0.22 svn trunk revision 21179
+
* Tue Aug 04 2009 Jarod Wilson <jarod(a)wilsonet.com> 0.22-0.2.svn.r21118
- Update to pre-0.22 svn trunk revision 21118
- Add infra for builds with vdpau support (need libvdpau in either
Index: sources
===================================================================
RCS file: /cvs/free/rpms/mythtv/devel/sources,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- sources 4 Aug 2009 06:13:25 -0000 1.20
+++ sources 9 Aug 2009 02:18:03 -0000 1.21
@@ -1,4 +1,4 @@
be3ab99952c2a3a135a7c4af90b08f15 mythfrontend.png
be3ab99952c2a3a135a7c4af90b08f15 mythtv-setup.png
-d2632857fe5de49f01388db8689592df mythplugins-0.22.tar.bz2
-329bda54b58251af98b48d3d32989fd6 mythtv-0.22.tar.bz2
+5672c837cde6319d314dd4a520a2fa85 mythtv-0.22.tar.bz2
+daf6f2e5a6a9ae3a1f7c0c0c94451914 mythplugins-0.22.tar.bz2
15 years, 3 months
rpms/mythtv/F-10 mythtv-0.21-fix-version-output.patch, NONE, 1.1 mythtv.spec, 1.20, 1.21
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/F-10
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26498
Modified Files:
mythtv.spec
Added Files:
mythtv-0.21-fix-version-output.patch
Log Message:
* Sat Aug 08 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-21
- Update to release-0-21-fixes patches (r21174)
- Add missing R: php-process to mythweb (rfbz#652)
- Make binaries properly report being from the release-0-21-fixes
branch instead of being from the release tag (rfbz#452)
mythtv-0.21-fix-version-output.patch:
--- NEW FILE mythtv-0.21-fix-version-output.patch ---
--- mythtv-0.21/version.pro.orig 2009-08-08 20:48:58.000000000 -0400
+++ mythtv-0.21/version.pro 2009-08-08 20:49:47.000000000 -0400
@@ -9,7 +9,7 @@
MYTHBINVERS = $$system(egrep MYTH_BINARY_VERSION libs/libmyth/mythcontext.h | sed 's/.*MYTH_BINARY_VERSION //')
SVNTREEDIR = $$system(pwd)
-SVNREPOPATH = "$$URL: http://svn.mythtv.org/svn/tags/release-0-21/mythtv/version.pro $$"
+SVNREPOPATH = "$$URL: http://svn.mythtv.org/svn/branches/release-0-21-fixes/mythtv/version.pro $$"
SOURCES += version.cpp
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-10/mythtv.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- mythtv.spec 18 Jun 2009 04:44:18 -0000 1.20
+++ mythtv.spec 9 Aug 2009 01:42:12 -0000 1.21
@@ -1,5 +1,5 @@
# svn revision number
-%define _svnver r20697
+%define _svnver r21174
%define branch release-0-21-fixes
# Nb: base 0.21 svn rev is r16468
#define branch trunk
@@ -22,7 +22,7 @@
%if "%{branch}" == "trunk"
Release: 0.2.%{_svnver}%{?dist}
%else
-Release: 20%{?dist}
+Release: 21%{?dist}
%endif
URL: http://www.mythtv.org/
# The primary license is GPLv2+, but bits are borrowed from a number of
@@ -44,7 +44,8 @@
# Patches
Patch100: mythtv-0.21-svnfixes.patch
Patch101: mythtv-0.20-mythstreammenu.diff
-#Patch102: mythtv-0.21-fedora-settings.patch
+Patch102: mythtv-0.21-fix-version-output.patch
+#Patch103: mythtv-0.21-fedora-settings.patch
Patch200: mythplugins-0.21-svnfixes.patch
#Patch201: mythplugins-0.21-fedora-settings.patch
#
@@ -473,6 +474,7 @@
Summary: The web interface to MythTV
Group: Applications/Multimedia
Requires: httpd >= 1.3.26, php >= 4.2.2, php-mysql >= 4.2.2
+Requires: php-process
%description -n mythweb
The web interface to MythTV.
@@ -498,7 +500,8 @@
cd mythtv-%{version}
%patch100 -p1 -b .svnfixes
#patch101 -p0 -b .mythstreammenu
-#patch102 -p1 -b .settings
+%patch102 -p1 -b .version
+#patch103 -p1 -b .settings
# Drop execute permissions on contrib bits, since they'll be %doc
find contrib/ -type f -exec chmod -x "{}" \;
@@ -1028,6 +1031,12 @@
%endif
%changelog
+* Sat Aug 08 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-21
+- Update to release-0-21-fixes patches (r21174)
+- Add missing R: php-process to mythweb (rfbz#652)
+- Make binaries properly report being from the release-0-21-fixes
+ branch instead of being from the release tag (rfbz#452)
+
* Sat Jun 13 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-20
- Update to release-0-21-fixes patches (r20697)
- Add missing BR: pulseaudio-libs-devel so we work when pulse
15 years, 3 months
rpms/mythtv/F-11 mythtv-0.21-fix-version-output.patch, NONE, 1.1 mythtv.spec, 1.37, 1.38
by Jarod Wilson
Author: jarod
Update of /cvs/free/rpms/mythtv/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26019
Modified Files:
mythtv.spec
Added Files:
mythtv-0.21-fix-version-output.patch
Log Message:
* Sat Aug 08 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-21
- Update to release-0-21-fixes patches (r21174)
- Add missing R: php-process to mythweb (rfbz#652)
- Make binaries properly report being from the release-0-21-fixes
branch instead of being from the release tag (rfbz#452)
mythtv-0.21-fix-version-output.patch:
--- NEW FILE mythtv-0.21-fix-version-output.patch ---
--- mythtv-0.21/version.pro.orig 2009-08-08 20:48:58.000000000 -0400
+++ mythtv-0.21/version.pro 2009-08-08 20:49:47.000000000 -0400
@@ -9,7 +9,7 @@
MYTHBINVERS = $$system(egrep MYTH_BINARY_VERSION libs/libmyth/mythcontext.h | sed 's/.*MYTH_BINARY_VERSION //')
SVNTREEDIR = $$system(pwd)
-SVNREPOPATH = "$$URL: http://svn.mythtv.org/svn/tags/release-0-21/mythtv/version.pro $$"
+SVNREPOPATH = "$$URL: http://svn.mythtv.org/svn/branches/release-0-21-fixes/mythtv/version.pro $$"
SOURCES += version.cpp
Index: mythtv.spec
===================================================================
RCS file: /cvs/free/rpms/mythtv/F-11/mythtv.spec,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- mythtv.spec 14 Jun 2009 00:10:28 -0000 1.37
+++ mythtv.spec 9 Aug 2009 01:38:44 -0000 1.38
@@ -1,5 +1,5 @@
# svn revision number
-%define _svnver r20697
+%define _svnver r21174
%define branch release-0-21-fixes
# Nb: base 0.21 svn rev is r16468
#define branch trunk
@@ -22,7 +22,7 @@
%if "%{branch}" == "trunk"
Release: 0.2.%{_svnver}%{?dist}
%else
-Release: 20%{?dist}
+Release: 21%{?dist}
%endif
URL: http://www.mythtv.org/
# The primary license is GPLv2+, but bits are borrowed from a number of
@@ -44,7 +44,8 @@
# Patches
Patch100: mythtv-0.21-svnfixes.patch
Patch101: mythtv-0.20-mythstreammenu.diff
-#Patch102: mythtv-0.21-fedora-settings.patch
+Patch102: mythtv-0.21-fix-version-output.patch
+#Patch103: mythtv-0.21-fedora-settings.patch
Patch200: mythplugins-0.21-svnfixes.patch
#Patch201: mythplugins-0.21-fedora-settings.patch
#
@@ -473,6 +474,7 @@
Summary: The web interface to MythTV
Group: Applications/Multimedia
Requires: httpd >= 1.3.26, php >= 4.2.2, php-mysql >= 4.2.2
+Requires: php-process
%description -n mythweb
The web interface to MythTV.
@@ -498,7 +500,8 @@
cd mythtv-%{version}
%patch100 -p1 -b .svnfixes
#patch101 -p0 -b .mythstreammenu
-#patch102 -p1 -b .settings
+%patch102 -p1 -b .version
+#patch103 -p1 -b .settings
# Drop execute permissions on contrib bits, since they'll be %doc
find contrib/ -type f -exec chmod -x "{}" \;
@@ -1028,6 +1031,12 @@
%endif
%changelog
+* Sat Aug 08 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-21
+- Update to release-0-21-fixes patches (r21174)
+- Add missing R: php-process to mythweb (rfbz#652)
+- Make binaries properly report being from the release-0-21-fixes
+ branch instead of being from the release tag (rfbz#452)
+
* Sat Jun 13 2009 Jarod Wilson <jarod(a)wilsonet.com> - 0.21-20
- Update to release-0-21-fixes patches (r20697)
- Add missing BR: pulseaudio-libs-devel so we work when pulse
15 years, 3 months
rpms/roadfighter/devel .cvsignore, NONE, 1.1 Makefile, NONE, 1.1 sources, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/roadfighter/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/free/owners/tmpcvsg30906/rpms/roadfighter/devel
Added Files:
.cvsignore Makefile sources
Log Message:
Setup of module roadfighter
--- NEW FILE .cvsignore ---
--- NEW FILE Makefile ---
# Makefile for source rpm: roadfighter
# $Id: Makefile,v 1.1 2009/08/08 17:12:26 thl Exp $
NAME := roadfighter
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
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)
--- NEW FILE sources ---
15 years, 3 months
rpms/roadfighter Makefile, NONE, 1.1 import.log, NONE, 1.1 pkg.acl, NONE, 1.1
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/roadfighter
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/free/owners/tmpcvsg30906/rpms/roadfighter
Added Files:
Makefile import.log pkg.acl
Log Message:
Setup of module roadfighter
--- NEW FILE Makefile ---
# Top level Makefile for module roadfighter
all : CVS/Root common-update
@cvs update
common-update : common
@cd common && cvs update
common : CVS/Root
@cvs checkout common
CVS/Root :
@echo "ERROR: This does not look like a CVS checkout" && exit 1
clean :
@find . -type f -name *~ -exec rm -fv {} \;
--- NEW FILE import.log ---
--- NEW FILE pkg.acl ---
15 years, 3 months
rpms/roadfighter/devel - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/roadfighter/devel
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/free/owners/tmpcvsg30906/rpms/roadfighter/devel
Log Message:
Directory /cvs/nonfree/rpms/roadfighter/devel added to the repository
15 years, 3 months
rpms/roadfighter - New directory
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/roadfighter
In directory se02.es.rpmfusion.net:/home/rpmfusion/thl/free/owners/tmpcvsg30906/rpms/roadfighter
Log Message:
Directory /cvs/nonfree/rpms/roadfighter added to the repository
15 years, 3 months