rpms/openafs-kmod/F-20 openafs-kmod.spec,1.97,1.98
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/openafs-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21585
Modified Files:
openafs-kmod.spec
Log Message:
* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.10-0.1pre1.11
- Rebuilt for kernel
Index: openafs-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/openafs-kmod/F-20/openafs-kmod.spec,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- openafs-kmod.spec 13 Dec 2014 12:33:44 -0000 1.97
+++ openafs-kmod.spec 18 Dec 2014 19:32:22 -0000 1.98
@@ -24,7 +24,7 @@
Name: %{kmod_name}-kmod
Version: 1.6.10
-Release: %{?pre:0.}1%{?pre}%{?dist}.10
+Release: %{?pre:0.}1%{?pre}%{?dist}.11
Summary: Kernel module(s)
Group: System Environment/Kernel
@@ -104,6 +104,9 @@
%changelog
+* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.10-0.1pre1.11
+- Rebuilt for kernel
+
* Sat Dec 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.6.10-0.1pre1.10
- Rebuilt for kernel
9 years, 11 months
rpms/ndiswrapper-kmod/F-20 ndiswrapper-kmod.spec,1.116,1.117
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/ndiswrapper-kmod/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv21450
Modified Files:
ndiswrapper-kmod.spec
Log Message:
* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-6.33
- Rebuilt for kernel
Index: ndiswrapper-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/ndiswrapper-kmod/F-20/ndiswrapper-kmod.spec,v
retrieving revision 1.116
retrieving revision 1.117
diff -u -r1.116 -r1.117
--- ndiswrapper-kmod.spec 13 Dec 2014 12:33:35 -0000 1.116
+++ ndiswrapper-kmod.spec 18 Dec 2014 19:32:16 -0000 1.117
@@ -8,7 +8,7 @@
Summary: Ndiswrapper kernel module
Name: ndiswrapper-kmod
Version: 1.59
-Release: 6%{?dist}.32
+Release: 6%{?dist}.33
License: GPLv2
Group: System Environment/Kernel
URL: http://ndiswrapper.sourceforge.net
@@ -75,6 +75,9 @@
%changelog
+* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-6.33
+- Rebuilt for kernel
+
* Sat Dec 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1.59-6.32
- Rebuilt for kernel
9 years, 11 months
rpms/x265/devel x265-detect_cpu_armhfp.patch, NONE, 1.1 x265-pic.patch, 1.1, 1.2 x265.spec, 1.1, 1.2
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/x265/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16663
Modified Files:
x265-pic.patch x265.spec
Added Files:
x265-detect_cpu_armhfp.patch
Log Message:
- fix build on armv7l arch (partially fix rfbz#3361, patch by Nicolas Chauvet)
- don't run tests on ARM for now (rfbz#3361)
x265-detect_cpu_armhfp.patch:
CMakeLists.txt | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
--- NEW FILE x265-detect_cpu_armhfp.patch ---
diff -up multicoreware-x265-d6257335c537/source/CMakeLists.txt.armhfp multicoreware-x265-d6257335c537/source/CMakeLists.txt
--- multicoreware-x265-d6257335c537/source/CMakeLists.txt.armhfp 2014-09-28 11:09:31.472787489 -0400
+++ multicoreware-x265-d6257335c537/source/CMakeLists.txt 2014-09-28 11:14:12.970136458 -0400
@@ -45,9 +45,13 @@ if("${SYSPROC}" STREQUAL "" OR X86MATCH
add_definitions(-DX86_64=1)
endif()
elseif(${SYSPROC} STREQUAL "armv6l")
- message(STATUS "Detected ARM system processor")
+ message(STATUS "Detected ARMv6 system processor")
set(ARM 1)
add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV6=1)
+elseif(${SYSPROC} STREQUAL "armv7l")
+ message(STATUS "Detected ARMv7 system processor")
+ set(ARM 1)
+ add_definitions(-DX265_ARCH_ARM=1 -DHAVE_ARMV7=1)
else()
message(STATUS "CMAKE_SYSTEM_PROCESSOR value `${CMAKE_SYSTEM_PROCESSOR}` is unknown")
message(STATUS "Please add this value near ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE}")
x265-pic.patch:
CMakeLists.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: x265-pic.patch
===================================================================
RCS file: /cvs/free/rpms/x265/devel/x265-pic.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- x265-pic.patch 4 Sep 2014 10:54:39 -0000 1.1
+++ x265-pic.patch 18 Dec 2014 15:47:41 -0000 1.2
@@ -10,7 +10,7 @@
endif()
if(ARM)
- add_definitions(-march=armv6 -mfloat-abi=hard -mfpu=vfp)
-+ add_definitions(-march=armv6 -mfloat-abi=hard -mfpu=vfp -fPIC)
++ add_definitions(-fPIC)
endif()
check_cxx_compiler_flag(-Wno-narrowing CC_HAS_NO_NARROWING)
check_cxx_compiler_flag(-ffast-math CC_HAS_FAST_MATH)
Index: x265.spec
===================================================================
RCS file: /cvs/free/rpms/x265/devel/x265.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- x265.spec 4 Sep 2014 10:54:39 -0000 1.1
+++ x265.spec 18 Dec 2014 15:47:41 -0000 1.2
@@ -3,7 +3,7 @@
Summary: H.265/HEVC encoder
Name: x265
Version: 1.2
-Release: 5%{?dist}
+Release: 6%{?dist}
URL: http://x265.org/
Source0: https://bitbucket.org/multicoreware/x265/get/%{version}.tar.bz2
# fix pkgconfig file installation path
@@ -14,6 +14,7 @@
Patch2: x265-pic.patch
# don't create bogus soname (https://bitbucket.org/multicoreware/x265/issue/62/linux-incorrect-symboli...)
Patch3: x265-fix-soname.patch
+Patch4: x265-detect_cpu_armhfp.patch
# source/Lib/TLibCommon - BSD
# source/Lib/TLibEncoder - BSD
# everything else - GPLv2+
@@ -58,6 +59,7 @@
%endif
%patch2 -p1 -b .pic
%patch3 -p1 -b .soname
+%patch4 -p1 -b .armhfp
f=doc/uncrustify/drag-uncrustify.bat
tr -d '\r' < ${f} > ${f}.unix && \
touch -r ${f} ${f}.unix && \
@@ -75,9 +77,11 @@
rm %{buildroot}%{_libdir}/libx265.a
install -Dpm644 COPYING %{buildroot}%{_pkgdocdir}/COPYING
+%ifnarch %{arm}
%check
LD_LIBRARY_PATH=$(pwd) test/PoolTest
LD_LIBRARY_PATH=$(pwd) test/TestBench
+%endif
%post libs -p /sbin/ldconfig
@@ -99,6 +103,10 @@
%{_libdir}/pkgconfig/x265.pc
%changelog
+* Thu Dec 18 2014 Dominik Mierzejewski <rpm(a)greysector.net> 1.2-6
+- fix build on armv7l arch (partially fix rfbz#3361, patch by Nicolas Chauvet)
+- don't run tests on ARM for now (rfbz#3361)
+
* Sun Aug 17 2014 Dominik Mierzejewski <rpm(a)greysector.net> 1.2-5
- don't include contributor agreement in doc
- make sure /usr/share/doc/x265 is owned
9 years, 11 months
rpms/buildsys-build-rpmfusion/F-19 buildsys-build-rpmfusion-kerneldevpkgs-current, 1.94, 1.95 buildsys-build-rpmfusion.spec, 1.120, 1.121
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/buildsys-build-rpmfusion/F-19
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16461
Modified Files:
buildsys-build-rpmfusion-kerneldevpkgs-current
buildsys-build-rpmfusion.spec
Log Message:
* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 10:19-81
- rebuild for kernel 3.14.27-100.fc19
Index: buildsys-build-rpmfusion-kerneldevpkgs-current
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-19/buildsys-build-rpmfusion-kerneldevpkgs-current,v
retrieving revision 1.94
retrieving revision 1.95
diff -u -r1.94 -r1.95
--- buildsys-build-rpmfusion-kerneldevpkgs-current 13 Dec 2014 12:23:12 -0000 1.94
+++ buildsys-build-rpmfusion-kerneldevpkgs-current 18 Dec 2014 15:46:01 -0000 1.95
@@ -1,4 +1,4 @@
-3.14.26-100.fc19
-3.14.26-100.fc19smp
-3.14.26-100.fc19PAE
-3.14.26-100.fc19lpae
+3.14.27-100.fc19
+3.14.27-100.fc19smp
+3.14.27-100.fc19PAE
+3.14.27-100.fc19lpae
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-19/buildsys-build-rpmfusion.spec,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -r1.120 -r1.121
--- buildsys-build-rpmfusion.spec 13 Dec 2014 12:23:12 -0000 1.120
+++ buildsys-build-rpmfusion.spec 18 Dec 2014 15:46:01 -0000 1.121
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 19
-Release: 80
+Release: 81
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 10:19-81
+- rebuild for kernel 3.14.27-100.fc19
+
* Sat Dec 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 10:19-80
- rebuild for kernel 3.14.26-100.fc19
9 years, 11 months
rpms/buildsys-build-rpmfusion/F-20 buildsys-build-rpmfusion-kerneldevpkgs-current, 1.77, 1.78 buildsys-build-rpmfusion.spec, 1.98, 1.99
by Nicolas Chauvet
Author: kwizart
Update of /cvs/free/rpms/buildsys-build-rpmfusion/F-20
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv16328
Modified Files:
buildsys-build-rpmfusion-kerneldevpkgs-current
buildsys-build-rpmfusion.spec
Log Message:
* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 10:20-54
- rebuild for kernel 3.17.7-200.fc20
Index: buildsys-build-rpmfusion-kerneldevpkgs-current
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-20/buildsys-build-rpmfusion-kerneldevpkgs-current,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- buildsys-build-rpmfusion-kerneldevpkgs-current 13 Dec 2014 12:21:36 -0000 1.77
+++ buildsys-build-rpmfusion-kerneldevpkgs-current 18 Dec 2014 15:45:34 -0000 1.78
@@ -1,4 +1,4 @@
-3.17.6-200.fc20
-3.17.6-200.fc20smp
-3.17.6-200.fc20PAE
-3.17.6-200.fc20lpae
+3.17.7-200.fc20
+3.17.7-200.fc20smp
+3.17.7-200.fc20PAE
+3.17.7-200.fc20lpae
Index: buildsys-build-rpmfusion.spec
===================================================================
RCS file: /cvs/free/rpms/buildsys-build-rpmfusion/F-20/buildsys-build-rpmfusion.spec,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -r1.98 -r1.99
--- buildsys-build-rpmfusion.spec 13 Dec 2014 12:21:37 -0000 1.98
+++ buildsys-build-rpmfusion.spec 18 Dec 2014 15:45:34 -0000 1.99
@@ -3,7 +3,7 @@
Name: buildsys-build-%{repo}
Epoch: 10
Version: 20
-Release: 53
+Release: 54
Summary: Tools and files used by the %{repo} buildsys
Group: Development/Tools
@@ -86,6 +86,9 @@
%changelog
+* Thu Dec 18 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 10:20-54
+- rebuild for kernel 3.17.7-200.fc20
+
* Sat Dec 13 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 10:20-53
- rebuild for kernel 3.17.6-200.fc20
9 years, 11 months
rpms/ffmpeg/devel ffmpeg.spec,1.123,1.124
by Dominik Mierzejewski
Author: rathann
Update of /cvs/free/rpms/ffmpeg/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv15269
Modified Files:
ffmpeg.spec
Log Message:
enable support for libx265 by default (rfbz#3421, patch by Nerijus Baliūnas)
Index: ffmpeg.spec
===================================================================
RCS file: /cvs/free/rpms/ffmpeg/devel/ffmpeg.spec,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ffmpeg.spec 1 Dec 2014 06:26:33 -0000 1.123
+++ ffmpeg.spec 18 Dec 2014 14:45:55 -0000 1.124
@@ -13,7 +13,7 @@
Summary: Digital VCR and streaming server
Name: ffmpeg
Version: 2.4.4
-Release: 1%{?date}%{?date:git}%{?rel}%{?dist}
+Release: 2%{?date}%{?date:git}%{?rel}%{?dist}
%if 0%{?_with_amr:1}
License: GPLv3+
%else
@@ -66,6 +66,7 @@
BuildRequires: subversion
BuildRequires: texi2html
%{!?_without_x264:BuildRequires: x264-devel >= 0.0.0-0.31}
+%{!?_without_x265:BuildRequires: x265-devel}
BuildRequires: xvidcore-devel
BuildRequires: zlib-devel
%ifarch %{ix86} x86_64
@@ -139,6 +140,7 @@
--enable-libv4l2 \\\
%{!?_without_vpx:--enable-libvpx} \\\
%{!?_without_x264:--enable-libx264} \\\
+ %{!?_without_x265:--enable-libx265} \\\
--enable-libxvid \\\
--enable-x11grab \\\
--enable-avfilter \\\
@@ -281,6 +283,9 @@
%changelog
+* Thu Dec 18 2014 Dominik Mierzejewski <rpm at greysector.net> - 2.4.4-2
+- enable support for libx265 by default (rfbz#3421, patch by Nerijus Baliūnas)
+
* Mon Dec 01 2014 Julian Sikorski <belegdol(a)fedoraproject.org> - 2.4.4-1
- Updated to 2.4.4
9 years, 11 months
rpms/nvidia-304xx-kmod/devel 3.18_kernel.patch, NONE, 1.1 .cvsignore, 1.7, 1.8 nvidia-304xx-kmod.spec, 1.19, 1.20 sources, 1.7, 1.8
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv26019
Modified Files:
.cvsignore nvidia-304xx-kmod.spec sources
Added Files:
3.18_kernel.patch
Log Message:
* Tue Dec 16 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.125-1
- Update to 304.125
3.18_kernel.patch:
nv-drm.c | 4 ++++
1 file changed, 4 insertions(+)
--- NEW FILE 3.18_kernel.patch ---
--- a/kernel/nv-drm.c 2014-12-02 03:55:59.000000000 +0000
+++ b/kernel/nv-drm.c 2014-12-16 18:09:05.340107169 +0000
@@ -76,6 +76,10 @@ static struct drm_driver nv_drm_driver =
.unload = nv_drm_unload,
.fops = &nv_drm_fops,
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0)
+ .set_busid = drm_pci_set_busid,
+#endif
+
.name = "nvidia-drm",
.desc = "NVIDIA DRM driver",
.date = "20140818",
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore 10 Jul 2014 20:34:20 -0000 1.7
+++ .cvsignore 16 Dec 2014 18:15:17 -0000 1.8
@@ -1 +1 @@
-nvidia-kmod-data-304.123.tar.xz
+nvidia-kmod-data-304.125.tar.xz
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/nvidia-304xx-kmod.spec,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- nvidia-304xx-kmod.spec 14 Dec 2014 15:03:51 -0000 1.19
+++ nvidia-304xx-kmod.spec 16 Dec 2014 18:15:17 -0000 1.20
@@ -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
-%global buildforkernels newest
+%global buildforkernels current
Name: nvidia-304xx-kmod
-Version: 304.123
+Version: 304.125
# Taken over by kmodtool
-Release: 2%{?dist}.1
+Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -20,6 +20,8 @@
Source11: nvidia-304xx-kmodtool-excludekernel-filterfile
+Patch0: 3.18_kernel.patch
+
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# needed for plague to make sure it builds for i586 and i686
@@ -45,7 +47,7 @@
for arch in x86 x64
do
pushd nvidiapkg-${arch}
- echo 'no patch'
+%patch0 -p1
popd
done
@@ -79,6 +81,9 @@
%changelog
+* Tue Dec 16 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.125-1
+- Update to 304.125
+
* Sun Dec 14 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-2.1
- Rebuilt for kernel
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 10 Jul 2014 20:34:20 -0000 1.7
+++ sources 16 Dec 2014 18:15:17 -0000 1.8
@@ -1 +1 @@
-ba43b5a5f4c780260756cc8b721470bb nvidia-kmod-data-304.123.tar.xz
+5fea73d34516755e119c0b97e960562c nvidia-kmod-data-304.125.tar.xz
9 years, 11 months
rpms/xorg-x11-drv-nvidia-304xx/devel .cvsignore, 1.7, 1.8 sources, 1.7, 1.8 xorg-x11-drv-nvidia-304xx.spec, 1.13, 1.14
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv25684
Modified Files:
.cvsignore sources xorg-x11-drv-nvidia-304xx.spec
Log Message:
* Tue Dec 16 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.125-1
- Update to 304.125
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel/.cvsignore,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- .cvsignore 10 Jul 2014 20:27:47 -0000 1.7
+++ .cvsignore 16 Dec 2014 18:03:19 -0000 1.8
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-304.123.run
-NVIDIA-Linux-x86_64-304.123.run
+NVIDIA-Linux-x86-304.125.run
+NVIDIA-Linux-x86_64-304.125.run
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel/sources,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- sources 10 Jul 2014 20:27:47 -0000 1.7
+++ sources 16 Dec 2014 18:03:19 -0000 1.8
@@ -1,2 +1,2 @@
-52307054483f5c40391608ce69114d48 NVIDIA-Linux-x86-304.123.run
-1eaf806d3a0a7422e85b7149608223dc NVIDIA-Linux-x86_64-304.123.run
+bc3b0ac291fa998d5109a6f7e94fb2d4 NVIDIA-Linux-x86-304.125.run
+3b91df19fa917a414dacd8e87f993557 NVIDIA-Linux-x86_64-304.125.run
Index: xorg-x11-drv-nvidia-304xx.spec
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia-304xx/devel/xorg-x11-drv-nvidia-304xx.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- xorg-x11-drv-nvidia-304xx.spec 10 Jul 2014 20:27:47 -0000 1.13
+++ xorg-x11-drv-nvidia-304xx.spec 16 Dec 2014 18:03:19 -0000 1.14
@@ -6,7 +6,7 @@
%global __strip /bin/true
Name: xorg-x11-drv-nvidia-304xx
-Version: 304.123
+Version: 304.125
Release: 1%{?dist}
Summary: NVIDIA's 304xx serie proprietary display driver for NVIDIA graphic cards
@@ -395,6 +395,9 @@
%changelog
+* Tue Dec 16 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 304.125-1
+- Update to 304.125
+
* Thu Jul 10 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 304.123-1
- Update to 304.123
9 years, 11 months
rpms/nvidia-kmod/devel 3.18_kernel.patch,1.2,1.3
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv20448
Modified Files:
3.18_kernel.patch
Log Message:
redo patch
3.18_kernel.patch:
nv-drm.c | 4 ++++
1 file changed, 4 insertions(+)
Index: 3.18_kernel.patch
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/3.18_kernel.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- 3.18_kernel.patch 21 Oct 2014 12:40:06 -0000 1.2
+++ 3.18_kernel.patch 16 Dec 2014 17:19:25 -0000 1.3
@@ -1,16 +1,6 @@
---- a/kernel/nv-drm.c 2014-09-11 23:33:06.000000000 +0100
-+++ b/kernel/nv-drm.c 2014-10-21 12:12:59.472379677 +0100
-@@ -17,6 +17,9 @@
- #if defined(NV_DRM_AVAILABLE)
-
- #include <drm/drmP.h>
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,18,0)
-+#include <drm/drm_gem.h>
-+#endif
-
- extern nv_linux_state_t *nv_linux_devices;
-
-@@ -124,6 +127,10 @@ static struct drm_driver nv_drm_driver =
+--- a/kernel/nv-drm.c 2014-12-01 23:26:56.000000000 +0000
++++ b/kernel/nv-drm.c 2014-12-16 17:17:14.502960174 +0000
+@@ -128,6 +128,10 @@ static struct drm_driver nv_drm_driver =
.gem_prime_vmap = nv_gem_prime_vmap,
.gem_prime_vunmap = nv_gem_prime_vunmap,
@@ -21,3 +11,4 @@
.name = "nvidia-drm",
.desc = "NVIDIA DRM driver",
.date = "20130102",
+
9 years, 11 months
rpms/nvidia-kmod/devel nvidia-kmod.spec,1.170,1.171
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19742
Modified Files:
nvidia-kmod.spec
Log Message:
* Tue Dec 16 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 1:343.36-1
- Update to 343.36
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- nvidia-kmod.spec 14 Dec 2014 15:03:56 -0000 1.170
+++ nvidia-kmod.spec 16 Dec 2014 16:43:06 -0000 1.171
@@ -3,13 +3,13 @@
# "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
-%global buildforkernels newest
+%global buildforkernels current
Name: nvidia-kmod
Epoch: 1
-Version: 343.22
+Version: 343.36
# Taken over by kmodtool
-Release: 4%{?dist}.1
+Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -86,6 +86,9 @@
%changelog
+* Tue Dec 16 2014 Leigh Scott <leigh123linux(a)googlemail.com> - 1:343.36-1
+- Update to 343.36
+
* Sun Dec 14 2014 Nicolas Chauvet <kwizart(a)gmail.com> - 1:343.22-4.1
- Rebuilt for kernel
9 years, 11 months