rpms/kdebase/F-8 kdebase-3.5.8-glibc28-struct-ucred.patch, NONE, 1.1 kdebase-3.5.9-redhat-startkde.patch, NONE, 1.1 .cvsignore, 1.59, 1.60 kdebase-3.1-startpage.patch, 1.1, 1.2 kdebase.spec, 1.286, 1.287 sources, 1.80, 1.81 kdebase-3.3.1-pam_krb5-bz#191049.patch, 1.1, NONE kdebase-3.5.8-creategtkrc-gtk212.patch, 1.1, NONE kdebase-3.5.8-flash.patch, 1.3, NONE kdebase-3.5.8-gcc43.patch, 1.1, NONE kdebase-3.5.8-gdm-socket.patch, 1.1, NONE kdebase-3.5.8-kded-crash-logout.patch, 1.1, NONE kdebase-3.5.8-klipper-firefox.patch, 1.1, NONE kdebase-3.5.8-redhat-startkde.patch, 1.1, NONE

Rex Dieter (rdieter) fedora-extras-commits at redhat.com
Sat Feb 16 02:47:09 UTC 2008


Author: rdieter

Update of /cvs/pkgs/rpms/kdebase/F-8
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv19030

Modified Files:
	.cvsignore kdebase-3.1-startpage.patch kdebase.spec sources 
Added Files:
	kdebase-3.5.8-glibc28-struct-ucred.patch 
	kdebase-3.5.9-redhat-startkde.patch 
Removed Files:
	kdebase-3.3.1-pam_krb5-bz#191049.patch 
	kdebase-3.5.8-creategtkrc-gtk212.patch 
	kdebase-3.5.8-flash.patch kdebase-3.5.8-gcc43.patch 
	kdebase-3.5.8-gdm-socket.patch 
	kdebase-3.5.8-kded-crash-logout.patch 
	kdebase-3.5.8-klipper-firefox.patch 
	kdebase-3.5.8-redhat-startkde.patch 
Log Message:
* Thu Feb 14 2008 Rex Dieter <rdieter at fedoraproject.org> - 3.5.9-1
- kde-3.5.9
- fixup startkde patch, omitting broken bits, for now (#426871)
- update startpage patch, use http://start.fedoraproject.org/


kdebase-3.5.8-glibc28-struct-ucred.patch:

--- NEW FILE kdebase-3.5.8-glibc28-struct-ucred.patch ---
diff -ur kdebase-3.5.8/kdesu/configure.in.in kdebase-3.5.8-glibc28/kdesu/configure.in.in
--- kdebase-3.5.8/kdesu/configure.in.in	2006-10-05 18:24:50.000000000 +0200
+++ kdebase-3.5.8-glibc28/kdesu/configure.in.in	2008-02-09 08:20:31.000000000 +0100
@@ -1,6 +1,9 @@
 dnl Check for "struct ucred"
 AC_MSG_CHECKING("struct ucred")
-AC_EGREP_HEADER([struct ucred], [sys/socket.h], have_ucred=yes)
+AC_EGREP_CPP([struct ucred], [
+    #define _GNU_SOURCE
+    #include <sys/socket.h>
+], have_ucred=yes)
 if test "$have_ucred" = "yes"; then
     AC_DEFINE(HAVE_STRUCT_UCRED, 1, [Define if you have the struct ucred])
     AC_MSG_RESULT(yes)

kdebase-3.5.9-redhat-startkde.patch:

--- NEW FILE kdebase-3.5.9-redhat-startkde.patch ---
--- kdebase-3.5.7/startkde.redhat	2006-10-02 13:13:29.000000000 +0200
+++ kdebase-3.5.7/startkde	2006-10-10 17:35:53.000000000 +0200
@@ -14,12 +61,12 @@
 	exit 1
 fi
 
-# Set the background to plain grey.
+# Set the background to the Red Hat default blue
 # The standard X background is nasty, causing moire effects and exploding
 # people's heads. We use colours from the standard KDE palette for those with
 # palettised displays.
 if test -z "$XDM_MANAGED" || echo "$XDM_MANAGED" | grep ",auto" > /dev/null; then
-  xsetroot -solid "#000000"
+  xsetroot -solid "#5477A0"
 fi
 
 # we have to unset this for Darwin since it will screw up KDE's dynamic-loading
@@ -61,7 +108,7 @@
 cat >$kdehome/share/config/startupconfigkeys <<EOF
 kcminputrc Mouse cursorTheme ''
 kcminputrc Mouse cursorSize ''
-kpersonalizerrc General FirstLogin true
+kpersonalizerrc General FirstLogin false
 ksplashrc KSplash Theme Default
 kcmrandrrc Display ApplyOnStartup false
 kcmrandrrc [Screen0]
@@ -157,8 +204,8 @@
 EOF
 fi
 
-# Source scripts found in <localprefix>/env/*.sh and <prefixes>/env/*.sh
-# (where <localprefix> is $KDEHOME or ~/.kde, and <prefixes> is where KDE is installed)
+# Source scripts found in <localprefix>/env/*.sh and /etc/kde/env/*.sh
+# (where <localprefix> is $KDEHOME or ~/.kde)
 #
 # This is where you can define environment variables that will be available to
 # all KDE programs, so this is where you can run agents using e.g. eval `ssh-agent`
@@ -170,9 +217,10 @@
 # better use the Autostart folder.
 
 exepath=`kde-config --path exe | tr : '\n'`
+envpath=/etc/kde/env/
 
-for prefix in `echo "$exepath" | sed -n -e 's,/bin[^/]*/,/env/,p'`; do
-  for file in "$prefix"*.sh; do
+for prefix in `echo "$exepath" | sed -n -e 's,/bin[^/]*/,/env/,p'` $envpath ; do
+  for file in "$prefix"*.sh ; do
     test -r "$file" && . "$file"
   done
 done
@@ -378,7 +426,8 @@
 echo 'startkde: Running shutdown scripts...'  1>&2
 
 # Run scripts found in $KDEDIRS/shutdown
-for prefix in `echo "$exepath" | sed -n -e 's,/bin[^/]*/,/shutdown/,p'`; do
+shutdownpath=/etc/kde/shutdown/
+for prefix in `echo "$exepath" | sed -n -e 's,/bin[^/]*/,/shutdown/,p'` $shutdownpath; do
   for file in `ls "$prefix" 2> /dev/null | egrep -v '(~|\.bak)$'`; do
     test -x "$prefix$file" && "$prefix$file"
   done


Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/kdebase/F-8/.cvsignore,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -r1.59 -r1.60
--- .cvsignore	25 Oct 2007 20:55:16 -0000	1.59
+++ .cvsignore	16 Feb 2008 02:46:32 -0000	1.60
@@ -1,37 +1,4 @@
-kde-redhat-config-3.2.0-0.2.tar.bz2
-kdebase-3.3.0.tar.bz2
-kde-redhat-config-3.2.0-0.3.tar.bz2
-kdebase-3.3.1.tar.bz2
-kde-redhat-config-3.2.0-0.4.tar.bz2
-kde-redhat-config-3.2.0-0.5.tar.bz2
-kde-redhat-config-3.2.0-0.6.tar.bz2
-kdebase-3.3.2.tar.bz2
-kdebase-3.4.0-rc1.tar.bz2
-kde-redhat-config-3.2.0-0.7.tar.bz2
-kdebase-3.4.0.tar.bz2
-kde-redhat-config-3.2.0-0.8.tar.bz2
-kde-redhat-config-3.2.0-0.9.tar.bz2
-kdebase-3.4.1.tar.bz2
-kdebase-3.4.2.tar.bz2
-kde-redhat-config-3.4.2-fc4-0.1.tar.bz2
-kde-redhat-config-3.4.2-fc4-0.2.tar.bz2
-kdebase-3.4.91.tar.bz2
-kdebase-3.4.92.tar.bz2
-kdebase-3.5.0.tar.bz2
-kde-redhat-config-3.5-fc5-0.1.tar.bz2
-kdebase-3.5.1.tar.bz2
-kde-redhat-config-3.5-fc5-0.2.tar.bz2
-kdebase-3.5.2.tar.bz2
-kdebase-3.5.3.tar.bz2
-kde-redhat-config-3.5-fc5-0.3.tar.bz2
-kdebase-3.5.4.tar.bz2
-kde-redhat-config-3.5-fc5-0.4.tar.bz2
-kde-redhat-config-3.5-fc5-0.5.tar.bz2
-kdebase-3.5.6.tar.bz2
-kde-redhat-config-3.5-fc5-0.6.tar.bz2
-kde-redhat-config-3.5-fc7-1.tar.bz2
-kdebase-3.5.7.tar.bz2
-kdebase-3.5.8.tar.bz2
 cr16-app-package_games_kids.png
 cr32-app-package_games_kids.png
 cr48-app-package_games_kids.png
+kdebase-3.5.9.tar.bz2

kdebase-3.1-startpage.patch:

Index: kdebase-3.1-startpage.patch
===================================================================
RCS file: /cvs/pkgs/rpms/kdebase/F-8/kdebase-3.1-startpage.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- kdebase-3.1-startpage.patch	9 Sep 2004 06:56:20 -0000	1.1
+++ kdebase-3.1-startpage.patch	16 Feb 2008 02:46:32 -0000	1.2
@@ -9,6 +9,6 @@
 -View0_URL=about:konqueror
 +View0_ServiceName=khtml
 +View0_ServiceType=text/html
-+View0_URL=file:/usr/share/doc/HTML/index.html
++View0_URL=http://start.fedoraproject.org/
  Width=80%
  Height=80%


Index: kdebase.spec
===================================================================
RCS file: /cvs/pkgs/rpms/kdebase/F-8/kdebase.spec,v
retrieving revision 1.286
retrieving revision 1.287
diff -u -r1.286 -r1.287
--- kdebase.spec	29 Jan 2008 15:03:32 -0000	1.286
+++ kdebase.spec	16 Feb 2008 02:46:32 -0000	1.287
@@ -12,17 +12,10 @@
 %define libs 1
 %endif
 
-%if 0%{?fedora} < 9 
-# make -extras subpkg
-%define extras 1
-%endif
-
-%if 0%{?fedora} < 9
 %define _with_samba --with-samba
-%endif
 
-Version: 3.5.8
-Release: 32%{?dist}
+Version: 3.5.9
+Release: 1%{?dist}
 
 %if 0%{?fedora} > 8
 Name: kdebase3
@@ -35,6 +28,9 @@
 Summary: K Desktop Environment - core files
 Obsoletes: kdebase3 = %{version}-%{release}
 Provides: kdebase3 = %{version}-%{release}
+
+# make -extras subpkg
+%define extras 1
 %endif
 
 # programs: GPLv2, libs: LGPLv2
@@ -61,7 +57,7 @@
 Source1002: kde-legacy.pamd
 
 Patch0: kdebase-3.5.5-redhat-pam.patch
-Patch1: kdebase-%{version}-redhat-startkde.patch
+Patch1: kdebase-3.5.9-redhat-startkde.patch
 Patch2: kdebase-3.3.92-vroot.patch
 Patch3: kdebase-3.x-shortcuts.patch
 Patch4: kdebase-3.2.0-keymap.patch
@@ -87,25 +83,14 @@
 Patch29: kdebase-3.5.8-konsole-bz#244906.patch
 Patch30: kdebase-3.5.7-kio_media_mounthelper.patch
 Patch31: kdebase-3.5.7-konsolesu.patch
-Patch32: kdebase-3.5.8-flash.patch
-Patch33: kdebase-3.5.8-klipper-firefox.patch
-Patch34: kdebase-3.5.8-kded-crash-logout.patch
+# fix check for struct ucred to work with current glibc 2.7.90
+Patch35: kdebase-3.5.8-glibc28-struct-ucred.patch
 
 # upstream patches
 # alternative to patch29, requires qt-copy 0078-argb-visual-hack.patch
 Patch200: kdebase-3.5.7-kde#83974.patch
-# http://bugs.kde.org/show_bug.cgi?id=149045
-Patch201: kdebase-3.5.8-gdm-socket.patch
-# http://websvn.kde.org/?view=rev&revision=754981
-# Fix createGtkrc to set tooltip colors also for GTK+ 2.12+.
-Patch202: kdebase-3.5.8-creategtkrc-gtk212.patch
-# http://websvn.kde.org/?view=rev&revision=727634
-# GCC 4.3 build fix (--enable-final macro redefinition) by Dirk Müller
-Patch203: kdebase-3.5.8-gcc43.patch
 
 # security fixes
-# KDM local DoS vulnerability, CVE-2007-5963
-Patch1000: post-3.5.8-kdebase-kdm.diff
 
 %if 0%{?libs}
 Requires: %{name}-libs = %{?epoch:%{epoch}:}%{version}-%{release}
@@ -214,7 +199,6 @@
 %endif
 %endif
 BuildRequires: OpenEXR-devel
-# for flash patch(es)
 BuildRequires: gtk2-devel
 
 
@@ -312,23 +296,14 @@
 #patch29 -p1 -b .konsole-bz#244906
 %patch30 -p1 -b .bz#265801
 %patch31 -p1 -b .konsolesu-kdesu
-%patch32 -p1 -b .flash
-%patch33 -p1 -b .klipper-firefox
-%patch34 -p0 -b .kded-crash-logout
+%patch35 -p1 -b .ucred
 
 ## alternative to patch29, requires qt-copy 0078-argb-visual-hack.patch
 #patch200 -p4 -b .kde#83974
-%if 0%{?fedora} > 7
-%patch201 -p1 -b .gdm-socket
-%endif
-%patch202 -p4 -b .gtk212
-%patch203 -p0 -b .gcc43
-
-%patch1000 -p0 -b .CVE-2007-5963
 
 %if "%{name}" != "kdebase"
 # hacks to omit stuff that doesn't support DO_NOT_COMPILE
-sed -i -e 's|^FONTINST_SUBDIR=kfontinst|#FONTINST_SUBDIR=kfontinst|' kcontrol/Makefile.am
+sed -i -e 's|^FONTINST_SUBDIR=kfontinst|#FONTINST_SUBDIR=kfontinst|' -e 's/kicker//' -e 's/taskbar//' kcontrol/Makefile.am
 %endif
 
 # security fixes
@@ -346,21 +321,18 @@
    make -f admin/Makefile.common cvs
 %endif
 
-
 %build
 # set some default enviroments
 unset QTDIR && . /etc/profile.d/qt.sh
 
-# HACK for rhel4
-#PATH=$PATH:/usr/X11R6/bin; export PATH
-
 %if "%{name}" != "kdebase"
-## I'm pretty sure on these -- Rex 
 export DO_NOT_COMPILE="kappfinder kdesktop klipper kdm kmenuedit kpager kpersonalizer ktip nsplugins"
-## add more of these when we're ready to (potentially) break some rawhide deps -- Rex
-#export DO_NOT_COMPILE="$DO_NOT_COMPILE kate konqueror konsole kscreensaver ksysguard kwin"
-## these too?  not sure
-#export DO_NOT_COMPILE="$DO_NOT_COMPILE kcontrol kdesu kdialog kicker"
+export DO_NOT_COMPILE="$DO_NOT_COMPILE konqueror kscreensaver ksysguard knetattach kwin"
+export DO_NOT_COMPILE="$DO_NOT_COMPILE kdialog kicker ksplashml khelpcenter kxkb"
+export DO_NOT_COMPILE="$DO_NOT_COMPILE khotkeys kdepasswd kcheckpass drkonqi"
+# Keep these (kcontrol for kcms, konsole for KonsolePart, kioslave for ioslaves,
+# kate for kscope, kdesu until we figure out what to do about it)
+# export DO_NOT_COMPILE="$DO_NOT_COMPILE kcontrol konsole kioslave kate kdesu"
 %endif
 
 %configure \
@@ -404,16 +376,14 @@
 # build mail setting tool
 %{__cxx} $CXXFLAGS -o mailsettings %{SOURCE7}
 
-
 %install
 rm -rf %{buildroot}
 
 make RUN_KAPPFINDER=no DESTDIR=%{buildroot} install
 
+%if "%{name}" == "kdebase"
 install -p -m755 mailsettings %{buildroot}%{_bindir}/
-
-# Fix up permissions on some things
-chmod 755 %{buildroot}%{_bindir}/kdesud
+%endif
 
 # Nuke man2html - we get it from man
 find %{buildroot} -name "man2html*" | xargs rm -rf
@@ -512,7 +482,7 @@
       kmenuedit konqueror konsole krandom.kss krandrtray kreadconfig ksmserver \
       ksplashsimple kstart ksysguard ksysguardd ksystraycmd ktip ktrash kwin \
       kwin_killer_helper kwin_rules_dialog kwrite kwriteconfig kxkb \
-      nspluginscan nspluginviewer startkde
+      nspluginscan nspluginviewer startkde kdeeject kcontrol
 popd
 rm -f %{buildroot}%{_sysconfdir}/ksysguarddrc
 rm -f %{buildroot}%{_libdir}/kconf_update_bin/khotkeys_update
@@ -526,6 +496,10 @@
 rm -f %{buildroot}%{_datadir}/config/klipperrc
 rm -f %{buildroot}%{_datadir}/config/kshorturifilterrc
 rm -f %{buildroot}%{_datadir}/xsessions/kde.desktop
+
+# remove conflicts with kdesdk
+rm -f %{buildroot}%{_datadir}/config/katerc
+
 # remove docs
 pushd %{buildroot}%{_docdir}/HTML/en/
 rm -rf kate kcontrol kdebugdialog kdesu kdm kfind khelpcenter kinfocenter \
@@ -540,8 +514,11 @@
       kinfocenter.desktop klipper.desktop kmenuedit.desktop \
       konqbrowser.desktop konquerorsu.desktop konsole.desktop \
       konsolesu.desktop krandrtray.desktop ksysguard.desktop ktip.desktop \
-      kwrite.desktop
+      kwrite.desktop KControl.desktop
+
+perl -pi -e "s,OnlyShowIn=KDE,Hidden=true," *
 popd
+
 # remove all crsystalsvg icons for now
 rm -rf %{buildroot}%{_datadir}/icons/crystalsvg/
 # hicolor
@@ -557,7 +534,6 @@
 rm -rf %{buildroot}%{_datadir}/icons/hicolor/*/apps/ksplash.*
 rm -rf %{buildroot}%{_datadir}/icons/hicolor/*/apps/ktip.*
 rm -rf %{buildroot}%{_datadir}/icons/hicolor/*/apps/kxkb.*
-# FIXME/TODO: Check if it's wise to remove the whole directory
 rm -rf %{buildroot}%{_datadir}/locale/en_US/
 rm -rf %{buildroot}%{_datadir}/locale/l10n/
 rm -rf %{buildroot}%{_datadir}/autostart/*
@@ -565,13 +541,19 @@
 rm -rf %{buildroot}%{_datadir}/templates/*
 rm -rf %{buildroot}%{_datadir}/templates/.source/*
 rm -rf %{buildroot}%{_datadir}/wallpapers/*
+rm -rf %{buildroot}%{_libdir}/kconf_update_bin
+rm -rf %{buildroot}%{_datadir}/fonts
+rm -rf %{buildroot}%{_datadir}/apps/kdm
+rm -rf %{buildroot}%{_datadir}/apps/konqueror
+rm -rf %{buildroot}%{_datadir}/apps/apps/kbookmark
+rm -rf %{buildroot}%{_datadir}/apps/ksmserver
+rm -rf %{buildroot}%{_datadir}/applnk
+rm -rf %{buildroot}/etc/xdg/menus/
 %endif
 
-
 %clean
 rm -rf %{buildroot}
 
-
 %post
 %{!?libs:/sbin/ldconfig}
 touch --no-create %{_datadir}/icons/crystalsvg 2> /dev/null || :
@@ -682,6 +664,7 @@
 %{_bindir}/kbookmarkmerger
 %{_bindir}/kcminit
 %{_bindir}/kcminit_startup
+%{_bindir}/kcontrol
 %{_bindir}/kcontroledit
 %{_bindir}/kdebugdialog
 %{_bindir}/kdeinstallktheme
@@ -719,7 +702,6 @@
 %{_bindir}/nspluginscan
 %{_bindir}/nspluginviewer
 %{_bindir}/startkde
-# these just moved out of kdebase3 -- Rex
 %{_bindir}/kcheckrunning
 %{_bindir}/kdesktop
 %{_bindir}/kdesktop_lock
@@ -729,7 +711,6 @@
 %{_bindir}/kfontview
 %{_bindir}/krootimage
 %{_bindir}/kwebdesktop
-# 
 %{_datadir}/autostart/*
 %{_datadir}/desktop-directories/*
 %{_datadir}/locale/*/entry.desktop
@@ -738,8 +719,6 @@
 %{_datadir}/templates/*
 %{_datadir}/templates/.source/*
 %{_datadir}/wallpapers/*
-%endif
-
 %config(noreplace) /etc/xdg/menus/*
 %dir %{_libdir}/mozilla
 %dir %{_libdir}/mozilla/plugins
@@ -748,77 +727,112 @@
 %{_bindir}/extensionproxy
 %{_bindir}/kasbar
 %{_bindir}/kcheckpass
-%{_bindir}/kcontrol
-%{_bindir}/kdcop
 %{_bindir}/kdeeject
-%{_bindir}/kdeprintfax
-%{_bindir}/kdesu
-%{_bindir}/kdesud
 %{_bindir}/khc_docbookdig.pl
 %{_bindir}/khc_htdig.pl
 %{_bindir}/khc_htsearch.pl
 %{_bindir}/khc_indexbuilder
 %{_bindir}/khc_mansearch.pl
 %{_bindir}/kicker
-%{_bindir}/kio_media_mounthelper
-%{_bindir}/kio_system_documenthelper
-%{_bindir}/kjobviewer
-%{_bindir}/klocaldomainurifilterhelper
 %{_bindir}/knetattach
 %{_bindir}/kompmgr
 %{_bindir}/kpm
-%{_bindir}/kprinter
-%{_bindir}/krdb
 %{_bindir}/ksplash
 %{_bindir}/mailsettings
-%{_libdir}/libkdeinit_*.*
-%{_libdir}/kde3/*
 %{_libdir}/kconf_update_bin
-%{_datadir}/applications/*/*
 %{_datadir}/applnk/*.desktop
 %{_datadir}/applnk/*/*
 %{_datadir}/applnk/.hidden/
-%{_datadir}/apps/*
 %config(noreplace) %{_datadir}/config/*
-%{_datadir}/config.kcfg/*
 %if ! %{redhatify}
 %{_datadir}/fonts/bitmap-fonts/*
 %endif
+%endif
+%{_datadir}/config.kcfg/*
+%{_bindir}/kio_media_mounthelper
+%{_bindir}/kio_system_documenthelper
+%{_bindir}/kdcop
+%{_bindir}/kdeprintfax
+%{_bindir}/kdesu
+%attr(0755,root,root) %{_bindir}/kdesud
+%{_bindir}/kjobviewer
+%{_bindir}/klocaldomainurifilterhelper
+%{_bindir}/kprinter
+%{_bindir}/krdb
+%{_datadir}/applications/*/*
+%{_datadir}/apps/*
 %{_datadir}/icons/*color/*/*/*
 %{_datadir}/mimelnk/*/*
 %{_datadir}/services/*
 %{_datadir}/servicetypes/*
 %{_datadir}/sounds/*
+%{_libdir}/kde3/*
+%{_libdir}/libkdeinit_*.*
 
 %if 0%{?libs}
 %files libs
 %defattr(-,root,root,-)
+%exclude %{_libdir}/libkdeinit_*.*
 %endif
 %{_libdir}/lib*.so.*
 %{_libdir}/lib*.la
-%exclude %{_libdir}/libkdeinit_*.*
 
 %files devel
 %defattr(-,root,root,-)
 %{_includedir}/kde/*.h
 %dir %{_includedir}/kde/kate
 %{_includedir}/kde/kate/*
+%if "%{name}" == "kdebase"
 %dir %{_includedir}/kde/kwin
 %{_includedir}/kde/kwin/*
 %dir %{_includedir}/kde/ksgrd
 %{_includedir}/kde/ksgrd/*
 %dir %{_includedir}/kde/ksplash
 %{_includedir}/kde/ksplash/*
+%endif
 %{_libdir}/lib*.so
 %exclude %{_libdir}/libkdeinit_*.*
 
 
 %changelog
-* Tue Jan 29 2008 Lukas Tinkl <lukas at kde.org> - 3.5.8-32
-- updated flash patch to support 64 bit platforms
+* Thu Feb 14 2008 Rex Dieter <rdieter at fedoraproject.org> - 3.5.9-1
+- kde-3.5.9
+- fixup startkde patch, omitting broken bits, for now (#426871)
+- update startpage patch, use http://start.fedoraproject.org/
+
+* Sat Feb 09 2008 Kevin Kofler <Kevin at tigcc.ticalc.org> - 3.5.8-37
+- sync from F8:
+  - kdm: local DoS vulnerability, CVE-2007-5963 (Than Ngo, 3.5.8-31.fc8)
+  - updated flash patch to support 64 bit platforms (Lukáš Tinkl, 3.5.8-32.fc8)
+- fix detection of struct ucred with current glibc 2.7.90
+
+* Wed Feb 06 2008 Than Ngo <than at redhat.com> 3.5.8-36
+- f9+: remove %%{_bindir}/kcontrol %%{_datadir}/applications/kde/Kcontrol*
+- f9+: make kde3 config tools hidden
+
+* Thu Jan 24 2008 Kevin Kofler <Kevin at tigcc.ticalc.org> - 3.5.8-35
+- fix file list again (missing libkdeinit_* for f9+)
+- f9+: reenable kate (libkateutils and libkateinterfaces needed by kscope)
+- f9+: remove %%{_datadir}/config/katerc
+- f9+: reenable kdesu for now (until we figure out what to do about it)
+
+* Thu Jan 24 2008 Kevin Kofler <Kevin at tigcc.ticalc.org> - 3.5.8-34
+- f9+: omit kcontrol/kicker and kcontrol/taskbar (don't build because kicker is
+       omitted)
+- fix file list
+
+* Wed Jan 23 2008 Kevin Kofler <Kevin at tigcc.ticalc.org> - 3.5.8-33
+- f9+: don't omit all of kcontrol (kcms are used by several applications)
+
+* Wed Jan 23 2008 Rex Dieter <rdieter at fedoraproject.org> 3.5.8-32
+- (re)enable --with-samba support (now that we have a GPLv3-compat qt)
+
+* Wed Jan 23 2008 Than Ngo <than at redhat.com> 3.5.8-31
+- f9+: omit kdesu kdialog kicker kate konqueror kscreensaver \
+       ksysguard kwin ksplashml khelpcenter khotkeys kxkb kdepasswd
 
-* Mon Jan 28 2008 Than Ngo <than at redhat.com> 3.5.8-31
-- kdm: local DoS vulnerability, CVE-2007-5963
+* Tue Jan 15 2008 Rex Dieter <rdieter[AT]fedoraproject.org> - 3.5.8-30.1
+- f7: fix libkdeinit_* missing dep errors
 
 * Wed Jan 09 2008 Rex Dieter <rdieter[AT]fedoraproject.org> - 3.5.8-30
 - f9+: omit kcontrol/kfontinst


Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/kdebase/F-8/sources,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- sources	25 Oct 2007 20:55:16 -0000	1.80
+++ sources	16 Feb 2008 02:46:32 -0000	1.81
@@ -1,5 +1,4 @@
 0b4d2328a153d9987562cbf875c5a228  cr16-app-package_games_kids.png
 a2fb4b0bc9b7816bf29b7f2fe52b04c0  cr32-app-package_games_kids.png
 259dd812748a2964f01ca3c3493b72c6  cr48-app-package_games_kids.png
-d52f08756a8d3e9df478506bd258a4d8  kde-redhat-config-3.5-fc7-1.tar.bz2
-9990c669229daaaa8fca4c5e354441fd  kdebase-3.5.8.tar.bz2
+c8c35389a238aa1b73e68ef5298eadf8  kdebase-3.5.9.tar.bz2


--- kdebase-3.3.1-pam_krb5-bz#191049.patch DELETED ---


--- kdebase-3.5.8-creategtkrc-gtk212.patch DELETED ---


--- kdebase-3.5.8-flash.patch DELETED ---


--- kdebase-3.5.8-gcc43.patch DELETED ---


--- kdebase-3.5.8-gdm-socket.patch DELETED ---


--- kdebase-3.5.8-kded-crash-logout.patch DELETED ---


--- kdebase-3.5.8-klipper-firefox.patch DELETED ---


--- kdebase-3.5.8-redhat-startkde.patch DELETED ---




More information about the fedora-extras-commits mailing list