rpms/avidemux/F-11 avidemux-2.5-libmpeg2enc-altivec.patch, NONE, 1.1 avidemux.spec, 1.23, 1.24
by Stewart Adam
Author: firewing
Update of /cvs/free/rpms/avidemux/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv3974
Modified Files:
avidemux.spec
Added Files:
avidemux-2.5-libmpeg2enc-altivec.patch
Log Message:
* Fri Jul 31 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-3
- Add patch to fix Altivec build errors on PPC
avidemux-2.5-libmpeg2enc-altivec.patch:
--- NEW FILE avidemux-2.5-libmpeg2enc-altivec.patch ---
--- avidemux_2.5.0/avidemux/ADM_libraries/ADM_libmpeg2enc/mjpeg_types.h.orig 2009-07-31 12:09:42.574079146 -0400
+++ avidemux_2.5.0/avidemux/ADM_libraries/ADM_libmpeg2enc/mjpeg_types.h 2009-07-31 12:10:13.522203051 -0400
@@ -22,63 +22,9 @@
#define __MJPEG_TYPES_H__
//#include <config.h>
-#if defined(HAVE_STDINT_H)
-# include <stdint.h>
-#elif defined(HAVE_INTTYPES_H)
-# include <inttypes.h>
-#elif defined(__CYGWIN__)
-# include <sys/types.h>
-typedef u_int8_t uint8_t;
-typedef u_int16_t uint16_t;
-typedef u_int32_t uint32_t;
-typedef u_int64_t uint64_t;
-# define INT8_C(c) c
-# define INT16_C(c) c
-# define INT32_C(c) c
-# define INT64_C(c) c ## LL
-# define UINT8_C(c) c ## U
-# define UINT16_C(c) c ## U
-# define UINT32_C(c) c ## U
-# define UINT64_C(c) c ## ULL
-#elif defined(_WIN32)
-#include <win32defs.h>
-#else
-/* warning ISO/IEC 9899:1999 <stdint.h> was missing and even <inttypes.h> */
-/* fixme */
-/* (Ronald) we'll just give an error now...Better solutions might come later */
-#error You don't seem to have sys/types.h, inttypes.h or stdint.h! \
-This might mean two things: \
-Either you really don't have them, in which case you should \
-install the system headers and/or C-library headers. \
-You might also have forgotten to define whether you have them. \
-You can do this by either defining their presence before including \
-mjpegtools' header files (e.g. "#define HAVE_STDINT_H"), or you can check \
-for their presence in a configure script. mjpegtools' configure \
-script is a good example of how to do this. You need to check for \
-PRId64, stdbool.h, inttypes.h, stdint.h and sys/types.h
-#endif /* HAVE_STDINT_H */
-
-#if defined(__FreeBSD__)
-#include <sys/types.h> /* FreeBSD - ssize_t */
-#endif
-
-#if defined(HAVE_STDBOOL_H) && !defined(__cplusplus)
-#include <stdbool.h>
-#else
-/* ISO/IEC 9899:1999 <stdbool.h> missing -- enabling workaround */
-
-# ifndef __cplusplus
-typedef enum
- {
- false = 0,
- true = 1
- } locBool;
-
-# define false false
-# define true true
-# define bool locBool
-# endif
-#endif
+#include <sys/types.h> /* FreeBSD, others - ssize_t */
+#include <stdint.h>
+#include <inttypes.h>
#ifndef PRId64
#define PRId64 PRID64_STRING_FORMAT
Index: avidemux.spec
===================================================================
RCS file: /cvs/free/rpms/avidemux/F-11/avidemux.spec,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- avidemux.spec 31 Jul 2009 00:45:49 -0000 1.23
+++ avidemux.spec 31 Jul 2009 16:25:47 -0000 1.24
@@ -1,6 +1,6 @@
Name: avidemux
Version: 2.5.0
-Release: 2%{?dist}
+Release: 3%{?dist}
Summary: Graphical video editing and transcoding tool
Group: Applications/Multimedia
@@ -21,10 +21,13 @@
# Fixes for gcc 4.4
# Patch from http://arklinux.ch/~bero/avidemux-2.5.0-gcc-4.4.patch
Patch4: avidemux-2.5-gcc-44.patch
+# Fixes altivec build errors on PPC
+Patch5: avidemux-2.5-libmpeg2enc-altivec.patch
+### Patches for plugins
# Install to correct libdir on 64bit and moves plugins into avidemux subdir
-Patch5: avidemux-plugins-2.5-plugdir.patch
+Patch6: avidemux-plugins-2.5-plugdir.patch
# Fixes for gcc 4.4 (plugins)
-Patch6: avidemux-plugins-2.5-gcc44.patch
+Patch7: avidemux-plugins-2.5-gcc44.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
@@ -157,8 +160,9 @@
sed -i.bak 's/startDir="lib";/startDir="lib64";/' avidemux/main.cpp
%endif
%patch4 -p1 -b .gcc44
-%patch5 -p1 -b .plugdir
-%patch6 -p1 -b .pluggcc44
+%patch5 -p1 -b .altivec
+%patch6 -p1 -b .plugdir
+%patch7 -p1 -b .pluggcc44
%build
# Out of source build
@@ -244,6 +248,9 @@
%{_includedir}/ADM_coreConfig.h
%changelog
+* Fri Jul 31 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-3
+- Add patch to fix Altivec build errors on PPC
+
* Thu Jul 30 2009 Stewart Adam <s.adam at diffingo.com> - 2.5.0-2
- Reintegrate plugins package as a subpackage
15 years, 3 months
rpms/wl-kmod/F-11 wl-kmod.spec,1.41,1.42
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/wl-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv738
Modified Files:
wl-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.91.9-3.3
- rebuild for new kernels
Index: wl-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/wl-kmod/F-11/wl-kmod.spec,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- wl-kmod.spec 14 Jul 2009 17:47:22 -0000 1.41
+++ wl-kmod.spec 31 Jul 2009 05:18:54 -0000 1.42
@@ -7,7 +7,7 @@
Name: wl-kmod
Version: 5.10.91.9
-Release: 3%{?dist}.2
+Release: 3%{?dist}.3
Summary: Kernel module for broadcom wireless devices
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -84,6 +84,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.91.9-3.3
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 5.10.91.9-3.2
- rebuild for new kernels
15 years, 3 months
rpms/slmodem-kmod/F-11 slmodem-kmod.spec,1.32,1.33
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/slmodem-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv616
Modified Files:
slmodem-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-27.31
- rebuild for new kernels
Index: slmodem-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/slmodem-kmod/F-11/slmodem-kmod.spec,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- slmodem-kmod.spec 14 Jul 2009 17:47:05 -0000 1.32
+++ slmodem-kmod.spec 31 Jul 2009 05:18:38 -0000 1.33
@@ -12,7 +12,7 @@
Name: slmodem-kmod
Version: 2.9.11
-Release: 27%{?dist}.30
+Release: 27%{?dist}.31
Summary: Proprietary SmartLink softmodem kernel drivers
Group: System Environment/Kernel
@@ -102,6 +102,9 @@
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-27.31
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.9.11-27.30
- rebuild for new kernels
15 years, 3 months
rpms/nvidia-kmod/F-11 nvidia-kmod.spec,1.51,1.52
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32676
Modified Files:
nvidia-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 185.18.29-1.1
- rebuild for new kernels
Index: nvidia-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-kmod/F-11/nvidia-kmod.spec,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- nvidia-kmod.spec 30 Jul 2009 09:04:35 -0000 1.51
+++ nvidia-kmod.spec 31 Jul 2009 05:18:22 -0000 1.52
@@ -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-kmod
Version: 185.18.29
# Taken over by kmodtool
-Release: 1%{?dist}
+Release: 1%{?dist}.1
Summary: NVIDIA display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 185.18.29-1.1
+- rebuild for new kernels
+
* Thu Jul 30 2009 kwizart < kwizart at gmail.com > - 185.18.29-1
- Update to 185.18.29 (final)
15 years, 3 months
rpms/nvidia-96xx-kmod/F-11 nvidia-96xx-kmod.spec,1.30,1.31
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-96xx-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32553
Modified Files:
nvidia-96xx-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 96.43.11-2.12
- rebuild for new kernels
Index: nvidia-96xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-96xx-kmod/F-11/nvidia-96xx-kmod.spec,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- nvidia-96xx-kmod.spec 14 Jul 2009 17:46:28 -0000 1.30
+++ nvidia-96xx-kmod.spec 31 Jul 2009 05:18:04 -0000 1.31
@@ -7,7 +7,7 @@
Name: nvidia-96xx-kmod
Version: 96.43.11
-Release: 2%{?dist}.11
+Release: 2%{?dist}.12
# Taken over by kmodtool
Summary: NVIDIA 96xx display driver kernel module
Group: System Environment/Kernel
@@ -91,6 +91,9 @@
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 96.43.11-2.12
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 96.43.11-2.11
- rebuild for new kernels
15 years, 3 months
rpms/nvidia-173xx-kmod/F-11 nvidia-173xx-kmod.spec,1.31,1.32
by Thorsten Leemhuis
Author: thl
Update of /cvs/nonfree/rpms/nvidia-173xx-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv32427
Modified Files:
nvidia-173xx-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 173.14.18-2.12
- rebuild for new kernels
Index: nvidia-173xx-kmod.spec
===================================================================
RCS file: /cvs/nonfree/rpms/nvidia-173xx-kmod/F-11/nvidia-173xx-kmod.spec,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- nvidia-173xx-kmod.spec 14 Jul 2009 17:46:10 -0000 1.31
+++ nvidia-173xx-kmod.spec 31 Jul 2009 05:17:44 -0000 1.32
@@ -8,7 +8,7 @@
Name: nvidia-173xx-kmod
Version: 173.14.18
# Taken over by kmodtool
-Release: 2%{?dist}.11
+Release: 2%{?dist}.12
Summary: NVIDIA 173xx display driver kernel module
Group: System Environment/Kernel
License: Redistributable, no modification permitted
@@ -93,6 +93,9 @@
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 173.14.18-2.12
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 173.14.18-2.11
- rebuild for new kernels
15 years, 3 months
rpms/VirtualBox-OSE-kmod/F-11 VirtualBox-OSE-kmod.spec,1.18,1.19
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31693
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.2-1.2
- rebuild for new kernels
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/F-11/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- VirtualBox-OSE-kmod.spec 14 Jul 2009 17:45:07 -0000 1.18
+++ VirtualBox-OSE-kmod.spec 31 Jul 2009 05:05:13 -0000 1.19
@@ -7,7 +7,7 @@
Name: VirtualBox-OSE-kmod
Version: 3.0.2
-Release: 1%{?dist}.1
+Release: 1%{?dist}.2
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -78,6 +78,9 @@
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.2-1.2
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.0.2-1.1
- rebuild for new kernels
15 years, 3 months
rpms/sysprof-kmod/F-11 sysprof-kmod.spec,1.13,1.14
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/sysprof-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31570
Modified Files:
sysprof-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.0.12-2.12
- rebuild for new kernels
Index: sysprof-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/sysprof-kmod/F-11/sysprof-kmod.spec,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- sysprof-kmod.spec 14 Jul 2009 17:44:51 -0000 1.13
+++ sysprof-kmod.spec 31 Jul 2009 05:04:57 -0000 1.14
@@ -8,7 +8,7 @@
Name: sysprof-kmod
Summary: Kernel module for sysprof
Version: 1.0.12
-Release: 2%{?dist}.11
+Release: 2%{?dist}.12
Group: System Environment/Kernel
License: GPLv2+
@@ -73,6 +73,9 @@
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.0.12-2.12
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 1.0.12-2.11
- rebuild for new kernels
15 years, 3 months
rpms/rt3070-kmod/F-11 rt3070-kmod.spec,1.16,1.17
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rt3070-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31449
Modified Files:
rt3070-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.1.0-1.6
- rebuild for new kernels
Index: rt3070-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt3070-kmod/F-11/rt3070-kmod.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- rt3070-kmod.spec 14 Jul 2009 17:44:35 -0000 1.16
+++ rt3070-kmod.spec 31 Jul 2009 05:04:41 -0000 1.17
@@ -7,7 +7,7 @@
Name: rt3070-kmod
Version: 2.1.1.0
-Release: 1%{?dist}.5
+Release: 1%{?dist}.6
Summary: Kernel module for wireless devices with Ralink's rt307x chipsets
Group: System Environment/Kernel
@@ -93,6 +93,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.1.0-1.6
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.1.0-1.5
- rebuild for new kernels
15 years, 3 months
rpms/rt2870-kmod/F-11 rt2870-kmod.spec,1.48,1.49
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/rt2870-kmod/F-11
In directory se02.es.rpmfusion.net:/tmp/cvs-serv31324
Modified Files:
rt2870-kmod.spec
Log Message:
* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.2.0-1.6
- rebuild for new kernels
Index: rt2870-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/rt2870-kmod/F-11/rt2870-kmod.spec,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- rt2870-kmod.spec 14 Jul 2009 17:44:19 -0000 1.48
+++ rt2870-kmod.spec 31 Jul 2009 05:04:24 -0000 1.49
@@ -7,7 +7,7 @@
Name: rt2870-kmod
Version: 2.1.2.0
-Release: 1%{?dist}.5
+Release: 1%{?dist}.6
Summary: Kernel module for wireless devices with Ralink's rt2870 chipsets
Group: System Environment/Kernel
@@ -77,6 +77,9 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Fri Jul 31 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.2.0-1.6
+- rebuild for new kernels
+
* Tue Jul 14 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.1.2.0-1.5
- rebuild for new kernels
15 years, 3 months