rpms/nvidia-kmod/devel nvidia-kmod.spec,1.126,1.127
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19932
Modified Files:
nvidia-kmod.spec
Log Message:
* Sun Jul 07 2013 leigh scott <leigh123linux(a)googlemail.com> - 1:325.08-1
- Update to 325.08
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -r1.126 -r1.127
--- nvidia-kmod.spec 8 Jul 2013 17:01:29 -0000 1.126
+++ nvidia-kmod.spec 8 Jul 2013 17:04:03 -0000 1.127
@@ -3,7 +3,7 @@
# "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 akmod
+%global buildforkernels current
Name: nvidia-kmod
Epoch: 1
11 years, 4 months
rpms/nvidia-kmod/devel .cvsignore, 1.56, 1.57 buildfix_kernel_3.10.patch, 1.1, 1.2 nvidia-kmod.spec, 1.125, 1.126 sources, 1.59, 1.60
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/nvidia-kmod/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv19612
Modified Files:
.cvsignore buildfix_kernel_3.10.patch nvidia-kmod.spec sources
Log Message:
* Sun Jul 07 2013 leigh scott <leigh123linux(a)googlemail.com> - 1:325.08-1
- Update to 325.08
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/.cvsignore,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- .cvsignore 28 Jun 2013 20:37:02 -0000 1.56
+++ .cvsignore 8 Jul 2013 17:01:29 -0000 1.57
@@ -1 +1 @@
-nvidia-kmod-data-319.32.tar.xz
+nvidia-kmod-data-325.08.tar.xz
buildfix_kernel_3.10.patch:
nv-i2c.c | 13 --
nv-procfs.c | 372 ++++++++++++++++++++++++++++++------------------------------
2 files changed, 190 insertions(+), 195 deletions(-)
Index: buildfix_kernel_3.10.patch
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/buildfix_kernel_3.10.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- buildfix_kernel_3.10.patch 31 May 2013 22:39:41 -0000 1.1
+++ buildfix_kernel_3.10.patch 8 Jul 2013 17:01:29 -0000 1.2
@@ -3,29 +3,26 @@
diff -ur -X - a/kernel/nv-i2c.c b/kernel/nv-i2c.c
--- a/kernel/nv-i2c.c 2013-04-26 00:22:30.000000000 -0400
+++ b/kernel/nv-i2c.c 2013-05-13 05:20:55.571981365 -0400
-@@ -311,8 +311,6 @@
+@@ -243,21 +243,14 @@
BOOL NV_API_CALL nv_i2c_del_adapter(nv_state_t *nv, void *data)
{
struct i2c_adapter *pI2cAdapter = (struct i2c_adapter *)data;
- int osstatus = 0;
- BOOL wasReleased = FALSE;
- #if defined(KERNEL_2_4)
- if (!NV_WEAK_SYMBOL_PRESENT(i2c_add_adapter))
-@@ -324,15 +322,10 @@
if (!pI2cAdapter) return FALSE;
// attempt release with the OS
- osstatus = i2c_del_adapter(pI2cAdapter);
-+ i2c_del_adapter(pI2cAdapter);
-+ os_free_mem(pI2cAdapter);
-
+-
- if (!osstatus)
- {
- os_free_mem(pI2cAdapter);
- wasReleased = TRUE;
- }
--
++ i2c_del_adapter(pI2cAdapter);
++ os_free_mem(pI2cAdapter);
+
- return wasReleased;
+ return TRUE;
}
@@ -207,11 +204,15 @@
+nv_procfs_open_gpu_info(
+ struct inode *inode,
+ struct file *file
-+)
-+{
+ )
+ {
+- int len = 0;
+- *eof = 1;
+ return single_open(file, nv_procfs_show_gpu_info, PDE_DATA(inode));
+}
-+
+
+- len += sprintf(page+len, "NVRM version: %s\n", pNVRM_ID);
+- len += sprintf(page+len, "GCC version: %s\n", NV_COMPILER);
+static const struct file_operations nv_procfs_gpu_info_fops = {
+ .owner = THIS_MODULE,
+ .open = nv_procfs_open_gpu_info,
@@ -219,7 +220,8 @@
+ .llseek = seq_lseek,
+ .release = single_release,
+};
-+
+
+- return len;
+static int
+nv_procfs_show_version(
+ struct seq_file *m,
@@ -275,10 +277,8 @@
+ const char __user *buffer,
+ size_t count,
+ loff_t *pos
- )
- {
-- int len = 0;
-- *eof = 1;
++)
++{
+ int status = 0;
+ nv_file_private_t *nvfp = NV_GET_FILE_PRIVATE(file);
+ char *proc_buffer;
@@ -311,13 +311,10 @@
+ nvfp->proc_data = PDE_DATA(file->f_inode);
+ nvfp->off += count;
+ }
-
-- len += sprintf(page+len, "NVRM version: %s\n", pNVRM_ID);
-- len += sprintf(page+len, "GCC version: %s\n", NV_COMPILER);
++
+done:
+ up(&nvfp->fops_sp_lock[NV_FOPS_STACK_INDEX_PROCFS]);
-
-- return len;
++
+ return ((status < 0) ? status : count);
}
@@ -341,7 +338,7 @@
nvfp = NV_GET_FILE_PRIVATE(file);
if (nvfp == NULL)
return 0;
-@@ -346,122 +424,81 @@
+@@ -346,121 +424,80 @@
return rc;
}
@@ -383,7 +380,6 @@
- len += sprintf(page+len, "RmMsg: \"%s\"\n",
+ seq_printf(m, "RmMsg: \"%s\"\n",
(NVreg_RmMsg != NULL) ? NVreg_RmMsg : "");
-
- return len;
+ return 0;
}
@@ -443,8 +439,7 @@
- down(&nvfp->fops_sp_lock[NV_FOPS_STACK_INDEX_PROCFS]);
-
- bytes_left = (NV_PROC_WRITE_BUFFER_SIZE - nvfp->off - 1);
-+ seq_printf(m, "%s", (char *)m->private);
-
+-
- if (count == 0)
- {
- status = -EINVAL;
@@ -471,7 +466,8 @@
-
-done:
- up(&nvfp->fops_sp_lock[NV_FOPS_STACK_INDEX_PROCFS]);
--
++ seq_printf(m, "%s", (char *)m->private);
+
- return ((status < 0) ? status : (int)count);
+ return 0;
}
@@ -505,7 +501,7 @@
static void
nv_procfs_add_text_file(
struct proc_dir_entry *parent,
-@@ -469,22 +506,7 @@
+@@ -468,22 +505,7 @@
const char *text
)
{
@@ -529,7 +525,7 @@
}
#endif
-@@ -513,26 +535,11 @@
+@@ -512,26 +534,11 @@
if (!proc_nvidia)
goto failed;
@@ -558,7 +554,7 @@
if (!entry)
goto failed;
-@@ -553,8 +560,7 @@
+@@ -552,8 +559,7 @@
nv_procfs_add_text_file(proc_nvidia_patches, "README", __README_patches);
@@ -568,7 +564,7 @@
if (!entry)
goto failed;
-@@ -571,15 +577,11 @@
+@@ -570,15 +576,11 @@
if (!proc_nvidia_gpu)
goto failed;
@@ -586,7 +582,7 @@
if (!entry)
goto failed;
}
-@@ -587,7 +589,7 @@
+@@ -586,7 +588,7 @@
return 0;
#if defined(CONFIG_PROC_FS)
failed:
@@ -595,7 +591,7 @@
return -1;
#endif
}
-@@ -595,6 +597,6 @@
+@@ -594,6 +596,6 @@
void nv_unregister_procfs(void)
{
#if defined(CONFIG_PROC_FS)
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/nvidia-kmod.spec,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -r1.125 -r1.126
--- nvidia-kmod.spec 28 Jun 2013 20:48:01 -0000 1.125
+++ nvidia-kmod.spec 8 Jul 2013 17:01:29 -0000 1.126
@@ -7,7 +7,7 @@
Name: nvidia-kmod
Epoch: 1
-Version: 319.32
+Version: 325.08
# Taken over by kmodtool
Release: 1%{?dist}
Summary: NVIDIA display driver kernel module
@@ -85,6 +85,9 @@
%changelog
+* Sun Jul 07 2013 leigh scott <leigh123linux(a)googlemail.com> - 1:325.08-1
+- Update to 325.08
+
* Fri Jun 28 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:319.32-1
- Update to 319.32
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/devel/sources,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- sources 28 Jun 2013 20:37:02 -0000 1.59
+++ sources 8 Jul 2013 17:01:29 -0000 1.60
@@ -1 +1 @@
-cdb20c69343ff34f93c6e8d71ead101b nvidia-kmod-data-319.32.tar.xz
+4439f78a3bdafb69fa189a6038c54765 nvidia-kmod-data-325.08.tar.xz
11 years, 4 months
rpms/xorg-x11-drv-nvidia/devel .cvsignore, 1.56, 1.57 sources, 1.59, 1.60 xorg-x11-drv-nvidia.spec, 1.106, 1.107
by Leigh Scott
Author: leigh123linux
Update of /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv18977
Modified Files:
.cvsignore sources xorg-x11-drv-nvidia.spec
Log Message:
* Sun Jul 07 2013 leigh scott <leigh123linux(a)googlemail.com> - 1:325.08-1
- Update to 325.08
- move .so files to devel
Index: .cvsignore
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/.cvsignore,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -r1.56 -r1.57
--- .cvsignore 27 Jun 2013 20:29:05 -0000 1.56
+++ .cvsignore 8 Jul 2013 16:52:42 -0000 1.57
@@ -1,2 +1,2 @@
-NVIDIA-Linux-x86-319.32.run
-NVIDIA-Linux-x86_64-319.32.run
+NVIDIA-Linux-x86_64-325.08.run
+NVIDIA-Linux-x86-325.08.run
Index: sources
===================================================================
RCS file: /cvs/nonfree/rpms/xorg-x11-drv-nvidia/devel/sources,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- sources 27 Jun 2013 20:29:06 -0000 1.59
+++ sources 8 Jul 2013 16:52:42 -0000 1.60
@@ -1,2 +1,2 @@
-978339ff37c3207f3a39d3952721dcdb NVIDIA-Linux-x86-319.32.run
-608767a3e1bee8a030f31cdc9251182e NVIDIA-Linux-x86_64-319.32.run
+f0f3361071b36543f53e3a357ae7a513 NVIDIA-Linux-x86_64-325.08.run
+b4545f20c4fa0716e8bfa7f732b1ff44 NVIDIA-Linux-x86-325.08.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.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- xorg-x11-drv-nvidia.spec 27 Jun 2013 20:29:06 -0000 1.106
+++ xorg-x11-drv-nvidia.spec 8 Jul 2013 16:52:43 -0000 1.107
@@ -7,7 +7,7 @@
Name: xorg-x11-drv-nvidia
Epoch: 1
-Version: 319.32
+Version: 325.08
Release: 1%{?dist}
Summary: NVIDIA's proprietary display driver for NVIDIA graphic cards
@@ -333,8 +333,6 @@
%dir %{_nvidia_libdir}/tls
%config %{_sysconfdir}/ld.so.conf.d/nvidia-%{_lib}.conf
%{_nvidia_libdir}/*.so.*
-%{_nvidia_libdir}/libcuda.so
-%{_nvidia_libdir}/libnvidia-glcore.so
%{_nvidia_libdir}/tls/*.so*
%exclude %{_libdir}/vdpau/libvdpau.*
%{_libdir}/vdpau/libvdpau_nvidia.so*
@@ -347,13 +345,19 @@
%{_nvidia_libdir}/libOpenCL.so
%{_nvidia_libdir}/libnvidia-compiler.so
%{_nvidia_libdir}/libGL.so
+%{_nvidia_libdir}/libnvidia-glcore.so
%{_nvidia_libdir}/libnvcuvid.so
%{_nvidia_libdir}/libnvidia-ml.so
%{_nvidia_libdir}/libnvidia-opencl.so
%{_nvidia_libdir}/libnvidia-encode.so
+%{_nvidia_libdir}/libnvidia-vgxcfg.so
%changelog
+* Sun Jul 07 2013 leigh scott <leigh123linux(a)googlemail.com> - 1:325.08-1
+- Update to 325.08
+- move .so files to devel
+
* Thu Jun 27 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:319.32-1
- Update to 319.32
11 years, 4 months
rpms/cairo-dock/devel cairo-dock.spec,1.70,1.71
by Mamoru Tasaka
Author: mtasaka
Update of /cvs/free/rpms/cairo-dock/devel
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv9189
Modified Files:
cairo-dock.spec
Log Message:
* Mon Jul 8 2013 Mamoru TASAKA <mtasaka(a)fedoraproject.org>
- F-20: rebuid against new libical
Index: cairo-dock.spec
===================================================================
RCS file: /cvs/free/rpms/cairo-dock/devel/cairo-dock.spec,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -r1.70 -r1.71
--- cairo-dock.spec 15 Apr 2013 05:27:45 -0000 1.70
+++ cairo-dock.spec 8 Jul 2013 14:14:54 -0000 1.71
@@ -29,7 +29,7 @@
%global build_webkit 1
%global build_xfce 1
-%global fedora_main_rel 1
+%global fedora_main_rel 2
%global fedora_rel %{?pre_release:0.}%{fedora_main_rel}%{?betaver:.%betaver}
@@ -641,6 +641,9 @@
%{_libdir}/pkgconfig/*.pc
%changelog
+* Mon Jul 8 2013 Mamoru TASAKA <mtasaka(a)fedoraproject.org>
+- F-20: rebuid against new libical
+
* Mon Apr 15 2013 Mamoru TASAKA <mtasaka(a)fedoraproject.org> - 3.2.1-1
- Update to 3.2.1
11 years, 4 months
rpms/VirtualBox-kmod/F-18 VirtualBox-kmod.spec,1.53,1.54
by Sérgio M. Basto
Author: sergiomb
Update of /cvs/free/rpms/VirtualBox-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv11712
Modified Files:
VirtualBox-kmod.spec
Log Message:
* Sat Jul 06 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.16-2
- Rebuilt for akmods.
Index: VirtualBox-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-kmod/F-18/VirtualBox-kmod.spec,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- VirtualBox-kmod.spec 6 Jul 2013 10:10:56 -0000 1.53
+++ VirtualBox-kmod.spec 6 Jul 2013 12:09:56 -0000 1.54
@@ -3,7 +3,7 @@
# "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 newest
# In prerelease builds (such as betas), this package has the same
# major version number, while the kernel module abi is not guarranteed
@@ -20,7 +20,7 @@
Name: VirtualBox-kmod
Version: 4.2.16
-Release: 1%{?prerel:.%{prerel}}%{?dist}.1
+Release: 2%{?prerel:.%{prerel}}%{?dist}
Summary: Kernel module for VirtualBox
Group: System Environment/Kernel
@@ -98,6 +98,9 @@
%changelog
+* Sat Jul 06 2013 Sérgio Basto <sergio(a)serjux.com> - 4.2.16-2
+- Rebuilt for akmods.
+
* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 4.2.16-1.1
- Rebuilt for kernel
11 years, 4 months
rpms/wl-kmod/F-18 wl-kmod.spec,1.106,1.107
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/wl-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3923
Modified Files:
wl-kmod.spec
Log Message:
* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-10.6
- Rebuilt for kernel
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-18/wl-kmod.spec,v
retrieving revision 1.106
retrieving revision 1.107
diff -u -r1.106 -r1.107
--- wl-kmod.spec 30 Jun 2013 09:32:30 -0000 1.106
+++ wl-kmod.spec 6 Jul 2013 10:22:40 -0000 1.107
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.100.82.112
-Release: 10%{?dist}.5
+Release: 10%{?dist}.6
Summary: Kernel module for Broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -101,6 +101,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-10.6
+- Rebuilt for kernel
+
* Sun Jun 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 5.100.82.112-10.5
- Rebuilt for kernel
11 years, 4 months
rpms/nvidia-kmod/F-18 nvidia-kmod.spec,1.151,1.152
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3796
Modified Files:
nvidia-kmod.spec
Log Message:
* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:304.88-1.14
- Rebuilt for kernel
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-18/nvidia-kmod.spec,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -r1.151 -r1.152
--- nvidia-kmod.spec 30 Jun 2013 09:32:17 -0000 1.151
+++ nvidia-kmod.spec 6 Jul 2013 10:22:27 -0000 1.152
@@ -9,7 +9,7 @@
Epoch: 1
Version: 304.88
# Taken over by kmodtool
-Release: 1%{?dist}.13
+Release: 1%{?dist}.14
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -85,6 +85,9 @@
%changelog
+* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:304.88-1.14
+- Rebuilt for kernel
+
* Sun Jun 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 1:304.88-1.13
- Rebuilt for kernel
11 years, 4 months
rpms/nvidia-304xx-kmod/F-18 nvidia-304xx-kmod.spec,1.4,1.5
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-304xx-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3638
Modified Files:
nvidia-304xx-kmod.spec
Log Message:
* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.88-1.4
- Rebuilt for kernel
Index: nvidia-304xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-304xx-kmod/F-18/nvidia-304xx-kmod.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- nvidia-304xx-kmod.spec 30 Jun 2013 09:32:04 -0000 1.4
+++ nvidia-304xx-kmod.spec 6 Jul 2013 10:22:13 -0000 1.5
@@ -8,7 +8,7 @@
Name: nvidia-304xx-kmod
Version: 304.88
# Taken over by kmodtool
-Release: 1%{?dist}.3
+Release: 1%{?dist}.4
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -80,6 +80,9 @@
%changelog
+* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.88-1.4
+- Rebuilt for kernel
+
* Sun Jun 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 304.88-1.3
- Rebuilt for kernel
11 years, 4 months
rpms/nvidia-173xx-kmod/F-18 nvidia-173xx-kmod.spec,1.86,1.87
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3517
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.36-5.19
- Rebuilt for kernel
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-18/nvidia-173xx-kmod.spec,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- nvidia-173xx-kmod.spec 30 Jun 2013 09:31:50 -0000 1.86
+++ nvidia-173xx-kmod.spec 6 Jul 2013 10:21:59 -0000 1.87
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.36
# Taken over by kmodtool
-Release: 5%{?dist}.18
+Release: 5%{?dist}.19
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -98,6 +98,9 @@
%changelog
+* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.36-5.19
+- Rebuilt for kernel
+
* Sun Jun 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 173.14.36-5.18
- Rebuilt for kernel
11 years, 4 months
rpms/catalyst-legacy-kmod/F-18 catalyst-legacy-kmod.spec,1.26,1.27
by Nicolas Chauvet
Author: kwizart
Update of /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18
In directory old02.ovh.rpmfusion.lan:/tmp/cvs-serv3396
Modified Files:
catalyst-legacy-kmod.spec
Log Message:
* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.19
- Rebuilt for kernel
Index: catalyst-legacy-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/catalyst-legacy-kmod/F-18/catalyst-legacy-kmod.spec,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- catalyst-legacy-kmod.spec 30 Jun 2013 09:31:38 -0000 1.26
+++ catalyst-legacy-kmod.spec 6 Jul 2013 10:21:48 -0000 1.27
@@ -13,7 +13,7 @@
Name: catalyst-legacy-kmod
Version: 13.1
-Release: 2%{?dist}.18
+Release: 2%{?dist}.19
# Taken over by kmodtool
Summary: AMD display legacy driver kernel module
Group: System Environment/Kernel
@@ -103,6 +103,9 @@
%changelog
+* Sat Jul 06 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.19
+- Rebuilt for kernel
+
* Sun Jun 30 2013 Nicolas Chauvet <kwizart(a)gmail.com> - 13.1-2.18
- Rebuilt for kernel
11 years, 4 months