rpms/dolphin-emu/F-19 dolphin-emu-4.0-clrun.patch, NONE, 1.1 dolphin-emu-4.0-compat-SFML16.patch, NONE, 1.1 dolphin-emu-4.0-gtk3.patch, NONE, 1.1 dolphin-emu.1, NONE, 1.1 .cvsignore, 1.3, 1.4 dolphin-emu.spec, 1.6, 1.7 sources, 1.3, 1.4 dolphin-emu-3.5-clrun.patch, 1.1, NONE dolphin-emu-3.5-wx28.patch, 1.1, NONE
by Jeremy Newton
Author: jem256
Update of /cvs/nonfree/rpms/dolphin-emu/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24310/F-19
Modified Files:
.cvsignore dolphin-emu.spec sources
Added Files:
dolphin-emu-4.0-clrun.patch
dolphin-emu-4.0-compat-SFML16.patch dolphin-emu-4.0-gtk3.patch
dolphin-emu.1
Removed Files:
dolphin-emu-3.5-clrun.patch dolphin-emu-3.5-wx28.patch
Log Message:
Update to 4.0
dolphin-emu-4.0-clrun.patch:
CMakeLists.txt | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
--- NEW FILE dolphin-emu-4.0-clrun.patch ---
diff -rupN dolphin-emu-3.5.orig/CMakeLists.txt dolphin-emu-3.5/CMakeLists.txt
--- dolphin-emu-3.5.orig/CMakeLists.txt 2013-02-19 18:38:35.000000000 -0500
+++ dolphin-emu-3.5/CMakeLists.txt 2013-02-20 14:04:51.356373309 -0500
@@ -663,10 +663,21 @@
add_subdirectory(Externals/libiconv-1.14)
endif()
-if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT ANDROID)
- find_library(CL OpenCL)
- set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-weak_framework,OpenCL")
-else()
+if(UNIX)
+ if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin" AND NOT ANDROID) #If OSX
+ find_library(CL OpenCL)
+ set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-weak_framework,OpenCL")
+ else() #If Unix-like/Linux
+ option(USE_EXTERNAL_CLRUN "Enables use of an externel CLRun library (CLRUN_INCLUDE_PATH needs to be defined)" OFF)
+ if(USE_EXTERNAL_CLRUN)
+ find_library(CL clrun)
+ include_directories("${CLRUN_INCLUDE_PATH}")
+ else(USE_EXTERNAL_CLRUN)
+ include_directories(Externals/CLRun/include)
+ add_subdirectory(Externals/CLRun)
+ endif(USE_EXTERNAL_CLRUN)
+ endif()
+else() #If Windows
include_directories(Externals/CLRun/include)
add_subdirectory(Externals/CLRun)
endif()
dolphin-emu-4.0-compat-SFML16.patch:
CMakeLists.txt | 1 +
CMakeTests/FindSFML.cmake | 6 +++---
Source/Core/Core/CMakeLists.txt | 2 +-
Source/Core/DolphinWX/CMakeLists.txt | 2 +-
4 files changed, 6 insertions(+), 5 deletions(-)
--- NEW FILE dolphin-emu-4.0-compat-SFML16.patch ---
diff -up dolphin-emu-3.5/CMakeTests/FindSFML.cmake~ dolphin-emu-3.5/CMakeTests/FindSFML.cmake
--- dolphin-emu-3.5/CMakeTests/FindSFML.cmake~ 2013-02-20 00:38:34.000000000 +0100
+++ dolphin-emu-3.5/CMakeTests/FindSFML.cmake 2013-11-18 11:57:56.150949832 +0100
@@ -24,7 +24,7 @@ endif()
# find the SFML include directory
find_path(SFML_INCLUDE_DIR SFML/Config.hpp
- PATH_SUFFIXES include
+ PATH_SUFFIXES include/sfml1
PATHS
~/Library/Frameworks
/Library/Frameworks
@@ -87,11 +87,11 @@ set(FIND_SFML_LIB_PATHS ~/Library/Framew
foreach(FIND_SFML_COMPONENT ${SFML_FIND_COMPONENTS})
string(TOLOWER ${FIND_SFML_COMPONENT} FIND_SFML_COMPONENT_LOWER)
string(TOUPPER ${FIND_SFML_COMPONENT} FIND_SFML_COMPONENT_UPPER)
- set(FIND_SFML_COMPONENT_NAME sfml-${FIND_SFML_COMPONENT_LOWER}${FIND_SFML_LIB_SUFFIX})
+ set(FIND_SFML_COMPONENT_NAME sfml-${FIND_SFML_COMPONENT_LOWER}${FIND_SFML_LIB_SUFFIX}-1.6)
# no suffix for sfml-main, it is always a static library
if(FIND_SFML_COMPONENT_LOWER STREQUAL "main")
- set(FIND_SFML_COMPONENT_NAME sfml-${FIND_SFML_COMPONENT_LOWER})
+ set(FIND_SFML_COMPONENT_NAME sfml-${FIND_SFML_COMPONENT_LOWER}-1.6)
endif()
# debug library
diff -up dolphin-emu-3.5/CMakeLists.txt~ dolphin-emu-3.5/CMakeLists.txt
--- dolphin-emu-3.5/CMakeLists.txt~ 2013-11-18 11:58:43.000000000 +0100
+++ dolphin-emu-3.5/CMakeLists.txt 2013-11-18 12:00:41.120408310 +0100
@@ -581,6 +581,7 @@ if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Dar
endif()
if(SFML_FOUND AND NOT SFML_VERSION_MAJOR) # SFML 1.x doesn't define SFML_VERSION_MAJOR
message("Using shared SFML")
+ include_directories( /usr/include/sfml1 )
else()
message("Using static SFML ${SFML_FIND_VERSION_MAJOR}.${SFML_FIND_VERSION_MINOR} from Externals")
add_subdirectory(Externals/SFML)
diff -up dolphin-emu-3.5/Source/Core/Core/CMakeLists.txt~ dolphin-emu-3.5/Source/Core/Core/CMakeLists.txt
--- dolphin-emu-3.5/Source/Core/Core/CMakeLists.txt~ 2013-02-20 00:38:35.000000000 +0100
+++ dolphin-emu-3.5/Source/Core/Core/CMakeLists.txt 2013-11-18 12:14:15.844970552 +0100
@@ -220,7 +220,7 @@ set(SRCS Src/ActionReplay.cpp
Src/PowerPC/JitArm32/JitArm_LoadStoreFloating.cpp)
endif()
-set(LIBS bdisasm inputcommon videosoftware sfml-network)
+set(LIBS bdisasm inputcommon videosoftware sfml-network-1.6)
if(NOT USE_GLES OR USE_GLES3)
set(LIBS ${LIBS} videoogl)
diff -up dolphin-emu-3.5/Source/Core/DolphinWX/CMakeLists.txt~ dolphin-emu-3.5/Source/Core/DolphinWX/CMakeLists.txt
--- dolphin-emu-3.5/Source/Core/DolphinWX/CMakeLists.txt~ 2013-02-20 00:38:35.000000000 +0100
+++ dolphin-emu-3.5/Source/Core/DolphinWX/CMakeLists.txt 2013-11-18 12:14:11.445091807 +0100
@@ -10,7 +10,7 @@ set(LIBS core
common
audiocommon
z
- sfml-network
+ sfml-network-1.6
${GTK2_LIBRARIES})
if(NOT ANDROID)
dolphin-emu-4.0-gtk3.patch:
CMakeLists.txt | 10 ++++------
Source/Core/DolphinWX/CMakeLists.txt | 2 +-
2 files changed, 5 insertions(+), 7 deletions(-)
--- NEW FILE dolphin-emu-4.0-gtk3.patch ---
diff -rupN dolphin-emu-2879cbd2b564-orig/CMakeLists.txt dolphin-emu-2879cbd2b564/CMakeLists.txt
--- dolphin-emu-2879cbd2b564-orig/CMakeLists.txt 2014-03-07 20:10:55.185158971 -0500
+++ dolphin-emu-2879cbd2b564/CMakeLists.txt 2014-03-07 20:16:00.388691555 -0500
@@ -707,13 +707,11 @@ if(NOT DISABLE_WX AND NOT ANDROID)
OUTPUT_VARIABLE DIST_NAME
ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
if(${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}
- VERSION_EQUAL 2.8.2 OR "${DIST_NAME}" STREQUAL "natty")
- check_lib(GTK2 gtk+-2.0 gtk.h REQUIRED)
+ VERSION_EQUAL 2.8.12 OR "${DIST_NAME}" STREQUAL "natty")
+ check_lib(GTK3 gtk+-3.0 gtk.h REQUIRED)
else()
- include(FindGTK2)
- if(GTK2_FOUND)
- include_directories(${GTK2_INCLUDE_DIRS})
- endif()
+ include(FindGTK)
+ include_directories(${GTK3_INCLUDE_DIRS})
endif()
endif()
diff -rupN dolphin-emu-2879cbd2b564-orig/Source/Core/DolphinWX/CMakeLists.txt dolphin-emu-2879cbd2b564/Source/Core/DolphinWX/CMakeLists.txt
--- dolphin-emu-2879cbd2b564-orig/Source/Core/DolphinWX/CMakeLists.txt 2014-03-07 20:10:55.186158963 -0500
+++ dolphin-emu-2879cbd2b564/Source/Core/DolphinWX/CMakeLists.txt 2014-03-07 20:18:55.977272101 -0500
@@ -11,7 +11,7 @@ set(LIBS core
audiocommon
z
sfml-network-1.6
- ${GTK2_LIBRARIES})
+ ${GTK3_LIBRARIES})
if(NOT ANDROID)
if(USE_X11)
--- NEW FILE dolphin-emu.1 ---
.TH DOLPHIN-EMU 1 "December 10, 2010"
.SH NAME
dolphin-emu \- A Gamecube, Wii and Triforce (the arcade machine based on the
Gamecube) emulator.
.SH SYNOPSIS
.B dolphin-emu
.RI [ options ]
.SH DESCRIPTION
.B dolphin-emu
is a Gamecube, Wii and Triforce (the arcade machine based on the
Gamecube) emulator.
.P
Gamecube compatibility is okay - lots of games work, many games don't work.
.P
Wii compatibility is also good - a lot of games do work. Wii emulation
generally requires a bit more computing power than Gamecube emulation, though.
.P
Triforce compatibility is not really known yet, but at least one game runs,
with minor glitches.
.SH OPTIONS
.TP
.BI "\-A, \-\-audio-plugin="plugin
Specify an audio plugin
.TP
.B \-b, \-\-batch
Exit application when emulator closes
.TP
.B \-d, \-\-debugger
Open the debugger
.TP
.BI "\-e, \-\-exec="file
Loads the specified file (DOL, ELF, WAD, GCM, ISO)
.TP
.B \-l, \-\-logger
Open the logger
.TP
.BI "\-V, \-\-video-plugin="plugin
Specify a video plugin
.SH AUTHOR
This manual page was written by Glenn Rice <glennricster(a)gmail.com>,
for the Debian system (but may be used by others).
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/dolphin-emu/F-19/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 23 Feb 2013 16:53:32 -0000 1.3
+++ .cvsignore 2 Oct 2014 14:31:31 -0000 1.4
@@ -1,2 +1 @@
-dolphin-emu-3.5.tar.xz
-dolphin-emu-extra.tar.xz
+dolphin-emu-2879cbd2b564.zip
Index: dolphin-emu.spec
===================================================================
RCS file: /cvs/nonfree/rpms/dolphin-emu/F-19/dolphin-emu.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dolphin-emu.spec 27 Jul 2013 14:18:47 -0000 1.6
+++ dolphin-emu.spec 2 Oct 2014 14:31:32 -0000 1.7
@@ -1,27 +1,20 @@
Name: dolphin-emu
-Version: 3.5
-Release: 4%{?dist}
+Version: 4.0
+Release: 2%{?dist}
Summary: Gamecube / Wii / Triforce Emulator
-Url: http://www.dolphin-emulator.com/
-#A license breakdown is included in copyright from Source1
-License: GPLv2 and BSD and OpenSSL and Public Domain
-##Source can be grabbed using the script in Source1:
-#get-source-from-git.sh
-Source0: %{name}-%{version}.tar.xz
-#Source1 just contains various missing files from the source
-#Most of it can be grabbed here:
-#https://github.com/chenxiaolong/Fedora-SRPMS/tree/master/dolphin-emu
-#The copyright file is from here:
-#http://ppa.launchpad.net/glennric/dolphin-emu/ubuntu/pool/main/d/dolphin-emu/dolphin-emu_3.0-0ubuntu2~lucid.debian.tar.gz
-Source1: %{name}-extra.tar.xz
+Url: http://dolphin-emu.org/
+License: GPLv2 and BSD and Public Domain
+#Download here: https://dolphin-emu.googlecode.com/archive/4.0.2.zip
+Source0: %{name}-2879cbd2b564.zip
+#Manpage from Ubuntu package
+Source1: %{name}.1
#Kudos to Richard on this one (allows for shared clrun lib):
Patch0: %{name}-%{version}-clrun.patch
-#Allows for building with wxwidget 2.8.12, rather than 2.9.3
-Patch1: %{name}-%{version}-wx28.patch
-
-# Dolphin only runs on Intel x86 archictures
-ExclusiveArch: i686 x86_64
+#Kudos to Hans de Goede (updates paths for compat-SFML16-devel):
+Patch1: %{name}-%{version}-compat-SFML16.patch
+#GTK3 patch, bug: https://code.google.com/p/dolphin-emu/issues/detail?id=7069
+Patch2: %{name}-%{version}-gtk3.patch
BuildRequires: alsa-lib-devel
BuildRequires: bluez-libs-devel
@@ -37,8 +30,9 @@
BuildRequires: openal-soft-devel
BuildRequires: pulseaudio-libs-devel
BuildRequires: portaudio-devel
-BuildRequires: SDL-devel
-BuildRequires: wxGTK-devel
+BuildRequires: SDL2-devel
+BuildRequires: wxGTK3-devel
+BuildRequires: gtk3-devel
BuildRequires: zlib-devel
BuildRequires: Cg
BuildRequires: scons
@@ -48,6 +42,15 @@
BuildRequires: desktop-file-utils
BuildRequires: bochs-devel
BuildRequires: opencl-utils-devel
+BuildRequires: soundtouch-devel
+#BuildRequires: polarssl-devel
+BuildRequires: miniupnpc-devel
+BuildRequires: libusb-devel
+
+#Bug in fedora, not an issue for polarssl 1.3 in F21:
+#https://bugzilla.redhat.com/show_bug.cgi?id=1069394
+Provides: bundled(polarssl) = 1.2.8
+
Requires: hicolor-icon-theme
%description
@@ -57,19 +60,20 @@
present on the original consoles.
%prep
-%setup -q -a 1
-%patch0 -p1 -b .clrun
-%patch1 -p1 -b .wx28
-
-#Patch for GCC 4.8
-sed -i 's/_rot/__rot/g' Externals/Bochs_disasm/PowerPCDisasm.cpp Externals/wxWidgets3/include/wx/image.h Externals/wxWidgets3/src/generic/graphicc.cpp Externals/wxWidgets3/src/common/cairo.cpp Externals/wxWidgets3/src/common/image.cpp Externals/wxWidgets3/src/gtk/gnome/gprint.cpp Externals/wxWidgets3/src/gtk/dcclient.cpp Externals/wxWidgets3/src/gtk/print.cpp Source/Core/Core/Src/PowerPC/Jit64/Jit_Integer.cpp Source/Core/Core/Src/PowerPC/Jit64IL/IR.cpp Source/Core/Core/Src/PowerPC/Interpreter/Interpreter_Integer.cpp Source/Core/Core/Src/ARDecrypt.cpp Source/Core/Common/Src/CommonFuncs.h Source/Core/Common/Src/Hash.cpp
-#Various CMAKE fixes
+%setup -q -n %{name}-2879cbd2b564
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+
+###CMAKE fixes
+#Allow building with cmake macro
sed -i '/CMAKE_C.*_FLAGS/d' CMakeLists.txt
-sed -i 's/ AND NOT SFML_VERSION_MAJOR//g' CMakeLists.txt
+#This is a typo: https://code.google.com/p/dolphin-emu/issues/detail?id=7074
+sed -i 's/soundtouch.h/SoundTouch.h/g' CMakeLists.txt
-#Remove all Bundled Libraries except Bochs:
+###Remove all Bundled Libraries except Bochs and polarssl:
cd Externals
-rm -f -r `ls | grep -v 'Bochs_disasm'`
+rm -f -r `ls | grep -v 'Bochs_disasm' | grep -v 'polarssl'`
#Remove Bundled Bochs source and replace with links:
cd Bochs_disasm
rm -f -r `ls | grep -v 'PowerPC*' | grep -v 'CMakeLists.txt'`
@@ -81,37 +85,37 @@
ln -s /usr/include/bochs/disasm/*.h ./
%build
-%cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+%cmake \
+ -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DBUILD_SHARED_LIBS=FALSE \
-DENCODE_FRAMEDUMPS=FALSE \
-DUSE_EXTERNAL_CLRUN=TRUE \
-DCLRUN_INCLUDE_PATH=%{_includedir}/opencl-utils/include \
+ -DwxWidgets_CONFIG_EXECUTABLE=%{_bindir}/wx-config-3.0 \
.
+
make %{?_smp_mflags}
%install
make %{?_smp_mflags} install DESTDIR=%{buildroot}
-#Install extras from source1:
-for size in 16 32 48 128 256; do
- dim="${size}x${size}"
- install -p -D -m 0644 %{name}-extra/%{name}$size.png \
- %{buildroot}%{_datadir}/icons/hicolor/$dim/apps/%{name}.png
-done
-desktop-file-install --dir %{buildroot}%{_datadir}/applications \
- %{name}-extra/%{name}.desktop
-install -p -D -m 0644 %{name}-extra/%{name}.1 \
+desktop-file-validate %{buildroot}/%{_datadir}/applications/%{name}.desktop
+
+#Install manpage:
+install -p -D -m 0644 %{SOURCE1} \
%{buildroot}/%{_mandir}/man1/%{name}.1
+
%find_lang %{name}
%files -f %{name}.lang
-%doc license.txt Readme.txt docs/ActionReplay/CodeTypesGuide.txt
-%doc docs/ActionReplay/GCNCodeTypes.txt %{name}-extra/copyright
+%doc license.txt Readme.txt docs/*
+%doc docs/ActionReplay/GCNCodeTypes.txt
%{_datadir}/%{name}
%{_bindir}/%{name}
-%{_datadir}/icons/hicolor/*/apps/%{name}.png
%{_datadir}/applications/%{name}.desktop
%{_mandir}/man1/%{name}.*
+%{_datadir}/pixmaps/%{name}.xpm
+%{_libdir}/*.a
%post
/bin/touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
@@ -126,11 +130,26 @@
/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
%changelog
+* Thu Oct 2 2014 Jeremy Newton <alexjnewt(a)hotmail.com> - 4.0-2
+- Bundle polarssl (temporary fix, only for F19/20)
+
+* Mon Mar 3 2014 Jeremy Newton <alexjnewt(a)hotmail.com> - 4.0-1
+- Update to dolphin 4.0.2
+- Removed any unnecessary patches
+- Added new and updated some old patches
+- Removed exclusive arch, now builds on arm
+
+* Wed Jan 1 2014 Jeremy Newton <alexjnewt(a)hotmail.com> - 3.5-6
+- Build for SDL2 (Adds vibration support)
+
+* Mon Nov 18 2013 Jeremy Newton <alexjnewt(a)hotmail.com> - 3.5-5
+- Added patch for SFML, thanks to Hans de Goede
+
* Sat Jul 27 2013 Jeremy Newton <alexjnewt(a)hotmail.com> - 3.5-4
-- Updated for SFML 2.0 update
+- Updated for SFML compat
* Fri Jul 26 2013 Jeremy Newton <alexjnewt(a)hotmail.com> - 3.5-3
-- GCC 4.8 Fix (Fedora 19 and onwards)
+-3 GCC 4.8 Fix (Fedora 19 and onwards)
* Tue Feb 19 2013 Jeremy Newton <alexjnewt(a)hotmail.com> - 3.5-2
- Fixed date typos in SPEC
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/dolphin-emu/F-19/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 23 Feb 2013 16:53:34 -0000 1.3
+++ sources 2 Oct 2014 14:31:32 -0000 1.4
@@ -1,2 +1 @@
-1e07d6c93da0f7bea95d3910540cf979 dolphin-emu-3.5.tar.xz
-f9cddcbc0e00e4d19465fc23542ac2bd dolphin-emu-extra.tar.xz
+8ba4a24cfa135a33400dd908e467b7c6 dolphin-emu-2879cbd2b564.zip
--- dolphin-emu-3.5-clrun.patch DELETED ---
--- dolphin-emu-3.5-wx28.patch DELETED ---
10 years, 1 month
rpms/k3b-extras-freeworld/devel k3b-extras-freeworld.spec,1.46,1.47
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/k3b-extras-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24880
Modified Files:
k3b-extras-freeworld.spec
Log Message:
* Wed Oct 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1:2.0.2-20
- Rebuilt again for FFmpeg 2.3.x (with FFmpeg 2.3.x in buildroot)
Index: k3b-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/k3b-extras-freeworld/devel/k3b-extras-freeworld.spec,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- k3b-extras-freeworld.spec 27 Sep 2014 09:15:31 -0000 1.46
+++ k3b-extras-freeworld.spec 1 Oct 2014 23:59:28 -0000 1.47
@@ -8,7 +8,7 @@
Summary: Additional codec plugins for the k3b CD/DVD burning application
Epoch: 1
Version: 2.0.2
-Release: 19%{?dist}
+Release: 20%{?dist}
License: GPLv2+
URL: http://www.k3b.org/
@@ -117,6 +117,9 @@
%changelog
+* Wed Oct 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1:2.0.2-20
+- Rebuilt again for FFmpeg 2.3.x (with FFmpeg 2.3.x in buildroot)
+
* Sat Sep 27 2014 kwizart <kwizart(a)gmail.com> - 1:2.0.2-19
- Rebuilt for FFmpeg 2.3x
10 years, 1 month
rpms/mplayer/devel mplayer.spec,1.90,1.91
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/mplayer/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24478
Modified Files:
mplayer.spec
Log Message:
* Wed Oct 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1.1-29.20140919svn
- Rebuilt again for FFmpeg 2.3.x (with FFmpeg 2.3.x in buildroot)
Index: mplayer.spec
===================================================================
RCS file: /cvs/free/rpms/mplayer/devel/mplayer.spec,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- mplayer.spec 27 Sep 2014 09:15:18 -0000 1.90
+++ mplayer.spec 1 Oct 2014 23:56:37 -0000 1.91
@@ -6,7 +6,7 @@
Name: mplayer
Version: 1.1
-Release: 28.%{?pre}%{?dist}
+Release: 29.%{?pre}%{?dist}
Summary: Movie player playing most video formats and DVDs
%if 0%{!?_without_amr:1}
@@ -380,6 +380,9 @@
%{_datadir}/mplayer/*.fp
%changelog
+* Wed Oct 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1.1-29.20140919svn
+- Rebuilt again for FFmpeg 2.3.x (with FFmpeg 2.3.x in buildroot)
+
* Sat Sep 27 2014 kwizart <kwizart(a)gmail.com> - 1.1-28.20140919svn
- Rebuilt for FFmpeg 2.3x
10 years, 1 month
rpms/xine-lib/devel xine-lib.spec,1.9,1.10
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/xine-lib/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24119
Modified Files:
xine-lib.spec
Log Message:
* Wed Oct 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1.2.6-6
- Rebuilt again for FFmpeg 2.3.x (with FFmpeg 2.3.x in build root)
Index: xine-lib.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib/devel/xine-lib.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xine-lib.spec 27 Sep 2014 09:15:24 -0000 1.9
+++ xine-lib.spec 1 Oct 2014 23:55:21 -0000 1.10
@@ -10,7 +10,7 @@
Summary: A multimedia engine
Name: xine-lib
Version: 1.2.6
-Release: 4%{?dist}
+Release: 6%{?dist}
License: GPLv2+
URL: http://www.xine-project.org/
Source0: http://downloads.sourceforge.net/xine/xine-lib-%{version}.tar.xz
@@ -328,6 +328,12 @@
%changelog
+* Wed Oct 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1.2.6-6
+- Rebuilt again for FFmpeg 2.3.x (with FFmpeg 2.3.x in build root)
+
+* Wed Oct 01 2014 Sérgio Basto <sergio(a)serjux.com> - 1.2.6-5
+- Rebuilt for FFmpeg 2.3.x (with FFmpeg 2.3.x in build root)
+
* Sat Sep 27 2014 kwizart <kwizart(a)gmail.com> - 1.2.6-4
- Rebuilt for FFmpeg 2.3x
10 years, 1 month
rpms/gstreamer1-plugins-ugly/devel .cvsignore, 1.13, 1.14 gstreamer1-plugins-ugly.spec, 1.20, 1.21 sources, 1.13, 1.14
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/gstreamer1-plugins-ugly/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27792
Modified Files:
.cvsignore gstreamer1-plugins-ugly.spec sources
Log Message:
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
- Rebase to new upstream release 1.4.3
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-plugins-ugly/devel/.cvsignore,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- .cvsignore 30 Aug 2014 11:09:27 -0000 1.13
+++ .cvsignore 1 Oct 2014 11:35:06 -0000 1.14
@@ -1 +1 @@
-gst-plugins-ugly-1.4.1.tar.xz
+gst-plugins-ugly-1.4.3.tar.xz
Index: gstreamer1-plugins-ugly.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-plugins-ugly/devel/gstreamer1-plugins-ugly.spec,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- gstreamer1-plugins-ugly.spec 30 Aug 2014 11:05:23 -0000 1.20
+++ gstreamer1-plugins-ugly.spec 1 Oct 2014 11:35:06 -0000 1.21
@@ -1,6 +1,6 @@
Summary: GStreamer 1.0 streaming media framework "ugly" plug-ins
Name: gstreamer1-plugins-ugly
-Version: 1.4.1
+Version: 1.4.3
Release: 1%{?dist}
License: LGPLv2+
Group: Applications/Multimedia
@@ -95,6 +95,9 @@
%changelog
+* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
+- Rebase to new upstream release 1.4.3
+
* Fri Aug 29 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.1-1
- Rebase to new upstream release 1.4.1 (rf#3343)
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-plugins-ugly/devel/sources,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- sources 30 Aug 2014 11:09:27 -0000 1.13
+++ sources 1 Oct 2014 11:35:06 -0000 1.14
@@ -1 +1 @@
-316974af949ca4654efee704a0164076 gst-plugins-ugly-1.4.1.tar.xz
+239f055afb4ec0cf5ff8cde5a4a5bb9b gst-plugins-ugly-1.4.3.tar.xz
10 years, 1 month
rpms/gstreamer1-plugins-bad-freeworld/devel .cvsignore, 1.11, 1.12 gstreamer1-plugins-bad-freeworld.spec, 1.12, 1.13 sources, 1.11, 1.12
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/gstreamer1-plugins-bad-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27687
Modified Files:
.cvsignore gstreamer1-plugins-bad-freeworld.spec sources
Log Message:
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
- Rebase to new upstream release 1.4.3
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-plugins-bad-freeworld/devel/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 30 Aug 2014 11:05:09 -0000 1.11
+++ .cvsignore 1 Oct 2014 11:34:49 -0000 1.12
@@ -1 +1 @@
-gst-plugins-bad-1.4.1.tar.xz
+gst-plugins-bad-1.4.3.tar.xz
Index: gstreamer1-plugins-bad-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-plugins-bad-freeworld/devel/gstreamer1-plugins-bad-freeworld.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- gstreamer1-plugins-bad-freeworld.spec 30 Aug 2014 11:05:09 -0000 1.12
+++ gstreamer1-plugins-bad-freeworld.spec 1 Oct 2014 11:34:49 -0000 1.13
@@ -4,7 +4,7 @@
Summary: GStreamer 1.0 streaming media framework "bad" plug-ins
Name: gstreamer1-plugins-bad-freeworld
-Version: 1.4.1
+Version: 1.4.3
Release: 1%{?dist}
License: LGPLv2+
Group: Applications/Multimedia
@@ -91,6 +91,9 @@
%changelog
+* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
+- Rebase to new upstream release 1.4.3
+
* Sat Aug 30 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.1-1
- Rebase to new upstream release 1.4.1
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-plugins-bad-freeworld/devel/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 30 Aug 2014 11:05:09 -0000 1.11
+++ sources 1 Oct 2014 11:34:49 -0000 1.12
@@ -1 +1 @@
-20cb190b18dc63017326321cdb7c91e5 gst-plugins-bad-1.4.1.tar.xz
+77c6bf4b7a328f03860a59171aa1bec5 gst-plugins-bad-1.4.3.tar.xz
10 years, 1 month
rpms/gstreamer1-libav/devel .cvsignore, 1.11, 1.12 gstreamer1-libav.spec, 1.14, 1.15 sources, 1.11, 1.12
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/gstreamer1-libav/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv27580
Modified Files:
.cvsignore gstreamer1-libav.spec sources
Log Message:
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
- Update to 1.4.3
- Includes libav 10.5
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/devel/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 30 Aug 2014 11:04:46 -0000 1.11
+++ .cvsignore 1 Oct 2014 11:34:37 -0000 1.12
@@ -1 +1 @@
-gst-libav-1.4.1.tar.xz
+gst-libav-1.4.3.tar.xz
Index: gstreamer1-libav.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/devel/gstreamer1-libav.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- gstreamer1-libav.spec 30 Aug 2014 11:04:46 -0000 1.14
+++ gstreamer1-libav.spec 1 Oct 2014 11:34:37 -0000 1.15
@@ -1,5 +1,5 @@
Name: gstreamer1-libav
-Version: 1.4.1
+Version: 1.4.3
Release: 1%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
@@ -72,6 +72,10 @@
%changelog
+* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.3-1
+- Update to 1.4.3
+- Includes libav 10.5
+
* Fri Aug 29 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.4.1-1
- Update to 1.4.1 (rf#3343)
- Includes libav 10.4
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/devel/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 30 Aug 2014 11:04:46 -0000 1.11
+++ sources 1 Oct 2014 11:34:37 -0000 1.12
@@ -1 +1 @@
-ea2d636c24d7c5ae123967ef22e37c07 gst-libav-1.4.1.tar.xz
+248b6aae752710bbae77af01f74a082d gst-libav-1.4.3.tar.xz
10 years, 1 month
rpms/gstreamer1-libav/F-20 .cvsignore, 1.11, 1.12 gstreamer1-libav.spec, 1.14, 1.15 sources, 1.11, 1.12
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/gstreamer1-libav/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26286
Modified Files:
.cvsignore gstreamer1-libav.spec sources
Log Message:
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.2.4-3
- Update libav to 9.17
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/F-20/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 29 Aug 2014 12:42:09 -0000 1.11
+++ .cvsignore 1 Oct 2014 10:09:41 -0000 1.12
@@ -1,2 +1,2 @@
gst-libav-1.2.4.tar.xz
-libav-9.16.tar.xz
+libav-9.17.tar.xz
Index: gstreamer1-libav.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/F-20/gstreamer1-libav.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- gstreamer1-libav.spec 29 Aug 2014 12:42:09 -0000 1.14
+++ gstreamer1-libav.spec 1 Oct 2014 10:09:42 -0000 1.15
@@ -1,13 +1,13 @@
Name: gstreamer1-libav
Version: 1.2.4
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
Source0: http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-%{version}.tar.xz
# We drop in a newer libav to get all the security bugfixes from there!
-Source1: http://libav.org/releases/libav-9.16.tar.xz
+Source1: http://libav.org/releases/libav-9.17.tar.xz
Patch0: gst-ffmpeg-0.10.12-ChangeLog-UTF-8.patch
BuildRequires: gstreamer1-devel >= 1.0.0
BuildRequires: gstreamer1-plugins-base-devel >= 1.0.0
@@ -30,7 +30,7 @@
%prep
%setup -q -n gst-libav-%{version} -a 1
rm -r gst-libs/ext/libav
-mv libav-9.16 gst-libs/ext/libav
+mv libav-9.17 gst-libs/ext/libav
%patch0 -p1
@@ -53,6 +53,9 @@
%changelog
+* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.2.4-3
+- Update libav to 9.17
+
* Fri Aug 29 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.2.4-2
- Update libav to 9.16
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/F-20/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 29 Aug 2014 12:42:09 -0000 1.11
+++ sources 1 Oct 2014 10:09:42 -0000 1.12
@@ -1,2 +1,2 @@
6454f9f22b3aa37694781633e0d20a9c gst-libav-1.2.4.tar.xz
-7b44b75cec24b8e7545e5029e76917e0 libav-9.16.tar.xz
+697ce3faef1d9813bc1e7384b1089001 libav-9.17.tar.xz
10 years, 1 month
rpms/gstreamer1-libav/F-19 .cvsignore, 1.9, 1.10 gstreamer1-libav.spec, 1.9, 1.10 sources, 1.9, 1.10
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/gstreamer1-libav/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26102
Modified Files:
.cvsignore gstreamer1-libav.spec sources
Log Message:
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.0.10-5
- Upgrade the buildin libav to 0.8.16 to get all the security fixes from
upstream libav
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/F-19/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 29 Aug 2014 12:43:03 -0000 1.9
+++ .cvsignore 1 Oct 2014 10:06:26 -0000 1.10
@@ -1,2 +1,2 @@
gst-libav-1.0.10.tar.xz
-libav-0.8.15.tar.xz
+libav-0.8.16.tar.xz
Index: gstreamer1-libav.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/F-19/gstreamer1-libav.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- gstreamer1-libav.spec 29 Aug 2014 12:43:03 -0000 1.9
+++ gstreamer1-libav.spec 1 Oct 2014 10:06:26 -0000 1.10
@@ -1,13 +1,13 @@
Name: gstreamer1-libav
Version: 1.0.10
-Release: 4%{?dist}
+Release: 5%{?dist}
Summary: GStreamer 1.0 libav-based plug-ins
Group: Applications/Multimedia
License: LGPLv2+
URL: http://gstreamer.freedesktop.org/
Source0: http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-%{version}.tar.xz
# We drop in a newer libav to get all the security bugfixes from there!
-Source1: http://libav.org/releases/libav-0.8.15.tar.xz
+Source1: http://libav.org/releases/libav-0.8.16.tar.xz
Patch0: gst-ffmpeg-0.10.12-ChangeLog-UTF-8.patch
BuildRequires: gstreamer1-devel >= 1.0.0
BuildRequires: gstreamer1-plugins-base-devel >= 1.0.0
@@ -32,7 +32,7 @@
%patch0 -p1
rm -r gst-libs/ext/libav
-mv libav-0.8.15 gst-libs/ext/libav
+mv libav-0.8.16 gst-libs/ext/libav
%build
@@ -57,6 +57,10 @@
%changelog
+* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.0.10-5
+- Upgrade the buildin libav to 0.8.16 to get all the security fixes from
+ upstream libav
+
* Fri Aug 29 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 1.0.10-4
- Upgrade the buildin libav to 0.8.15 to get all the security fixes from
upstream libav
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gstreamer1-libav/F-19/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 29 Aug 2014 12:43:03 -0000 1.9
+++ sources 1 Oct 2014 10:06:26 -0000 1.10
@@ -1,2 +1,2 @@
715564cdb735dad75b0e770e044488e0 gst-libav-1.0.10.tar.xz
-e483ea8f482b5ecd65ee1d09251b0a5b libav-0.8.15.tar.xz
+224fdcd93fe375cb4c49f4ff47492f54 libav-0.8.16.tar.xz
10 years, 1 month
rpms/gstreamer-ffmpeg/F-19 .cvsignore, 1.21, 1.22 gstreamer-ffmpeg.spec, 1.32, 1.33 sources, 1.21, 1.22
by jwrdegoede
Author: jwrdegoede
Update of /cvs/free/rpms/gstreamer-ffmpeg/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25902
Modified Files:
.cvsignore gstreamer-ffmpeg.spec sources
Log Message:
* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.13-14
- Upgrade the buildin libav to 0.8.16 to get all the security fixes from
upstream libav
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/gstreamer-ffmpeg/F-19/.cvsignore,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- .cvsignore 29 Aug 2014 12:44:35 -0000 1.21
+++ .cvsignore 1 Oct 2014 10:04:07 -0000 1.22
@@ -1,2 +1,2 @@
gst-ffmpeg-0.10.13.tar.bz2
-libav-0.8.15.tar.xz
+libav-0.8.16.tar.xz
Index: gstreamer-ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/gstreamer-ffmpeg/F-19/gstreamer-ffmpeg.spec,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- gstreamer-ffmpeg.spec 29 Aug 2014 12:44:35 -0000 1.32
+++ gstreamer-ffmpeg.spec 1 Oct 2014 10:04:07 -0000 1.33
@@ -1,6 +1,6 @@
Name: gstreamer-ffmpeg
Version: 0.10.13
-Release: 13%{?dist}
+Release: 14%{?dist}
Summary: GStreamer FFmpeg-based plug-ins
Group: Applications/Multimedia
# the ffmpeg plugin is LGPL, the postproc plugin is GPL
@@ -8,7 +8,7 @@
URL: http://gstreamer.freedesktop.org/
Source0: http://gstreamer.freedesktop.org/src/gst-ffmpeg/gst-ffmpeg-%{version}.tar...
# We drop in a newer libav to get all the security bugfixes from there!
-Source1: http://libav.org/releases/libav-0.8.15.tar.xz
+Source1: http://libav.org/releases/libav-0.8.16.tar.xz
Patch0: gst-ffmpeg-0.10.12-ChangeLog-UTF-8.patch
# Patches cherry picked from upstream for newer libav and bugfixes
Patch1: 0001-configure.ac-Fix-for-new-libav.patch
@@ -57,7 +57,7 @@
%patch11 -p1
%patch12 -p1
rm -r gst-libs/ext/libav
-mv libav-0.8.15 gst-libs/ext/libav
+mv libav-0.8.16 gst-libs/ext/libav
%build
@@ -83,6 +83,10 @@
%changelog
+* Wed Oct 1 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.13-14
+- Upgrade the buildin libav to 0.8.16 to get all the security fixes from
+ upstream libav
+
* Fri Aug 29 2014 Hans de Goede <j.w.r.degoede(a)gmail.com> - 0.10.13-13
- Upgrade the buildin libav to 0.8.15 to get all the security fixes from
upstream libav
Index: sources
===================================================================
RCS file: /cvs/free/rpms/gstreamer-ffmpeg/F-19/sources,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- sources 29 Aug 2014 12:44:35 -0000 1.21
+++ sources 1 Oct 2014 10:04:07 -0000 1.22
@@ -1,2 +1,2 @@
7f5beacaf1312db2db30a026b36888c4 gst-ffmpeg-0.10.13.tar.bz2
-e483ea8f482b5ecd65ee1d09251b0a5b libav-0.8.15.tar.xz
+224fdcd93fe375cb4c49f4ff47492f54 libav-0.8.16.tar.xz
10 years, 1 month