Bug#265892: Cannot Install korganizer 3.2.3-1 if kdelibs-bin 3.3.0-1 is installed

2004-08-15 Thread james mcguire
Subject: Cannot Install korganizer 3.2.3-1 if kdelibs-bin 3.3.0-1 is installed
Package: kdelibs-bin
Version: 4:3.3.0-1
Severity: critical
Justification: breaks unrelated software

*** Please type your report below this line ***
I have installed the latest version of kde on the debian's 
servers - the 4:3.3.0-1 in unstable.  I am unable to install 
KOrganizer (latest version is 4:3.2.3-1).  This is the error 
I get:
a4-1800:/home/james# apt-get -t unstable install korganizer
Reading Package Lists... Done
Building Dependency Tree... Done
Recommended packages:
  kdebase-libs
The following NEW packages will be installed:
  korganizer
0 upgraded, 1 newly installed, 0 to remove and 299 not 
upgraded.
Need to get 0B/1650kB of archives.
After unpacking 4342kB of additional disk space will be used.
(Reading database ... 106715 files and directories currently 
installed.)
Unpacking korganizer (from 
.../korganizer_4%3a3.2.3-1_i386.deb) ...
dpkg: error processing 
/var/cache/apt/archives/korganizer_4%3a3.2.3-1_i386.deb 
(--unpack):
 trying to overwrite `/etc/kde3/khotnewstuffrc', which is 
also in package kdelibs-bin
dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
 /var/cache/apt/archives/korganizer_4%3a3.2.3-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.6yay
Locale: LANG=C, LC_CTYPE=C

Versions of packages kdelibs-bin depends on:
ii  kdelibs4   4:3.3.0-1 KDE core libraries
ii  libart-2.0-2   2.3.16-6  Library of functions for 2D 
graphi
ii  libbz2-1.0 1.0.2-1   A high-quality block-sorting file 
ii  libc6  2.3.2.ds1-13  GNU C Library: Shared libraries 
an
ii  libcupsys2-gnutls101.1.20final+rc1-3 Common UNIX Printing System(tm) - 
ii  libfam0c1022.7.0-5   client library to control the FAM 
ii  libfontconfig1 2.2.3-1   generic font configuration 
library
ii  libgcc11:3.4.1-4sarge1   GCC support library
ii  libice64.3.0.dfsg.1-4Inter-Client Exchange library
ii  libidn11   0.5.2-2   GNU libidn library, 
implementation
ii  libpng12-0 1.2.5.0-7 PNG library - runtime
ii  libqt3c102-mt  3:3.3.2-5 Qt GUI Library (Threaded runtime 
v
ii  libsm6 4.3.0.dfsg.1-4X Window System Session 
Management
ii  libstdc++5 1:3.3.4-6sarge1   The GNU Standard C++ Library v3
ii  libx11-6   4.3.0.dfsg.1-4X Window System protocol client 
li
ii  libxext6   4.3.0.dfsg.1-4X Window System miscellaneous 
exte
ii  libxft22.1.2-6   FreeType-based font drawing 
librar
ii  libxml22.6.11-3  GNOME XML library
ii  libxrender10.8.3-7   X Rendering Extension client 
libra
ii  libxslt1.1 1.1.8-2   XSLT processing library - runtime 
ii  menu-xdg   0.1   freedesktop.org menu compliant 
win
ii  netpbm 2:10.0-4  Graphics conversion tools
ii  perl-suid  5.8.4-2   Runs setuid Perl scripts.
ii  python 2.3.4-1   An interactive high-level 
object-o
ii  xlibs  4.3.0.dfsg.1-4X Window System client libraries 
m
ii  zlib1g 1:1.2.1.1-5   compression library - runtime

-- no debconf information



Bug#233151: (no subject)

2004-08-11 Thread james mcguire
I have the similar problem-
Juk 2.0.1
Kde 3.2.3

I use gstreamer and kernel 2.6.6 with the preemptive patch and deadline 
scheduler.  I have set x's nice value to 0 and arts gets a little 
improvement, but it still distorts the sound.  If i use gstreamer, juk's gui 
will freeze between songs for at least 10 seconds (even up to a minute).

I've reported this bug to bugs.kde.org - bug # 86810.

Thanks,
James



Bug#248468: juk: instantly crashes if output set to gstreamer

2004-06-15 Thread james mcguire
running:
#apt-get install gstreamer-plugins 
fixes that problem for me.


0xDCB79B8B.asc
Description: application/pgp-keys


Bug#253901: Wish: Bitrate info in tabs/columns

2004-06-11 Thread james mcguire
Package: juk
Version: 4:3.2.2-1
Severity: wishlist

*** Please type your report below this line ***
I would like to be able to view the quality/bitrate of my files in a 
column(tab) in juk (just like artist, album, etc.).  This wish was already 
requested on KDE.org, and they already have the wish completed (bug report 
page is here: http://bugs.kde.org/show_bug.cgi?id=78882).  
Thanks!
Here is the patch:

CVS commit by wheeler: 
 
 Add a bitrate column (hidden by default). 
 
 CCMAIL:[EMAIL PROTECTED] 
 
 
   M +2 -0  playlist.cpp   1.182 
   M +17 -5 playlistitem.cpp   1.83 
   M +3 -2  playlistitem.h   1.54 
 
 
 --- kdemultimedia/juk/playlist.cpp  #1.181:1.182 
 @@ -170,4 +170,5 @@ Playlist::SharedSettings::SharedSettings 
  for(int i = 0; i <= PlaylistItem::lastColumn(); i++) { 
  switch(i) { 
 +case PlaylistItem::BitrateColumn: 
  case PlaylistItem::CommentColumn: 
  case PlaylistItem::FileNameColumn: 
 @@ -868,4 +869,5 @@ void Playlist::polish() 
  addColumn(i18n("Year")); 
  addColumn(i18n("Length")); 
 +addColumn(i18n("Bitrate")); 
  addColumn(i18n("Comment")); 
  addColumn(i18n("File Name")); 
 
 --- kdemultimedia/juk/playlistitem.cpp  #1.82:1.83 
 @@ -78,4 +78,6 @@ QString PlaylistItem::text(int column) c 
  case LengthColumn: 
  return d->fileHandle.tag()->lengthString(); 
 +case BitrateColumn: 
 +return QString::number(d->fileHandle.tag()->bitrate()); 
  case CommentColumn: 
  return d->fileHandle.tag()->comment(); 
 @@ -260,5 +262,6 @@ int PlaylistItem::compare(const Playlist 
  } 
   
 -if(column == TrackNumberColumn + offset) { 
 +switch(column - offset) { 
 +case TrackNumberColumn: 
  if(firstItem->d->fileHandle.tag()->track() > 
 secondItem->d->fileHandle.tag()->track()) 
  return 1; 
 @@ -267,6 +270,6 @@ int PlaylistItem::compare(const Playlist 
  else 
  return 0; 
 -} 
 -else if(column == LengthColumn + offset) { 
 +break; 
 +case LengthColumn: 
  if(firstItem->d->fileHandle.tag()->seconds() > 
 secondItem->d->fileHandle.tag()->seconds()) 
  return 1; 
 @@ -275,8 +278,17 @@ int PlaylistItem::compare(const Playlist 
  else 
  return 0; 
 -} 
 +break; 
 +case BitrateColumn: 
 +if(firstItem->d->fileHandle.tag()->bitrate() > 
 secondItem->d->fileHandle.tag()->bitrate()) 
 +return 1; 
 +else if(firstItem->d->fileHandle.tag()->bitrate() < 
 secondItem->d->fileHandle.tag()->bitrate()) 
 +return -1; 
  else 
 +return 0; 
 +break; 
 +default: 
  return strcoll(firstItem->d->local8Bit[column - offset], 
 secondItem->d->local8Bit[column - offset]); 
 +} 
  } 
   
 
 --- kdemultimedia/juk/playlistitem.h  #1.53:1.54 
 @@ -58,6 +58,7 @@ public: 
YearColumn= 5, 
LengthColumn  = 6, 
 -  CommentColumn = 7, 
 -  FileNameColumn= 8 }; 
 +  BitrateColumn = 7, 
 +  CommentColumn = 8, 
 +  FileNameColumn= 9 }; 
   
  static int lastColumn() { return FileNameColumn; } 
 


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.4.26extra2
Locale: LANG=C, LC_CTYPE=C

Versions of packages juk depends on:
ii  kdelibs4  4:3.2.3-1  KDE core libraries
ii  libart-2.0-2  2.3.16-5   Library of functions for
 2D graphi
ii  libarts1  1.2.3-1aRts Sound system
ii  libasound21.0.5-1Advanced Linux Sound Arc
hitecture