rpms/pcsx2/F-19 pcsx2-1.2.0_fedora_cflags_opts.diff, NONE, 1.1 rebuild_pcsx2_tarball.sh, NONE, 1.1 .cvsignore, 1.2, 1.3 pcsx2.spec, 1.1, 1.2 sources, 1.2, 1.3 pcsx2-1.1.0_fedora_cflags_opts.diff, 1.1, NONE
by Giles Birchley
Author: gbirchley
Update of /cvs/nonfree/rpms/pcsx2/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2363/F-19
Modified Files:
.cvsignore pcsx2.spec sources
Added Files:
pcsx2-1.2.0_fedora_cflags_opts.diff rebuild_pcsx2_tarball.sh
Removed Files:
pcsx2-1.1.0_fedora_cflags_opts.diff
Log Message:
Updated to 1.2 source from upstream. Upstream tarball is unmodified and includes copyrighted files. These were removed with script included in package as Source1
pcsx2-1.2.0_fedora_cflags_opts.diff:
CMakeLists.txt | 40 +---------------------------------------
1 file changed, 1 insertion(+), 39 deletions(-)
--- NEW FILE pcsx2-1.2.0_fedora_cflags_opts.diff ---
#Alter optimisation cflags to strip out those already automatically specified
#by %%cmake rpm macro (which uses -o2)
--- pcsx2-1.2.0/pcsx2/CMakeLists.txt
+++ pcsx2-1.2.0/pcsx2/CMakeLists.txt
@@ -32,45 +32,7 @@ set(DebugFlags
-g)
# set optimization flags
-set(OptimizationFlags
- -falign-functions
- -falign-jumps
- -falign-labels
- -falign-loops
- -fcaller-saves
- -fcprop-registers
- -fcrossjumping
- -fcse-follow-jumps
- -fcse-skip-blocks
- -fdefer-pop
- -fdelete-null-pointer-checks
- -fgcse
- -fgcse-lm
- -fif-conversion
- -fif-conversion2
- -fmerge-constants
- -foptimize-sibling-calls
- -fpeephole2
- -fregmove
- -freorder-blocks
- -freorder-functions
- -frerun-cse-after-loop
- -fsched-interblock
- -fsched-spec
- -fstrict-overflow
- -fthread-jumps
- -ftree-ccp
- -ftree-ch
- -ftree-copyrename
- -ftree-dce
- -ftree-dominator-opts
- -ftree-fre
- -ftree-lrs
- -ftree-pre
- -ftree-sra
- -ftree-ter
- -ftree-vrp
- -funit-at-a-time)
+set(OptimizationFlags)
# Debug - Build
if(CMAKE_BUILD_TYPE STREQUAL Debug)
--- NEW FILE rebuild_pcsx2_tarball.sh ---
#!/bin/sh
#This is a Modification of a script by Gregory Hainaut
#Purpose is to strip any copyrighted etc. material
#from the publicly available tarball so make suitable for linux distribution
mkdir ~/pcsx2-1.2
cd ~/pcsx2-1.2
wget https://github.com/PCSX2/pcsx2/archive/v1.2.tar.gz
tar xvfz v1.2.tar.gz
rm v1.2.tar.gz
mkdir -p temporary_pcsx2;
( cp pcsx2-1.2/CMakeLists.txt temporary_pcsx2/CMakeLists.txt;
cp -r pcsx2-1.2/common temporary_pcsx2/common;
cp -r pcsx2-1.2/cmake temporary_pcsx2/cmake;
cp -r pcsx2-1.2/locales temporary_pcsx2/locales;
cp -r pcsx2-1.2/pcsx2 temporary_pcsx2/pcsx2;
cp -r pcsx2-1.2/debian-unstable-upstream temporary_pcsx2/debian-unstable-upstream;
cp -r pcsx2-1.2/linux_various temporary_pcsx2/linux_various;)
# separate bin to avoid retaining the .mo file
mkdir -p temporary_pcsx2/bin;
( cp pcsx2-1.2/bin/GameIndex.dbf temporary_pcsx2/bin/GameIndex.dbf;
cp pcsx2-1.2/bin/cheats_ws.zip temporary_pcsx2/bin/cheats_ws.zip;
cp -r pcsx2-1.2/bin/cheats temporary_pcsx2/bin/cheats;
cp -r pcsx2-1.2/bin/docs temporary_pcsx2/bin/docs;)
# Note: Other plugins exist but they are not 100% copyright free, so remove them.
# Note: some plugins are more or less deprecated CDVDisoEFP, CDVDlinuz, Zerogs, Zeropad ...";
mkdir -p temporary_pcsx2/plugins;
( cp pcsx2-1.2/plugins/CMakeLists.txt temporary_pcsx2/plugins/CMakeLists.txt;
cp -r pcsx2-1.2/plugins/CDVDnull temporary_pcsx2/plugins/CDVDnull;
# Potential copyright issue. Optional anyway
cp -r pcsx2-1.2/plugins/onepad temporary_pcsx2/plugins/onepad;
cp -r pcsx2-1.2/plugins/spu2-x temporary_pcsx2/plugins/spu2-x;
cp -r pcsx2-1.2/plugins/zzogl-pg temporary_pcsx2/plugins/zzogl-pg;
cp -r pcsx2-1.2/plugins/zzogl-pg-cg temporary_pcsx2/plugins/zzogl-pg-cg;
cp -r pcsx2-1.2/plugins/GSdx temporary_pcsx2/plugins/GSdx;
cp -r pcsx2-1.2/plugins/dev9null temporary_pcsx2/plugins/dev9null;
cp -r pcsx2-1.2/plugins/FWnull temporary_pcsx2/plugins/FWnull;
cp -r pcsx2-1.2/plugins/USBnull temporary_pcsx2/plugins/USBnull;)
## Installation
# Copy the dir
rm -fr pcsx2-1.2
cp -r temporary_pcsx2 pcsx2-1.2
echo "Remove .svn directories"
find pcsx2-1.2 -name ".svn" -type d -exec rm -fr {} \; 2> /dev/null
echo "Remove windows files (useless & potential copyright issues)"
# => pcsx2/windows
# Copyright header must be updated
find pcsx2-1.2 -iname "windows" -type d -exec rm -fr {} \; 2> /dev/null
# => ./plugins/zzogl-pg*/opengl/Win32 (reduced to the current linux plugins)
find pcsx2-1.2 -name "Win32" -type d -exec rm -fr {} \; 2> /dev/null
echo "Remove useless files (copyright issues)"
rm -fr "pcsx2-1.2/plugins/zzogl-pg/opengl/ZeroGSShaders"
rm -fr "pcsx2-1.2/common/src/Utilities/x86/MemcpyFast.cpp"
rm -fr "pcsx2-1.2/plugins/GSdx/baseclasses"
## BUILD
echo "Build the tar.gz file"
tar -czf v1.2.tar.gz pcsx2-1.2
## Clean
rm -fr pcsx2-1.2
rm -fr temporary_pcsx2
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/pcsx2/F-19/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 30 Sep 2013 19:14:25 -0000 1.2
+++ .cvsignore 5 Feb 2014 23:01:12 -0000 1.3
@@ -1 +1 @@
-pcsx2-1.1.0-r5674-lnx-sources.tar.bz2
+v1.2.tar.gz
Index: pcsx2.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pcsx2/F-19/pcsx2.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pcsx2.spec 30 Sep 2013 19:14:25 -0000 1.1
+++ pcsx2.spec 5 Feb 2014 23:01:13 -0000 1.2
@@ -1,11 +1,14 @@
Name: pcsx2
-Version: 1.1.0
-Release: 5%{?dist}
+Version: 1.2.0
+Release: 1%{?dist}
Summary: A Sony Playstation2 emulator
License: GPLv3
URL: https://code.google.com/p/pcsx2/
-Source0: https://pcsx2.googlecode.com/files/%{name}-%{version}-r5674-lnx-sources.t...
-Patch1: %{name}-1.1.0_fedora_cflags_opts.diff
+#github source contains copyrighted material, so modified with
+#script used was rebuild_pcsx2_tarball contained in Source1
+Source0: https://github.com/PCSX2/pcsx2/archive/v1.2.tar.gz
+Source1: rebuild_pcsx2_tarball.sh
+Patch1: %{name}-1.2.0_fedora_cflags_opts.diff
# PCSX2 does not support running as a 64 bit application.
# http://code.google.com/p/pcsx2/wiki/ChrootAnd64bStatusLinux
ExclusiveArch: i686
@@ -31,6 +34,7 @@
BuildRequires: libX11-devel
BuildRequires: libICE-devel
BuildRequires: libaio-devel
+BuildRequires: mesa-libGLES
Requires: joystick
Requires: hicolor-icon-theme
@@ -42,15 +46,15 @@
this emulator anyway.
%prep
-%setup -q -n pcsx2.snapshot-5674
+%setup -q -n pcsx2-1.2
%patch1 -p1
# To remove executable bits from man, doc and icon files
-chmod -x %{name}/Docs/GPL.txt %{name}/Docs/License.txt %{name}/Docs/readme-Docs.txt %{name}/Docs/PCSX2_FAQ.doc %{name}/Docs/PCSX2_Readme.doc bin/docs/pcsx2.1 linux_various/pcsx2.xpm
+chmod -x pcsx2/Docs/GPL.txt pcsx2/Docs/License.txt pcsx2/Docs/readme-Docs.txt pcsx2/Docs/PCSX2_FAQ.doc pcsx2/Docs/PCSX2_Readme.doc bin/docs/pcsx2.1 linux_various/pcsx2.xpm
# Remove DOS encoding errors in txt files
-sed -i 's/\r//' %{name}/Docs/GPL.txt
-sed -i 's/\r//' %{name}/Docs/License.txt
+sed -i 's/\r//' pcsx2/Docs/GPL.txt
+sed -i 's/\r//' pcsx2/Docs/License.txt
%build
@@ -62,12 +66,12 @@
# Extensive testing will is therefore needed. See rpmfusion bug #2455
%cmake . -DPACKAGE_MODE=TRUE \
- -DGLSL_SHADER_DIR=%{_libdir}/%{name} \
+ -DGLSL_SHADER_DIR=%{_libdir}/pcsx2 \
-DBUILD_REPLAY_LOADERS=FALSE \
-DXDG_STD=TRUE \
-DGLSL_API=FALSE \
- -DPLUGIN_DIR=%{_libdir}/%{name} \
- -DGAMEINDEX_DIR=%{_datadir}/%{name} \
+ -DPLUGIN_DIR=%{_libdir}/pcsx2 \
+ -DGAMEINDEX_DIR=%{_datadir}/pcsx2 \
-DFORCE_INTERNAL_SOUNDTOUCH=FALSE \
-DFORCE_INTERNAL_SDL=FALSE \
-DCMAKE_BUILD_STRIP=FALSE \
@@ -85,12 +89,12 @@
# Install icon
mkdir -p %{buildroot}/%{_datadir}/icons/hicolor/128x128/apps/
-install -pm 644 %{_builddir}/%{name}.snapshot-5674/linux_various/pcsx2.xpm %{buildroot}/%{_datadir}/icons/hicolor/128x128/apps/
+install -pm 644 %{_builddir}/%{name}-1.2/linux_various/pcsx2.xpm %{buildroot}/%{_datadir}/icons/hicolor/128x128/apps/
# Install Desktop file
desktop-file-install \
--dir=%{buildroot}/%{_datadir}/applications \
-%{_builddir}/%{name}.snapshot-5674/linux_various/pcsx2.desktop
+%{_builddir}/%{name}-1.2/linux_various/pcsx2.desktop
#strip extra copy of icon file, Wrong place for fedora
@@ -120,15 +124,20 @@
%files -f pcsx2_Iconized.lang -f pcsx2_Main.lang
%doc bin/docs/PCSX2_Readme.pdf bin/docs/PCSX2_FAQ.pdf
-%{_bindir}/%{name}
-%{_libdir}/%{name}/
-%{_datadir}/applications/%{name}.desktop
-%{_datadir}/icons/hicolor/128x128/apps/%{name}.xpm
-%{_mandir}/man1/%{name}.*
-%{_datadir}/%{name}/
+%{_bindir}/pcsx2
+%{_libdir}/pcsx2/
+%{_datadir}/applications/pcsx2.desktop
+%{_datadir}/icons/hicolor/128x128/apps/pcsx2.xpm
+%{_mandir}/man1/pcsx2.*
+%{_datadir}/pcsx2/
%changelog
+* Tue Feb 04 2014 Giles Birchley <gbirchey(a)blueyonder.co.uk> -1.2.0-1
+- Updated source to 1.2
+- Updated patch1
+- Source required modification to remove copyrighted files - added Source1
+
* Sat Jul 27 2013 Giles Birchley <gbirchey(a)blueyonder.co.uk> - 1.1.0-5
- made overlooked change suggested in rpmfusion review (#2455)
- changed requires from libGL-devel/libGLU-devel instead of mesa-libGL-devel
@@ -181,6 +190,10 @@
- add Gregory Hainaut's patch to fix issue with gcc 4.8, for Fedora 19 build
- Changed cmake option of DBUILD_REPLAY_LOADERS to false and changed %%files accrdingly
+* Tue Mar 05 2013 Giles Birchley <gbirchey(a)blueyonder.co.uk>
+- bleeding edge build, altered package name
+- added pcsx2 as a conflict
+
* Mon Oct 15 2012 Giles Birchley <gbirchey(a)blueyonder.co.uk> - 1.0.0-1
- Build of official 1.0.0 Release
- Significant modifications to script to comply with Fedora/RPMFusion packaging requirements
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pcsx2/F-19/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 30 Sep 2013 19:14:25 -0000 1.2
+++ sources 5 Feb 2014 23:01:13 -0000 1.3
@@ -1 +1 @@
-d999360dc0e142476aeccaf8b6cf767b pcsx2-1.1.0-r5674-lnx-sources.tar.bz2
+da48624579902322c9417edb195ad5d9 v1.2.tar.gz
--- pcsx2-1.1.0_fedora_cflags_opts.diff DELETED ---
10 years, 9 months
rpms/pcsx2/devel pcsx2-1.2.0_fedora_cflags_opts.diff, NONE, 1.1 rebuild_pcsx2_tarball.sh, NONE, 1.1 .cvsignore, 1.2, 1.3 pcsx2.spec, 1.1, 1.2 sources, 1.2, 1.3 pcsx2-1.1.0_fedora_cflags_opts.diff, 1.1, NONE
by Giles Birchley
Author: gbirchley
Update of /cvs/nonfree/rpms/pcsx2/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv1925/devel
Modified Files:
.cvsignore pcsx2.spec sources
Added Files:
pcsx2-1.2.0_fedora_cflags_opts.diff rebuild_pcsx2_tarball.sh
Removed Files:
pcsx2-1.1.0_fedora_cflags_opts.diff
Log Message:
Updated to version 1.2 from upstream
Upstream source required some files with copyright issues to be removed
this had previously been done by upstream but this time I used a bash script to
perform the modifications that has been included in the srpm as Source1
pcsx2-1.2.0_fedora_cflags_opts.diff:
CMakeLists.txt | 40 +---------------------------------------
1 file changed, 1 insertion(+), 39 deletions(-)
--- NEW FILE pcsx2-1.2.0_fedora_cflags_opts.diff ---
#Alter optimisation cflags to strip out those already automatically specified
#by %%cmake rpm macro (which uses -o2)
--- pcsx2-1.2.0/pcsx2/CMakeLists.txt
+++ pcsx2-1.2.0/pcsx2/CMakeLists.txt
@@ -32,45 +32,7 @@ set(DebugFlags
-g)
# set optimization flags
-set(OptimizationFlags
- -falign-functions
- -falign-jumps
- -falign-labels
- -falign-loops
- -fcaller-saves
- -fcprop-registers
- -fcrossjumping
- -fcse-follow-jumps
- -fcse-skip-blocks
- -fdefer-pop
- -fdelete-null-pointer-checks
- -fgcse
- -fgcse-lm
- -fif-conversion
- -fif-conversion2
- -fmerge-constants
- -foptimize-sibling-calls
- -fpeephole2
- -fregmove
- -freorder-blocks
- -freorder-functions
- -frerun-cse-after-loop
- -fsched-interblock
- -fsched-spec
- -fstrict-overflow
- -fthread-jumps
- -ftree-ccp
- -ftree-ch
- -ftree-copyrename
- -ftree-dce
- -ftree-dominator-opts
- -ftree-fre
- -ftree-lrs
- -ftree-pre
- -ftree-sra
- -ftree-ter
- -ftree-vrp
- -funit-at-a-time)
+set(OptimizationFlags)
# Debug - Build
if(CMAKE_BUILD_TYPE STREQUAL Debug)
--- NEW FILE rebuild_pcsx2_tarball.sh ---
#!/bin/sh
#This is a Modification of a script by Gregory Hainaut
#Purpose is to strip any copyrighted etc. material
#from the publicly available tarball so make suitable for linux distribution
mkdir ~/pcsx2-1.2
cd ~/pcsx2-1.2
wget https://github.com/PCSX2/pcsx2/archive/v1.2.tar.gz
tar xvfz v1.2.tar.gz
rm v1.2.tar.gz
mkdir -p temporary_pcsx2;
( cp pcsx2-1.2/CMakeLists.txt temporary_pcsx2/CMakeLists.txt;
cp -r pcsx2-1.2/common temporary_pcsx2/common;
cp -r pcsx2-1.2/cmake temporary_pcsx2/cmake;
cp -r pcsx2-1.2/locales temporary_pcsx2/locales;
cp -r pcsx2-1.2/pcsx2 temporary_pcsx2/pcsx2;
cp -r pcsx2-1.2/debian-unstable-upstream temporary_pcsx2/debian-unstable-upstream;
cp -r pcsx2-1.2/linux_various temporary_pcsx2/linux_various;)
# separate bin to avoid retaining the .mo file
mkdir -p temporary_pcsx2/bin;
( cp pcsx2-1.2/bin/GameIndex.dbf temporary_pcsx2/bin/GameIndex.dbf;
cp pcsx2-1.2/bin/cheats_ws.zip temporary_pcsx2/bin/cheats_ws.zip;
cp -r pcsx2-1.2/bin/cheats temporary_pcsx2/bin/cheats;
cp -r pcsx2-1.2/bin/docs temporary_pcsx2/bin/docs;)
# Note: Other plugins exist but they are not 100% copyright free, so remove them.
# Note: some plugins are more or less deprecated CDVDisoEFP, CDVDlinuz, Zerogs, Zeropad ...";
mkdir -p temporary_pcsx2/plugins;
( cp pcsx2-1.2/plugins/CMakeLists.txt temporary_pcsx2/plugins/CMakeLists.txt;
cp -r pcsx2-1.2/plugins/CDVDnull temporary_pcsx2/plugins/CDVDnull;
# Potential copyright issue. Optional anyway
cp -r pcsx2-1.2/plugins/onepad temporary_pcsx2/plugins/onepad;
cp -r pcsx2-1.2/plugins/spu2-x temporary_pcsx2/plugins/spu2-x;
cp -r pcsx2-1.2/plugins/zzogl-pg temporary_pcsx2/plugins/zzogl-pg;
cp -r pcsx2-1.2/plugins/zzogl-pg-cg temporary_pcsx2/plugins/zzogl-pg-cg;
cp -r pcsx2-1.2/plugins/GSdx temporary_pcsx2/plugins/GSdx;
cp -r pcsx2-1.2/plugins/dev9null temporary_pcsx2/plugins/dev9null;
cp -r pcsx2-1.2/plugins/FWnull temporary_pcsx2/plugins/FWnull;
cp -r pcsx2-1.2/plugins/USBnull temporary_pcsx2/plugins/USBnull;)
## Installation
# Copy the dir
rm -fr pcsx2-1.2
cp -r temporary_pcsx2 pcsx2-1.2
echo "Remove .svn directories"
find pcsx2-1.2 -name ".svn" -type d -exec rm -fr {} \; 2> /dev/null
echo "Remove windows files (useless & potential copyright issues)"
# => pcsx2/windows
# Copyright header must be updated
find pcsx2-1.2 -iname "windows" -type d -exec rm -fr {} \; 2> /dev/null
# => ./plugins/zzogl-pg*/opengl/Win32 (reduced to the current linux plugins)
find pcsx2-1.2 -name "Win32" -type d -exec rm -fr {} \; 2> /dev/null
echo "Remove useless files (copyright issues)"
rm -fr "pcsx2-1.2/plugins/zzogl-pg/opengl/ZeroGSShaders"
rm -fr "pcsx2-1.2/common/src/Utilities/x86/MemcpyFast.cpp"
rm -fr "pcsx2-1.2/plugins/GSdx/baseclasses"
## BUILD
echo "Build the tar.gz file"
tar -czf v1.2.tar.gz pcsx2-1.2
## Clean
rm -fr pcsx2-1.2
rm -fr temporary_pcsx2
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/pcsx2/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 30 Sep 2013 19:02:43 -0000 1.2
+++ .cvsignore 5 Feb 2014 22:57:04 -0000 1.3
@@ -1 +1 @@
-pcsx2-1.1.0-r5674-lnx-sources.tar.bz2
+v1.2.tar.gz
Index: pcsx2.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pcsx2/devel/pcsx2.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pcsx2.spec 30 Sep 2013 19:02:43 -0000 1.1
+++ pcsx2.spec 5 Feb 2014 22:57:04 -0000 1.2
@@ -1,11 +1,14 @@
Name: pcsx2
-Version: 1.1.0
-Release: 5%{?dist}
+Version: 1.2.0
+Release: 1%{?dist}
Summary: A Sony Playstation2 emulator
License: GPLv3
URL: https://code.google.com/p/pcsx2/
-Source0: https://pcsx2.googlecode.com/files/%{name}-%{version}-r5674-lnx-sources.t...
-Patch1: %{name}-1.1.0_fedora_cflags_opts.diff
+#github source contains copyrighted material, so modified with
+#script used was rebuild_pcsx2_tarball contained in Source1
+Source0: https://github.com/PCSX2/pcsx2/archive/v1.2.tar.gz
+Source1: rebuild_pcsx2_tarball.sh
+Patch1: %{name}-1.2.0_fedora_cflags_opts.diff
# PCSX2 does not support running as a 64 bit application.
# http://code.google.com/p/pcsx2/wiki/ChrootAnd64bStatusLinux
ExclusiveArch: i686
@@ -31,6 +34,7 @@
BuildRequires: libX11-devel
BuildRequires: libICE-devel
BuildRequires: libaio-devel
+BuildRequires: mesa-libGLES
Requires: joystick
Requires: hicolor-icon-theme
@@ -42,15 +46,15 @@
this emulator anyway.
%prep
-%setup -q -n pcsx2.snapshot-5674
+%setup -q -n pcsx2-1.2
%patch1 -p1
# To remove executable bits from man, doc and icon files
-chmod -x %{name}/Docs/GPL.txt %{name}/Docs/License.txt %{name}/Docs/readme-Docs.txt %{name}/Docs/PCSX2_FAQ.doc %{name}/Docs/PCSX2_Readme.doc bin/docs/pcsx2.1 linux_various/pcsx2.xpm
+chmod -x pcsx2/Docs/GPL.txt pcsx2/Docs/License.txt pcsx2/Docs/readme-Docs.txt pcsx2/Docs/PCSX2_FAQ.doc pcsx2/Docs/PCSX2_Readme.doc bin/docs/pcsx2.1 linux_various/pcsx2.xpm
# Remove DOS encoding errors in txt files
-sed -i 's/\r//' %{name}/Docs/GPL.txt
-sed -i 's/\r//' %{name}/Docs/License.txt
+sed -i 's/\r//' pcsx2/Docs/GPL.txt
+sed -i 's/\r//' pcsx2/Docs/License.txt
%build
@@ -62,12 +66,12 @@
# Extensive testing will is therefore needed. See rpmfusion bug #2455
%cmake . -DPACKAGE_MODE=TRUE \
- -DGLSL_SHADER_DIR=%{_libdir}/%{name} \
+ -DGLSL_SHADER_DIR=%{_libdir}/pcsx2 \
-DBUILD_REPLAY_LOADERS=FALSE \
-DXDG_STD=TRUE \
-DGLSL_API=FALSE \
- -DPLUGIN_DIR=%{_libdir}/%{name} \
- -DGAMEINDEX_DIR=%{_datadir}/%{name} \
+ -DPLUGIN_DIR=%{_libdir}/pcsx2 \
+ -DGAMEINDEX_DIR=%{_datadir}/pcsx2 \
-DFORCE_INTERNAL_SOUNDTOUCH=FALSE \
-DFORCE_INTERNAL_SDL=FALSE \
-DCMAKE_BUILD_STRIP=FALSE \
@@ -85,12 +89,12 @@
# Install icon
mkdir -p %{buildroot}/%{_datadir}/icons/hicolor/128x128/apps/
-install -pm 644 %{_builddir}/%{name}.snapshot-5674/linux_various/pcsx2.xpm %{buildroot}/%{_datadir}/icons/hicolor/128x128/apps/
+install -pm 644 %{_builddir}/%{name}-1.2/linux_various/pcsx2.xpm %{buildroot}/%{_datadir}/icons/hicolor/128x128/apps/
# Install Desktop file
desktop-file-install \
--dir=%{buildroot}/%{_datadir}/applications \
-%{_builddir}/%{name}.snapshot-5674/linux_various/pcsx2.desktop
+%{_builddir}/%{name}-1.2/linux_various/pcsx2.desktop
#strip extra copy of icon file, Wrong place for fedora
@@ -120,15 +124,20 @@
%files -f pcsx2_Iconized.lang -f pcsx2_Main.lang
%doc bin/docs/PCSX2_Readme.pdf bin/docs/PCSX2_FAQ.pdf
-%{_bindir}/%{name}
-%{_libdir}/%{name}/
-%{_datadir}/applications/%{name}.desktop
-%{_datadir}/icons/hicolor/128x128/apps/%{name}.xpm
-%{_mandir}/man1/%{name}.*
-%{_datadir}/%{name}/
+%{_bindir}/pcsx2
+%{_libdir}/pcsx2/
+%{_datadir}/applications/pcsx2.desktop
+%{_datadir}/icons/hicolor/128x128/apps/pcsx2.xpm
+%{_mandir}/man1/pcsx2.*
+%{_datadir}/pcsx2/
%changelog
+* Tue Feb 04 2014 Giles Birchley <gbirchey(a)blueyonder.co.uk> -1.2.0-1
+- Updated source to 1.2
+- Updated patch1
+- Source required modification to remove copyrighted files - added Source1
+
* Sat Jul 27 2013 Giles Birchley <gbirchey(a)blueyonder.co.uk> - 1.1.0-5
- made overlooked change suggested in rpmfusion review (#2455)
- changed requires from libGL-devel/libGLU-devel instead of mesa-libGL-devel
@@ -181,6 +190,10 @@
- add Gregory Hainaut's patch to fix issue with gcc 4.8, for Fedora 19 build
- Changed cmake option of DBUILD_REPLAY_LOADERS to false and changed %%files accrdingly
+* Tue Mar 05 2013 Giles Birchley <gbirchey(a)blueyonder.co.uk>
+- bleeding edge build, altered package name
+- added pcsx2 as a conflict
+
* Mon Oct 15 2012 Giles Birchley <gbirchey(a)blueyonder.co.uk> - 1.0.0-1
- Build of official 1.0.0 Release
- Significant modifications to script to comply with Fedora/RPMFusion packaging requirements
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pcsx2/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 30 Sep 2013 19:02:43 -0000 1.2
+++ sources 5 Feb 2014 22:57:04 -0000 1.3
@@ -1 +1 @@
-d999360dc0e142476aeccaf8b6cf767b pcsx2-1.1.0-r5674-lnx-sources.tar.bz2
+da48624579902322c9417edb195ad5d9 v1.2.tar.gz
--- pcsx2-1.1.0_fedora_cflags_opts.diff DELETED ---
10 years, 9 months
rpms/moc/devel .cvsignore, 1.2, 1.3 moc.spec, 1.1, 1.2 sources, 1.2, 1.3 moc+warnings.patch, 1.1, NONE moc-r2506+fsf_addr.patch, 1.1, NONE moc-r2506:2526-samplesize.patch, 1.1, NONE
by Antonio
Author: sagitter
Update of /cvs/free/rpms/moc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25475/devel
Modified Files:
.cvsignore moc.spec sources
Removed Files:
moc+warnings.patch moc-r2506+fsf_addr.patch
moc-r2506:2526-samplesize.patch
Log Message:
Update to moc-2.5.0-beta2
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/moc/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 19 Oct 2013 10:33:19 -0000 1.2
+++ .cvsignore 5 Feb 2014 20:41:32 -0000 1.3
@@ -1 +1 @@
-moc-2.5.0-beta1.tar.bz2
+moc-2.5.0-beta2.tar.bz2
Index: moc.spec
===================================================================
RCS file: /cvs/free/rpms/moc/devel/moc.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- moc.spec 19 Oct 2013 10:33:19 -0000 1.1
+++ moc.spec 5 Feb 2014 20:41:32 -0000 1.2
@@ -4,21 +4,10 @@
Name: moc
Summary: Music on Console - Console audio player for Linux/UNIX
Version: 2.5.0
-Release: 0.10.beta1%{?dist}
+Release: 0.1.beta2%{?dist}
License: GPLv2+ and GPLv3+
URL: http://www.moc.daper.net
-Source0: http://ftp.daper.net/pub/soft/moc/unstable/%{name}-%{version}-beta1.tar.bz2
-
-## This patch corrects all outdated FSF address
-Patch0: %{name}-r2506+fsf_addr.patch
-
-## This patchset corrects "Unsupported sample size!" error
-## See http://moc.daper.net/node/862
-Patch1: %{name}-r2506:2526-samplesize.patch
-
-## This patch corrects 'sizeof' argument bug;
-## directly provided from upstream
-Patch2: %{name}+warnings.patch
+Source0: http://ftp.daper.net/pub/soft/moc/unstable/%{name}-%{version}-beta2.tar.bz2
BuildRequires: pkgconfig(ncurses)
BuildRequires: pkgconfig(alsa)
@@ -43,12 +32,11 @@
BuildRequires: pkgconfig(opus)
BuildRequires: libtool
BuildRequires: librcc-devel
-
-## Source code configuring tools
-BuildRequires: autoconf, automake >= 1.13
+BuildRequires: libquvi-devel, popt-devel
Requires: ffmpeg
Requires: opus
+Requires: libquvi, libquvi-scripts, popt
%description
MOC (music on console) is a console audio player for LINUX/UNIX designed to be
@@ -57,25 +45,15 @@
files in this directory beginning from the chosen file.
%prep
-%setup -q -n %{name}-%{version}-beta1
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-
-## This renaming is requested by Automake-1.13
-mv configure.in configure.ac
+%setup -q -n %{name}-%{version}-beta2
%build
-
-## Latest patchset changes ffmpeg.m4 file
-## Autoreconf is temporarily necessary
-autoreconf -i --force
-
-%configure --disable-static --with-rcc \
+%configure --disable-static --disable-silent-rules \
+ --disable-rpath --with-rcc \
--with-oss --with-alsa --with-jack --with-aac --with-mp3 \
--with-musepack --with-vorbis --with-flac --with-wavpack \
--with-sndfile --with-modplug --with-ffmpeg --with-speex \
- --with-samplerate --with-curl
+ --with-samplerate --with-curl --disable-debug --without-magic
make %{?_smp_mflags}
%install
@@ -97,6 +75,10 @@
%{_libdir}/%{name}/decoder_plugins
%changelog
+* Wed Feb 05 2014 Antonio Trande <sagitter(a)fedoraproject.org> 2.5.0-0.1.beta2
+- Update to 2.5.0-beta2
+- Removed previous patches
+
* Tue Jun 18 2013 Antonio Trande <sagitter(a)fedoraproject.org> 2.5.0-0.10.beta1
- Added patchset to fix "Unsupported sample size!" error
See http://moc.daper.net/node/862 for more details
Index: sources
===================================================================
RCS file: /cvs/free/rpms/moc/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 19 Oct 2013 10:33:19 -0000 1.2
+++ sources 5 Feb 2014 20:41:32 -0000 1.3
@@ -1 +1 @@
-795ecba86847e082aa2f21937cc04804 moc-2.5.0-beta1.tar.bz2
+da87b90b57934234589b63e347921458 moc-2.5.0-beta2.tar.bz2
--- moc+warnings.patch DELETED ---
--- moc-r2506+fsf_addr.patch DELETED ---
--- moc-r2506:2526-samplesize.patch DELETED ---
10 years, 9 months
rpms/lpf-skype/F-20 lpf-skype.spec,1.12,1.13 skype.spec.in,1.2,1.3
by Simone Caronni
Author: slaanesh
Update of /cvs/nonfree/rpms/lpf-skype/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv31200
Modified Files:
lpf-skype.spec skype.spec.in
Log Message:
* Wed Jan 29 2014 Simone Caronni <negativo17(a)gmail.com> - 4.2.0.13-1
- Update to 4.2.0.13.
Index: lpf-skype.spec
===================================================================
RCS file: /cvs/nonfree/rpms/lpf-skype/F-20/lpf-skype.spec,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- lpf-skype.spec 6 Dec 2013 10:40:42 -0000 1.12
+++ lpf-skype.spec 5 Feb 2014 13:06:58 -0000 1.13
@@ -4,8 +4,8 @@
%define target_pkg %(t=%{name}; echo ${t#lpf-})
Name: lpf-skype
-Version: 4.2.0.11
-Release: 11%{?dist}
+Version: 4.2.0.13
+Release: 1%{?dist}
Summary: Skype Messaging and Telephony Client package bootstrap
@@ -65,6 +65,12 @@
%changelog
+* Wed Jan 29 2014 Simone Caronni <negativo17(a)gmail.com> - 4.2.0.13-1
+- Update to 4.2.0.13.
+
+* Fri Dec 27 2013 leamas(a)nowhere.net - 4.2.0.11-12
+- Rebuild after F20 branching
+
* Fri Dec 06 2013 Alec Leamas <leamas(a)nowhere.net> - 4.2.0.11-11
- Fix lpf versioned dependency.
Index: skype.spec.in
===================================================================
RCS file: /cvs/nonfree/rpms/lpf-skype/F-20/skype.spec.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- skype.spec.in 4 Dec 2013 15:16:50 -0000 1.2
+++ skype.spec.in 5 Feb 2014 13:06:58 -0000 1.3
@@ -4,8 +4,8 @@
%global __spec_install_post /usr/lib/rpm/brp-compress
Name: skype
-Version: 4.2.0.11
-Release: 8%{?dist}
+Version: 4.2.0.13
+Release: 1%{?dist}
Summary: Skype Messaging and Telephony Client
License: Skype End User License Agreement
@@ -103,6 +103,9 @@
%{_datadir}/%{name}
%changelog
+* Wed Jan 29 2014 Simone Caronni <negativo17(a)gmail.com> - 4.2.0.13-1
+- Updated to 4.2.0.13.
+
* Wed Nov 20 2013 Simone Caronni <negativo17(a)gmail.com> - 4.2.0.11-8
- Split main executable from data files (preparation for x86_64 binaries).
10 years, 9 months
rpms/live555/devel sources, 1.20, 1.21 .cvsignore, 1.19, 1.20 live555.spec, 1.25, 1.26
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/live555/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16999
Modified Files:
sources .cvsignore live555.spec
Log Message:
Update to live555 snapshot
Index: sources
===================================================================
RCS file: /cvs/free/rpms/live555/devel/sources,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- sources 28 Nov 2013 23:04:54 -0000 1.20
+++ sources 4 Feb 2014 22:34:21 -0000 1.21
@@ -1 +1 @@
-80b78329f2889f9a792b016ed06abb82 live.2013.11.26.tar.gz
+d5552dc3905ee606954e370621df1e7f live.2014.02.04.tar.gz
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/live555/devel/.cvsignore,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- .cvsignore 28 Nov 2013 23:04:54 -0000 1.19
+++ .cvsignore 4 Feb 2014 22:34:21 -0000 1.20
@@ -1 +1 @@
-live.2013.11.26.tar.gz
+live.2014.02.04.tar.gz
Index: live555.spec
===================================================================
RCS file: /cvs/free/rpms/live555/devel/live555.spec,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- live555.spec 28 Nov 2013 23:04:54 -0000 1.25
+++ live555.spec 4 Feb 2014 22:34:21 -0000 1.26
@@ -1,5 +1,5 @@
Name: live555
-Version: 2013.11.26
+Version: 2014.02.04
Release: 1%{?dist}
Summary: Live555.com streaming libraries
@@ -121,6 +121,9 @@
%changelog
+* Tue Feb 04 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 2014.02.04-1
+- Update to 2014.02.04
+
* Thu Nov 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2013.11.26-1
- Update to 2013.11.26
10 years, 9 months
rpms/ogmrip/F-20 .cvsignore, 1.11, 1.12 ogmrip.spec, 1.18, 1.19 sources, 1.11, 1.12
by Gianluca Sforna
Author: giallu
Update of /cvs/free/rpms/ogmrip/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18394
Modified Files:
.cvsignore ogmrip.spec sources
Log Message:
add patch for startup issue (#3124)
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ogmrip/F-20/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 14 Mar 2013 20:47:58 -0000 1.11
+++ .cvsignore 3 Feb 2014 17:49:57 -0000 1.12
@@ -1 +1,2 @@
ogmrip-1.0.0.tar.gz
+ogmrip-1.0-option-testing.patch
Index: ogmrip.spec
===================================================================
RCS file: /cvs/free/rpms/ogmrip/F-20/ogmrip.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ogmrip.spec 27 May 2013 19:05:40 -0000 1.18
+++ ogmrip.spec 3 Feb 2014 17:49:57 -0000 1.19
@@ -1,6 +1,6 @@
Name: ogmrip
Version: 1.0.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: DVD ripping and encoding graphical user interface
Group: Applications/Multimedia
@@ -31,6 +31,9 @@
Requires(post): GConf2
Requires(postun): GConf2
+#from upstream https://sourceforge.net/p/ogmrip/patches/41/
+Patch0: ogmrip-1.0-option-testing.patch
+
%description
OGMRip is an application and a set of libraries for ripping and encoding DVDs
@@ -57,6 +60,7 @@
%prep
%setup -q
+%patch0 -p0
%build
%configure \
@@ -132,6 +136,9 @@
%changelog
+* Mon Feb 3 2014 Gianluca Sforna <giallu(a)gmail.com> - 1.0.0-3
+- add upstream patch for startup hang (#3124)
+
* Mon May 27 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.0-2
- Rebuilt for x264/FFmpeg
@@ -165,7 +172,7 @@
- new upstream release
- Fix build with GTK3 and libnotify 0.7
-* Fri May 22 2010 Gianluca Sforna <giallu gmail com> - 0.13.5-1
+* Fri May 21 2010 Gianluca Sforna <giallu gmail com> - 0.13.5-1
- new upstream release
- drop upstreamed patch
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ogmrip/F-20/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 14 Mar 2013 20:47:58 -0000 1.11
+++ sources 3 Feb 2014 17:49:57 -0000 1.12
@@ -1 +1,2 @@
2cfab6a20bb5bb2603d41627b9f26ad7 ogmrip-1.0.0.tar.gz
+d39738b312e99d59359ab73d5482138c ogmrip-1.0-option-testing.patch
10 years, 9 months
rpms/ogmrip/devel .cvsignore,1.12,1.13 sources,1.12,1.13
by Gianluca Sforna
Author: giallu
Update of /cvs/free/rpms/ogmrip/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18123
Modified Files:
.cvsignore sources
Log Message:
fix broken source links
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ogmrip/devel/.cvsignore,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- .cvsignore 3 Feb 2014 17:40:17 -0000 1.12
+++ .cvsignore 3 Feb 2014 17:46:12 -0000 1.13
@@ -1 +1,2 @@
+ogmrip-1.0.0.tar.gz
ogmrip-1.0-option-testing.patch
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ogmrip/devel/sources,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- sources 3 Feb 2014 17:40:17 -0000 1.12
+++ sources 3 Feb 2014 17:46:12 -0000 1.13
@@ -1 +1,2 @@
+2cfab6a20bb5bb2603d41627b9f26ad7 ogmrip-1.0.0.tar.gz
d39738b312e99d59359ab73d5482138c ogmrip-1.0-option-testing.patch
10 years, 9 months
rpms/ogmrip/devel sources, 1.11, 1.12 .cvsignore, 1.11, 1.12 ogmrip.spec, 1.18, 1.19
by Gianluca Sforna
Author: giallu
Update of /cvs/free/rpms/ogmrip/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv17487
Modified Files:
sources .cvsignore ogmrip.spec
Log Message:
add patch for startup issue (#3124)
Index: sources
===================================================================
RCS file: /cvs/free/rpms/ogmrip/devel/sources,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- sources 14 Mar 2013 20:47:58 -0000 1.11
+++ sources 3 Feb 2014 17:40:17 -0000 1.12
@@ -1 +1 @@
-2cfab6a20bb5bb2603d41627b9f26ad7 ogmrip-1.0.0.tar.gz
+d39738b312e99d59359ab73d5482138c ogmrip-1.0-option-testing.patch
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/ogmrip/devel/.cvsignore,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- .cvsignore 14 Mar 2013 20:47:58 -0000 1.11
+++ .cvsignore 3 Feb 2014 17:40:17 -0000 1.12
@@ -1 +1 @@
-ogmrip-1.0.0.tar.gz
+ogmrip-1.0-option-testing.patch
Index: ogmrip.spec
===================================================================
RCS file: /cvs/free/rpms/ogmrip/devel/ogmrip.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ogmrip.spec 27 May 2013 19:05:40 -0000 1.18
+++ ogmrip.spec 3 Feb 2014 17:40:17 -0000 1.19
@@ -1,6 +1,6 @@
Name: ogmrip
Version: 1.0.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: DVD ripping and encoding graphical user interface
Group: Applications/Multimedia
@@ -31,6 +31,9 @@
Requires(post): GConf2
Requires(postun): GConf2
+#from upstream https://sourceforge.net/p/ogmrip/patches/41/
+Patch0: ogmrip-1.0-option-testing.patch
+
%description
OGMRip is an application and a set of libraries for ripping and encoding DVDs
@@ -57,6 +60,7 @@
%prep
%setup -q
+%patch0 -p0
%build
%configure \
@@ -132,6 +136,9 @@
%changelog
+* Mon Feb 3 2014 Gianluca Sforna <giallu(a)gmail.com> - 1.0.0-3
+- add upstream patch for startup hang (#3124)
+
* Mon May 27 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.0.0-2
- Rebuilt for x264/FFmpeg
@@ -165,7 +172,7 @@
- new upstream release
- Fix build with GTK3 and libnotify 0.7
-* Fri May 22 2010 Gianluca Sforna <giallu gmail com> - 0.13.5-1
+* Fri May 21 2010 Gianluca Sforna <giallu gmail com> - 0.13.5-1
- new upstream release
- drop upstreamed patch
10 years, 9 months
rpms/pyskool/F-19 .cvsignore, 1.4, 1.5 pyskool.spec, 1.3, 1.4 sources, 1.4, 1.5
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/pyskool/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2182
Modified Files:
.cvsignore pyskool.spec sources
Log Message:
* Sun Feb 2 2014 Andrea Musuruane <musuruan(a)gmail.com> 1.1.1-1
- Updated to upstream 1.1.1
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/pyskool/F-19/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 7 Dec 2013 15:01:55 -0000 1.4
+++ .cvsignore 2 Feb 2014 11:08:04 -0000 1.5
@@ -1 +1 @@
-pyskool-1.1.tar.xz
+pyskool-1.1.1.tar.xz
Index: pyskool.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pyskool/F-19/pyskool.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pyskool.spec 7 Dec 2013 15:01:56 -0000 1.3
+++ pyskool.spec 2 Feb 2014 11:08:04 -0000 1.4
@@ -1,7 +1,7 @@
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Name: pyskool
-Version: 1.1
+Version: 1.1.1
Release: 1%{?dist}
Summary: Remakes of Skool Daze and Back to Skool
@@ -99,6 +99,9 @@
%changelog
+* Sun Feb 2 2014 Andrea Musuruane <musuruan(a)gmail.com> 1.1.1-1
+- Updated to upstream 1.1.1
+
* Fri Dec 6 2013 Andrea Musuruane <musuruan(a)gmail.com> 1.1-1
- Updated to upstream 1.1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pyskool/F-19/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 7 Dec 2013 15:01:56 -0000 1.4
+++ sources 2 Feb 2014 11:08:04 -0000 1.5
@@ -1 +1 @@
-58296ddaba35802450c45c7e8ea1a735 pyskool-1.1.tar.xz
+709e241938dd1184098d5ccbd6a382cd pyskool-1.1.1.tar.xz
10 years, 9 months
rpms/pyskool/F-20 .cvsignore, 1.4, 1.5 pyskool.spec, 1.3, 1.4 sources, 1.4, 1.5
by Andrea Musuruane
Author: musuruan
Update of /cvs/nonfree/rpms/pyskool/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2042
Modified Files:
.cvsignore pyskool.spec sources
Log Message:
* Sun Feb 2 2014 Andrea Musuruane <musuruan(a)gmail.com> 1.1.1-1
- Updated to upstream 1.1.1
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/pyskool/F-20/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 7 Dec 2013 15:01:08 -0000 1.4
+++ .cvsignore 2 Feb 2014 11:07:32 -0000 1.5
@@ -1 +1 @@
-pyskool-1.1.tar.xz
+pyskool-1.1.1.tar.xz
Index: pyskool.spec
===================================================================
RCS file: /cvs/nonfree/rpms/pyskool/F-20/pyskool.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pyskool.spec 7 Dec 2013 15:01:09 -0000 1.3
+++ pyskool.spec 2 Feb 2014 11:07:32 -0000 1.4
@@ -1,7 +1,7 @@
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Name: pyskool
-Version: 1.1
+Version: 1.1.1
Release: 1%{?dist}
Summary: Remakes of Skool Daze and Back to Skool
@@ -99,6 +99,9 @@
%changelog
+* Sun Feb 2 2014 Andrea Musuruane <musuruan(a)gmail.com> 1.1.1-1
+- Updated to upstream 1.1.1
+
* Fri Dec 6 2013 Andrea Musuruane <musuruan(a)gmail.com> 1.1-1
- Updated to upstream 1.1
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/pyskool/F-20/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 7 Dec 2013 15:01:09 -0000 1.4
+++ sources 2 Feb 2014 11:07:32 -0000 1.5
@@ -1 +1 @@
-58296ddaba35802450c45c7e8ea1a735 pyskool-1.1.tar.xz
+709e241938dd1184098d5ccbd6a382cd pyskool-1.1.1.tar.xz
10 years, 9 months