rpms/xine-lib-extras-freeworld/devel xine-lib-1.1.15-ffmpeg-bits_per_sample.patch, NONE, 1.1 xine-lib-extras-freeworld.spec, 1.11, 1.12
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3314
Modified Files:
xine-lib-extras-freeworld.spec
Added Files:
xine-lib-1.1.15-ffmpeg-bits_per_sample.patch
Log Message:
* Wed Dec 17 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.15-5
- ffmpeg bits_per_sample patch
xine-lib-1.1.15-ffmpeg-bits_per_sample.patch:
--- NEW FILE xine-lib-1.1.15-ffmpeg-bits_per_sample.patch ---
diff -up xine-lib-1.1.15/src/combined/ffmpeg/ff_audio_decoder.c.bits_per_sample xine-lib-1.1.15/src/combined/ffmpeg/ff_audio_decoder.c
--- xine-lib-1.1.15/src/combined/ffmpeg/ff_audio_decoder.c.bits_per_sample 2008-07-15 18:13:03.000000000 -0500
+++ xine-lib-1.1.15/src/combined/ffmpeg/ff_audio_decoder.c 2008-12-17 13:11:23.000000000 -0600
@@ -269,7 +269,11 @@ static void ff_audio_decode_data (audio_
* bits/sample for some codecs (e.g. MS ADPCM) */
this->audio_bits = 16;
- this->context->bits_per_sample = this->audio_bits;
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
+ this->context->bits_per_sample = this->audio_bits;
+#else
+ this->context->bits_per_coded_sample = this->audio_bits;
+#endif
this->context->sample_rate = this->audio_sample_rate;
this->context->channels = this->audio_channels;
this->context->codec_id = this->codec->id;
@@ -327,7 +331,12 @@ static void ff_audio_decode_data (audio_
&decode_buffer_size,
&this->buf[0],
this->size);
- this->audio_bits = this->context->bits_per_sample;
+
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
+ this->audio_bits = this->context->bits_per_sample;
+#else
+ this->audio_bits = this->context->bits_per_coded_sample;
+#endif
this->audio_sample_rate = this->context->sample_rate;
this->audio_channels = this->context->channels;
if (!this->audio_bits || !this->audio_sample_rate || !this->audio_channels)
diff -up xine-lib-1.1.15/src/combined/ffmpeg/ff_video_decoder.c.bits_per_sample xine-lib-1.1.15/src/combined/ffmpeg/ff_video_decoder.c
--- xine-lib-1.1.15/src/combined/ffmpeg/ff_video_decoder.c.bits_per_sample 2008-07-16 16:01:56.000000000 -0500
+++ xine-lib-1.1.15/src/combined/ffmpeg/ff_video_decoder.c 2008-12-17 13:15:37.000000000 -0600
@@ -939,7 +939,12 @@ static void ff_handle_header_buffer (ff_
this->context->extradata_size);
}
- this->context->bits_per_sample = this->bih.biBitCount;
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
+ this->context->bits_per_sample = this->bih.biBitCount;
+#else
+ this->context->bits_per_coded_sample = this->bih.biBitCount;
+#endif
+
} else {
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/devel/xine-lib-extras-freeworld.spec,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- xine-lib-extras-freeworld.spec 17 Dec 2008 18:12:11 -0000 1.11
+++ xine-lib-extras-freeworld.spec 17 Dec 2008 19:26:02 -0000 1.12
@@ -15,10 +15,12 @@
Group: System Environment/Libraries
URL: http://xinehq.de/
Source0: http://downloads.sourceforge.net/xine/xine-lib-%{version}.tar.bz2
-Patch0: xine-lib-1.1.3-optflags.patch
-Patch6: xine-lib-1.1.1-deepbind-939.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
+Patch0: xine-lib-1.1.3-optflags.patch
+Patch6: xine-lib-1.1.1-deepbind-939.patch
+Patch100: xine-lib-1.1.15-ffmpeg-bits_per_sample.patch
+
BuildRequires: pkgconfig
BuildRequires: zlib-devel
BuildRequires: gawk
@@ -63,8 +65,10 @@
touch -r m4/optimizations.m4 m4/optimizations.m4.stamp
%patch0 -p1 -b .optflags
touch -r m4/optimizations.m4.stamp m4/optimizations.m4
-# Patch6 needed at least when compiling with external ffmpeg, #939.
+# Patch1 needed at least when compiling with external ffmpeg, #939.
%patch6 -p1 -b .deepbind
+# ffmpeg api: bits_per_sample->bits_per_coded_sample
+%patch100 -p1 -b .ffmpeg_bits_per_sample
# Avoid standard rpaths on lib64 archs:
sed -i -e 's|"/lib /usr/lib\b|"/%{_lib} %{_libdir}|' configure
@@ -181,7 +185,7 @@
%changelog
* Wed Dec 17 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.15-5
-- respin
+- ffmpeg bits_per_sample patch
* Thu Sep 25 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.15-4
- Obsoletes: xine-lib-moles < 1.1.15-2
15 years, 11 months
rpms/xine-lib-extras-freeworld/devel xine-lib-extras-freeworld.spec, 1.10, 1.11
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv28366
Modified Files:
xine-lib-extras-freeworld.spec
Log Message:
+dirac-devel to hack
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/devel/xine-lib-extras-freeworld.spec,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xine-lib-extras-freeworld.spec 17 Dec 2008 18:05:35 -0000 1.10
+++ xine-lib-extras-freeworld.spec 17 Dec 2008 18:12:11 -0000 1.11
@@ -25,7 +25,7 @@
%if 0%{?_with_external_ffmpeg:1}
BuildRequires: ffmpeg-devel >= 0.4.9-0.22.20060804
# HACKS to workaround missing deps in ffmpeg-devel
-BuildRequires: libraw1394-devel libtheora-devel libvorbis-devel
+BuildRequires: dirac-devel libraw1394-devel libtheora-devel libvorbis-devel
%endif
BuildRequires: a52dec-devel
BuildRequires: libmad-devel
15 years, 11 months
rpms/xine-lib-extras-freeworld/devel xine-lib-extras-freeworld.spec, 1.9, 1.10
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27974
Modified Files:
xine-lib-extras-freeworld.spec
Log Message:
more missing ffmpeg-devel deps
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/devel/xine-lib-extras-freeworld.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xine-lib-extras-freeworld.spec 17 Dec 2008 17:44:30 -0000 1.9
+++ xine-lib-extras-freeworld.spec 17 Dec 2008 18:05:35 -0000 1.10
@@ -22,9 +22,11 @@
BuildRequires: pkgconfig
BuildRequires: zlib-devel
BuildRequires: gawk
-# libraw1394-devel to workaround missing deps in ffmpeg-devel
-%{?_with_external_ffmpeg:BuildRequires: ffmpeg-devel >= 0.4.9-0.22.20060804, libraw1394-devel}
-
+%if 0%{?_with_external_ffmpeg:1}
+BuildRequires: ffmpeg-devel >= 0.4.9-0.22.20060804
+# HACKS to workaround missing deps in ffmpeg-devel
+BuildRequires: libraw1394-devel libtheora-devel libvorbis-devel
+%endif
BuildRequires: a52dec-devel
BuildRequires: libmad-devel
BuildRequires: libdca-devel
15 years, 11 months
rpms/nvidia-beta-kmod/devel nvidia-beta-kmod.spec,1.8,1.9
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-beta-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27259
Modified Files:
nvidia-beta-kmod.spec
Log Message:
Remove the uneeded xen patches
Index: nvidia-beta-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-beta-kmod/devel/nvidia-beta-kmod.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- nvidia-beta-kmod.spec 17 Dec 2008 17:54:38 -0000 1.8
+++ nvidia-beta-kmod.spec 17 Dec 2008 17:55:45 -0000 1.9
@@ -22,8 +22,6 @@
#Source0: http://www.diffingo.com/downloads/livna/kmod-data/nvidia-kmod-data-%{vers...
# </switch me>
-Patch0: nvidia-rawhide-noxen-x64.patch
-Patch1: nvidia-rawhide-noxen-x86.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
@@ -54,12 +52,6 @@
# popd
#done
-pushd nvidiapkg-x64
-%patch0 -b .noxen
-popd;pushd nvidiapkg-x86
-%patch1 -b .noxen
-popd
-
for kernel_version in %{?kernel_versions} ; do
%ifarch %{ix86}
cp -a nvidiapkg-x86 _kmod_build_${kernel_version%%___*}
15 years, 11 months
rpms/nvidia-beta-kmod/devel sources, 1.2, 1.3 .cvsignore, 1.2, 1.3 nvidia-beta-kmod.spec, 1.7, 1.8 nvidia-rawhide-noxen-x64.patch, 1.1, NONE nvidia-rawhide-noxen-x86.patch, 1.1, NONE
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-beta-kmod/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26944
Modified Files:
sources .cvsignore nvidia-beta-kmod.spec
Removed Files:
nvidia-rawhide-noxen-x64.patch nvidia-rawhide-noxen-x86.patch
Log Message:
- Update to 180.11.02 (opengl 3.0 beta)
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-beta-kmod/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 13 Nov 2008 10:26:50 -0000 1.2
+++ sources 17 Dec 2008 17:54:38 -0000 1.3
@@ -1 +1 @@
-536164948f89dd9172440ddf8edbcd24 nvidia-kmod-data-177.61.02.tar.bz2
+2e540b38177712d2788be22a06183666 nvidia-kmod-data-180.11.02.tar.bz2
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-beta-kmod/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 13 Nov 2008 10:26:50 -0000 1.2
+++ .cvsignore 17 Dec 2008 17:54:38 -0000 1.3
@@ -1 +1 @@
-nvidia-kmod-data-177.61.02.tar.bz2
+nvidia-kmod-data-180.11.02.tar.bz2
Index: nvidia-beta-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-beta-kmod/devel/nvidia-beta-kmod.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- nvidia-beta-kmod.spec 14 Dec 2008 18:08:44 -0000 1.7
+++ nvidia-beta-kmod.spec 17 Dec 2008 17:54:38 -0000 1.8
@@ -3,12 +3,12 @@
# "buildforkernels newest" macro for just that build; immediately after
# queuing that build enable the macro again for subsequent builds; that way
# a new akmod package will only get build when a new one is actually needed
-%define buildforkernels newest
+#define buildforkernels newest
Name: nvidia-beta-kmod
-Version: 177.61.02
+Version: 180.11.02
# Taken over by kmodtool
-Release: 2%{?dist}.5
+Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -99,6 +99,9 @@
%changelog
+* Wed Dec 17 2008 kwizart < kwizart at gmail.com > - 180.11.02-1
+- Update to 180.11.02 (opengl 3.0 beta)
+
* Sun Dec 14 2008 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 177.61.02-2.5
- rebuild for latest Fedora kernel;
--- nvidia-rawhide-noxen-x64.patch DELETED ---
--- nvidia-rawhide-noxen-x86.patch DELETED ---
15 years, 11 months
rpms/xorg-x11-drv-nvidia-beta/devel xorg-x11-drv-nvidia-beta.spec, 1.1, 1.2 sources, 1.2, 1.3 .cvsignore, 1.2, 1.3
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-beta/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26784
Modified Files:
xorg-x11-drv-nvidia-beta.spec sources .cvsignore
Log Message:
- Update to 180.11.02 (opengl 3.0 beta)
Index: xorg-x11-drv-nvidia-beta.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-beta/devel/xorg-x11-drv-nvidia-beta.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xorg-x11-drv-nvidia-beta.spec 13 Nov 2008 10:37:38 -0000 1.1
+++ xorg-x11-drv-nvidia-beta.spec 17 Dec 2008 17:50:59 -0000 1.2
@@ -7,7 +7,7 @@
%endif
Name: xorg-x11-drv-nvidia-beta
-Version: 177.61.02
+Version: 180.11.02
Release: 1%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
@@ -185,6 +185,12 @@
ln -s libcuda.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libcuda.so.1
ln -s libcuda.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libcuda.so
+# This is 180.xx adds - vdpau libs and headers
+ln -s libvdpau_nvidia.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau_nvidia.so
+ln -s libvdpau.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau.so.1
+ln -s libvdpau.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau.so
+ln -s libvdpau_trace.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau_trace.so
+
# X configuration script
install -D -p -m 0755 %{SOURCE10} $RPM_BUILD_ROOT%{_sbindir}/nvidia-beta-config-display
@@ -253,6 +259,9 @@
%dir %{nvidialibdir}/tls
%config %{_sysconfdir}/ld.so.conf.d/nvidia-%{_lib}.conf
%{nvidialibdir}/*.so.*
+%{nvidialibdir}/libGLcore.so
+%{nvidialibdir}/libvdpau_nvidia.so
+%{nvidialibdir}/libvdpau_trace.so
%{nvidialibdir}/tls/*.so.*
%files devel
@@ -260,13 +269,21 @@
%dir %{_includedir}/nvidia
%dir %{_includedir}/nvidia/GL
%dir %{_includedir}/nvidia/cuda
+%dir %{_includedir}/nvidia/vdpau
%{_includedir}/nvidia/GL/*.h
%{_includedir}/nvidia/cuda/*.h
-%{nvidialibdir}/libXvMCNVIDIA.a
-%{nvidialibdir}/*.so
+%{_includedir}/nvidia/vdpau/*.h
+%exclude %{nvidialibdir}/libXvMCNVIDIA.a
+%{nvidialibdir}/libcuda.so
+%{nvidialibdir}/libGL.so
+%{nvidialibdir}/libvdpau.so
+%{nvidialibdir}/libXvMCNVIDIA.so
%changelog
+* Wed Dec 17 2008 kwizart < kwizart at gmail.com > - 180.11.02-1
+- Update to 180.11.02 (opengl 3.0 beta)
+
* Thu Oct 30 2008 kwizart < kwizart at gmail.com > - 177.61.02-1
- Rename to nvidia-beta
- Update to 177.61.02 (beta with opengl 3.0 support).
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-beta/devel/sources,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- sources 13 Nov 2008 10:37:38 -0000 1.2
+++ sources 17 Dec 2008 17:50:59 -0000 1.3
@@ -1,2 +1,2 @@
-ba73746f1047e6be76d37ebf4eefa256 NVIDIA-Linux-x86-177.61.02-pkg0.run
-4da1a6153247cb44d4857a8b587f8c83 NVIDIA-Linux-x86_64-177.61.02-pkg0.run
+5bc4d536a3213d311a76b79806bbc823 NVIDIA-Linux-x86-180.11.02-pkg0.run
+2b04f5ce48d6c1e8ba2ae27f4704b25f NVIDIA-Linux-x86_64-180.11.02-pkg0.run
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-beta/devel/.cvsignore,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- .cvsignore 13 Nov 2008 10:37:38 -0000 1.2
+++ .cvsignore 17 Dec 2008 17:50:59 -0000 1.3
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-177.61.02-pkg0.run
-NVIDIA-Linux-x86_64-177.61.02-pkg0.run
+NVIDIA-Linux-x86-180.11.02-pkg0.run
+NVIDIA-Linux-x86_64-180.11.02-pkg0.run
15 years, 11 months
rpms/xine-lib-extras-freeworld/devel xine-lib-extras-freeworld.spec, 1.8, 1.9
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv26118
Modified Files:
xine-lib-extras-freeworld.spec
Log Message:
hack around missing libraw1394-devel in ffmpeg-devel
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/devel/xine-lib-extras-freeworld.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- xine-lib-extras-freeworld.spec 17 Dec 2008 17:20:48 -0000 1.8
+++ xine-lib-extras-freeworld.spec 17 Dec 2008 17:44:30 -0000 1.9
@@ -22,8 +22,9 @@
BuildRequires: pkgconfig
BuildRequires: zlib-devel
BuildRequires: gawk
-# External libs
-%{?_with_external_ffmpeg:BuildRequires: ffmpeg-devel >= 0.4.9-0.22.20060804}
+# libraw1394-devel to workaround missing deps in ffmpeg-devel
+%{?_with_external_ffmpeg:BuildRequires: ffmpeg-devel >= 0.4.9-0.22.20060804, libraw1394-devel}
+
BuildRequires: a52dec-devel
BuildRequires: libmad-devel
BuildRequires: libdca-devel
15 years, 11 months
rpms/xine-lib-extras-freeworld/devel xine-lib-extras-freeworld.spec, 1.7, 1.8
by Rex Dieter
Author: rdieter
Update of /cvs/free/rpms/xine-lib-extras-freeworld/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv24806
Modified Files:
xine-lib-extras-freeworld.spec
Log Message:
* Wed Dec 17 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.15-5
- respin
Index: xine-lib-extras-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/xine-lib-extras-freeworld/devel/xine-lib-extras-freeworld.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xine-lib-extras-freeworld.spec 25 Sep 2008 12:35:01 -0000 1.7
+++ xine-lib-extras-freeworld.spec 17 Dec 2008 17:20:48 -0000 1.8
@@ -10,7 +10,7 @@
Name: xine-lib-extras-freeworld
Summary: Extra codecs for the Xine multimedia library
Version: 1.1.15
-Release: 4%{?dist}
+Release: 5%{?dist}
License: GPLv2+
Group: System Environment/Libraries
URL: http://xinehq.de/
@@ -177,6 +177,9 @@
%changelog
+* Wed Dec 17 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.15-5
+- respin
+
* Thu Sep 25 2008 Rex Dieter <rdieter(a)fedoraproject.org> - 1.1.15-4
- Obsoletes: xine-lib-moles < 1.1.15-2
15 years, 11 months
rpms/xorg-x11-drv-nvidia/devel sources, 1.4, 1.5 .cvsignore, 1.4, 1.5 xorg-x11-drv-nvidia.spec, 1.9, 1.10
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23733
Modified Files:
sources .cvsignore xorg-x11-drv-nvidia.spec
Log Message:
- Update to 180.16 (beta)
- Exclude libXvMCNVIDIA.a
- More accurate -devel subpackage.
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources 13 Nov 2008 09:05:11 -0000 1.4
+++ sources 17 Dec 2008 17:05:13 -0000 1.5
@@ -1,2 +1,2 @@
-882f34a662f0175682fdc4a9bec909ba NVIDIA-Linux-x86-177.82-pkg0.run
-6a6d04411529c8d7616deee3d68c5346 NVIDIA-Linux-x86_64-177.82-pkg0.run
+a2b132ac92f5e5fa30094309414a87bd NVIDIA-Linux-x86_64-180.16-pkg0.run
+dfa2c600ee1cf852ef43e053fe46fe0c NVIDIA-Linux-x86-180.16-pkg0.run
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/.cvsignore,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- .cvsignore 13 Nov 2008 09:05:11 -0000 1.4
+++ .cvsignore 17 Dec 2008 17:05:13 -0000 1.5
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-177.82-pkg0.run
-NVIDIA-Linux-x86_64-177.82-pkg0.run
+NVIDIA-Linux-x86_64-180.16-pkg0.run
+NVIDIA-Linux-x86-180.16-pkg0.run
Index: xorg-x11-drv-nvidia.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/xorg-x11-drv-nvidia.spec,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xorg-x11-drv-nvidia.spec 2 Dec 2008 18:54:06 -0000 1.9
+++ xorg-x11-drv-nvidia.spec 17 Dec 2008 17:05:13 -0000 1.10
@@ -7,8 +7,8 @@
%endif
Name: xorg-x11-drv-nvidia
-Version: 177.82
-Release: 2%{?dist}
+Version: 180.16
+Release: 1%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
Group: User Interface/X Hardware Support
@@ -195,6 +195,12 @@
ln -s libcuda.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libcuda.so.1
ln -s libcuda.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libcuda.so
+# This is 180.xx adds - vdpau libs and headers
+ln -s libvdpau_nvidia.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau_nvidia.so
+ln -s libvdpau.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau.so.1
+ln -s libvdpau.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau.so
+ln -s libvdpau_trace.so.%{version} $RPM_BUILD_ROOT%{nvidialibdir}/libvdpau_trace.so
+
# X configuration script
install -D -p -m 0755 %{SOURCE10} $RPM_BUILD_ROOT%{_sbindir}/nvidia-config-display
@@ -263,6 +269,9 @@
%dir %{nvidialibdir}/tls
%config %{_sysconfdir}/ld.so.conf.d/nvidia-%{_lib}.conf
%{nvidialibdir}/*.so.*
+%{nvidialibdir}/libGLcore.so
+%{nvidialibdir}/libvdpau_nvidia.so
+%{nvidialibdir}/libvdpau_trace.so
%{nvidialibdir}/tls/*.so.*
%files devel
@@ -270,13 +279,23 @@
%dir %{_includedir}/nvidia
%dir %{_includedir}/nvidia/GL
%dir %{_includedir}/nvidia/cuda
+%dir %{_includedir}/nvidia/vdpau
%{_includedir}/nvidia/GL/*.h
%{_includedir}/nvidia/cuda/*.h
-%{nvidialibdir}/libXvMCNVIDIA.a
-%{nvidialibdir}/*.so
+%{_includedir}/nvidia/vdpau/*.h
+%exclude %{nvidialibdir}/libXvMCNVIDIA.a
+%{nvidialibdir}/libcuda.so
+%{nvidialibdir}/libGL.so
+%{nvidialibdir}/libvdpau.so
+%{nvidialibdir}/libXvMCNVIDIA.so
%changelog
+* Wed Dec 17 2008 kwizart < kwizart at gmail.com > - 180.16-1
+- Update to 180.16 (beta)
+- Exclude libXvMCNVIDIA.a
+- More accurate -devel subpackage.
+
* Tue Dec 2 2008 Stewart Adam <s.adam at diffingo.com> - 177.82-2
- Fix upgrade path for nvidia-newest (bz#191)
15 years, 11 months
rpms/kmodtool/F-9 kmodtool-kmodtool,1.1,1.2 kmodtool.spec,1.1,1.2
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/kmodtool/F-9
In directory se02.es.rpmfusion.net:/tmp/cvs-serv23754
Modified Files:
kmodtool-kmodtool kmodtool.spec
Log Message:
* Sun Dec 14 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1-14
- don't require the kmod-meta package in kmod-(uname -r) packages
Index: kmodtool-kmodtool
===================================================================
RCS file: /cvs/free/rpms/kmodtool/F-9/kmodtool-kmodtool,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kmodtool-kmodtool 30 Sep 2008 17:07:12 -0000 1.1
+++ kmodtool-kmodtool 17 Dec 2008 17:05:09 -0000 1.2
@@ -139,16 +139,8 @@
- # second part
+ # second part
if [[ ! "${customkernel}" ]]; then
- if [[ ! "${redhatkernel}" ]]; then
- # when we build for custom kernels using "--for-kernels" don't require the meta
- # package, as it's useless and complicates things for the user without need
- cat <<EOF
-Requires: kmod-${kmodname}${kernel_variant} >= %{version}-%{release}
-EOF
- fi
-
cat <<EOF
Requires: kernel-uname-r = ${kernel_uname_r}
BuildRequires: kernel-devel-uname-r = ${kernel_uname_r}
Index: kmodtool.spec
===================================================================
RCS file: /cvs/free/rpms/kmodtool/F-9/kmodtool.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kmodtool.spec 30 Sep 2008 17:07:12 -0000 1.1
+++ kmodtool.spec 17 Dec 2008 17:05:09 -0000 1.2
@@ -1,6 +1,6 @@
Name: kmodtool
Version: 1
-Release: 13%{?dist}
+Release: 14%{?dist}
Summary: Tool for building kmod packages
Group: Development/Tools
@@ -51,6 +51,9 @@
%{_datadir}/%{name}/
%changelog
+* Sun Dec 14 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1-14
+- don't require the kmod-meta package in kmod-(uname -r) packages
+
* Tue Sep 30 2008 Thorsten Leemhuis <fedora[AT]leemhuis[DOT]info> - 1-13
- rebuild for RPM Fusion
15 years, 11 months