rpms/xorg-x11-drv-nvidia/F-19 nvidia-snapshot.sh,1.3,1.4
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19028/F-19
Modified Files:
nvidia-snapshot.sh
Log Message:
Update nvidia-snapshot to be URL and arches agnostic
Index: nvidia-snapshot.sh
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/F-19/nvidia-snapshot.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nvidia-snapshot.sh 29 Sep 2013 23:27:44 -0000 1.3
+++ nvidia-snapshot.sh 2 Oct 2013 09:25:00 -0000 1.4
@@ -12,19 +12,23 @@
unset CDPATH
pwd=$(pwd)
-version=$(grep Version xorg-x11-drv-nvidia*.spec | cut -f 2 -d ':' | sed 's/ //g')
+nvspec=$(ls ${pwd}/xorg-x11-drv-nvidia*.spec)
+version=$(grep ^Version: ${nvspec} | awk '{print $2}')
+arches="$(grep ^ExclusiveArch: ${nvspec} | awk '{print $2,$3,$4}')"
-for arch in x86 x86_64 ; do
- if [ ! -e NVIDIA-Linux-${arch}-${version}.run ] ; then
- wget -N ftp://download.nvidia.com/XFree86/Linux-${arch}/${version}/NVIDIA-Linux-$...
- fi
- sh NVIDIA-Linux-${arch}-${version}.run --extract-only --target nvidiapkg-${arch}
-done
-if [ ! -e NVIDIA-Linux-armv7l-gnueabihf-${version}.run ] ; then
- wget -N ftp://download.nvidia.com/XFree86/Linux-32bit-ARM/${version}/NVIDIA-Linux...
+#Avoid to re-create an existing tarball
+ [ -e ${pwd}/nvidia-kmod-data-${version}.tar.xz ] && exit 0
+
+for arch in ${arches} ; do
+ nvarch=${arch}
+ [ ${arch} == i686 ] && nvarch=x86
+ [ ${arch} == armv7hl ] && nvarch=armv7l-gnueabihf
+ if [ ! -e NVIDIA-Linux-${nvarch}-${version}.run ] ; then
+ spectool --gf -S ${nvspec}
fi
-sh NVIDIA-Linux-armv7l-gnueabihf-${version}.run --extract-only --target nvidiapkg-armv7hl
+ sh NVIDIA-Linux-${nvarch}-${version}.run --extract-only --target nvidiapkg-${arch}
+done
-tar -cjf nvidia-kmod-data-${version}.tar.bz2 nvidiapkg-*/LICENSE nvidiapkg-*/kernel
+tar Jcf nvidia-kmod-data-${version}.tar.xz nvidiapkg-*/LICENSE nvidiapkg-*/kernel
11 years, 1 month
rpms/xorg-x11-drv-nvidia/devel nvidia-snapshot.sh,1.3,1.4
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19028/devel
Modified Files:
nvidia-snapshot.sh
Log Message:
Update nvidia-snapshot to be URL and arches agnostic
Index: nvidia-snapshot.sh
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/nvidia-snapshot.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nvidia-snapshot.sh 29 Sep 2013 23:25:10 -0000 1.3
+++ nvidia-snapshot.sh 2 Oct 2013 09:24:59 -0000 1.4
@@ -12,19 +12,23 @@
unset CDPATH
pwd=$(pwd)
-version=$(grep Version xorg-x11-drv-nvidia*.spec | cut -f 2 -d ':' | sed 's/ //g')
+nvspec=$(ls ${pwd}/xorg-x11-drv-nvidia*.spec)
+version=$(grep ^Version: ${nvspec} | awk '{print $2}')
+arches="$(grep ^ExclusiveArch: ${nvspec} | awk '{print $2,$3,$4}')"
-for arch in x86 x86_64 ; do
- if [ ! -e NVIDIA-Linux-${arch}-${version}.run ] ; then
- wget -N ftp://download.nvidia.com/XFree86/Linux-${arch}/${version}/NVIDIA-Linux-$...
- fi
- sh NVIDIA-Linux-${arch}-${version}.run --extract-only --target nvidiapkg-${arch}
-done
-if [ ! -e NVIDIA-Linux-armv7l-gnueabihf-${version}.run ] ; then
- wget -N ftp://download.nvidia.com/XFree86/Linux-32bit-ARM/${version}/NVIDIA-Linux...
+#Avoid to re-create an existing tarball
+ [ -e ${pwd}/nvidia-kmod-data-${version}.tar.xz ] && exit 0
+
+for arch in ${arches} ; do
+ nvarch=${arch}
+ [ ${arch} == i686 ] && nvarch=x86
+ [ ${arch} == armv7hl ] && nvarch=armv7l-gnueabihf
+ if [ ! -e NVIDIA-Linux-${nvarch}-${version}.run ] ; then
+ spectool --gf -S ${nvspec}
fi
-sh NVIDIA-Linux-armv7l-gnueabihf-${version}.run --extract-only --target nvidiapkg-armv7hl
+ sh NVIDIA-Linux-${nvarch}-${version}.run --extract-only --target nvidiapkg-${arch}
+done
-tar -cjf nvidia-kmod-data-${version}.tar.bz2 nvidiapkg-*/LICENSE nvidiapkg-*/kernel
+tar Jcf nvidia-kmod-data-${version}.tar.xz nvidiapkg-*/LICENSE nvidiapkg-*/kernel
11 years, 1 month
rpms/xorg-x11-drv-nvidia/F-18 nvidia-snapshot.sh, 1.3, 1.4 xorg-x11-drv-nvidia.spec, 1.97, 1.98
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19028/F-18
Modified Files:
nvidia-snapshot.sh xorg-x11-drv-nvidia.spec
Log Message:
Update nvidia-snapshot to be URL and arches agnostic
Index: nvidia-snapshot.sh
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/F-18/nvidia-snapshot.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- nvidia-snapshot.sh 18 Oct 2012 22:24:03 -0000 1.3
+++ nvidia-snapshot.sh 2 Oct 2013 09:25:00 -0000 1.4
@@ -12,14 +12,23 @@
unset CDPATH
pwd=$(pwd)
-version=$(grep Version xorg-x11-drv-nvidia*.spec | cut -f 2 -d ':' | sed 's/ //g')
+nvspec=$(ls ${pwd}/xorg-x11-drv-nvidia*.spec)
+version=$(grep ^Version: ${nvspec} | awk '{print $2}')
+arches="$(grep ^ExclusiveArch: ${nvspec} | awk '{print $2,$3,$4}')"
-for arch in x86 x86_64 ; do
- if [ ! -e NVIDIA-Linux-${arch}-${version}.run ] ; then
- wget -N ftp://download.nvidia.com/XFree86/Linux-${arch}/${version}/NVIDIA-Linux-$...
+
+#Avoid to re-create an existing tarball
+ [ -e ${pwd}/nvidia-kmod-data-${version}.tar.xz ] && exit 0
+
+for arch in ${arches} ; do
+ nvarch=${arch}
+ [ ${arch} == i686 ] && nvarch=x86
+ [ ${arch} == armv7hl ] && nvarch=armv7l-gnueabihf
+ if [ ! -e NVIDIA-Linux-${nvarch}-${version}.run ] ; then
+ spectool --gf -S ${nvspec}
fi
- sh NVIDIA-Linux-${arch}-${version}.run --extract-only --target nvidiapkg-${arch}
+ sh NVIDIA-Linux-${nvarch}-${version}.run --extract-only --target nvidiapkg-${arch}
done
-tar -cJf nvidia-kmod-data-${version}.tar.xz nvidiapkg-*/LICENSE nvidiapkg-*/kernel
+tar Jcf nvidia-kmod-data-${version}.tar.xz nvidiapkg-*/LICENSE nvidiapkg-*/kernel
Index: xorg-x11-drv-nvidia.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/F-18/xorg-x11-drv-nvidia.spec,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- xorg-x11-drv-nvidia.spec 24 Jul 2013 10:32:22 -0000 1.97
+++ xorg-x11-drv-nvidia.spec 2 Oct 2013 09:25:00 -0000 1.98
@@ -7,8 +7,8 @@
Name: xorg-x11-drv-nvidia
Epoch: 1
-Version: 319.32
-Release: 7%{?dist}
+Version: 319.60
+Release: 0%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
11 years, 1 month
rpms/xmltv/devel xmltv.spec,1.17,1.18
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xmltv/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3621
Modified Files:
xmltv.spec
Log Message:
Rebuilt
Index: xmltv.spec
===================================================================
RCS file: /cvs/free/rpms/xmltv/devel/xmltv.spec,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- xmltv.spec 26 Aug 2012 21:03:35 -0000 1.17
+++ xmltv.spec 2 Oct 2013 08:17:22 -0000 1.18
@@ -1,6 +1,6 @@
Name: xmltv
Version: 0.5.63
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: A set of utilities to manage your TV viewing
Group: Development/Libraries
@@ -219,6 +219,9 @@
%changelog
+* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.5.63-3
+- Rebuilt
+
* Sun Aug 26 2012 Nicolas Chauvet <kwizart(a)gmail.com> - 0.5.63-2
- Rebuilt (branching)
11 years, 1 month
rpms/xbmc/devel xbmc.spec,1.64,1.65
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/xbmc/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3080
Modified Files:
xbmc.spec
Log Message:
* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 12.2-5
- Rebuilt
Index: xbmc.spec
===================================================================
RCS file: /cvs/free/rpms/xbmc/devel/xbmc.spec,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -r1.64 -r1.65
--- xbmc.spec 15 Aug 2013 10:19:55 -0000 1.64
+++ xbmc.spec 2 Oct 2013 08:14:21 -0000 1.65
@@ -5,7 +5,7 @@
Name: xbmc
Version: 12.2
-Release: 4%{?dist}
+Release: 5%{?dist}
URL: http://www.xbmc.org/
Source0: %{name}-%{DIRVERSION}-patched.tar.xz
@@ -330,6 +330,9 @@
#%%{_includedir}/xbmc/xbmcclient.h
%changelog
+* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 12.2-5
+- Rebuilt
+
* Thu Aug 15 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 12.2-4
- Rebuilt for FFmpeg 2.0.x
11 years, 1 month
rpms/qmmp-plugins-freeworld/devel qmmp-plugins-freeworld.spec, 1.42, 1.43
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/qmmp-plugins-freeworld/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2904
Modified Files:
qmmp-plugins-freeworld.spec
Log Message:
* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.7.2-2
- Rebuilt
Index: qmmp-plugins-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/qmmp-plugins-freeworld/devel/qmmp-plugins-freeworld.spec,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- qmmp-plugins-freeworld.spec 28 Aug 2013 12:17:44 -0000 1.42
+++ qmmp-plugins-freeworld.spec 2 Oct 2013 08:14:11 -0000 1.43
@@ -1,6 +1,6 @@
Name: qmmp-plugins-freeworld
Version: 0.7.2
-Release: 1%{?dist}
+Release: 2%{?dist}
Summary: Plugins for qmmp (Qt-based multimedia player)
Group: Applications/Multimedia
@@ -131,6 +131,9 @@
%changelog
+* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.7.2-2
+- Rebuilt
+
* Wed Aug 28 2013 Karel Volný <kvolny(a)redhat.com> 0.7.2-1
- version bump
11 years, 1 month
rpms/mlt/devel mlt.spec,1.38,1.39
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/mlt/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2711
Modified Files:
mlt.spec
Log Message:
* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.8.8-7
- Rebuilt
Index: mlt.spec
===================================================================
RCS file: /cvs/free/rpms/mlt/devel/mlt.spec,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- mlt.spec 15 Aug 2013 10:18:11 -0000 1.38
+++ mlt.spec 2 Oct 2013 08:14:01 -0000 1.39
@@ -7,7 +7,7 @@
Summary: Toolkit for broadcasters, video editors, media players, transcoders
Name: mlt
Version: 0.8.8
-Release: 6%{?dist}
+Release: 7%{?dist}
License: GPLv2+ and LGPLv2+
URL: http://www.mltframework.org/twiki/bin/view/MLT/
@@ -202,6 +202,9 @@
%changelog
+* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.8.8-7
+- Rebuilt
+
* Thu Aug 15 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 0.8.8-6
- Rebuilt for FFmpeg 2.0.x
11 years, 1 month
rpms/ffmpegthumbnailer/devel ffmpegthumbnailer.spec,1.18,1.19
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ffmpegthumbnailer/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2568
Modified Files:
ffmpegthumbnailer.spec
Log Message:
* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-6
- Rebuilt
Index: ffmpegthumbnailer.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpegthumbnailer/devel/ffmpegthumbnailer.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ffmpegthumbnailer.spec 15 Aug 2013 10:15:40 -0000 1.18
+++ ffmpegthumbnailer.spec 2 Oct 2013 08:13:49 -0000 1.19
@@ -1,6 +1,6 @@
Name: ffmpegthumbnailer
Version: 2.0.8
-Release: 5%{?dist}
+Release: 6%{?dist}
Summary: Lightweight video thumbnailer that can be used by file managers
Group: Applications/Multimedia
@@ -69,6 +69,9 @@
%changelog
+* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-6
+- Rebuilt
+
* Thu Aug 15 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 2.0.8-5
- Rebuilt for FFmpeg 2.0.x
11 years, 1 month
rpms/bombono-dvd/devel bombono-dvd.spec,1.15,1.16
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/bombono-dvd/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2426
Modified Files:
bombono-dvd.spec
Log Message:
* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.2-4
- Rebuilt
Index: bombono-dvd.spec
===================================================================
RCS file: /cvs/free/rpms/bombono-dvd/devel/bombono-dvd.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- bombono-dvd.spec 15 Aug 2013 10:14:00 -0000 1.15
+++ bombono-dvd.spec 2 Oct 2013 08:13:41 -0000 1.16
@@ -2,7 +2,7 @@
Name: bombono-dvd
Version: 1.2.2
-Release: 3%{?rel_tag}%{?dist}
+Release: 4%{?rel_tag}%{?dist}
Summary: DVD authoring program with nice and clean GUI
# License breakdown in README.
License: GPLv2 and GPLv2+ and Boost and Python and LGPLv2+
@@ -111,6 +111,9 @@
%{_mandir}/man1/*
%changelog
+* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.2-4
+- Rebuilt
+
* Thu Aug 15 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.2.2-3
- Rebuilt for FFmpeg 2.0.x
11 years, 1 month
rpms/bino/devel bino.spec,1.8,1.9
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/bino/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv2284
Modified Files:
bino.spec
Log Message:
* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.4.2-4
- Rebuilt
Index: bino.spec
===================================================================
RCS file: /cvs/free/rpms/bino/devel/bino.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- bino.spec 15 Aug 2013 10:13:44 -0000 1.8
+++ bino.spec 2 Oct 2013 08:13:31 -0000 1.9
@@ -1,6 +1,6 @@
Name: bino
Version: 1.4.2
-Release: 3%{?dist}
+Release: 4%{?dist}
Summary: 3D video player
Group: System Environment/Base
License: GPLv3+
@@ -74,6 +74,9 @@
%{_datadir}/icons/hicolor/*/apps/*
%changelog
+* Wed Oct 02 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.4.2-4
+- Rebuilt
+
* Thu Aug 15 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1.4.2-3
- Rebuilt for FFmpeg 2.0.x
11 years, 1 month