rpms/bsnes/F-11 bsnes.spec,1.31,1.32
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv9632
Modified Files:
bsnes.spec
Log Message:
sed the proper makefile
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-11/bsnes.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- bsnes.spec 19 May 2010 22:05:30 -0000 1.31
+++ bsnes.spec 19 May 2010 23:07:08 -0000 1.32
@@ -94,7 +94,7 @@
#pulseaudio on fedora 11 is too old
%if 0%{?fedora} < 12
-sed -i "s(a)audio.pulseaudio @@" src/Makefile
+sed -i "s(a)audio.pulseaudio @@" src/ui_qt/Makefile
%endif
14 years, 7 months
rpms/bsnes/F-11 bsnes-0.064-systemlibs.patch, NONE, 1.1 bsnes.spec, 1.30, 1.31
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4870
Modified Files:
bsnes.spec
Added Files:
bsnes-0.064-systemlibs.patch
Log Message:
* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
bsnes-0.064-systemlibs.patch:
Makefile | 14 +++++++-------
fex/Zlib_Inflater.h | 2 +-
fex/blargg_config.h | 6 +-----
snesreader.cpp | 16 +++++++++-------
4 files changed, 18 insertions(+), 20 deletions(-)
--- NEW FILE bsnes-0.064-systemlibs.patch ---
diff -up bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs bsnes-0.064/snesreader/fex/blargg_config.h
--- bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs 2009-10-14 06:03:47.000000000 +0200
+++ bsnes-0.064/snesreader/fex/blargg_config.h 2010-05-19 23:34:40.000000000 +0200
@@ -8,7 +8,7 @@
// Enable RAR archive support. Doing so adds extra licensing restrictions
// to this library (see unrar/readme.txt for more information).
-#define FEX_ENABLE_RAR 1
+#define FEX_ENABLE_RAR 0
// Accept file paths encoded as UTF-8. Currently only affects Windows,
// as Unix/Linux/Mac OS X already use UTF-8 paths.
@@ -18,13 +18,9 @@
//#define BLARGG_BUILD_DLL 1
// Support only the listed archive types. Remove any you don't need.
-/*
#define FEX_TYPE_LIST \
- fex_7z_type,\
fex_gz_type,\
- fex_rar_type,\
fex_zip_type,
-*/
// Use standard config.h if present
#ifdef HAVE_CONFIG_H
diff -up bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs bsnes-0.064/snesreader/fex/Zlib_Inflater.h
--- bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs 2009-10-14 06:03:38.000000000 +0200
+++ bsnes-0.064/snesreader/fex/Zlib_Inflater.h 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@
#include "blargg_common.h"
#include "Data_Reader.h"
-#include "zlib/zlib.h"
+#include <zlib.h>
class Zlib_Inflater {
public:
diff -up bsnes-0.064/snesreader/Makefile.systemlibs bsnes-0.064/snesreader/Makefile
--- bsnes-0.064/snesreader/Makefile.systemlibs 2010-03-24 03:10:26.000000000 +0100
+++ bsnes-0.064/snesreader/Makefile 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@ include nall/qt/Makefile
c := $(compiler) -std=gnu99
cpp := $(subst cc,++,$(compiler)) -std=gnu++0x
flags := -O3 -I. -Iobj -fomit-frame-pointer
-link :=
+link := -lz
ifeq ($(platform),x)
flags := -fPIC $(flags)
@@ -18,17 +18,17 @@ endif
objects := snesreader
# fex
-objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Rar_Extractor Zip7_Extractor Zip_Extractor Zlib_Inflater
+objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Zip_Extractor Zlib_Inflater
# zlib
-objects += adler32 crc32 inffast inflate inftrees zutil
+#objects += adler32 crc32 inffast inflate inftrees zutil
# 7-zip
-objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
+#objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
# unrar
-objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
+#objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
# micro-bunzip
-objects += micro-bunzip
+#objects += micro-bunzip
# jma
-objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
+#objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
compile = \
$(strip \
diff -up bsnes-0.064/snesreader/snesreader.cpp.systemlibs bsnes-0.064/snesreader/snesreader.cpp
--- bsnes-0.064/snesreader/snesreader.cpp.systemlibs 2010-04-13 07:21:07.000000000 +0200
+++ bsnes-0.064/snesreader/snesreader.cpp 2010-05-19 23:34:40.000000000 +0200
@@ -7,8 +7,8 @@
#endif
#include "fex/fex.h"
-#include "libjma/jma.h"
-extern "C" char* uncompressStream(int, int); //micro-bunzip
+//#include "libjma/jma.h"
+//extern "C" char* uncompressStream(int, int); //micro-bunzip
#define QT_CORE_LIB
#include <QtGui>
@@ -18,7 +18,7 @@ extern "C" char* uncompressStream(int, i
using namespace nall;
dllexport const char* snesreader_supported() {
- return "*.zip *.z *.7z *.rar *.gz *.bz2 *.jma";
+ return "*.zip *.z *.gz";
}
void snesreader_apply_ips(const char *filename, uint8_t *&data, unsigned &size) {
@@ -147,6 +147,7 @@ bool snesreader_load_fex(string &filenam
return false;
}
+#if 0
bool snesreader_load_bz2(const char *filename, uint8_t *&data, unsigned &size) {
//TODO: need a way to get the size of a bzip2 file, so we can pre-allocate
//a buffer to decompress into memory. for now, use a temporary file.
@@ -191,6 +192,7 @@ bool snesreader_load_jma(const char *fil
return false;
}
}
+#endif
dllexport bool snesreader_load(string &filename, uint8_t *&data, unsigned &size) {
if(file::exists(filename) == false) return false;
@@ -198,15 +200,15 @@ dllexport bool snesreader_load(string &f
bool success = false;
if(striend(filename, ".zip")
|| striend(filename, ".z")
- || striend(filename, ".7z")
- || striend(filename, ".rar")
+ /*|| striend(filename, ".7z")
+ || striend(filename, ".rar")*/
|| striend(filename, ".gz")) {
success = snesreader_load_fex(filename, data, size);
- } else if(striend(filename, ".bz2")) {
+ } /*else if(striend(filename, ".bz2")) {
success = snesreader_load_bz2(filename, data, size);
} else if(striend(filename, ".jma")) {
success = snesreader_load_jma(filename, data, size);
- } else {
+ }*/ else {
success = snesreader_load_normal(filename, data, size);
}
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-11/bsnes.spec,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- bsnes.spec 25 Apr 2010 10:09:40 -0000 1.30
+++ bsnes.spec 19 May 2010 22:05:30 -0000 1.31
@@ -1,10 +1,8 @@
-%bcond_with snesreader
-
%global vernumber 064
Name: bsnes
Version: 0.%{vernumber}
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: SNES emulator focused on accuracy
Group: Applications/Emulators
@@ -16,6 +14,7 @@
Source2: README.bsnes
Patch1: bsnes-0.064-newppcelf.patch
Patch2: bsnes-0.064-noppcelfppc64.patch
+Patch3: bsnes-0.064-systemlibs.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
#bsnes does not use system snes_ntsc because the modified video processing
@@ -47,7 +46,6 @@
%description snesfilter
This subpackage contains various video filters for bsnes.
-%if %{with snesreader}
%package snesreader
Summary: Compressed ROM images support for %{name}
Group: Applications/Emulators
@@ -56,7 +54,6 @@
%description snesreader
This subpackage enables support for various compressed images, like .zip, .7z,
.rar and others.
-%endif
%package supergameboy
Summary: Super Game Boy emulation for %{name}
@@ -71,6 +68,7 @@
%setup -qc
%patch1 -p1 -b .newppcelf
%patch2 -p1 -b .noppcelfppc64
+%patch3 -p1 -b .systemlibs
#fix permissions
find . -type f -not -name \*.sh -exec chmod 644 {} \;
@@ -96,16 +94,12 @@
#pulseaudio on fedora 11 is too old
%if 0%{?fedora} < 12
-sed -i "s(a)audio.pulseaudio @@" src/ui_qt/Makefile
+sed -i "s(a)audio.pulseaudio @@" src/Makefile
%endif
%build
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
make %{?_smp_mflags} moc=moc-qt4
@@ -126,11 +120,7 @@
popd
install -d $RPM_BUILD_ROOT%{_libdir}
install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
install -pm 755 lib$sourcedir.so $RPM_BUILD_ROOT%{_libdir}/lib$sourcedir.so
@@ -173,11 +163,9 @@
%defattr(-,root,root,-)
%{_libdir}/libsnesfilter.so
-%if %{with snesreader}
%files snesreader
%defattr(-,root,root,-)
%{_libdir}/libsnesreader.so
-%endif
%files supergameboy
%defattr(-,root,root,-)
@@ -185,11 +173,13 @@
%changelog
+* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
+- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
+
* Sat Apr 17 2010 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.064-1
- Updated to 0.064
- Rediffed the patches
- Dropped pixelshaders subpackage since upstream did not ship it
-- Applied the F-11 fix to the correct Makefile
* Sun Mar 28 2010 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.063-1
- Updated to 0.063
14 years, 7 months
rpms/bsnes/F-12 bsnes-0.064-systemlibs.patch, NONE, 1.1 bsnes.spec, 1.30, 1.31
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/F-12
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4723
Modified Files:
bsnes.spec
Added Files:
bsnes-0.064-systemlibs.patch
Log Message:
* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
bsnes-0.064-systemlibs.patch:
Makefile | 14 +++++++-------
fex/Zlib_Inflater.h | 2 +-
fex/blargg_config.h | 6 +-----
snesreader.cpp | 16 +++++++++-------
4 files changed, 18 insertions(+), 20 deletions(-)
--- NEW FILE bsnes-0.064-systemlibs.patch ---
diff -up bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs bsnes-0.064/snesreader/fex/blargg_config.h
--- bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs 2009-10-14 06:03:47.000000000 +0200
+++ bsnes-0.064/snesreader/fex/blargg_config.h 2010-05-19 23:34:40.000000000 +0200
@@ -8,7 +8,7 @@
// Enable RAR archive support. Doing so adds extra licensing restrictions
// to this library (see unrar/readme.txt for more information).
-#define FEX_ENABLE_RAR 1
+#define FEX_ENABLE_RAR 0
// Accept file paths encoded as UTF-8. Currently only affects Windows,
// as Unix/Linux/Mac OS X already use UTF-8 paths.
@@ -18,13 +18,9 @@
//#define BLARGG_BUILD_DLL 1
// Support only the listed archive types. Remove any you don't need.
-/*
#define FEX_TYPE_LIST \
- fex_7z_type,\
fex_gz_type,\
- fex_rar_type,\
fex_zip_type,
-*/
// Use standard config.h if present
#ifdef HAVE_CONFIG_H
diff -up bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs bsnes-0.064/snesreader/fex/Zlib_Inflater.h
--- bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs 2009-10-14 06:03:38.000000000 +0200
+++ bsnes-0.064/snesreader/fex/Zlib_Inflater.h 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@
#include "blargg_common.h"
#include "Data_Reader.h"
-#include "zlib/zlib.h"
+#include <zlib.h>
class Zlib_Inflater {
public:
diff -up bsnes-0.064/snesreader/Makefile.systemlibs bsnes-0.064/snesreader/Makefile
--- bsnes-0.064/snesreader/Makefile.systemlibs 2010-03-24 03:10:26.000000000 +0100
+++ bsnes-0.064/snesreader/Makefile 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@ include nall/qt/Makefile
c := $(compiler) -std=gnu99
cpp := $(subst cc,++,$(compiler)) -std=gnu++0x
flags := -O3 -I. -Iobj -fomit-frame-pointer
-link :=
+link := -lz
ifeq ($(platform),x)
flags := -fPIC $(flags)
@@ -18,17 +18,17 @@ endif
objects := snesreader
# fex
-objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Rar_Extractor Zip7_Extractor Zip_Extractor Zlib_Inflater
+objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Zip_Extractor Zlib_Inflater
# zlib
-objects += adler32 crc32 inffast inflate inftrees zutil
+#objects += adler32 crc32 inffast inflate inftrees zutil
# 7-zip
-objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
+#objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
# unrar
-objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
+#objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
# micro-bunzip
-objects += micro-bunzip
+#objects += micro-bunzip
# jma
-objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
+#objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
compile = \
$(strip \
diff -up bsnes-0.064/snesreader/snesreader.cpp.systemlibs bsnes-0.064/snesreader/snesreader.cpp
--- bsnes-0.064/snesreader/snesreader.cpp.systemlibs 2010-04-13 07:21:07.000000000 +0200
+++ bsnes-0.064/snesreader/snesreader.cpp 2010-05-19 23:34:40.000000000 +0200
@@ -7,8 +7,8 @@
#endif
#include "fex/fex.h"
-#include "libjma/jma.h"
-extern "C" char* uncompressStream(int, int); //micro-bunzip
+//#include "libjma/jma.h"
+//extern "C" char* uncompressStream(int, int); //micro-bunzip
#define QT_CORE_LIB
#include <QtGui>
@@ -18,7 +18,7 @@ extern "C" char* uncompressStream(int, i
using namespace nall;
dllexport const char* snesreader_supported() {
- return "*.zip *.z *.7z *.rar *.gz *.bz2 *.jma";
+ return "*.zip *.z *.gz";
}
void snesreader_apply_ips(const char *filename, uint8_t *&data, unsigned &size) {
@@ -147,6 +147,7 @@ bool snesreader_load_fex(string &filenam
return false;
}
+#if 0
bool snesreader_load_bz2(const char *filename, uint8_t *&data, unsigned &size) {
//TODO: need a way to get the size of a bzip2 file, so we can pre-allocate
//a buffer to decompress into memory. for now, use a temporary file.
@@ -191,6 +192,7 @@ bool snesreader_load_jma(const char *fil
return false;
}
}
+#endif
dllexport bool snesreader_load(string &filename, uint8_t *&data, unsigned &size) {
if(file::exists(filename) == false) return false;
@@ -198,15 +200,15 @@ dllexport bool snesreader_load(string &f
bool success = false;
if(striend(filename, ".zip")
|| striend(filename, ".z")
- || striend(filename, ".7z")
- || striend(filename, ".rar")
+ /*|| striend(filename, ".7z")
+ || striend(filename, ".rar")*/
|| striend(filename, ".gz")) {
success = snesreader_load_fex(filename, data, size);
- } else if(striend(filename, ".bz2")) {
+ } /*else if(striend(filename, ".bz2")) {
success = snesreader_load_bz2(filename, data, size);
} else if(striend(filename, ".jma")) {
success = snesreader_load_jma(filename, data, size);
- } else {
+ }*/ else {
success = snesreader_load_normal(filename, data, size);
}
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-12/bsnes.spec,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- bsnes.spec 25 Apr 2010 09:36:09 -0000 1.30
+++ bsnes.spec 19 May 2010 22:05:21 -0000 1.31
@@ -1,10 +1,8 @@
-%bcond_with snesreader
-
%global vernumber 064
Name: bsnes
Version: 0.%{vernumber}
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: SNES emulator focused on accuracy
Group: Applications/Emulators
@@ -16,6 +14,7 @@
Source2: README.bsnes
Patch1: bsnes-0.064-newppcelf.patch
Patch2: bsnes-0.064-noppcelfppc64.patch
+Patch3: bsnes-0.064-systemlibs.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
#bsnes does not use system snes_ntsc because the modified video processing
@@ -47,7 +46,6 @@
%description snesfilter
This subpackage contains various video filters for bsnes.
-%if %{with snesreader}
%package snesreader
Summary: Compressed ROM images support for %{name}
Group: Applications/Emulators
@@ -56,7 +54,6 @@
%description snesreader
This subpackage enables support for various compressed images, like .zip, .7z,
.rar and others.
-%endif
%package supergameboy
Summary: Super Game Boy emulation for %{name}
@@ -71,6 +68,7 @@
%setup -qc
%patch1 -p1 -b .newppcelf
%patch2 -p1 -b .noppcelfppc64
+%patch3 -p1 -b .systemlibs
#fix permissions
find . -type f -not -name \*.sh -exec chmod 644 {} \;
@@ -101,11 +99,7 @@
%build
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
make %{?_smp_mflags} moc=moc-qt4
@@ -126,11 +120,7 @@
popd
install -d $RPM_BUILD_ROOT%{_libdir}
install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
install -pm 755 lib$sourcedir.so $RPM_BUILD_ROOT%{_libdir}/lib$sourcedir.so
@@ -173,11 +163,9 @@
%defattr(-,root,root,-)
%{_libdir}/libsnesfilter.so
-%if %{with snesreader}
%files snesreader
%defattr(-,root,root,-)
%{_libdir}/libsnesreader.so
-%endif
%files supergameboy
%defattr(-,root,root,-)
@@ -185,6 +173,9 @@
%changelog
+* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
+- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
+
* Sat Apr 17 2010 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.064-1
- Updated to 0.064
- Rediffed the patches
14 years, 7 months
rpms/bsnes/F-13 bsnes-0.064-systemlibs.patch, NONE, 1.1 bsnes.spec, 1.32, 1.33
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4621
Modified Files:
bsnes.spec
Added Files:
bsnes-0.064-systemlibs.patch
Log Message:
* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
bsnes-0.064-systemlibs.patch:
Makefile | 14 +++++++-------
fex/Zlib_Inflater.h | 2 +-
fex/blargg_config.h | 6 +-----
snesreader.cpp | 16 +++++++++-------
4 files changed, 18 insertions(+), 20 deletions(-)
--- NEW FILE bsnes-0.064-systemlibs.patch ---
diff -up bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs bsnes-0.064/snesreader/fex/blargg_config.h
--- bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs 2009-10-14 06:03:47.000000000 +0200
+++ bsnes-0.064/snesreader/fex/blargg_config.h 2010-05-19 23:34:40.000000000 +0200
@@ -8,7 +8,7 @@
// Enable RAR archive support. Doing so adds extra licensing restrictions
// to this library (see unrar/readme.txt for more information).
-#define FEX_ENABLE_RAR 1
+#define FEX_ENABLE_RAR 0
// Accept file paths encoded as UTF-8. Currently only affects Windows,
// as Unix/Linux/Mac OS X already use UTF-8 paths.
@@ -18,13 +18,9 @@
//#define BLARGG_BUILD_DLL 1
// Support only the listed archive types. Remove any you don't need.
-/*
#define FEX_TYPE_LIST \
- fex_7z_type,\
fex_gz_type,\
- fex_rar_type,\
fex_zip_type,
-*/
// Use standard config.h if present
#ifdef HAVE_CONFIG_H
diff -up bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs bsnes-0.064/snesreader/fex/Zlib_Inflater.h
--- bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs 2009-10-14 06:03:38.000000000 +0200
+++ bsnes-0.064/snesreader/fex/Zlib_Inflater.h 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@
#include "blargg_common.h"
#include "Data_Reader.h"
-#include "zlib/zlib.h"
+#include <zlib.h>
class Zlib_Inflater {
public:
diff -up bsnes-0.064/snesreader/Makefile.systemlibs bsnes-0.064/snesreader/Makefile
--- bsnes-0.064/snesreader/Makefile.systemlibs 2010-03-24 03:10:26.000000000 +0100
+++ bsnes-0.064/snesreader/Makefile 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@ include nall/qt/Makefile
c := $(compiler) -std=gnu99
cpp := $(subst cc,++,$(compiler)) -std=gnu++0x
flags := -O3 -I. -Iobj -fomit-frame-pointer
-link :=
+link := -lz
ifeq ($(platform),x)
flags := -fPIC $(flags)
@@ -18,17 +18,17 @@ endif
objects := snesreader
# fex
-objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Rar_Extractor Zip7_Extractor Zip_Extractor Zlib_Inflater
+objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Zip_Extractor Zlib_Inflater
# zlib
-objects += adler32 crc32 inffast inflate inftrees zutil
+#objects += adler32 crc32 inffast inflate inftrees zutil
# 7-zip
-objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
+#objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
# unrar
-objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
+#objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
# micro-bunzip
-objects += micro-bunzip
+#objects += micro-bunzip
# jma
-objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
+#objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
compile = \
$(strip \
diff -up bsnes-0.064/snesreader/snesreader.cpp.systemlibs bsnes-0.064/snesreader/snesreader.cpp
--- bsnes-0.064/snesreader/snesreader.cpp.systemlibs 2010-04-13 07:21:07.000000000 +0200
+++ bsnes-0.064/snesreader/snesreader.cpp 2010-05-19 23:34:40.000000000 +0200
@@ -7,8 +7,8 @@
#endif
#include "fex/fex.h"
-#include "libjma/jma.h"
-extern "C" char* uncompressStream(int, int); //micro-bunzip
+//#include "libjma/jma.h"
+//extern "C" char* uncompressStream(int, int); //micro-bunzip
#define QT_CORE_LIB
#include <QtGui>
@@ -18,7 +18,7 @@ extern "C" char* uncompressStream(int, i
using namespace nall;
dllexport const char* snesreader_supported() {
- return "*.zip *.z *.7z *.rar *.gz *.bz2 *.jma";
+ return "*.zip *.z *.gz";
}
void snesreader_apply_ips(const char *filename, uint8_t *&data, unsigned &size) {
@@ -147,6 +147,7 @@ bool snesreader_load_fex(string &filenam
return false;
}
+#if 0
bool snesreader_load_bz2(const char *filename, uint8_t *&data, unsigned &size) {
//TODO: need a way to get the size of a bzip2 file, so we can pre-allocate
//a buffer to decompress into memory. for now, use a temporary file.
@@ -191,6 +192,7 @@ bool snesreader_load_jma(const char *fil
return false;
}
}
+#endif
dllexport bool snesreader_load(string &filename, uint8_t *&data, unsigned &size) {
if(file::exists(filename) == false) return false;
@@ -198,15 +200,15 @@ dllexport bool snesreader_load(string &f
bool success = false;
if(striend(filename, ".zip")
|| striend(filename, ".z")
- || striend(filename, ".7z")
- || striend(filename, ".rar")
+ /*|| striend(filename, ".7z")
+ || striend(filename, ".rar")*/
|| striend(filename, ".gz")) {
success = snesreader_load_fex(filename, data, size);
- } else if(striend(filename, ".bz2")) {
+ } /*else if(striend(filename, ".bz2")) {
success = snesreader_load_bz2(filename, data, size);
} else if(striend(filename, ".jma")) {
success = snesreader_load_jma(filename, data, size);
- } else {
+ }*/ else {
success = snesreader_load_normal(filename, data, size);
}
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/F-13/bsnes.spec,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- bsnes.spec 25 Apr 2010 09:35:59 -0000 1.32
+++ bsnes.spec 19 May 2010 22:05:10 -0000 1.33
@@ -1,10 +1,8 @@
-%bcond_with snesreader
-
%global vernumber 064
Name: bsnes
Version: 0.%{vernumber}
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: SNES emulator focused on accuracy
Group: Applications/Emulators
@@ -16,6 +14,7 @@
Source2: README.bsnes
Patch1: bsnes-0.064-newppcelf.patch
Patch2: bsnes-0.064-noppcelfppc64.patch
+Patch3: bsnes-0.064-systemlibs.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
#bsnes does not use system snes_ntsc because the modified video processing
@@ -47,7 +46,6 @@
%description snesfilter
This subpackage contains various video filters for bsnes.
-%if %{with snesreader}
%package snesreader
Summary: Compressed ROM images support for %{name}
Group: Applications/Emulators
@@ -56,7 +54,6 @@
%description snesreader
This subpackage enables support for various compressed images, like .zip, .7z,
.rar and others.
-%endif
%package supergameboy
Summary: Super Game Boy emulation for %{name}
@@ -71,6 +68,7 @@
%setup -qc
%patch1 -p1 -b .newppcelf
%patch2 -p1 -b .noppcelfppc64
+%patch3 -p1 -b .systemlibs
#fix permissions
find . -type f -not -name \*.sh -exec chmod 644 {} \;
@@ -101,11 +99,7 @@
%build
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
make %{?_smp_mflags} moc=moc-qt4
@@ -126,11 +120,7 @@
popd
install -d $RPM_BUILD_ROOT%{_libdir}
install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
install -pm 755 lib$sourcedir.so $RPM_BUILD_ROOT%{_libdir}/lib$sourcedir.so
@@ -173,11 +163,9 @@
%defattr(-,root,root,-)
%{_libdir}/libsnesfilter.so
-%if %{with snesreader}
%files snesreader
%defattr(-,root,root,-)
%{_libdir}/libsnesreader.so
-%endif
%files supergameboy
%defattr(-,root,root,-)
@@ -185,6 +173,9 @@
%changelog
+* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
+- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
+
* Sat Apr 17 2010 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.064-1
- Updated to 0.064
- Rediffed the patches
14 years, 7 months
rpms/bsnes/devel bsnes-0.064-systemlibs.patch, NONE, 1.1 bsnes.spec, 1.32, 1.33
by Julian Sikorski
Author: belegdol
Update of /cvs/free/rpms/bsnes/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv4412
Modified Files:
bsnes.spec
Added Files:
bsnes-0.064-systemlibs.patch
Log Message:
* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
bsnes-0.064-systemlibs.patch:
Makefile | 14 +++++++-------
fex/Zlib_Inflater.h | 2 +-
fex/blargg_config.h | 6 +-----
snesreader.cpp | 16 +++++++++-------
4 files changed, 18 insertions(+), 20 deletions(-)
--- NEW FILE bsnes-0.064-systemlibs.patch ---
diff -up bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs bsnes-0.064/snesreader/fex/blargg_config.h
--- bsnes-0.064/snesreader/fex/blargg_config.h.systemlibs 2009-10-14 06:03:47.000000000 +0200
+++ bsnes-0.064/snesreader/fex/blargg_config.h 2010-05-19 23:34:40.000000000 +0200
@@ -8,7 +8,7 @@
// Enable RAR archive support. Doing so adds extra licensing restrictions
// to this library (see unrar/readme.txt for more information).
-#define FEX_ENABLE_RAR 1
+#define FEX_ENABLE_RAR 0
// Accept file paths encoded as UTF-8. Currently only affects Windows,
// as Unix/Linux/Mac OS X already use UTF-8 paths.
@@ -18,13 +18,9 @@
//#define BLARGG_BUILD_DLL 1
// Support only the listed archive types. Remove any you don't need.
-/*
#define FEX_TYPE_LIST \
- fex_7z_type,\
fex_gz_type,\
- fex_rar_type,\
fex_zip_type,
-*/
// Use standard config.h if present
#ifdef HAVE_CONFIG_H
diff -up bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs bsnes-0.064/snesreader/fex/Zlib_Inflater.h
--- bsnes-0.064/snesreader/fex/Zlib_Inflater.h.systemlibs 2009-10-14 06:03:38.000000000 +0200
+++ bsnes-0.064/snesreader/fex/Zlib_Inflater.h 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@
#include "blargg_common.h"
#include "Data_Reader.h"
-#include "zlib/zlib.h"
+#include <zlib.h>
class Zlib_Inflater {
public:
diff -up bsnes-0.064/snesreader/Makefile.systemlibs bsnes-0.064/snesreader/Makefile
--- bsnes-0.064/snesreader/Makefile.systemlibs 2010-03-24 03:10:26.000000000 +0100
+++ bsnes-0.064/snesreader/Makefile 2010-05-19 23:34:40.000000000 +0200
@@ -6,7 +6,7 @@ include nall/qt/Makefile
c := $(compiler) -std=gnu99
cpp := $(subst cc,++,$(compiler)) -std=gnu++0x
flags := -O3 -I. -Iobj -fomit-frame-pointer
-link :=
+link := -lz
ifeq ($(platform),x)
flags := -fPIC $(flags)
@@ -18,17 +18,17 @@ endif
objects := snesreader
# fex
-objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Rar_Extractor Zip7_Extractor Zip_Extractor Zlib_Inflater
+objects += Binary_Extractor blargg_common blargg_errors Data_Reader fex File_Extractor Gzip_Extractor Gzip_Reader Zip_Extractor Zlib_Inflater
# zlib
-objects += adler32 crc32 inffast inflate inftrees zutil
+#objects += adler32 crc32 inffast inflate inftrees zutil
# 7-zip
-objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
+#objects += 7zAlloc 7zBuf 7zCrc 7zDecode 7zExtract 7zHeader 7zIn 7zItem 7zStream Bcj2 Bra86 LzmaDec
# unrar
-objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
+#objects += archive arcread coder crc encname extract getbits model rarvm rarvmtbl rawread suballoc unicode unpack unpack15 unpack20 unrar unrar_misc unrar_open
# micro-bunzip
-objects += micro-bunzip
+#objects += micro-bunzip
# jma
-objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
+#objects += jma jcrc32 lzmadecode 7zlzma iiostrm inbyte lzma winout
compile = \
$(strip \
diff -up bsnes-0.064/snesreader/snesreader.cpp.systemlibs bsnes-0.064/snesreader/snesreader.cpp
--- bsnes-0.064/snesreader/snesreader.cpp.systemlibs 2010-04-13 07:21:07.000000000 +0200
+++ bsnes-0.064/snesreader/snesreader.cpp 2010-05-19 23:34:40.000000000 +0200
@@ -7,8 +7,8 @@
#endif
#include "fex/fex.h"
-#include "libjma/jma.h"
-extern "C" char* uncompressStream(int, int); //micro-bunzip
+//#include "libjma/jma.h"
+//extern "C" char* uncompressStream(int, int); //micro-bunzip
#define QT_CORE_LIB
#include <QtGui>
@@ -18,7 +18,7 @@ extern "C" char* uncompressStream(int, i
using namespace nall;
dllexport const char* snesreader_supported() {
- return "*.zip *.z *.7z *.rar *.gz *.bz2 *.jma";
+ return "*.zip *.z *.gz";
}
void snesreader_apply_ips(const char *filename, uint8_t *&data, unsigned &size) {
@@ -147,6 +147,7 @@ bool snesreader_load_fex(string &filenam
return false;
}
+#if 0
bool snesreader_load_bz2(const char *filename, uint8_t *&data, unsigned &size) {
//TODO: need a way to get the size of a bzip2 file, so we can pre-allocate
//a buffer to decompress into memory. for now, use a temporary file.
@@ -191,6 +192,7 @@ bool snesreader_load_jma(const char *fil
return false;
}
}
+#endif
dllexport bool snesreader_load(string &filename, uint8_t *&data, unsigned &size) {
if(file::exists(filename) == false) return false;
@@ -198,15 +200,15 @@ dllexport bool snesreader_load(string &f
bool success = false;
if(striend(filename, ".zip")
|| striend(filename, ".z")
- || striend(filename, ".7z")
- || striend(filename, ".rar")
+ /*|| striend(filename, ".7z")
+ || striend(filename, ".rar")*/
|| striend(filename, ".gz")) {
success = snesreader_load_fex(filename, data, size);
- } else if(striend(filename, ".bz2")) {
+ } /*else if(striend(filename, ".bz2")) {
success = snesreader_load_bz2(filename, data, size);
} else if(striend(filename, ".jma")) {
success = snesreader_load_jma(filename, data, size);
- } else {
+ }*/ else {
success = snesreader_load_normal(filename, data, size);
}
Index: bsnes.spec
===================================================================
RCS file: /cvs/free/rpms/bsnes/devel/bsnes.spec,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- bsnes.spec 25 Apr 2010 09:35:50 -0000 1.32
+++ bsnes.spec 19 May 2010 22:05:01 -0000 1.33
@@ -1,10 +1,8 @@
-%bcond_with snesreader
-
%global vernumber 064
Name: bsnes
Version: 0.%{vernumber}
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: SNES emulator focused on accuracy
Group: Applications/Emulators
@@ -16,6 +14,7 @@
Source2: README.bsnes
Patch1: bsnes-0.064-newppcelf.patch
Patch2: bsnes-0.064-noppcelfppc64.patch
+Patch3: bsnes-0.064-systemlibs.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
#bsnes does not use system snes_ntsc because the modified video processing
@@ -47,7 +46,6 @@
%description snesfilter
This subpackage contains various video filters for bsnes.
-%if %{with snesreader}
%package snesreader
Summary: Compressed ROM images support for %{name}
Group: Applications/Emulators
@@ -56,7 +54,6 @@
%description snesreader
This subpackage enables support for various compressed images, like .zip, .7z,
.rar and others.
-%endif
%package supergameboy
Summary: Super Game Boy emulation for %{name}
@@ -71,6 +68,7 @@
%setup -qc
%patch1 -p1 -b .newppcelf
%patch2 -p1 -b .noppcelfppc64
+%patch3 -p1 -b .systemlibs
#fix permissions
find . -type f -not -name \*.sh -exec chmod 644 {} \;
@@ -101,11 +99,7 @@
%build
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
make %{?_smp_mflags} moc=moc-qt4
@@ -126,11 +120,7 @@
popd
install -d $RPM_BUILD_ROOT%{_libdir}
install -d $RPM_BUILD_ROOT%{_datadir}/%{name}
-%if %{with snesreader}
for sourcedir in snesfilter snesreader supergameboy
-%else
-for sourcedir in snesfilter supergameboy
-%endif
do
pushd $sourcedir
install -pm 755 lib$sourcedir.so $RPM_BUILD_ROOT%{_libdir}/lib$sourcedir.so
@@ -173,11 +163,9 @@
%defattr(-,root,root,-)
%{_libdir}/libsnesfilter.so
-%if %{with snesreader}
%files snesreader
%defattr(-,root,root,-)
%{_libdir}/libsnesreader.so
-%endif
%files supergameboy
%defattr(-,root,root,-)
@@ -185,6 +173,9 @@
%changelog
+* Wed May 19 2010 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.064-2
+- Enabled snesreader unconditionally (#1214). Credit goes to Chris Moeller.
+
* Sat Apr 17 2010 Julian Sikorski <belegdol[at]gmail[dot]com> - 0.064-1
- Updated to 0.064
- Rediffed the patches
14 years, 7 months
rpms/dvdstyler/F-12 .cvsignore, 1.7, 1.8 dvdstyler.spec, 1.11, 1.12 sources, 1.8, 1.9 dvdstyler-1.7.4-autoconf.patch, 1.1, NONE
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/dvdstyler/F-12
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26475/F-12
Modified Files:
.cvsignore dvdstyler.spec sources
Removed Files:
dvdstyler-1.7.4-autoconf.patch
Log Message:
* Wed May 19 2010 Stewart Adam <s.adam at diffingo.com> - 1:1.8.0.3-1
- Update to 1.8.0.3
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-12/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore 24 Oct 2009 04:53:15 -0000 1.7
+++ .cvsignore 19 May 2010 19:47:27 -0000 1.8
@@ -1 +1 @@
-DVDStyler-1.7.4.tar.bz2
+DVDStyler-1.8.0.3.tar.bz2
Index: dvdstyler.spec
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-12/dvdstyler.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- dvdstyler.spec 24 Oct 2009 04:53:15 -0000 1.11
+++ dvdstyler.spec 19 May 2010 19:47:27 -0000 1.12
@@ -1,6 +1,6 @@
Name: dvdstyler
Epoch: 1
-Version: 1.7.4
+Version: 1.8.0.3
Release: 1%{?dist}
Summary: Cross-platform DVD authoring application
@@ -9,9 +9,6 @@
URL: http://www.dvdstyler.de/
Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}.tar.bz2
Patch0: dvdstyler-make-desktopfile-valid.patch
-# Patch from http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/media-video/dv...
-# Fixes translation compile issue
-Patch1: dvdstyler-1.7.4-autoconf.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# build
BuildRequires: automake, autoconf, gettext
@@ -55,7 +52,6 @@
%prep
%setup -q -n DVDStyler-%{version}
%patch0 -b .validdesktop
-%patch1 -p0 -b .autoconf
%{__sed} -i 's|_T("xine \\"dvd:/$DIR\\"");|_T("totem \\"dvd://$DIR\\"");|' src/Config.h
%build
@@ -95,6 +91,9 @@
%{_mandir}/*/*.gz
%changelog
+* Wed May 19 2010 Stewart Adam <s.adam at diffingo.com> - 1:1.8.0.3-1
+- Update to 1.8.0.3
+
* Sat Oct 24 2009 Stewart Adam <s.adam at diffingo.com> - 1:1.7.4-1
- Update to 1.7.4
Index: sources
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-12/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 24 Oct 2009 04:53:15 -0000 1.8
+++ sources 19 May 2010 19:47:27 -0000 1.9
@@ -1 +1 @@
-874972691bd342caf6b1415625816d1d DVDStyler-1.7.4.tar.bz2
+4663f7036b0256d28ed745ed95e9736a DVDStyler-1.8.0.3.tar.bz2
--- dvdstyler-1.7.4-autoconf.patch DELETED ---
14 years, 7 months
rpms/dvdstyler/F-11 .cvsignore, 1.6, 1.7 dvdstyler.spec, 1.9, 1.10 sources, 1.7, 1.8
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/dvdstyler/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26475/F-11
Modified Files:
.cvsignore dvdstyler.spec sources
Log Message:
* Wed May 19 2010 Stewart Adam <s.adam at diffingo.com> - 1:1.8.0.3-1
- Update to 1.8.0.3
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-11/.cvsignore,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- .cvsignore 19 Jun 2009 20:08:04 -0000 1.6
+++ .cvsignore 19 May 2010 19:47:26 -0000 1.7
@@ -1 +1 @@
-DVDStyler-1.7.3b3_1.tar.bz2
+DVDStyler-1.8.0.3.tar.bz2
Index: dvdstyler.spec
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-11/dvdstyler.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dvdstyler.spec 19 Jun 2009 20:08:04 -0000 1.9
+++ dvdstyler.spec 19 May 2010 19:47:26 -0000 1.10
@@ -1,13 +1,13 @@
Name: dvdstyler
Epoch: 1
-Version: 1.7.3
-Release: 0.1.beta3%{?dist}
+Version: 1.8.0.3
+Release: 1%{?dist}
Summary: Cross-platform DVD authoring application
Group: Applications/Multimedia
License: GPLv2+
URL: http://www.dvdstyler.de/
-Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}b3_1.tar.bz2
+Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}.tar.bz2
Patch0: dvdstyler-make-desktopfile-valid.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# build
@@ -50,14 +50,16 @@
%prep
-%setup -q -n DVDStyler-%{version}b3_1
+%setup -q -n DVDStyler-%{version}
%patch0 -b .validdesktop
%{__sed} -i 's|_T("xine \\"dvd:/$DIR\\"");|_T("totem \\"dvd://$DIR\\"");|' src/Config.h
%build
-./autogen.sh
+#./autogen.sh
%configure \
--disable-dependency-tracking
+# docs folder is not smp_mflags safe
+make -C docs
make %{?_smp_mflags}
@@ -89,6 +91,9 @@
%{_mandir}/*/*.gz
%changelog
+* Wed May 19 2010 Stewart Adam <s.adam at diffingo.com> - 1:1.8.0.3-1
+- Update to 1.8.0.3
+
* Fri Jun 19 2009 Stewart Adam <s.adam at diffingo.com> - 1:1.7.3-0.1.beta3
- Update to 1.7.3 beta3
- Remove gcc44 patch
Index: sources
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-11/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 19 Jun 2009 20:08:04 -0000 1.7
+++ sources 19 May 2010 19:47:27 -0000 1.8
@@ -1 +1 @@
-1169a01857ba35e1aac62dae9975ca35 DVDStyler-1.7.3b3_1.tar.bz2
+4663f7036b0256d28ed745ed95e9736a DVDStyler-1.8.0.3.tar.bz2
14 years, 7 months
rpms/wxsvg/F-11 .cvsignore,1.3,1.4 sources,1.3,1.4
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/wxsvg/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26427/F-11
Modified Files:
.cvsignore sources
Log Message:
Oops, need to commit sources and cvsignore too...
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/wxsvg/F-11/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 18 Jan 2010 21:12:59 -0000 1.3
+++ .cvsignore 19 May 2010 19:47:20 -0000 1.4
@@ -1 +1 @@
-wxsvg-1.0.2_1.tar.bz2
+wxsvg-1.0.4.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/wxsvg/F-11/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 18 Jan 2010 21:12:59 -0000 1.3
+++ sources 19 May 2010 19:47:20 -0000 1.4
@@ -1 +1 @@
-84122c8782bc5c2a3006501b2e76be12 wxsvg-1.0.2_1.tar.bz2
+24714f1bd0735b7b2ad43367d5d944c2 wxsvg-1.0.4.tar.bz2
14 years, 7 months
rpms/dvdstyler/F-13 .cvsignore, 1.7, 1.8 dvdstyler.spec, 1.11, 1.12 sources, 1.8, 1.9 dvdstyler-1.7.4-autoconf.patch, 1.1, NONE
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/dvdstyler/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26475/F-13
Modified Files:
.cvsignore dvdstyler.spec sources
Removed Files:
dvdstyler-1.7.4-autoconf.patch
Log Message:
* Wed May 19 2010 Stewart Adam <s.adam at diffingo.com> - 1:1.8.0.3-1
- Update to 1.8.0.3
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-13/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore 24 Oct 2009 04:53:15 -0000 1.7
+++ .cvsignore 19 May 2010 19:47:28 -0000 1.8
@@ -1 +1 @@
-DVDStyler-1.7.4.tar.bz2
+DVDStyler-1.8.0.3.tar.bz2
Index: dvdstyler.spec
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-13/dvdstyler.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- dvdstyler.spec 24 Oct 2009 04:53:15 -0000 1.11
+++ dvdstyler.spec 19 May 2010 19:47:28 -0000 1.12
@@ -1,6 +1,6 @@
Name: dvdstyler
Epoch: 1
-Version: 1.7.4
+Version: 1.8.0.3
Release: 1%{?dist}
Summary: Cross-platform DVD authoring application
@@ -9,9 +9,6 @@
URL: http://www.dvdstyler.de/
Source0: http://downloads.sourceforge.net/dvdstyler/DVDStyler-%{version}.tar.bz2
Patch0: dvdstyler-make-desktopfile-valid.patch
-# Patch from http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/media-video/dv...
-# Fixes translation compile issue
-Patch1: dvdstyler-1.7.4-autoconf.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# build
BuildRequires: automake, autoconf, gettext
@@ -55,7 +52,6 @@
%prep
%setup -q -n DVDStyler-%{version}
%patch0 -b .validdesktop
-%patch1 -p0 -b .autoconf
%{__sed} -i 's|_T("xine \\"dvd:/$DIR\\"");|_T("totem \\"dvd://$DIR\\"");|' src/Config.h
%build
@@ -95,6 +91,9 @@
%{_mandir}/*/*.gz
%changelog
+* Wed May 19 2010 Stewart Adam <s.adam at diffingo.com> - 1:1.8.0.3-1
+- Update to 1.8.0.3
+
* Sat Oct 24 2009 Stewart Adam <s.adam at diffingo.com> - 1:1.7.4-1
- Update to 1.7.4
Index: sources
===================================================================
RCS file: /cvs/free/rpms/dvdstyler/F-13/sources,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- sources 24 Oct 2009 04:53:15 -0000 1.8
+++ sources 19 May 2010 19:47:28 -0000 1.9
@@ -1 +1 @@
-874972691bd342caf6b1415625816d1d DVDStyler-1.7.4.tar.bz2
+4663f7036b0256d28ed745ed95e9736a DVDStyler-1.8.0.3.tar.bz2
--- dvdstyler-1.7.4-autoconf.patch DELETED ---
14 years, 7 months
rpms/wxsvg/F-13 .cvsignore,1.3,1.4 sources,1.3,1.4
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/wxsvg/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26427/F-13
Modified Files:
.cvsignore sources
Log Message:
Oops, need to commit sources and cvsignore too...
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/wxsvg/F-13/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 18 Jan 2010 21:12:59 -0000 1.3
+++ .cvsignore 19 May 2010 19:47:20 -0000 1.4
@@ -1 +1 @@
-wxsvg-1.0.2_1.tar.bz2
+wxsvg-1.0.4.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/wxsvg/F-13/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 18 Jan 2010 21:12:59 -0000 1.3
+++ sources 19 May 2010 19:47:20 -0000 1.4
@@ -1 +1 @@
-84122c8782bc5c2a3006501b2e76be12 wxsvg-1.0.2_1.tar.bz2
+24714f1bd0735b7b2ad43367d5d944c2 wxsvg-1.0.4.tar.bz2
14 years, 7 months