rpms/vlmc/F-17 vlmc-gcc47.patch, NONE, 1.1 vlmc-snapshot.sh, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 vlmc.spec, 1.4, 1.5
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlmc/F-17
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28554/F-17
Modified Files:
.cvsignore sources vlmc.spec
Added Files:
vlmc-gcc47.patch vlmc-snapshot.sh
Log Message:
Update to current snapshot
vlmc-gcc47.patch:
Project/WorkspaceWorker.cpp | 2 ++
vlmc.h | 2 ++
2 files changed, 4 insertions(+)
--- NEW FILE vlmc-gcc47.patch ---
diff -up vlmc-20120408/src/Project/WorkspaceWorker.cpp.gcc47 vlmc-20120408/src/Project/WorkspaceWorker.cpp
--- vlmc-20120408/src/Project/WorkspaceWorker.cpp.gcc47 2012-03-29 19:37:10.000000000 +0200
+++ vlmc-20120408/src/Project/WorkspaceWorker.cpp 2012-04-08 17:34:05.298089633 +0200
@@ -20,6 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#include <unistd.h> // link
+
#include "WorkspaceWorker.h"
#include "Media.h"
diff -up vlmc-20120408/src/vlmc.h.gcc47 vlmc-20120408/src/vlmc.h
--- vlmc-20120408/src/vlmc.h.gcc47 2012-03-29 19:37:10.000000000 +0200
+++ vlmc-20120408/src/vlmc.h 2012-04-08 17:33:15.322088791 +0200
@@ -24,6 +24,8 @@
#ifndef VLMC_H
#define VLMC_H
+#include <unistd.h> // sleep
+
#include <QtGlobal>
#ifdef Q_OS_WIN
--- NEW FILE vlmc-snapshot.sh ---
#!/bin/bash
set -e
tmp=$(mktemp -d)
trap cleanup EXIT
cleanup() {
set +e
[ -z "$tmp" -o ! -d "$tmp" ] || rm -rf "$tmp"
}
unset CDPATH
pwd=$(pwd)
date=$(date +%Y%m%d)
package=vlmc
pushd "$tmp"
git clone git://git.videolan.org/vlmc.git
cd $package
git archive --prefix="${package}-${date}/" --format=tar master | bzip2 > "$pwd"/${package}-${date}.tar.bz2
popd
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlmc/F-17/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 9 Mar 2012 22:52:11 -0000 1.5
+++ .cvsignore 8 Apr 2012 15:29:46 -0000 1.6
@@ -1 +1 @@
-vlmc-991cfe4.tar.gz
+vlmc-20120408.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlmc/F-17/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 9 Mar 2012 22:52:11 -0000 1.5
+++ sources 8 Apr 2012 15:29:46 -0000 1.6
@@ -1 +1 @@
-9774c01382950fd1a3b89140f3248c23 vlmc-991cfe4.tar.gz
+35cd181a7481754f4823b24533197e34 vlmc-20120408.tar.bz2
Index: vlmc.spec
===================================================================
RCS file: /cvs/free/rpms/vlmc/F-17/vlmc.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vlmc.spec 9 Mar 2012 22:52:11 -0000 1.4
+++ vlmc.spec 8 Apr 2012 15:29:46 -0000 1.5
@@ -1,17 +1,17 @@
-%global gitsnapshot 991cfe4
+%global date 20120408
Name: vlmc
Version: 0.2.0
-Release: 0.5.git%{gitsnapshot}%{?dist}
+Release: 0.5.git%{date}%{?dist}
Summary: VideoLAN Movie Creator
Group: Applications/Multimedia
License: GPLv2+
URL: http://trac.videolan.org/vlmc
-#Current snapshot at 20110109
-#http://git.videolan.org/?p=vlmc.git;a=snapshot;h=25a398b4e84a81e1482f93957f55077f4842f59e;sf=tgz
-Source0: vlmc-%{gitsnapshot}.tar.gz
+Source0: vlmc-%{date}.tar.bz2
+Source9: vlmc-snapshot.sh
Patch0: vlmc-13c4dbc-ldf.patch
+Patch1: vlmc-gcc47.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: vlc-devel >= 1.1.4
@@ -25,8 +25,9 @@
VideoLAN Movie Creator is a non-linear editing software for video creation based on libVLC
%prep
-%setup -q -n vlmc-%{gitsnapshot}
+%setup -q -n vlmc-%{date}
%patch0 -p1 -b .ldf
+%patch1 -p1 -b .gcc47
%build
12 years, 7 months
rpms/vlmc/devel vlmc-gcc47.patch, NONE, 1.1 vlmc-snapshot.sh, NONE, 1.1 .cvsignore, 1.5, 1.6 sources, 1.5, 1.6 vlmc.spec, 1.4, 1.5
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/vlmc/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28044/devel
Modified Files:
.cvsignore sources vlmc.spec
Added Files:
vlmc-gcc47.patch vlmc-snapshot.sh
Log Message:
Update to current snapshot
vlmc-gcc47.patch:
Project/WorkspaceWorker.cpp | 2 ++
vlmc.h | 2 ++
2 files changed, 4 insertions(+)
--- NEW FILE vlmc-gcc47.patch ---
diff -up vlmc-20120408/src/Project/WorkspaceWorker.cpp.gcc47 vlmc-20120408/src/Project/WorkspaceWorker.cpp
--- vlmc-20120408/src/Project/WorkspaceWorker.cpp.gcc47 2012-03-29 19:37:10.000000000 +0200
+++ vlmc-20120408/src/Project/WorkspaceWorker.cpp 2012-04-08 17:34:05.298089633 +0200
@@ -20,6 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
+#include <unistd.h> // link
+
#include "WorkspaceWorker.h"
#include "Media.h"
diff -up vlmc-20120408/src/vlmc.h.gcc47 vlmc-20120408/src/vlmc.h
--- vlmc-20120408/src/vlmc.h.gcc47 2012-03-29 19:37:10.000000000 +0200
+++ vlmc-20120408/src/vlmc.h 2012-04-08 17:33:15.322088791 +0200
@@ -24,6 +24,8 @@
#ifndef VLMC_H
#define VLMC_H
+#include <unistd.h> // sleep
+
#include <QtGlobal>
#ifdef Q_OS_WIN
--- NEW FILE vlmc-snapshot.sh ---
#!/bin/bash
set -e
tmp=$(mktemp -d)
trap cleanup EXIT
cleanup() {
set +e
[ -z "$tmp" -o ! -d "$tmp" ] || rm -rf "$tmp"
}
unset CDPATH
pwd=$(pwd)
date=$(date +%Y%m%d)
package=vlmc
pushd "$tmp"
git clone git://git.videolan.org/vlmc.git
cd $package
git archive --prefix="${package}-${date}/" --format=tar master | bzip2 > "$pwd"/${package}-${date}.tar.bz2
popd
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/vlmc/devel/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- .cvsignore 9 Mar 2012 22:52:11 -0000 1.5
+++ .cvsignore 8 Apr 2012 15:29:12 -0000 1.6
@@ -1 +1 @@
-vlmc-991cfe4.tar.gz
+vlmc-20120408.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/vlmc/devel/sources,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- sources 9 Mar 2012 22:52:11 -0000 1.5
+++ sources 8 Apr 2012 15:29:12 -0000 1.6
@@ -1 +1 @@
-9774c01382950fd1a3b89140f3248c23 vlmc-991cfe4.tar.gz
+35cd181a7481754f4823b24533197e34 vlmc-20120408.tar.bz2
Index: vlmc.spec
===================================================================
RCS file: /cvs/free/rpms/vlmc/devel/vlmc.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- vlmc.spec 9 Mar 2012 22:52:11 -0000 1.4
+++ vlmc.spec 8 Apr 2012 15:29:12 -0000 1.5
@@ -1,17 +1,17 @@
-%global gitsnapshot 991cfe4
+%global date 20120408
Name: vlmc
Version: 0.2.0
-Release: 0.5.git%{gitsnapshot}%{?dist}
+Release: 0.5.git%{date}%{?dist}
Summary: VideoLAN Movie Creator
Group: Applications/Multimedia
License: GPLv2+
URL: http://trac.videolan.org/vlmc
-#Current snapshot at 20110109
-#http://git.videolan.org/?p=vlmc.git;a=snapshot;h=25a398b4e84a81e1482f93957f55077f4842f59e;sf=tgz
-Source0: vlmc-%{gitsnapshot}.tar.gz
+Source0: vlmc-%{date}.tar.bz2
+Source9: vlmc-snapshot.sh
Patch0: vlmc-13c4dbc-ldf.patch
+Patch1: vlmc-gcc47.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires: vlc-devel >= 1.1.4
@@ -25,8 +25,9 @@
VideoLAN Movie Creator is a non-linear editing software for video creation based on libVLC
%prep
-%setup -q -n vlmc-%{gitsnapshot}
+%setup -q -n vlmc-%{date}
%patch0 -p1 -b .ldf
+%patch1 -p1 -b .gcc47
%build
12 years, 7 months
rpms/x264/devel x264.spec,1.33,1.34
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/x264/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16137/devel
Modified Files:
x264.spec
Log Message:
Disable ASM on armv5tel
Index: x264.spec
===================================================================
RCS file: /cvs/free/rpms/x264/devel/x264.spec,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- x264.spec 12 Mar 2012 20:00:58 -0000 1.33
+++ x264.spec 8 Apr 2012 14:04:14 -0000 1.34
@@ -6,7 +6,7 @@
Summary: H264/AVC video streams encoder
Name: x264
Version: 0.120
-Release: 2.%{snapshot}%{?dist}
+Release: 3.%{snapshot}%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://developers.videolan.org/x264.html
@@ -77,7 +77,7 @@
%{x_configure}\
--host=%{_target_platform} \
--libdir=%{_libdir} \
-%ifarch i686
+%ifarch i686 armv5tel
--disable-asm \
%endif
@@ -134,6 +134,9 @@
%endif
%changelog
+* Sun Apr 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.120-3.20120303
+- Disable ASM on armv5tel
+
* Tue Mar 6 2012 Sérgio Basto <sergio(a)serjux.com> - 0.120-2.20120303
- Enable libavformat , after compile ffmeg with 0.120-1
12 years, 7 months
rpms/x264/F-17 x264.spec,1.34,1.35
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/x264/F-17
In directory se02.es.rpmfusion.net:/tmp/cvs-serv16137/F-17
Modified Files:
x264.spec
Log Message:
Disable ASM on armv5tel
Index: x264.spec
===================================================================
RCS file: /cvs/free/rpms/x264/F-17/x264.spec,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- x264.spec 12 Mar 2012 21:12:13 -0000 1.34
+++ x264.spec 8 Apr 2012 14:04:14 -0000 1.35
@@ -1,11 +1,12 @@
%global snapshot 20120303
%global branch stable
+#global _without_gpac 0
%global _with_libavformat 1
Summary: H264/AVC video streams encoder
Name: x264
Version: 0.120
-Release: 2.%{snapshot}%{?dist}
+Release: 3.%{snapshot}%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://developers.videolan.org/x264.html
@@ -76,7 +77,7 @@
%{x_configure}\
--host=%{_target_platform} \
--libdir=%{_libdir} \
-%ifarch i686
+%ifarch i686 armv5tel
--disable-asm \
%endif
@@ -133,6 +134,9 @@
%endif
%changelog
+* Sun Apr 08 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.120-3.20120303
+- Disable ASM on armv5tel
+
* Tue Mar 6 2012 Sérgio Basto <sergio(a)serjux.com> - 0.120-2.20120303
- Enable libavformat , after compile ffmeg with 0.120-1
12 years, 7 months
rpms/wl-kmod/F-16 wl-kmod.spec,1.82,1.83
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3605
Modified Files:
wl-kmod.spec
Log Message:
* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.16
- rebuild for updated kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-16/wl-kmod.spec,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- wl-kmod.spec 3 Apr 2012 16:59:07 -0000 1.82
+++ wl-kmod.spec 7 Apr 2012 13:22:41 -0000 1.83
@@ -9,7 +9,7 @@
Name: wl-kmod
Version: 5.100.82.112
-Release: 2%{?dist}.15
+Release: 2%{?dist}.16
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.16
+- rebuild for updated kernel
+
* Tue Apr 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-2.15
- rebuild for updated kernel
12 years, 7 months
rpms/nvidia-kmod/F-16 nvidia-kmod.spec,1.123,1.124
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3481
Modified Files:
nvidia-kmod.spec
Log Message:
* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.33-2.3
- rebuild for updated kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-16/nvidia-kmod.spec,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- nvidia-kmod.spec 3 Apr 2012 16:58:56 -0000 1.123
+++ nvidia-kmod.spec 7 Apr 2012 13:22:31 -0000 1.124
@@ -9,7 +9,7 @@
Epoch: 1
Version: 295.33
# Taken over by kmodtool
-Release: 2%{?dist}.2
+Release: 2%{?dist}.3
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -77,6 +77,9 @@
%changelog
+* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.33-2.3
+- rebuild for updated kernel
+
* Tue Apr 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1:295.33-2.2
- rebuild for updated kernel
12 years, 7 months
rpms/catalyst-kmod/F-16 catalyst-kmod.spec,1.40,1.41
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3357
Modified Files:
catalyst-kmod.spec
Log Message:
* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 12.3-2.2
- rebuild for updated kernel
Index: catalyst-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-kmod/F-16/catalyst-kmod.spec,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- catalyst-kmod.spec 3 Apr 2012 16:58:44 -0000 1.40
+++ catalyst-kmod.spec 7 Apr 2012 13:22:20 -0000 1.41
@@ -13,7 +13,7 @@
Name: catalyst-kmod
Version: 12.3
-Release: 2%{?dist}.1
+Release: 2%{?dist}.2
# Taken over by kmodtool
Summary: AMD display driver kernel module
Group: System Environment/Kernel
@@ -103,6 +103,9 @@
%changelog
+* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 12.3-2.2
+- rebuild for updated kernel
+
* Tue Apr 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 12.3-2.1
- rebuild for updated kernel
12 years, 7 months
rpms/xtables-addons-kmod/F-16 xtables-addons-kmod.spec,1.39,1.40
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xtables-addons-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3231
Modified Files:
xtables-addons-kmod.spec
Log Message:
* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.14
- rebuild for updated kernel
Index: xtables-addons-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/xtables-addons-kmod/F-16/xtables-addons-kmod.spec,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- xtables-addons-kmod.spec 3 Apr 2012 16:58:34 -0000 1.39
+++ xtables-addons-kmod.spec 7 Apr 2012 13:22:09 -0000 1.40
@@ -8,7 +8,7 @@
Name: xtables-addons-kmod
Summary: Kernel module (kmod) for xtables-addons
Version: 1.41
-Release: 1%{?dist}.13
+Release: 1%{?dist}.14
License: GPLv2
Group: System Environment/Kernel
URL: http://xtables-addons.sourceforge.net
@@ -66,6 +66,9 @@
rm -rf %{buildroot}
%changelog
+* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.14
+- rebuild for updated kernel
+
* Tue Apr 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 1.41-1.13
- rebuild for updated kernel
12 years, 7 months
rpms/west-chamber-kmod/F-16 west-chamber-kmod.spec,1.34,1.35
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/west-chamber-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3107
Modified Files:
west-chamber-kmod.spec
Log Message:
* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.30
- rebuild for updated kernel
Index: west-chamber-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/west-chamber-kmod/F-16/west-chamber-kmod.spec,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- west-chamber-kmod.spec 3 Apr 2012 16:58:24 -0000 1.34
+++ west-chamber-kmod.spec 7 Apr 2012 13:21:59 -0000 1.35
@@ -11,7 +11,7 @@
Name: west-chamber-kmod
Summary: Kernel module (kmod) for west-chamber
Version: 0.0.1
-Release: 7.%{?svndate}svn%{?dist}.29
+Release: 7.%{?svndate}svn%{?dist}.30
License: GPLv2+
Group: System Environment/Kernel
URL: http://code.google.com/p/scholarzhang/
@@ -82,6 +82,9 @@
rm -rf %{buildroot}
%changelog
+* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.30
+- rebuild for updated kernel
+
* Tue Apr 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.0.1-7.20101017svn.29
- rebuild for updated kernel
12 years, 7 months
rpms/VirtualBox-OSE-kmod/F-16 VirtualBox-OSE-kmod.spec,1.86,1.87
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/F-16
In directory se02.es.rpmfusion.net:/tmp/cvs-serv2983
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.12-1.3
- rebuild for updated kernel
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/F-16/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- VirtualBox-OSE-kmod.spec 3 Apr 2012 16:58:14 -0000 1.86
+++ VirtualBox-OSE-kmod.spec 7 Apr 2012 13:21:49 -0000 1.87
@@ -18,7 +18,7 @@
Name: VirtualBox-OSE-kmod
Version: 4.1.12
-Release: 1%{?dist}.2
+Release: 1%{?dist}.3
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -99,6 +99,9 @@
%changelog
+* Sat Apr 07 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.12-1.3
+- rebuild for updated kernel
+
* Tue Apr 03 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 4.1.12-1.2
- rebuild for updated kernel
12 years, 7 months