rpms/vlc/devel vlc-2.0.1-fftype.patch, NONE, 1.1 .cvsignore, 1.46, 1.47 sources, 1.54, 1.55 vlc.spec, 1.150, 1.151
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24004/devel
Modified Files:
.cvsignore sources vlc.spec
Added Files:
vlc-2.0.1-fftype.patch
Log Message:
Update to 2.0.1
vlc-2.0.1-fftype.patch:
switcher.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- NEW FILE vlc-2.0.1-fftype.patch ---
diff -up vlc-2.0.1/modules/stream_out/switcher.c.orig vlc-2.0.1/modules/stream_out/switcher.c
--- vlc-2.0.1/modules/stream_out/switcher.c.orig 2012-05-01 16:31:41.036832197 +0200
+++ vlc-2.0.1/modules/stream_out/switcher.c 2012-05-01 16:35:53.694838241 +0200
@@ -844,7 +844,7 @@ static block_t *VideoGetBuffer( sout_str
if ( id->i_nb_pred >= p_sys->i_gop )
{
- id->p_frame->pict_type = FF_I_TYPE;
+ id->p_frame->pict_type = AV_PICTURE_TYPE_I;
#if 0
id->p_frame->me_threshold = 0;
id->p_frame->mb_threshold = 0;
@@ -853,7 +853,7 @@ static block_t *VideoGetBuffer( sout_str
}
else
{
- id->p_frame->pict_type = FF_P_TYPE;
+ id->p_frame->pict_type = AV_PICTURE_TYPE_P;
#if 0
if ( id->p_frame->mb_type != NULL )
{
@@ -873,7 +873,7 @@ static block_t *VideoGetBuffer( sout_str
#if 0
if ( id->p_frame->mb_type == NULL
- && id->ff_enc_c->coded_frame->pict_type != FF_I_TYPE )
+ && id->ff_enc_c->coded_frame->pict_type != AV_PICTURE_TYPE_I )
{
int mb_width = (id->ff_enc_c->width + 15) / 16;
int mb_height = (id->ff_enc_c->height + 15) / 16;
@@ -926,13 +926,13 @@ static block_t *VideoGetBuffer( sout_str
switch ( id->ff_enc_c->coded_frame->pict_type )
{
- case FF_I_TYPE:
+ case AV_PICTURE_TYPE_I:
p_out->i_flags |= BLOCK_FLAG_TYPE_I;
break;
- case FF_P_TYPE:
+ case AV_PICTURE_TYPE_P:
p_out->i_flags |= BLOCK_FLAG_TYPE_P;
break;
- case FF_B_TYPE:
+ case AV_PICTURE_TYPE_B:
p_out->i_flags |= BLOCK_FLAG_TYPE_B;
break;
default:
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/.cvsignore,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- .cvsignore 22 Feb 2012 22:57:22 -0000 1.46
+++ .cvsignore 2 May 2012 22:46:20 -0000 1.47
@@ -1 +1 @@
-vlc-2.0.0.tar.xz
+vlc-2.0.1.tar.xz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/sources,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- sources 22 Feb 2012 22:57:22 -0000 1.54
+++ sources 2 May 2012 22:46:20 -0000 1.55
@@ -1 +1 @@
-8806bff2ea9c76791123d444a92f708c vlc-2.0.0.tar.xz
+5ad114755670e4881a2b35354e2f79bc vlc-2.0.1.tar.xz
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/devel/vlc.spec,v
retrieving revision 1.150
retrieving revision 1.151
diff -u -r1.150 -r1.151
--- vlc.spec 13 Mar 2012 08:44:19 -0000 1.150
+++ vlc.spec 2 May 2012 22:46:20 -0000 1.151
@@ -21,8 +21,8 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
-Version: 2.0.0
-Release: 5%{?dist}
+Version: 2.0.1
+Release: 1%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -486,6 +486,9 @@
%changelog
+* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.1-1
+- Update to 2.0.1
+
* Tue Mar 13 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.0-5
- Rebuilt for x264 ABI 0.120
12 years, 6 months
rpms/vlc/F-17 vlc-2.0.1-fftype.patch, NONE, 1.1 .cvsignore, 1.46, 1.47 sources, 1.54, 1.55 vlc.spec, 1.149, 1.150
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlc/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv24004/F-17
Modified Files:
.cvsignore sources vlc.spec
Added Files:
vlc-2.0.1-fftype.patch
Log Message:
Update to 2.0.1
vlc-2.0.1-fftype.patch:
switcher.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
--- NEW FILE vlc-2.0.1-fftype.patch ---
diff -up vlc-2.0.1/modules/stream_out/switcher.c.orig vlc-2.0.1/modules/stream_out/switcher.c
--- vlc-2.0.1/modules/stream_out/switcher.c.orig 2012-05-01 16:31:41.036832197 +0200
+++ vlc-2.0.1/modules/stream_out/switcher.c 2012-05-01 16:35:53.694838241 +0200
@@ -844,7 +844,7 @@ static block_t *VideoGetBuffer( sout_str
if ( id->i_nb_pred >= p_sys->i_gop )
{
- id->p_frame->pict_type = FF_I_TYPE;
+ id->p_frame->pict_type = AV_PICTURE_TYPE_I;
#if 0
id->p_frame->me_threshold = 0;
id->p_frame->mb_threshold = 0;
@@ -853,7 +853,7 @@ static block_t *VideoGetBuffer( sout_str
}
else
{
- id->p_frame->pict_type = FF_P_TYPE;
+ id->p_frame->pict_type = AV_PICTURE_TYPE_P;
#if 0
if ( id->p_frame->mb_type != NULL )
{
@@ -873,7 +873,7 @@ static block_t *VideoGetBuffer( sout_str
#if 0
if ( id->p_frame->mb_type == NULL
- && id->ff_enc_c->coded_frame->pict_type != FF_I_TYPE )
+ && id->ff_enc_c->coded_frame->pict_type != AV_PICTURE_TYPE_I )
{
int mb_width = (id->ff_enc_c->width + 15) / 16;
int mb_height = (id->ff_enc_c->height + 15) / 16;
@@ -926,13 +926,13 @@ static block_t *VideoGetBuffer( sout_str
switch ( id->ff_enc_c->coded_frame->pict_type )
{
- case FF_I_TYPE:
+ case AV_PICTURE_TYPE_I:
p_out->i_flags |= BLOCK_FLAG_TYPE_I;
break;
- case FF_P_TYPE:
+ case AV_PICTURE_TYPE_P:
p_out->i_flags |= BLOCK_FLAG_TYPE_P;
break;
- case FF_B_TYPE:
+ case AV_PICTURE_TYPE_B:
p_out->i_flags |= BLOCK_FLAG_TYPE_B;
break;
default:
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlc/F-17/.cvsignore,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- .cvsignore 26 Feb 2012 12:06:24 -0000 1.46
+++ .cvsignore 2 May 2012 22:46:20 -0000 1.47
@@ -1 +1 @@
-vlc-2.0.0.tar.xz
+vlc-2.0.1.tar.xz
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlc/F-17/sources,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- sources 26 Feb 2012 12:06:24 -0000 1.54
+++ sources 2 May 2012 22:46:20 -0000 1.55
@@ -1 +1 @@
-8806bff2ea9c76791123d444a92f708c vlc-2.0.0.tar.xz
+5ad114755670e4881a2b35354e2f79bc vlc-2.0.1.tar.xz
Index: vlc.spec
===================================================================
RCS file: /cvs/free/rpms/vlc/F-17/vlc.spec,v
retrieving revision 1.149
retrieving revision 1.150
diff -u -r1.149 -r1.150
--- vlc.spec 13 Mar 2012 08:42:41 -0000 1.149
+++ vlc.spec 2 May 2012 22:46:20 -0000 1.150
@@ -21,8 +21,8 @@
Summary: The cross-platform open-source multimedia framework, player and server
Name: vlc
-Version: 2.0.0
-Release: 5%{?dist}
+Version: 2.0.1
+Release: 1%{?dist}
License: GPLv2+
Group: Applications/Multimedia
URL: http://www.videolan.org
@@ -486,6 +486,9 @@
%changelog
+* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.1-1
+- Update to 2.0.1
+
* Tue Mar 13 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.0-5
- Rebuilt for x264 ABI 0.120
12 years, 6 months
rpms/buildsys-build-rpmfusion/F-17 buildsys-build-rpmfusion-kerneldevpkgs-current, 1.29, 1.30 buildsys-build-rpmfusion.spec, 1.41, 1.42
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/buildsys-build-rpmfusion/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv22970
Modified Files:
buildsys-build-rpmfusion-kerneldevpkgs-current
buildsys-build-rpmfusion.spec
Log Message:
* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 10:17-0.6
- rebuild for kernel 3.3.4-3.fc17
Index: buildsys-build-rpmfusion-kerneldevpkgs-current
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-17/buildsys-build-rpmfusion-kerneldevpkgs-current,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- buildsys-build-rpmfusion-kerneldevpkgs-current 28 Apr 2012 22:34:43 -0000 1.29
+++ buildsys-build-rpmfusion-kerneldevpkgs-current 2 May 2012 22:21:56 -0000 1.30
@@ -1,3 +1,3 @@
-3.3.4-1.fc17
-3.3.4-1.fc17smp
-3.3.4-1.fc17PAE
+3.3.4-3.fc17
+3.3.4-3.fc17smp
+3.3.4-3.fc17PAE
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-17/buildsys-build-rpmfusion.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- buildsys-build-rpmfusion.spec 28 Apr 2012 22:34:43 -0000 1.41
+++ buildsys-build-rpmfusion.spec 2 May 2012 22:21:56 -0000 1.42
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 17
-Release: 0.5
+Release: 0.6
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 10:17-0.6
+- rebuild for kernel 3.3.4-3.fc17
+
* Sat Apr 28 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 10:17-0.5
- rebuild for kernel 3.3.4-1.fc17
12 years, 6 months
rpms/mednafen/F-15 .cvsignore, 1.9, 1.10 mednafen.spec, 1.14, 1.15 sources, 1.9, 1.10 mednafen-0.9.19-gcc47.patch, 1.2, NONE
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/F-15
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21943
Modified Files:
.cvsignore mednafen.spec sources
Removed Files:
mednafen-0.9.19-gcc47.patch
Log Message:
* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
- Updated to 0.9.21-WIP
- Dropped upstreamed gcc-47 patch
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-15/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 10 Feb 2012 21:54:22 -0000 1.9
+++ .cvsignore 2 May 2012 22:07:38 -0000 1.10
@@ -1 +1 @@
-mednafen-0.9.19-wip.tar.bz2
+mednafen-0.9.21-wip.tar.bz2
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-15/mednafen.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- mednafen.spec 10 Feb 2012 21:54:22 -0000 1.14
+++ mednafen.spec 2 May 2012 22:07:38 -0000 1.15
@@ -1,5 +1,5 @@
Name: mednafen
-Version: 0.9.19
+Version: 0.9.21
Release: 0.1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
#mednafen is a monstrosity build out of many emulators hence the colourful licensing
@@ -7,7 +7,6 @@
URL: http://mednafen.sourceforge.net
#Get it here: http://forum.fobby.net/index.php?t=thread&frm_id=4
Source0: %{name}-%{version}-wip.tar.bz2
-Patch0: %{name}-%{version}-gcc47.patch
BuildRequires: gettext
BuildRequires: pkgconfig >= 0.9.0
BuildRequires: SDL_net-devel >= 1.2.0
@@ -46,7 +45,6 @@
%prep
%setup -q -n %{name}
-%patch0 -p1 -b .gcc47
# Permission cleanups for debuginfo
find \( -name \*.c\* -or -name \*.h\* \) -exec chmod -x {} \;
@@ -75,6 +73,10 @@
%changelog
+* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
+- Updated to 0.9.21-WIP
+- Dropped upstreamed gcc-47 patch
+
* Fri Feb 10 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.19-0.1
- Updated to 0.9.19-WIP
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-15/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 10 Feb 2012 21:54:22 -0000 1.9
+++ sources 2 May 2012 22:07:38 -0000 1.10
@@ -1 +1 @@
-64be12196aa02828539af677b0e2a66c mednafen-0.9.19-wip.tar.bz2
+40516f81b18df70ae4a2dfd411fa0861 mednafen-0.9.21-wip.tar.bz2
--- mednafen-0.9.19-gcc47.patch DELETED ---
12 years, 6 months
rpms/mednafen/F-16 .cvsignore, 1.9, 1.10 mednafen.spec, 1.14, 1.15 sources, 1.9, 1.10 mednafen-0.9.19-gcc47.patch, 1.2, NONE
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21827
Modified Files:
.cvsignore mednafen.spec sources
Removed Files:
mednafen-0.9.19-gcc47.patch
Log Message:
* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
- Updated to 0.9.21-WIP
- Dropped upstreamed gcc-47 patch
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-16/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 10 Feb 2012 21:54:09 -0000 1.9
+++ .cvsignore 2 May 2012 22:07:30 -0000 1.10
@@ -1 +1 @@
-mednafen-0.9.19-wip.tar.bz2
+mednafen-0.9.21-wip.tar.bz2
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-16/mednafen.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- mednafen.spec 10 Feb 2012 21:54:09 -0000 1.14
+++ mednafen.spec 2 May 2012 22:07:30 -0000 1.15
@@ -1,5 +1,5 @@
Name: mednafen
-Version: 0.9.19
+Version: 0.9.21
Release: 0.1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
#mednafen is a monstrosity build out of many emulators hence the colourful licensing
@@ -7,7 +7,6 @@
URL: http://mednafen.sourceforge.net
#Get it here: http://forum.fobby.net/index.php?t=thread&frm_id=4
Source0: %{name}-%{version}-wip.tar.bz2
-Patch0: %{name}-%{version}-gcc47.patch
BuildRequires: gettext
BuildRequires: pkgconfig >= 0.9.0
BuildRequires: SDL_net-devel >= 1.2.0
@@ -46,7 +45,6 @@
%prep
%setup -q -n %{name}
-%patch0 -p1 -b .gcc47
# Permission cleanups for debuginfo
find \( -name \*.c\* -or -name \*.h\* \) -exec chmod -x {} \;
@@ -75,6 +73,10 @@
%changelog
+* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
+- Updated to 0.9.21-WIP
+- Dropped upstreamed gcc-47 patch
+
* Fri Feb 10 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.19-0.1
- Updated to 0.9.19-WIP
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-16/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 10 Feb 2012 21:54:09 -0000 1.9
+++ sources 2 May 2012 22:07:30 -0000 1.10
@@ -1 +1 @@
-64be12196aa02828539af677b0e2a66c mednafen-0.9.19-wip.tar.bz2
+40516f81b18df70ae4a2dfd411fa0861 mednafen-0.9.21-wip.tar.bz2
--- mednafen-0.9.19-gcc47.patch DELETED ---
12 years, 6 months
rpms/mednafen/F-17 .cvsignore, 1.9, 1.10 mednafen.spec, 1.15, 1.16 sources, 1.9, 1.10 mednafen-0.9.19-gcc47.patch, 1.2, NONE
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21725
Modified Files:
.cvsignore mednafen.spec sources
Removed Files:
mednafen-0.9.19-gcc47.patch
Log Message:
* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
- Updated to 0.9.21-WIP
- Dropped upstreamed gcc-47 patch
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-17/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 10 Feb 2012 21:53:54 -0000 1.9
+++ .cvsignore 2 May 2012 22:07:23 -0000 1.10
@@ -1 +1 @@
-mednafen-0.9.19-wip.tar.bz2
+mednafen-0.9.21-wip.tar.bz2
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-17/mednafen.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- mednafen.spec 10 Feb 2012 21:53:54 -0000 1.15
+++ mednafen.spec 2 May 2012 22:07:24 -0000 1.16
@@ -1,5 +1,5 @@
Name: mednafen
-Version: 0.9.19
+Version: 0.9.21
Release: 0.1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
#mednafen is a monstrosity build out of many emulators hence the colourful licensing
@@ -7,7 +7,6 @@
URL: http://mednafen.sourceforge.net
#Get it here: http://forum.fobby.net/index.php?t=thread&frm_id=4
Source0: %{name}-%{version}-wip.tar.bz2
-Patch0: %{name}-%{version}-gcc47.patch
BuildRequires: gettext
BuildRequires: pkgconfig >= 0.9.0
BuildRequires: SDL_net-devel >= 1.2.0
@@ -46,7 +45,6 @@
%prep
%setup -q -n %{name}
-%patch0 -p1 -b .gcc47
# Permission cleanups for debuginfo
find \( -name \*.c\* -or -name \*.h\* \) -exec chmod -x {} \;
@@ -75,6 +73,10 @@
%changelog
+* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
+- Updated to 0.9.21-WIP
+- Dropped upstreamed gcc-47 patch
+
* Fri Feb 10 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.19-0.1
- Updated to 0.9.19-WIP
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/F-17/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 10 Feb 2012 21:53:54 -0000 1.9
+++ sources 2 May 2012 22:07:24 -0000 1.10
@@ -1 +1 @@
-64be12196aa02828539af677b0e2a66c mednafen-0.9.19-wip.tar.bz2
+40516f81b18df70ae4a2dfd411fa0861 mednafen-0.9.21-wip.tar.bz2
--- mednafen-0.9.19-gcc47.patch DELETED ---
12 years, 6 months
rpms/mednafen/devel .cvsignore, 1.9, 1.10 mednafen.spec, 1.15, 1.16 sources, 1.9, 1.10 mednafen-0.9.19-gcc47.patch, 1.2, NONE
by Julian Sikorski
Author: belegdol
Update of /cvs/nonfree/rpms/mednafen/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21608
Modified Files:
.cvsignore mednafen.spec sources
Removed Files:
mednafen-0.9.19-gcc47.patch
Log Message:
* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
- Updated to 0.9.21-WIP
- Dropped upstreamed gcc-47 patch
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/devel/.cvsignore,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- .cvsignore 10 Feb 2012 21:53:54 -0000 1.9
+++ .cvsignore 2 May 2012 22:07:13 -0000 1.10
@@ -1 +1 @@
-mednafen-0.9.19-wip.tar.bz2
+mednafen-0.9.21-wip.tar.bz2
Index: mednafen.spec
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/devel/mednafen.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- mednafen.spec 10 Feb 2012 21:53:54 -0000 1.15
+++ mednafen.spec 2 May 2012 22:07:13 -0000 1.16
@@ -1,5 +1,5 @@
Name: mednafen
-Version: 0.9.19
+Version: 0.9.21
Release: 0.1%{?dist}
Summary: A multi-system emulator utilizing OpenGL and SDL
#mednafen is a monstrosity build out of many emulators hence the colourful licensing
@@ -7,7 +7,6 @@
URL: http://mednafen.sourceforge.net
#Get it here: http://forum.fobby.net/index.php?t=thread&frm_id=4
Source0: %{name}-%{version}-wip.tar.bz2
-Patch0: %{name}-%{version}-gcc47.patch
BuildRequires: gettext
BuildRequires: pkgconfig >= 0.9.0
BuildRequires: SDL_net-devel >= 1.2.0
@@ -46,7 +45,6 @@
%prep
%setup -q -n %{name}
-%patch0 -p1 -b .gcc47
# Permission cleanups for debuginfo
find \( -name \*.c\* -or -name \*.h\* \) -exec chmod -x {} \;
@@ -75,6 +73,10 @@
%changelog
+* Wed May 02 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.21-0.1
+- Updated to 0.9.21-WIP
+- Dropped upstreamed gcc-47 patch
+
* Fri Feb 10 2012 Julian Sikorski <belegdol(a)fedoraproject.org> - 0.9.19-0.1
- Updated to 0.9.19-WIP
- Dropped obsolete Group, Buildroot, %%clean and %%defattr
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/mednafen/devel/sources,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sources 10 Feb 2012 21:53:54 -0000 1.9
+++ sources 2 May 2012 22:07:13 -0000 1.10
@@ -1 +1 @@
-64be12196aa02828539af677b0e2a66c mednafen-0.9.19-wip.tar.bz2
+40516f81b18df70ae4a2dfd411fa0861 mednafen-0.9.21-wip.tar.bz2
--- mednafen-0.9.19-gcc47.patch DELETED ---
12 years, 6 months
rpms/OCE/F-17 oce-48.png,1.2,1.3
by Richard Shaw
Author: hobbes1069
Update of /cvs/nonfree/rpms/OCE/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18951
Added Files:
oce-48.png
Log Message:
Re-add new icon with same name as old.
12 years, 6 months
rpms/OCE/F-17 oce-128.png, NONE, 1.1 oce-256.png, NONE, 1.1 oce-64.png, NONE, 1.1 OCE.spec, 1.1, 1.2 oce-32.png, 1.1, NONE oce-48.png, 1.1, NONE oce-96.png, 1.1, NONE
by Richard Shaw
Author: hobbes1069
Update of /cvs/nonfree/rpms/OCE/F-17
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18886
Modified Files:
OCE.spec
Added Files:
oce-128.png oce-256.png oce-64.png
Removed Files:
oce-32.png oce-48.png oce-96.png
Log Message:
* Wed May 02 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.8.0-3
- Update icons.
Index: OCE.spec
===================================================================
RCS file: /cvs/nonfree/rpms/OCE/F-17/OCE.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- OCE.spec 24 Dec 2011 20:05:00 -0000 1.1
+++ OCE.spec 2 May 2012 20:46:36 -0000 1.2
@@ -4,7 +4,7 @@
Name: OCE
Version: 0.8.0
-Release: 2%{?relcan:.rc%{relcan}}%{?dist}
+Release: 3%{?relcan:.rc%{relcan}}%{?dist}
Summary: OpenCASCADE Community Edition
License: Open CASCADE Technology Public License
@@ -17,9 +17,10 @@
Source1: DRAWEXE.1
Source2: opencascade-draw.desktop
-Source3: oce-96.png
-Source4: oce-48.png
-Source5: oce-32.png
+Source3: oce-256.png
+Source4: oce-128.png
+Source5: oce-64.png
+Source6: oce-48.png
# Utilities
BuildRequires: cmake
@@ -159,9 +160,11 @@
%{SOURCE2}
# Install icons
-install -Dm 0644 %{SOURCE3} %{buildroot}%{_datadir}/icons/hicolor/96x96/apps/oce.png
-install -Dm 0644 %{SOURCE4} %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/oce.png
-install -Dm 0644 %{SOURCE5} %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/oce.png
+for size in 256 128 64 48; do
+ icon=%{_sourcedir}/oce-${size}.png
+ install -Dm 0644 $icon \
+ %{buildroot}%{_datadir}/icons/hicolor/${size}x${size}/apps/oce.png
+done
%post foundation -p /sbin/ldconfig
@@ -288,6 +291,9 @@
%changelog
+* Wed May 02 2012 Richard Shaw <hobbes1069(a)gmail.com> - 0.8.0-3
+- Update icons.
+
* Mon Dec 19 2011 Richard Shaw <hobbes1069(a)gmail.com> - 0.8.0-2
- Build against OpenMP for parallelization.
- Fix problem with OCE overriding build flags.
12 years, 6 months
rpms/staging-kmod/F-16 staging-kmod.spec,1.52,1.53
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/staging-kmod/F-16
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18454
Modified Files:
staging-kmod.spec
Log Message:
Update to .2
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-16/staging-kmod.spec,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- staging-kmod.spec 2 May 2012 20:32:34 -0000 1.52
+++ staging-kmod.spec 2 May 2012 20:39:06 -0000 1.53
@@ -20,11 +20,7 @@
Name: staging-kmod
Version: 3.3
-<<<<<<< staging-kmod.spec
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.9
-=======
-Release: %{?prever:0.}2%{?prever:.%{prever}}%{?dist}.1
->>>>>>> 1.51
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.2
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -134,36 +130,13 @@
rm -rf $RPM_BUILD_ROOT
%changelog
-* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com>
+* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-2.2
- rebuild for updated kernel
-<<<<<<< staging-kmod.spec
-* Wed May 02 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-1.8
-- rebuild for updated kernel
-
-* Sun Apr 22 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-1.7
-- rebuild for updated kernel
-
-* Mon Apr 16 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-1.6
-- rebuild for updated kernel
-
-* Thu Apr 12 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-1.5
-- rebuild for updated kernel
-
-* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-1.4
-- rebuild for updated kernel
-
-* Tue Apr 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-1.3
-- rebuild for updated kernel
-
-* Fri Mar 30 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 3.3-1.2
-- rebuild for updated kernel
-=======
* Mon Apr 30 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.3-2.1
- make a few things more robust for drivers that have subdirectories (fixes
#2265)
- enbable a few options r8192e driver needs since 3.3
->>>>>>> 1.51
* Wed Mar 21 2012 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.3-1.1
- update to 3.3
12 years, 6 months