rpms/autopano-sift-C/F-14 autopano-sift-C.spec,1.6,1.7
by Bruno Postle
Author: bpostle
Update of /cvs/free/rpms/autopano-sift-C/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv17977
Modified Files:
autopano-sift-C.spec
Log Message:
Bump release for new libpano13 soname in f14 updates
Index: autopano-sift-C.spec
===================================================================
RCS file: /cvs/free/rpms/autopano-sift-C/F-14/autopano-sift-C.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- autopano-sift-C.spec 12 May 2010 22:52:50 -0000 1.6
+++ autopano-sift-C.spec 31 Oct 2010 22:33:28 -0000 1.7
@@ -1,7 +1,7 @@
Summary: SIFT feature detection
Name: autopano-sift-C
Version: 2.5.1
-Release: 3%{?dist}
+Release: 4%{?dist}
License: GPLv2
Group: Applications/Multimedia
Source: http://downloads.sourceforge.net/hugin/%{name}-%{version}.tar.gz
@@ -47,6 +47,9 @@
%{_mandir}/man7/autopano-sift-c.7.gz
%changelog
+* Sun Oct 31 2010 Bruno Postle <bruno(a)postle.net> - 2.5.1-4
+- Bump release for new libpano13 soname in f14 updates
+
* Wed May 12 2010 Bruno Postle <bruno(a)postle.net> - 2.5.1-3
- Bump version as -r autopano-sift-C-2_5_1-2_fc14 is messed-up on the server
14 years
rpms/audacity-freeworld/F-14 audacity-1.3.12-portmixer-configure-from-trunk.patch, NONE, 1.1 audacity-freeworld.spec, 1.16, 1.17
by David Timms
Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv20616
Modified Files:
audacity-freeworld.spec
Added Files:
audacity-1.3.12-portmixer-configure-from-trunk.patch
Log Message:
fix build failure due to portmixer configure problems
audacity-1.3.12-portmixer-configure-from-trunk.patch:
configure.ac | 63 +++++++++++++++++++++++++++++++++++------------------------
1 file changed, 38 insertions(+), 25 deletions(-)
--- NEW FILE audacity-1.3.12-portmixer-configure-from-trunk.patch ---
diff -ur audacity-src-1.3.12-beta.orig/lib-src/portmixer/configure.ac audacity-src-1.3.12-beta/lib-src/portmixer/configure.ac
--- audacity-src-1.3.12-beta.orig/lib-src/portmixer/configure.ac 2010-03-30 22:29:47.000000000 +1100
+++ audacity-src-1.3.12-beta/lib-src/portmixer/configure.ac 2010-10-31 22:52:50.000000000 +1100
@@ -49,34 +49,57 @@
fi
#
+# Check which APIs are available
+#
+
+have_oss=no
+AC_CHECK_HEADERS([sys/soundcard.h linux/soundcard.h machine/soundcard.h], have_oss=yes)
+
+AC_CHECK_HEADER(alsa/asoundlib.h, have_alsa=yes, have_alsa=no)
+AC_CHECK_HEADER(CoreAudio/CoreAudio.h, have_coreaudio=yes, have_coreaudio=no)
+AC_CHECK_HEADER(windows.h, have_windows=yes, have_windows=no)
+
+#
# Make sure the support is there
#
have_support=yes
-AC_EGREP_HEADER([PaWinDS_GetStreamInputGUID], [pa_win_ds.h], , [have_support=no])
-if [[ $have_support = "no" ]] ; then
- AC_MSG_WARN("Missing support in pa_win_ds.h");
-fi
-AC_EGREP_HEADER([PaAlsa_GetStreamInputCard], [pa_linux_alsa.h], , [have_support=no])
-if [[ $have_support = "no" ]] ; then
+
+if [[ $have_alsa = "yes" ]] ; then
+ AC_EGREP_HEADER([PaAlsa_GetStreamInputCard], [pa_linux_alsa.h], , [have_support=no])
+ if [[ $have_support = "no" ]] ; then
AC_MSG_WARN("Missing support in pa_linux_alsa.h");
+ fi
fi
-AC_EGREP_HEADER([PaWinMME_GetStreamInputHandle], [pa_win_wmme.h], , [have_support=no])
-if [[ $have_support = "no" ]] ; then
- AC_MSG_WARN("Missing support in pa_win_wmme.h");
-fi
-AC_EGREP_HEADER([PaMacCore_GetStreamInputDevice], [pa_mac_core.h], , [have_support=no])
-if [[ $have_support = "no" ]] ; then
+
+if [[ $have_coreaudio = "yes" ]] ; then
+ AC_EGREP_HEADER([PaMacCore_GetStreamInputDevice], [pa_mac_core.h], , [have_support=no])
+ if [[ $have_support = "no" ]] ; then
AC_MSG_WARN("Missing support in pa_mac_core.h");
+ fi
fi
-AC_EGREP_HEADER([PaOSS_GetStreamInputDevice], [pa_unix_oss.h], , [have_support=no])
-if [[ $have_support = "no" ]] ; then
+
+if [[ $have_oss = "yes" ]] ; then
+ AC_EGREP_HEADER([PaOSS_GetStreamInputDevice], [pa_unix_oss.h], , [have_support=no])
+ if [[ $have_support = "no" ]] ; then
AC_MSG_WARN("Missing support in pa_unix_oss.h");
+ fi
+fi
+
+if [[ $have_windows = "yes" ]] ; then
+ AC_EGREP_HEADER([PaWinDS_GetStreamInputGUID], [pa_win_ds.h], , [have_support=no])
+ if [[ $have_support = "no" ]] ; then
+ AC_MSG_WARN("Missing support in pa_win_ds.h");
+ fi
+ AC_EGREP_HEADER([PaWinMME_GetStreamInputHandle], [pa_win_wmme.h], , [have_support=no])
+ if [[ $have_support = "no" ]] ; then
+ AC_MSG_WARN("Missing support in pa_win_wmme.h");
+ fi
fi
+
AC_EGREP_HEADER([Pa_GetStreamHostApiType], [portaudio.h], , [have_support=no])
if [[ $have_support = "no" ]] ; then
AC_MSG_WARN("Missing support in portaudio.h");
fi
-
if [[ $have_support = "no" ]] ; then
AC_MSG_ERROR("Your version of portaudio does not include required functions");
fi
@@ -88,16 +111,6 @@
AC_SUBST( objects, [px_mixer.o] )
#
-# Check which APIs are available
-#
-
-have_oss=no
-AC_CHECK_HEADERS([sys/soundcard.h linux/soundcard.h machine/soundcard.h], have_oss=yes)
-
-AC_CHECK_HEADER(alsa/asoundlib.h, have_alsa=yes, have_alsa=no)
-AC_CHECK_HEADER(CoreAudio/CoreAudio.h, have_coreaudio=yes, have_coreaudio=no)
-
-#
# Set up to use the identified ones
#
AC_MSG_NOTICE(---------------------------------------);
Index: audacity-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-14/audacity-freeworld.spec,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- audacity-freeworld.spec 31 Oct 2010 02:24:52 -0000 1.16
+++ audacity-freeworld.spec 31 Oct 2010 12:30:51 -0000 1.17
@@ -1,7 +1,7 @@
Name: audacity-freeworld
Version: 1.3.12
-Release: 0.8.beta%{?dist}
+Release: 0.9.beta%{?dist}
Summary: Multitrack audio editor
Group: Applications/Multimedia
License: GPLv2
@@ -25,6 +25,7 @@
# ffmpeg-0.6: utils.c changed match_ext() to av_match_ext().
Patch4: audacity-1.3.12-ffmpeg-0.6-apichange-av_match_ext.patch
Patch7: audacity-1.3.12-fix-minimum-playspeed.patch
+Patch8: audacity-1.3.12-portmixer-configure-from-trunk.patch
Provides: audacity-nonfree = %{version}-%{release}
Obsoletes: audacity-nonfree < %{version}-%{release}
@@ -83,6 +84,7 @@
%patch4 -p1 -b .ffmpeg-0.6-apichange-av_match_ext
%patch7 -p1 -b .fix-minimum-playspeed
+%patch8 -p1 -b .portmixer-configure-from-trunk
# Substitute occurences of "libmp3lame.so" with "libmp3lame.so.0".
for i in locale/*.po src/export/ExportMP3.cpp
@@ -159,6 +161,9 @@
%changelog
+* Mon Oct 31 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.9.beta
+- fix build failure due to portmixer configure problems
+
* Mon Oct 31 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.8.beta
- fix hang when play at speed with ratio less than 0.09 is used (#637347)
14 years
rpms/audacity-freeworld/F-14 audacity-1.3.12-fix-minimum-playspeed.patch, NONE, 1.1 audacity-freeworld.spec, 1.15, 1.16
by David Timms
Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv29093
Modified Files:
audacity-freeworld.spec
Added Files:
audacity-1.3.12-fix-minimum-playspeed.patch
Log Message:
fix hang when play at speed with ratio less than 0.09 is used (#637347)
audacity-1.3.12-fix-minimum-playspeed.patch:
ASlider.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE audacity-1.3.12-fix-minimum-playspeed.patch ---
diff -ur audacity-src-1.3.12-beta.orig/src/widgets/ASlider.cpp audacity-src-1.3.12-beta/src/widgets/ASlider.cpp
--- audacity-src-1.3.12-beta.orig/src/widgets/ASlider.cpp 2010-03-30 22:28:31.000000000 +1100
+++ audacity-src-1.3.12-beta/src/widgets/ASlider.cpp 2010-10-04 19:22:25.000000000 +1100
@@ -397,7 +397,7 @@
stepValue = STEP_CONTINUOUS;
break;
case SPEED_SLIDER:
- minValue = 0.01f;
+ minValue = 0.09f; // libsamplerate lower limit is 1/12
maxValue = 3.0f;
stepValue = STEP_CONTINUOUS;
break;
Index: audacity-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-14/audacity-freeworld.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- audacity-freeworld.spec 8 Aug 2010 22:00:23 -0000 1.15
+++ audacity-freeworld.spec 31 Oct 2010 02:24:52 -0000 1.16
@@ -1,7 +1,7 @@
Name: audacity-freeworld
Version: 1.3.12
-Release: 0.7.beta%{?dist}
+Release: 0.8.beta%{?dist}
Summary: Multitrack audio editor
Group: Applications/Multimedia
License: GPLv2
@@ -24,6 +24,7 @@
Patch3: audacity-1.3.10-desktop.patch
# ffmpeg-0.6: utils.c changed match_ext() to av_match_ext().
Patch4: audacity-1.3.12-ffmpeg-0.6-apichange-av_match_ext.patch
+Patch7: audacity-1.3.12-fix-minimum-playspeed.patch
Provides: audacity-nonfree = %{version}-%{release}
Obsoletes: audacity-nonfree < %{version}-%{release}
@@ -81,6 +82,8 @@
%patch3 -p1 -b .old-desktop-file
%patch4 -p1 -b .ffmpeg-0.6-apichange-av_match_ext
+%patch7 -p1 -b .fix-minimum-playspeed
+
# Substitute occurences of "libmp3lame.so" with "libmp3lame.so.0".
for i in locale/*.po src/export/ExportMP3.cpp
do
@@ -156,6 +159,9 @@
%changelog
+* Mon Oct 31 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.8.beta
+- fix hang when play at speed with ratio less than 0.09 is used (#637347)
+
* Sat Aug 7 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.7.beta
- patch to suit APIChange introduced in ffmpeg-0.6. Resolves rfbz #1356.
fixes ffmpeg import/export.
14 years
rpms/audacity-freeworld/F-13 audacity-1.3.12-fix-minimum-playspeed.patch, NONE, 1.1 audacity-freeworld.spec, 1.14, 1.15
by David Timms
Author: dtimms
Update of /cvs/free/rpms/audacity-freeworld/F-13
In directory se02.es.rpmfusion.net:/tmp/cvs-serv27869
Modified Files:
audacity-freeworld.spec
Added Files:
audacity-1.3.12-fix-minimum-playspeed.patch
Log Message:
fix hang when play at speed with ratio less than 0.09 is used (#637347)
audacity-1.3.12-fix-minimum-playspeed.patch:
ASlider.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- NEW FILE audacity-1.3.12-fix-minimum-playspeed.patch ---
diff -ur audacity-src-1.3.12-beta.orig/src/widgets/ASlider.cpp audacity-src-1.3.12-beta/src/widgets/ASlider.cpp
--- audacity-src-1.3.12-beta.orig/src/widgets/ASlider.cpp 2010-03-30 22:28:31.000000000 +1100
+++ audacity-src-1.3.12-beta/src/widgets/ASlider.cpp 2010-10-04 19:22:25.000000000 +1100
@@ -397,7 +397,7 @@
stepValue = STEP_CONTINUOUS;
break;
case SPEED_SLIDER:
- minValue = 0.01f;
+ minValue = 0.09f; // libsamplerate lower limit is 1/12
maxValue = 3.0f;
stepValue = STEP_CONTINUOUS;
break;
Index: audacity-freeworld.spec
===================================================================
RCS file: /cvs/free/rpms/audacity-freeworld/F-13/audacity-freeworld.spec,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- audacity-freeworld.spec 8 Aug 2010 10:46:11 -0000 1.14
+++ audacity-freeworld.spec 31 Oct 2010 02:08:17 -0000 1.15
@@ -1,7 +1,7 @@
Name: audacity-freeworld
Version: 1.3.12
-Release: 0.7.beta%{?dist}
+Release: 0.8.beta%{?dist}
Summary: Multitrack audio editor
Group: Applications/Multimedia
License: GPLv2
@@ -24,6 +24,7 @@
Patch3: audacity-1.3.10-desktop.patch
# ffmpeg-0.6: utils.c changed match_ext() to av_match_ext().
Patch4: audacity-1.3.12-ffmpeg-0.6-apichange-av_match_ext.patch
+Patch7: audacity-1.3.12-fix-minimum-playspeed.patch
Provides: audacity-nonfree = %{version}-%{release}
Obsoletes: audacity-nonfree < %{version}-%{release}
@@ -81,6 +82,8 @@
%patch3 -p1 -b .old-desktop-file
%patch4 -p1 -b .ffmpeg-0.6-apichange-av_match_ext
+%patch7 -p1 -b .fix-minimum-playspeed
+
# Substitute occurences of "libmp3lame.so" with "libmp3lame.so.0".
for i in locale/*.po src/export/ExportMP3.cpp
do
@@ -156,6 +159,9 @@
%changelog
+* Mon Oct 31 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.8.beta
+- fix hang when play at speed with ratio less than 0.09 is used (#637347)
+
* Sat Aug 7 2010 David Timms <iinet.net.au@dtimms> - 1.3.12-0.7.beta
- patch to suit APIChange introduced in ffmpeg-0.6. Resolves rfbz #1356.
fixes ffmpeg import/export.
14 years
rpms/VirtualBox-OSE-kmod/F-14 VirtualBox-OSE-kmod.spec,1.45,1.46
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/VirtualBox-OSE-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv7827
Modified Files:
VirtualBox-OSE-kmod.spec
Log Message:
* Sat Oct 30 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.2.6-1.2
- rebuilt
Index: VirtualBox-OSE-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/VirtualBox-OSE-kmod/F-14/VirtualBox-OSE-kmod.spec,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -r1.45 -r1.46
--- VirtualBox-OSE-kmod.spec 29 Oct 2010 18:47:53 -0000 1.45
+++ VirtualBox-OSE-kmod.spec 30 Oct 2010 21:01:46 -0000 1.46
@@ -19,7 +19,7 @@
Name: VirtualBox-OSE-kmod
Version: 3.2.6
-Release: 1%{?dist}.1
+Release: 1%{?dist}.2
Summary: Kernel module for VirtualBox-OSE
Group: System Environment/Kernel
@@ -98,6 +98,9 @@
%changelog
+* Sat Oct 30 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.2.6-1.2
+- rebuilt
+
* Fri Oct 29 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 3.2.6-1.1
- rebuild for F-14 kernel
14 years
rpms/omnibook-kmod/F-14 omnibook-kmod.spec,1.6,1.7
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/omnibook-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6955
Modified Files:
omnibook-kmod.spec
Log Message:
remove line that confuses scripts
Index: omnibook-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/omnibook-kmod/F-14/omnibook-kmod.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- omnibook-kmod.spec 29 Oct 2010 18:46:44 -0000 1.6
+++ omnibook-kmod.spec 30 Oct 2010 20:48:11 -0000 1.7
@@ -1,7 +1,6 @@
# (un)define the next line to either build for the newest or all current kernels
#define buildforkernels newest
#define buildforkernels current
-%define buildforkernels akmods
%define svn 1
14 years
rpms/staging-kmod-addons/F-14 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 staging-kmod-addons.spec, 1.4, 1.5
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod-addons/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6251
Modified Files:
.cvsignore sources staging-kmod-addons.spec
Log Message:
* Sat Oct 30 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.35.6-1
- update to 2.6.35.6 for F14
- enable FB_XGI
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-14/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 2 Dec 2009 20:55:48 -0000 1.3
+++ .cvsignore 30 Oct 2010 20:41:32 -0000 1.4
@@ -1 +1 @@
-linux-staging-2.6.32-rc8.tar.bz2
+linux-staging-2.6.35.6.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-14/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 2 Dec 2009 20:55:48 -0000 1.3
+++ sources 30 Oct 2010 20:41:32 -0000 1.4
@@ -1 +1 @@
-6715d98bbef8b2435af028e23cef7029 linux-staging-2.6.32-rc8.tar.bz2
+165f5dd532fcf649a6f0b1a1f05ac4c3 linux-staging-2.6.35.6.tar.bz2
Index: staging-kmod-addons.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-14/staging-kmod-addons.spec,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- staging-kmod-addons.spec 30 Oct 2010 20:39:48 -0000 1.4
+++ staging-kmod-addons.spec 30 Oct 2010 20:41:32 -0000 1.5
@@ -1,11 +1,11 @@
# drivers that we ship; to be synced with staging-kmod.spec
-%global stgdrvs ASUS_OLED BATMAN_ADV ECHO EPL ET131X FB_UDL HECI HYPERV IDE_PHISON LINE6_USB RT2860 RT2870 RT3070 RT3090 RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U SAMSUNG_LAPTOP SLICOSS W35UND PRISM2_USB VIDEO_GO7007 VT6655 VT6656
+%global stgdrvs ASUS_OLED BATMAN_ADV ECHO EPL ET131X FB_UDL FB_XGI HECI HYPERV IDE_PHISON LINE6_USB RT2860 RT2870 RT3070 RT3090 RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U SAMSUNG_LAPTOP SLICOSS W35UND PRISM2_USB VIDEO_GO7007 VT6655 VT6656
# makes handling for rc kernels a whole lot easier:
#global prever rc8
Name: staging-kmod-addons
-Version: 2.6.34.2
+Version: 2.6.35.6
Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Documentation and shared parts for the kmod-staging packages
@@ -58,6 +58,10 @@
%changelog
+* Sat Oct 30 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.35.6-1
+- update to 2.6.35.6 for F14
+- enable FB_XGI
+
* Sun Aug 08 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.34.2-1.1
- update to 2.6.34.2, which is hitting updates-testing for F13
- enable phison (#1338)
14 years
rpms/staging-kmod-addons/F-14 staging-kmod-addons.spec,1.3,1.4
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod-addons/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6149
Modified Files:
staging-kmod-addons.spec
Log Message:
sync spec file with F13
Index: staging-kmod-addons.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod-addons/F-14/staging-kmod-addons.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- staging-kmod-addons.spec 2 Dec 2009 20:55:48 -0000 1.3
+++ staging-kmod-addons.spec 30 Oct 2010 20:39:48 -0000 1.4
@@ -1,11 +1,11 @@
# drivers that we ship; to be synced with staging-kmod.spec
-%global stgdrvs ASUS_OLED EPL ET131X FB_UDL HECI HYPERV LINE6_USB RT2860 RT2870 RT3070 RT3090 RTL8187SE RTL8192SU RTL8192E SLICOSS W35UND PRISM2_USB VIDEO_GO7007 VT6655 VT6656
+%global stgdrvs ASUS_OLED BATMAN_ADV ECHO EPL ET131X FB_UDL HECI HYPERV IDE_PHISON LINE6_USB RT2860 RT2870 RT3070 RT3090 RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U SAMSUNG_LAPTOP SLICOSS W35UND PRISM2_USB VIDEO_GO7007 VT6655 VT6656
# makes handling for rc kernels a whole lot easier:
-%global prever rc8
+#global prever rc8
Name: staging-kmod-addons
-Version: 2.6.32
+Version: 2.6.34.2
Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Documentation and shared parts for the kmod-staging packages
@@ -58,6 +58,19 @@
%changelog
+* Sun Aug 08 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.34.2-1.1
+- update to 2.6.34.2, which is hitting updates-testing for F13
+- enable phison (#1338)
+
+* Sun Apr 25 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.33.2-2
+- enable echo
+
+* Fri Apr 16 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.33.2-1
+- update to 2.6.33.2 for F13
+
+* Sat Feb 20 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.32.8-1
+- update to 2.6.32.8 for updates-testing kernel
+
* Sun Dec 02 2009 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.32-0.1.rc1
- enable HYPERV, RT3090, RTL8192E, VT6656
- drop AGNX, dropped upstream
14 years
rpms/staging-kmod/F-14 .cvsignore, 1.3, 1.4 sources, 1.3, 1.4 staging-kmod.spec, 1.15, 1.16
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv6012
Modified Files:
.cvsignore sources staging-kmod.spec
Log Message:
* Sat Oct 30 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.35.6-1
- update to 2.6.35.6 for F14
- enable FB_XGI
- disable debuginfo generation to avoid a build problem
Index: .cvsignore
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-14/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- .cvsignore 2 Dec 2009 20:54:51 -0000 1.3
+++ .cvsignore 30 Oct 2010 20:38:48 -0000 1.4
@@ -1 +1 @@
-linux-staging-2.6.32-rc8.tar.bz2
+linux-staging-2.6.35.6.tar.bz2
Index: sources
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-14/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sources 2 Dec 2009 20:54:51 -0000 1.3
+++ sources 30 Oct 2010 20:38:48 -0000 1.4
@@ -1 +1 @@
-6715d98bbef8b2435af028e23cef7029 linux-staging-2.6.32-rc8.tar.bz2
+165f5dd532fcf649a6f0b1a1f05ac4c3 linux-staging-2.6.35.6.tar.bz2
Index: staging-kmod.spec
===================================================================
RCS file: /cvs/free/rpms/staging-kmod/F-14/staging-kmod.spec,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- staging-kmod.spec 30 Oct 2010 20:37:33 -0000 1.15
+++ staging-kmod.spec 30 Oct 2010 20:38:48 -0000 1.16
@@ -6,16 +6,24 @@
%define buildforkernels newest
# which drivers to built
-%global stgdrvs ASUS_OLED BATMAN_ADV ECHO EPL ET131X FB_UDL HECI HYPERV IDE_PHISON LINE6_USB RT2860 RT2870 RT3070 RT3090 RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U SAMSUNG_LAPTOP SLICOSS W35UND PRISM2_USB VIDEO_GO7007 VT6655 VT6656
+%global stgdrvs ASUS_OLED BATMAN_ADV ECHO EPL ET131X FB_UDL FB_XGI HECI HYPERV IDE_PHISON LINE6_USB RT2860 RT2870 RT3070 RT3090 RAMZSWAP R8187SE RTL8192SU RTL8192E RTL8192U SAMSUNG_LAPTOP SLICOSS W35UND PRISM2_USB VIDEO_GO7007 VT6655 VT6656
-# todo: VIDEO_CX25821
+# avoid this error:
+# /usr/lib/rpm/debugedit: canonicalization unexpectedly shrank by one character
+%define debug_package %{nil}
+
+# todo:
+# VIDEO_CX25821 cx25821/
+# VIDEO_TM6000 tm6000/
+# VIDEO_DT3155 dt3155v4l/
+# CXT1E1 cxt1e1/
# makes handling for rc kernels a whole lot easier:
#global prever rc8
Name: staging-kmod
-Version: 2.6.34.2
-Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}.7
+Version: 2.6.35.6
+Release: %{?prever:0.}1%{?prever:.%{prever}}%{?dist}
Summary: Selected kernel modules from linux-staging
Group: System Environment/Kernel
@@ -112,6 +120,11 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Sat Oct 30 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.35.6-1
+- update to 2.6.35.6 for F14
+- enable FB_XGI
+- disable debuginfo generation to avoid a build problem
+
* Thu Oct 21 2010 Thorsten Leemhuis <fedora [AT] leemhuis [DOT] info> - 2.6.34.2-1.7
- rebuild for new kernel
14 years
rpms/staging-kmod/F-14 staging-kmod.spec,1.14,1.15
by Thorsten Leemhuis
Author: thl
Update of /cvs/free/rpms/staging-kmod/F-14
In directory se02.es.rpmfusion.net:/tmp/cvs-serv5889
Modified Files:
staging-kmod.spec
Log Message:
sync spec file with F13
14 years