AmaroK 1.2-beta4 package

I'm an amaroK developer, and want to start either maintaining the official amaroK package for Arch or/and start providing weekly CVS builds.
amaroK 1.2-beta4 isn't out yet, but it will be soon, so here's a sneak peak. Please tell me how the package sucks, how it can be improved etc. This is the first arch build I've offered for other people, so it is probably flakey:
http://methylblue.com/amarok/amarok-1.2 … pkg.tar.gz
Issues:
I built in the xine and gstreamer engines. There is no dependency check for xine-lib or gstreamer because, the engines are plugins, amaroK will still work without 1 of gst/xine installed, and because eventually I want these dependencies to be met by separate packages.
There is no aRts engine, currently.
It also is built with support for LibVisual CVS (0.2.0), but again this is a plugin and amaroK stability/etc. is not affected. Grab libvisual cvs if you want to see the amazing new stuff coming along in that project.
Finally I'm actually running kdelibs-CVS, so it's possible it may not even run for you guys. In which case I'll reinstall the Arch packages for KDE, and build against those. KDE is supposedly binary compatable in the 3.x series so supposedly it should be ok.
I look forward to your comments/criticism, etc.
Here's the PKGBUILD, it runs straight off of a CVS checkout, as this would be the CVS snapshot build.
# $Id: PKGBUILD,v 1.13 2004/10/23 16:10:41 damir Exp $
# Maintainer: mxcl <[email protected]>
pkgname=amarok
pkgver=1.2beta4
pkgrel=1
pkgdesc="amaroK - an audio-player that depends on KDElibs"
url="http://amarok.kde.org/"
depends=('kdelibs>=3.2' 'taglib>=1.3.1')
build() {
cd $startdir/src/kdeextragear-1
cvs up -l
cvs up amarok
make -f Makefile.cvs
./configure --prefix=/opt/kde --without-arts --enable-final --enable-debug
unsermake || return 1
unsermake prefix=$startdir/pkg/opt/kde install

What a pity, amaroK can not show the id3 of CJK (Chinese japanese & Korean) character. I hade to recompile it with the following patch every time when the new version of amaroK be released. Will you please take a look at the following patch and take some changes in amaroK? Thank.
--- amarok-1.1.1/amarok/src/metabundle.cpp.orig 2004-10-09 20:52:09.000000000 +0800
+++ amarok-1.1.1/amarok/src/metabundle.cpp 2004-10-16 09:41:32.627671624 +0800
@@ -9,6 +9,8 @@
#include <qfile.h>
#include <kfilemetainfo.h>
+#include <kmimetype.h>
+#include <kstringhandler.h>
#include <taglib/audioproperties.h>
#include <taglib/fileref.h>
@@ -85,15 +87,28 @@
//Taglib::Tag ctor //TODO DEPRECATE
MetaBundle::MetaBundle( const KURL &url, TagLib::Tag *tag, TagLib::AudioProperties *ap )
- : m_url( url )
- , m_title( TStringToQString( tag->title() ).stripWhiteSpace() )
- , m_artist( TStringToQString( tag->artist() ).stripWhiteSpace() )
- , m_album( TStringToQString( tag->album() ).stripWhiteSpace() )
- , m_year( tag->year() ? QString::number( tag->year() ) : QString::null )
- , m_comment( TStringToQString( tag->comment() ).stripWhiteSpace() )
- , m_genre( TStringToQString( tag->genre() ).stripWhiteSpace() )
- , m_track( tag->track() ? QString::number( tag->track() ) : QString::null )
+{
+ m_url = url;
+ KMimeType::Ptr result = KMimeType::findByURL(m_url, 0, true, true);
+
+ if ( result->name() != "audio/x-mp3") {
+ m_title = TStringToQString( tag->title() ).stripWhiteSpace();
+ m_artist = TStringToQString( tag->artist() ).stripWhiteSpace();
+ m_album = TStringToQString( tag->album() ).stripWhiteSpace();
+ m_comment = TStringToQString( tag->comment() ).stripWhiteSpace();
+ m_genre = TStringToQString( tag->genre() ).stripWhiteSpace();
+ m_year = tag->year() ? QString::number( tag->year() ) : QString::null;
+ m_track = tag->track() ? QString::number( tag->track() ) : QString::null;
+ }
+ else {
+ m_title = KStringHandler::from8Bit( TStringToQString(tag->title()).latin1()).stripWhiteSpace();
+ m_artist = KStringHandler::from8Bit( TStringToQString(tag->artist()).latin1()).stripWhiteSpace();
+ m_album = KStringHandler::from8Bit( TStringToQString(tag->album()).latin1()).stripWhiteSpace();
+ m_year = tag->year() ? QString::number( tag->year() ) : QString::null;
+ m_comment = KStringHandler::from8Bit( TStringToQString(tag->comment()).latin1()).stripWhiteSpace();
+ m_genre = TStringToQString( tag->genre() ).stripWhiteSpace();
+ m_track = tag->track() ? QString::number( tag->track() ) : QString::null;
+ }
init( ap );
@@ -149,12 +164,15 @@
TagLib::FileRef f( QFile::encodeName( m_url.path() ), readAudioProperties, TagLib::AudioProperties::Fast );
- if( !f.isNull() )
+ KMimeType::Ptr result = KMimeType::findByURL(m_url, 0, true, true);
+
+ if( !f.isNull() )
if( f.tag() )
TagLib::Tag *tag = f.tag();
+
+ if ( result->name() != "audio/x-mp3") {
m_title = TStringToQString( tag->title() ).stripWhiteSpace();
m_artist = TStringToQString( tag->artist() ).stripWhiteSpace();
m_album = TStringToQString( tag->album() ).stripWhiteSpace();
@@ -162,6 +180,16 @@
m_genre = TStringToQString( tag->genre() ).stripWhiteSpace();
m_year = tag->year() ? QString::number( tag->year() ) : QString::null;
m_track = tag->track() ? QString::number( tag->track() ) : QString::null;
+ }
+ else {
+ m_title = KStringHandler::from8Bit( TStringToQString(tag->title()).latin1()).stripWhiteSpace();
+ m_artist = KStringHandler::from8Bit( TStringToQString(tag->artist()).latin1()).stripWhiteSpace();
+ m_album = KStringHandler::from8Bit( TStringToQString(tag->album()).latin1()).stripWhiteSpace();
+ m_year = tag->year() ? QString::number( tag->year() ) : QString::null;
+ m_comment = KStringHandler::from8Bit( TStringToQString(tag->comment()).latin1()).stripWhiteSpace();
+ m_genre = TStringToQString( tag->genre() ).stripWhiteSpace();
+ m_track = tag->track() ? QString::number( tag->track() ) : QString::null;
+ }
init( f.audioProperties() ); //no need to test for the readAudioProperties bool
--- amarok-1.1.1/amarok/src/tagdialog.cpp.org 2004-10-09 20:52:10.000000000 +0800
+++ amarok-1.1.1/amarok/src/tagdialog.cpp 2004-10-23 11:49:02.000000000 +0800
@@ -29,6 +29,7 @@
#include <krun.h>
#include <kstandarddirs.h>
+#define QStringToMyTString(s) TagLib::String(s.local8Bit().data(), TagLib::String::Latin1)
TagDialog::TagDialog( const KURL& url, QWidget* parent )
: TagDialogBase( parent )
@@ -461,13 +462,13 @@
QApplication::setOverrideCursor( KCursor::waitCursor() );
TagLib::Tag * t = f.tag();
- t->setTitle( QStringToTString( mb.title() ) );
- t->setArtist( QStringToTString( mb.artist() ) );
- t->setAlbum( QStringToTString( mb.album() ) );
+ t->setTitle( QStringToMyTString( mb.title() ) );
+ t->setArtist( QStringToMyTString( mb.artist() ) );
+ t->setAlbum( QStringToMyTString( mb.album() ) );
t->setTrack( mb.track().toInt() );
t->setYear( mb.year().toInt() );
- t->setComment( QStringToTString( mb.comment() ) );
- t->setGenre( QStringToTString( mb.genre() ) );
+ t->setComment( QStringToMyTString( mb.comment() ) );
+ t->setGenre( QStringToMyTString( mb.genre() ) );
bool result = f.save();
if( result )

Similar Messages

  • Why is Amarok beta in Extra?

    Hi,
    Apologies because this query doesn't seem to fit exactly in any of the package groups. Anyways...
    My preferred media player is Amarok. I dare say that there are many others like me in this respect. What confuses me, as the subject of this post suggests is why the version of Amarok available is a beta is in the Extra repo.
    Now, maybe it's because I'm still relatively new to Arch, but my definition of 'extra' does not include unstable. That's why unstable exists. And since 'beta' by definition is unstable, it seems rather presumptuous that it exists anywhere other than 'unstable' or a TUR.
    Whilst I personally haven't experienced many issues with Amorok (other than some peculiar album covers being displayed that having nothing to do with the track being played) I still think it is a rather dangerous policy to put beta software in what should be a stable repository.
    Now, we all like the fact that AL is more cutting edge than many other distros, but I'm sure the packagers still respect that many people would prefer official - stable - releases by default, with the option of enabling 'unstable', other TURs, or even making custom packages should the user so wish.
    Does anyone agree or am I being too safe? (and boring!!)

    In general, I agree. For me stability is important. But there are rare special cases, where even the RC is very stable, like mplayer for example. Would you prefer the old 0.92 instead of the current 1.0 RC?
    Amarok 1.2.beta4-1 does have some annoying bugs, e.g. playlists are not loaded properly, songs are sometimes a little skipped at the beggining and faded in even if you cancel cross-fading and fade-in, I can get only arts engine working properly, ... On the other hand, I never installed the "stable" amarok version 1.1 so I can't compare beta and stable here.

  • Projectm doesn't work with amarok anymore.

    Not the most urgent issue in the world.  I was just wondering if this happened to anyone else.

    projectm is not working with amarok anymore because the package has been split in libs, xmms plugin and libvisual plugin. also as projectm now requires libvisual 0.4.0 it cannot be built for arch yet. many apps including amarok are not yet properly ported to libvisual 0.4.0 so we stick with 0.2.0.
    amarok 1.4.1 in particular has libvisual 0.4.0 support but as a matter of fact crashes a lot when it is enabled. tpowa patched it back to use libvisual 0.2.0 because of that.
    in essence, projectm currently does not work with amarok.

  • Amarok crashing on me :(

    Hey,
    I've been using amarok for like 3 days and I already like it very much. The thing is that when I run for the first time as a normal user it runs perfectly stable. unfortunately, when I close it and then open it again it crashes right at the startup :?
    Running as root I don't see this happening.
    I don't have kde installed, but all the relevant stuff like kde-libs or kde-base is installed anyway, because I use k3b(great app!) and quanta.
    Here's the output:
    [amaroK] Connecting to /home/dreameen/.kde/socket-DreaM/amarok.loader_socket
    [amaroK] Starting amarokapp..
    [amaroK] If you want a backtrace, run gdb against amarokapp, not amarok!
    QPixmap: Cannot create a QPixmap when no GUI is being used
    QPixmap: Cannot create a QPixmap when no GUI is being used
    QPixmap: Cannot create a QPixmap when no GUI is being used
    QPixmap: Cannot create a QPixmap when no GUI is being used
    kbuildsycoca running...
    kbuildsycoca: ERROR creating database '/var/tmp/kdecache-dreameen/ksycoca'!
    kbuildsycoca: Wrong permissions on directory? Disk full?
    amarok: [PluginManager] Plugin trader constraint: [X-KDE-amaroK-framework-versio n] == 3 and [X-KDE-amaroK-plugintype] == 'engine' and [X-KDE-amaroK-name] == 'vo id-engine' and [X-KDE-amaroK-rank] > 0
    amarok: [PluginManager] Trying to load: libamarok_void-engine_plugin
    amarok: [amaroK::Plugin::Plugin()]
    amarok:
    amarok: PluginManager Service Info:
    amarok: ---------------------------
    amarok: name : <no engine>
    amarok: library : libamarok_void-engine_plugin
    amarok: desktopEntryPath : amarok_void-engine_plugin.desktop
    amarok: X-KDE-amaroK-plugintype : engine
    amarok: X-KDE-amaroK-name : void-engine
    amarok: X-KDE-amaroK-authors : (Max Howell,Mark Kretschmann)
    amarok: X-KDE-amaroK-rank : 1
    amarok: X-KDE-amaroK-version : 1
    amarok: X-KDE-amaroK-framework-version: 3
    amarok:
    amarok: available db connections: 1
    amarok: [CollectionDB::CollectionDB()]
    amarok: available db connections: 5
    QLayout: Adding KToolBar/playlist_toolbar (child of QVBox/unnamed) to layout for PlaylistWindow/PlaylistWindow
    amarok: [browserBar] Initialisation statistics:
    amarok: Init: ContextBrowser
    amarok: [void ContextBrowser::setStyleSheet()]
    amarok: Initial Color Properties: s:137 v:255
    amarok: Unapplied Contrast: 23
    amarok: Over-compensation: 23
    amarok: Final Colour Properties: s:30 v:255
    amarok: Time: 0.03s
    amarok: Init: CollectionBrowser
    amarok: [CollectionView::CollectionView(CollectionBrowser*)]
    amarok: [void CollectionView::renderView()]
    amarok: SELECT DISTINCT artist.name FROM tags,album,artist WHERE 1 AND tags.samp ler = 0 AND album.id=tags.album AND artist.id=tags.artist ORDER BY LOWER( artis t.name )
    amarok: SELECT DISTINCT artist.name FROM tags,album,artist WHERE 1 AND tags.samp ler = 1 AND album.id=tags.album AND artist.id=tags.artist LIMIT 0, 1
    amarok: Time: 0.02s
    amarok: Init: PlaylistBrowser
    amarok: [ThreadWeaver] Job::Job: PlaylistLoader
    amarok: [ThreadWeaver] Queuing: PlaylistLoader
    amarok: [ThreadWeaver] Thread::Thread: PlaylistLoader
    amarok: SELECT DISTINCT artist.name FROM artist WHERE 1 ORDER BY LOWER( artist. name )
    amarok: [ThreadWeaver] Running Job: PlaylistLoader
    amarok: [ThreadWeaver] Job Done: PlaylistLoader. Aborted? false
    amarok: [ThreadWeaver] Job::Job: PlaylistLoader
    amarok: [ThreadWeaver] Queuing: PlaylistLoader
    amarok: [ThreadWeaver] Job::Job: PlaylistLoader
    amarok: [ThreadWeaver] Queuing: PlaylistLoader
    amarok: [ThreadWeaver] Job::Job: PlaylistLoader
    amarok: [ThreadWeaver] Queuing: PlaylistLoader
    amarok: Time: 0.29s
    amarok: Init: SearchBrowser
    amarok: Time: 0.01s
    amarok: Init: MediaBrowser
    amarok: [ThreadWeaver] Running Job: PlaylistLoader
    amarok: [ThreadWeaver] Job Done: PlaylistLoader. Aborted? false
    amarok: Time: 0.01s
    amarok: Init: FileBrowser
    amarok: Time: 0.03s
    amarok: Session Playlist: /home/dreameen/.kde/share/apps/amarok/current.xml
    amarok: [ThreadWeaver] Job::Job: PlaylistLoader
    amarok: [ThreadWeaver] Queuing: PlaylistLoader
    amarok: BEGIN [void App::applySettings(bool)]
    amarok: Discovered 300 widgets in PlaylistWindow
    amarok: BEGIN [PlayerWidget::PlayerWidget(QWidget*, const char*, bool)]
    amarok: [ThreadWeaver] Running Job: PlaylistLoader
    amarok: [ThreadWeaver] Job Done: PlaylistLoader. Aborted? false
    amarok: END [PlayerWidget::PlayerWidget(QWidget*, const char*, bool)]
    amarok: [void ContextBrowser::setStyleSheet()]
    amarok: Initial Color Properties: s:137 v:255
    amarok: Unapplied Contrast: 23
    amarok: Over-compensation: 23
    amarok: Final Colour Properties: s:30 v:255
    QColor::setRgb: RGB parameter(s) out of range
    QColor::setRgb: RGB parameter(s) out of range
    QColor::setRgb: RGB parameter(s) out of range
    amarok: [ThreadWeaver] [virtual void ThreadWeaver::customEvent(QCustomEvent*)]
    amarok: [ThreadWeaver] Job::~Job: PlaylistLoader
    amarok: [ThreadWeaver] [virtual void ThreadWeaver::customEvent(QCustomEvent*)]
    amarok: [ThreadWeaver] Running Job: PlaylistLoader
    amarok: [ThreadWeaver] Job Done: PlaylistLoader. Aborted? false
    amarok: [ThreadWeaver] Job::~Job: PlaylistLoader
    amarok: [ThreadWeaver] Running Job: PlaylistLoader
    amarok: [ThreadWeaver] Job Done: PlaylistLoader. Aborted? false
    amarok: [ThreadWeaver] [virtual void ThreadWeaver::customEvent(QCustomEvent*)]
    amarok: [ThreadWeaver] Thread::~Thread: PlaylistLoader
    amarok: [ThreadWeaver] Job::~Job: PlaylistLoader
    amarok: [ThreadWeaver] [virtual void ThreadWeaver::customEvent(QCustomEvent*)]
    amarok: [ThreadWeaver] Thread was deleted while processing this job: PlaylistLoa der
    amarok: [ThreadWeaver] Job::~Job: PlaylistLoader
    KCrash: Application 'amarok' crashing...
    Mutex destroy failure: Urz±dzenie lub zasoby zajête
    ICE default IO error handler doing an exit(), pid = 29398, errno = 2
    [amaroK] Timed out trying to contact amarokapp
    [amaroK] Exiting

    dp wrote:
    Dreameen wrote:
    [amaroK loader] connecting to /home/dreameen/.kde/socket-DreaM/amarok.loader_socket
    [amaroK loader] amaroK not running. Trying to start it..
    amarokapp: error while loading shared libraries: libFLAC.so.4: cannot open shared object file: No such file or directory
    [amaroK loader] exiting.
    Now what, I feel like i'm breaking new ground here.
    Name           : amarok-devel
    Version        : 1.1.cvs20041011-1
    Update: I've made symbolic link to libFLAC.so.6 and it works and the problem with amarok crashing is gone. yuppi )
    And pacman -S kde still gives me about 86 Mb to download. So i guess it's not so bad after all.
    amarok-devel-1.1.cvs20041011-1 ????
    in extra, there is amarok 1.2.beta4
    in unstable, there is amarok-devel 1.1.cvs20050128-1
    both run fine without any symbolic links of libs
    EDIT: when did you last time updated your repository db's?
    I've tried two servers anthesis and chemnitz.de and both had the versions that I mentioned earlier. Anyway it's time to change to some more up-to-date servers like...darkstar? Yes, it has the newer versions up so upgrading wasn't a problem at all.
    Unfortunately, the 'unstable/amarok-devel 1.1.cvs20050128-1' turned out to be completely unusable for me. The previously mentioned crash occured again so I thought I'd try 'extra/amarok 1.2.beta4-1' and this time it worked. To sum up, these are the two versions that seem to be working for me so far:
    'amarok-devel-1.1.cvs20041011-1'
    EDIT: 'extra/amarok 1.2.beta4-1'(no longer stable, 'appamarok' [the tray] crashes often&playlist creation is borked.
    @Mith: I have no idea why your amarok crashes, but you may try some of the amarok-devel versions from unstable. Cheers.

  • Amarok 1.3 packages

    The official amarok 1.3 packages are not ready yet so I decided to share the ones I made myself. Nothing special, the only change in the PKGBUILDs is the version (1.3 instead of 1.2.4) and the taglib version (1.4 instead of 1.3.1-2, although I'm not sure whether amarok really needs 1.4)...
    Hope someone finds them useful
    amarok-base
    amarok-engine arts
    amarok-engine gst
    amarok-engine xine

    Thanks for the contribution. However, they were already in [Testing].

  • Anything wrong with the latest amarok package?

    Hi,
    after the latest update amarok refuses to start. This is what the error message says:
    $ cd /pfad/zu/Amarok/Quellcode/
    $ su -c "make uninstall"
    $ cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` && su -c "make install"
    $ kbuildsycoca4 --noincremental
    $ amarok
    Is there something wrong the the package itself?

    Ok,
    with this PKGBUILD:
    pkgname=amarok
    replaces=('amarok-base' 'amarok-engine-xine' 'amarok-base-mysqlfree')
    pkgver=2.4.1
    pkgrel=2
    pkgdesc="The powerful music player for KDE"
    arch=("i686" "x86_64")
    url="http://amarok.kde.org"
    license=('GPL2' 'LGPL2.1' 'FDL')
    depends=('kdebase-runtime' 'mysql' 'qtscriptgenerator' 'taglib-extras'
    'liblastfm' 'ffmpeg' 'libofa' 'qjson')
    makedepends=('pkgconfig' 'automoc4' 'cmake' 'libgpod' 'libmtp' 'loudmouth'
    'libmygpo-qt')
    optdepends=("libgpod: support for Apple iPod audio devices"
    "libmtp: support for portable media devices"
    "loudmouth: backend needed by mp3tunes for syncing"
    "ifuse: support for Apple iPod Touch and iPhone"
    "libmygpo-qt: gpodder.net Internet Service")
    install="${pkgname}.install"
    source=("http://download.kde.org/stable/${pkgname}/${pkgver}/src/${pkgname}-${pkgver}.tar.bz2")
    md5sums=('4c65c5cd4d7bd267bdbef8e912fd6cb6')
    build() {
    cd ${srcdir}
    mkdir build
    cd build
    cmake ../${pkgname}-${pkgver} \
    -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr\
    -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix`
    make
    package(){
    cd ${srcdir}/build
    make DESTDIR=${pkgdir} install
    and this amarok.install
    post_install() {
    xdg-icon-resource forceupdate --theme hicolor &> /dev/null
    kbuildsycoca4 --noincremental
    post_upgrade() {
    post_install
    post_remove() {
    post_install
    I was able to build a working package.
    Maybe I should have tried it without a new amarok.install but I just made everything that was suggested in the error message

  • [solved] Problem with Amarok and flac-files

    When I installed Arch for the first time a couple of months ago, I was happy to find that some flac-files that didn't play in Amarok on my Debian installation was now played back perfectly. However, upon trying to play these files today, Amarok refuses to play them. I get an error stating that there is no suitable demux plugin for the files. Other flacs play back fine though, and the problem files play back perfectly in mplayer.
    Another thing I would be very happy to resolve is that I have a few files that use japanese in their tags. IIRC these displayed correctly in Amarok on my Debian install, but in Arch all I see is squares where there should be japanese, despite me installing both arphic-ukai and arphic-uming packages. What am I missing?
    All help appreciated!
    Last edited by Emphrygian (2007-04-20 22:36:45)

    Your tip worked like a charm and the files now play perfectly in Amarok once again.
    I solved my second problem by installing the ttf-sazanami package from AUR and adding both sazanami gothic and sazanami mincho as substitute fonts for Sans Serif (my default font) in qtconfig (not sure that I really needed both though, but hey, it works now ).
    Last edited by Emphrygian (2007-04-20 22:35:37)

  • [solved] failed to commit transaction (invalid or corrupted package)

    Hi.
    So today I tried updating my system after about a month. I keep getting the error in the thread title. Pacman does not mention which packages are corrupted. I tried upgrading the explicitly installed packages individually and those which could upgrade were upgraded. However, a few remain unable to upgrade.
    I have tried using the new pacman.conf which comes with the latest package, I have followed this blog post, regenerating my mirrorlist using reflector, re-downloading all the packages, pacman -Syy, SigLevel = Never ... and nothing seems to work. Please help.
    pacman.conf
    # /etc/pacman.conf
    # See the pacman.conf(5) manpage for option and repository directives
    # GENERAL OPTIONS
    [options]
    # The following paths are commented out with their default values listed.
    # If you wish to use different paths, uncomment and update the paths.
    #RootDir = /
    #DBPath = /var/lib/pacman/
    #CacheDir = /var/cache/pacman/pkg/
    #LogFile = /var/log/pacman.log
    #GPGDir = /etc/pacman.d/gnupg/
    HoldPkg = pacman glibc
    # If upgrades are available for these packages they will be asked for first
    SyncFirst = pacman
    #XferCommand = /usr/bin/curl -C - -f %u > %o
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    #CleanMethod = KeepInstalled
    Architecture = auto
    # Pacman won't upgrade packages listed in IgnorePkg and members of IgnoreGroup
    #IgnorePkg =
    #IgnoreGroup =
    #NoUpgrade =
    #NoExtract =
    # Misc options
    #UseSyslog
    #UseDelta
    #TotalDownload
    CheckSpace
    #VerbosePkgLists
    # By default, pacman accepts packages signed by keys that its local keyring
    # trusts (see pacman-key and its man page), as well as unsigned packages.
    #SigLevel = Optional TrustedOnly
    # NOTE: You must run `pacman-key --init` before first using pacman; the local
    # keyring can then be populated with the keys of all official Arch Linux
    # packagers with `pacman-key --populate archlinux`.
    # REPOSITORIES
    # - can be defined here or included from another file
    # - pacman will search repositories in the order defined here
    # - local/custom mirrors can be added here or in separate files
    # - repositories listed first will take precedence when packages
    # have identical names, regardless of version number
    # - URLs will have $repo replaced by the name of the current repo
    # - URLs will have $arch replaced by the name of the architecture
    # Repository entries are of the format:
    # [repo-name]
    # Server = ServerName
    # Include = IncludePath
    # The header [repo-name] is crucial - it must be present and
    # uncommented to enable the repo.
    # The testing repositories are disabled by default. To enable, uncomment the
    # repo name header and Include lines. You can add preferred servers immediately
    # after the header, and they will be used before the default mirrors.
    #[testing]
    #SigLevel = PackageRequired
    #Include = /etc/pacman.d/mirrorlist
    [core]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    [extra]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    #[community-testing]
    #SigLevel = PackageRequired
    #Include = /etc/pacman.d/mirrorlist
    [community]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    # If you want to run 32 bit applications on your x86_64 system,
    # enable the multilib repositories as required here.
    #[multilib-testing]
    #SigLevel = PackageRequired
    #Include = /etc/pacman.d/mirrorlist
    [multilib]
    SigLevel = PackageRequired
    Include = /etc/pacman.d/mirrorlist
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #SigLevel = Optional TrustAll
    #Server = file:///home/custompkgs
    [archlinuxfr]
    # The French Arch Linux communities packages.
    SigLevel = PackageRequired
    Server = http://repo.archlinux.fr/$arch
    [arch-fonts]
    # Prebuilt packages for font packages found in AUR
    # This should be faster than building from source
    # as many have download speed of 10KB/s. If you find
    # missing font, email to <gmail.com: jesse.jaara>
    SigLevel = PackageRequired
    Server = http://huulivoide.pp.fi/Arch/arch-fonts
    [archstuff]
    # AUR's most voted and many bin32-* and lib32-* packages.
    SigLevel = PackageRequired
    Server = http://archstuff.vs169092.vserver.de/$arch
    [herecura-stable]
    # additional apps not found in community
    SigLevel = PackageRequired
    Server = http://repo.herecura.be/herecura-stable/$arch
    [kde4-eyecandy-64]
    # Useful and beautiful plasmoids and themes for KDE4.
    SigLevel = PackageRequired
    Server = http://archlinuxgr.tiven.org/kde4-eyecandy/x86_64
    mirrorlist
    cat /etc/pacman.d/mirrorlist
    # Arch Linux mirrorlist generated by Reflector
    # With: /usr/bin/reflector -l 5 --sort rate --save /etc/pacman.d/mirrorlist
    # When: 2012-06-18 12:42:37 UTC
    # From: https://www.archlinux.org/mirrors/status/json/
    # Retrieved: 2012-06-18 12:42:25 UTC
    # Last Check: 2012-06-18T12:21:53.438Z UTC
    Server = http://archlinux.polymorf.fr/$repo/os/$arch
    Server = http://mirror.de.leaseweb.net/archlinux/$repo/os/$arch
    Server = ftp://mirror.chmuri.net/archmirror/$repo/os/$arch
    Server = ftp://mirror.us.leaseweb.net/archlinux/$repo/os/$arch
    Server = http://miroir.ezvan.fr/archlinux/$repo/os/$arch
    output when I try to upgrade
    sudo pacman -Su
    Password:
    :: Starting full system upgrade...
    :: Replace dbus-python with extra/python2-dbus? [Y/n]
    :: Replace libusb with core/libusbx? [Y/n]
    resolving dependencies...
    looking for inter-conflicts...
    Targets (57): bison-2.5.1-1 c-ares-1.9.0-1 cairo-1.12.2-2 cifs-utils-5.5-1 colord-0.1.21-2
    dbus-python-1.0.0-1 [removal] desktop-file-utils-0.20-1 freetype2-2.4.10-1 git-1.7.10.4-1
    gnutls-3.0.20-1 gtk-engines-2.21.0-1 icu-49.1.2-1 intel-dri-8.0.3-3 kactivities-4.8.4-1
    kdebase-konqueror-4.8.4-1 kdebase-lib-4.8.4-1 kdebase-runtime-4.8.4-1 kdebase-workspace-4.8.4-1
    kdebindings-python2-4.8.4-1 kdegames-libkdegames-4.8.4-1 kdelibs-4.8.4-2 kdepim-runtime-4.8.4-1
    kdepimlibs-4.8.4-1 khrplatform-devel-8.0.3-3 krb5-1.10.2-1 libcups-1.5.3-5 libdrm-2.4.35-1
    libegl-8.0.3-3 libgl-8.0.3-3 libglapi-8.0.3-3 libgles-8.0.3-3 libkipi-4.8.4-1 libksane-4.8.4-1
    libmysqlclient-5.5.25-1 libpng-1.5.11-1 libusb-1.0.9-1 [removal] libusbx-1.0.11-2 libva-1.1.0-1
    libwbclient-3.6.5-3 linux-api-headers-3.3.8-1 lirc-utils-1:0.9.0-18 mkinitcpio-0.9.2-2
    mysql-5.5.25-1 mysql-clients-5.5.25-1 oxygen-icons-4.8.4-1 pam-1.1.5-4 pambase-20120602-1
    pango-1.30.1-1 pinentry-0.8.1-4 pyqt-4.9.1-2 python-dbus-1.1.0-2 python-dbus-common-1.1.0-2
    python2-dbus-1.1.0-2 python2-pyqt-4.9.1-2 shorewall-core-4.5.5.1-1 smbclient-3.6.5-3
    sqlite-3.7.13-1
    Total Installed Size: 632.49 MiB
    Net Upgrade Size: 3.08 MiB
    Proceed with installation? [Y/n]
    (55/55) checking package integrity [########################################] 100%
    error: failed to commit transaction (invalid or corrupted package)
    Errors occurred, no packages were upgraded.
    pacman log
    [2012-06-18 12:48] Running 'pacman -Su'
    [2012-06-18 12:48] starting full system upgrade
    [2012-06-18 12:54] Running 'pacman -Su'
    [2012-06-18 12:54] starting full system upgrade
    [2012-06-18 12:54] Running 'pacman -Su'
    [2012-06-18 12:54] starting full system upgrade
    [2012-06-18 12:57] Running 'pacman -Su'
    [2012-06-18 12:57] starting full system upgrade
    [2012-06-18 13:07] Running 'pacman -Su'
    [2012-06-18 13:07] starting full system upgrade
    [2012-06-18 13:10] Running 'pacman -Syy'
    [2012-06-18 13:10] synchronizing package lists
    [2012-06-18 13:14] Running 'pacman -Su'
    [2012-06-18 13:14] starting full system upgrade
    [2012-06-18 13:21] starting full system upgrade
    [2012-06-18 13:22] starting full system upgrade
    [2012-06-18 13:23] starting full system upgrade
    [2012-06-18 13:24] starting full system upgrade
    [2012-06-18 13:24] Running 'pacman -Su'
    [2012-06-18 13:24] starting full system upgrade
    [2012-06-18 14:42] Running 'pacman -Su'
    [2012-06-18 14:42] starting full system upgrade
    [2012-06-18 14:44] Running 'pacman -Syy'
    [2012-06-18 14:44] synchronizing package lists
    [2012-06-18 14:45] Running 'pacman -Su'
    [2012-06-18 14:45] starting full system upgrade
    Last edited by drsjlazar (2012-06-18 13:51:54)

    Thank you Jelly It was a .part file. I was using aria2 to download prior to switching to the new pacman.conf. There was only one offending file. I would have thought that pacman would at least tell you which file was corrupted when it found one or even not recognize .part files as complete packages. Anyway, I deleted the .part file everything went smoothly.
    Here is the complete output of pacman -Syyu --debug... just for reference.
    debug: parseconfig: options pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: HoldPkg: pacman
    debug: config: HoldPkg: glibc
    debug: config: SyncFirst: pacman
    debug: config: arch: x86_64
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config file /etc/pacman.conf, line 76: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: config: new section 'extra'
    debug: config file /etc/pacman.conf, line 80: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: config: new section 'community'
    debug: config file /etc/pacman.conf, line 88: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: config: new section 'multilib'
    debug: config file /etc/pacman.conf, line 99: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: config: new section 'archlinuxfr'
    debug: config: finish section 'archlinuxfr'
    debug: config: new section 'arch-fonts'
    debug: config: finish section 'arch-fonts'
    debug: config: new section 'archstuff'
    debug: config: finish section 'archstuff'
    debug: config: new section 'herecura-stable'
    debug: config: finish section 'herecura-stable'
    debug: config: new section 'kde4-eyecandy-64'
    debug: config: finish section 'kde4-eyecandy-64'
    debug: config: finished parsing /etc/pacman.conf
    debug: setup_libalpm called
    debug: option 'logfile' = /var/log/pacman.log
    debug: option 'gpgdir' = /etc/pacman.d/gnupg/
    debug: option 'cachedir' = /var/cache/pacman/pkg/
    debug: parseconfig: repo pass
    debug: config: attempting to read file /etc/pacman.conf
    debug: config: finish section '(null)'
    debug: config: new section 'options'
    debug: config: finish section 'options'
    debug: config: new section 'core'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 76: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'core'
    debug: registering sync database 'core'
    debug: database path for tree core set to /var/lib/pacman/sync/core.db
    debug: "/var/lib/pacman/sync/core.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/core.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'core': http://archlinux.polymorf.fr/core/os/x86_64
    debug: adding new server URL to database 'core': http://mirror.de.leaseweb.net/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': ftp://mirror.chmuri.net/archmirror/core/os/x86_64
    debug: adding new server URL to database 'core': ftp://mirror.us.leaseweb.net/archlinux/core/os/x86_64
    debug: adding new server URL to database 'core': http://miroir.ezvan.fr/archlinux/core/os/x86_64
    debug: config: new section 'extra'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 80: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'extra'
    debug: registering sync database 'extra'
    debug: database path for tree extra set to /var/lib/pacman/sync/extra.db
    debug: "/var/lib/pacman/sync/extra.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/extra.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'extra': http://archlinux.polymorf.fr/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://mirror.de.leaseweb.net/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': ftp://mirror.chmuri.net/archmirror/extra/os/x86_64
    debug: adding new server URL to database 'extra': ftp://mirror.us.leaseweb.net/archlinux/extra/os/x86_64
    debug: adding new server URL to database 'extra': http://miroir.ezvan.fr/archlinux/extra/os/x86_64
    debug: config: new section 'community'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 88: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'community'
    debug: registering sync database 'community'
    debug: database path for tree community set to /var/lib/pacman/sync/community.db
    debug: "/var/lib/pacman/sync/community.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/community.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'community': http://archlinux.polymorf.fr/community/os/x86_64
    debug: adding new server URL to database 'community': http://mirror.de.leaseweb.net/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': ftp://mirror.chmuri.net/archmirror/community/os/x86_64
    debug: adding new server URL to database 'community': ftp://mirror.us.leaseweb.net/archlinux/community/os/x86_64
    debug: adding new server URL to database 'community': http://miroir.ezvan.fr/archlinux/community/os/x86_64
    debug: config: new section 'multilib'
    debug: config: SigLevel: PackageRequired
    debug: config file /etc/pacman.conf, line 99: including /etc/pacman.d/mirrorlist
    debug: config: attempting to read file /etc/pacman.d/mirrorlist
    debug: config: finished parsing /etc/pacman.d/mirrorlist
    debug: config: finish section 'multilib'
    debug: registering sync database 'multilib'
    debug: database path for tree multilib set to /var/lib/pacman/sync/multilib.db
    debug: "/var/lib/pacman/sync/multilib.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/multilib.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'multilib': http://archlinux.polymorf.fr/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://mirror.de.leaseweb.net/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': ftp://mirror.chmuri.net/archmirror/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': ftp://mirror.us.leaseweb.net/archlinux/multilib/os/x86_64
    debug: adding new server URL to database 'multilib': http://miroir.ezvan.fr/archlinux/multilib/os/x86_64
    debug: config: new section 'archlinuxfr'
    debug: config: SigLevel: PackageRequired
    debug: config: finish section 'archlinuxfr'
    debug: registering sync database 'archlinuxfr'
    debug: database path for tree archlinuxfr set to /var/lib/pacman/sync/archlinuxfr.db
    debug: "/var/lib/pacman/sync/archlinuxfr.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/archlinuxfr.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'archlinuxfr': http://repo.archlinux.fr/x86_64
    debug: config: new section 'arch-fonts'
    debug: config: SigLevel: PackageRequired
    debug: config: finish section 'arch-fonts'
    debug: registering sync database 'arch-fonts'
    debug: database path for tree arch-fonts set to /var/lib/pacman/sync/arch-fonts.db
    debug: "/var/lib/pacman/sync/arch-fonts.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/arch-fonts.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'arch-fonts': http://huulivoide.pp.fi/Arch/arch-fonts
    debug: config: new section 'archstuff'
    debug: config: SigLevel: PackageRequired
    debug: config: finish section 'archstuff'
    debug: registering sync database 'archstuff'
    debug: database path for tree archstuff set to /var/lib/pacman/sync/archstuff.db
    debug: "/var/lib/pacman/sync/archstuff.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/archstuff.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'archstuff': http://archstuff.vs169092.vserver.de/x86_64
    debug: config: new section 'herecura-stable'
    debug: config: SigLevel: PackageRequired
    debug: config: finish section 'herecura-stable'
    debug: registering sync database 'herecura-stable'
    debug: database path for tree herecura-stable set to /var/lib/pacman/sync/herecura-stable.db
    debug: "/var/lib/pacman/sync/herecura-stable.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/herecura-stable.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'herecura-stable': http://repo.herecura.be/herecura-stable/x86_64
    debug: config: new section 'kde4-eyecandy-64'
    debug: config: SigLevel: PackageRequired
    debug: config: finish section 'kde4-eyecandy-64'
    debug: registering sync database 'kde4-eyecandy-64'
    debug: database path for tree kde4-eyecandy-64 set to /var/lib/pacman/sync/kde4-eyecandy-64.db
    debug: "/var/lib/pacman/sync/kde4-eyecandy-64.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/kde4-eyecandy-64.db.sig could not be opened
    debug: missing optional signature
    debug: adding new server URL to database 'kde4-eyecandy-64': http://archlinuxgr.tiven.org/kde4-eyecandy/x86_64
    debug: config: finished parsing /etc/pacman.conf
    debug: url: http://archlinux.polymorf.fr/core/os/x86_64/core.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.part (wb)
    :: Synchronizing package databases...
    downloading core.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://archlinux.polymorf.fr/core/os/x86_64/core.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/core.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'core.db.sig' from archlinux.polymorf.fr : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/core.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/core.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://archlinux.polymorf.fr/extra/os/x86_64/extra.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.part (wb)
    downloading extra.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://archlinux.polymorf.fr/extra/os/x86_64/extra.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/extra.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'extra.db.sig' from archlinux.polymorf.fr : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/extra.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/extra.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://archlinux.polymorf.fr/community/os/x86_64/community.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.part (wb)
    downloading community.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://archlinux.polymorf.fr/community/os/x86_64/community.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/community.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'community.db.sig' from archlinux.polymorf.fr : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/community.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/community.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://archlinux.polymorf.fr/multilib/os/x86_64/multilib.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/multilib.db.part (wb)
    downloading multilib.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://archlinux.polymorf.fr/multilib/os/x86_64/multilib.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/multilib.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'multilib.db.sig' from archlinux.polymorf.fr : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/multilib.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/multilib.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://repo.archlinux.fr/x86_64/archlinuxfr.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/archlinuxfr.db.part (wb)
    downloading archlinuxfr.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://repo.archlinux.fr/x86_64/archlinuxfr.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/archlinuxfr.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'archlinuxfr.db.sig' from repo.archlinux.fr : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/archlinuxfr.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/archlinuxfr.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://huulivoide.pp.fi/Arch/arch-fonts/arch-fonts.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/arch-fonts.db.part (wb)
    downloading arch-fonts.db...
    downloading arch-fonts.db...
    downloading arch-fonts.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://huulivoide.pp.fi/Arch/arch-fonts/arch-fonts.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/arch-fonts.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'arch-fonts.db.sig' from huulivoide.pp.fi : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/arch-fonts.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/arch-fonts.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://archstuff.vs169092.vserver.de/x86_64/archstuff.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/archstuff.db.part (wb)
    downloading archstuff.db...
    downloading archstuff.db...
    downloading archstuff.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://archstuff.vs169092.vserver.de/x86_64/archstuff.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/archstuff.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'archstuff.db.sig' from archstuff.vs169092.vserver.de : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/archstuff.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/archstuff.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://repo.herecura.be/herecura-stable/x86_64/herecura-stable.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/herecura-stable.db.part (wb)
    downloading herecura-stable.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://repo.herecura.be/herecura-stable/x86_64/herecura-stable.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/herecura-stable.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'herecura-stable.db.sig' from repo.herecura.be : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/herecura-stable.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/herecura-stable.db.sig could not be opened
    debug: missing optional signature
    debug: url: http://archlinuxgr.tiven.org/kde4-eyecandy/x86_64/kde4-eyecandy-64.db
    debug: maxsize: 26214400
    debug: opened tempfile for download: /var/lib/pacman/sync/kde4-eyecandy-64.db.part (wb)
    downloading kde4-eyecandy-64.db...
    downloading kde4-eyecandy-64.db...
    downloading kde4-eyecandy-64.db...
    debug: curl returned error 0 from transfer
    debug: response code: 200
    debug: url: http://archlinuxgr.tiven.org/kde4-eyecandy/x86_64/kde4-eyecandy-64.db.sig
    debug: maxsize: 16384
    debug: opened tempfile for download: /var/lib/pacman/sync/kde4-eyecandy-64.db.sig.part (wb)
    debug: curl returned error 22 from transfer
    debug: failed retrieving file 'kde4-eyecandy-64.db.sig' from archlinuxgr.tiven.org : The requested URL returned error: 404
    debug: "/var/lib/pacman/sync/kde4-eyecandy-64.db.sig" is not readable: No such file or directory
    debug: sig path /var/lib/pacman/sync/kde4-eyecandy-64.db.sig could not be opened
    debug: missing optional signature
    debug: loading package cache for repository 'local'
    debug: added 685 packages to package cache for db 'local'
    debug: loading package cache for repository 'core'
    debug: opening database archive /var/lib/pacman/sync/core.db
    debug: added 194 packages to package cache for db 'core'
    debug: checking for package upgrades
    debug: searching for replacements for a52dec
    debug: loading package cache for repository 'extra'
    debug: opening database archive /var/lib/pacman/sync/extra.db
    debug: added 2775 packages to package cache for db 'extra'
    debug: searching for replacements for aalib
    debug: searching for replacements for abs
    debug: searching for replacements for acetoneiso2
    debug: searching for replacements for acetoneiso2
    debug: loading package cache for repository 'community'
    debug: opening database archive /var/lib/pacman/sync/community.db
    debug: added 2495 packages to package cache for db 'community'
    debug: searching for replacements for akonadi
    debug: searching for replacements for akonadi-googledata
    debug: searching for replacements for akonadi-googledata
    debug: searching for replacements for akonadi-googledata
    debug: loading package cache for repository 'multilib'
    debug: opening database archive /var/lib/pacman/sync/multilib.db
    debug: added 144 packages to package cache for db 'multilib'
    debug: searching for replacements for akonadi-googledata
    debug: loading package cache for repository 'archlinuxfr'
    debug: opening database archive /var/lib/pacman/sync/archlinuxfr.db
    debug: added 137 packages to package cache for db 'archlinuxfr'
    debug: searching for replacements for akonadi-googledata
    debug: loading package cache for repository 'arch-fonts'
    debug: opening database archive /var/lib/pacman/sync/arch-fonts.db
    debug: added 438 packages to package cache for db 'arch-fonts'
    debug: searching for replacements for akonadi-googledata
    debug: loading package cache for repository 'archstuff'
    debug: opening database archive /var/lib/pacman/sync/archstuff.db
    debug: added 296 packages to package cache for db 'archstuff'
    debug: searching for replacements for akonadi-googledata
    debug: loading package cache for repository 'herecura-stable'
    debug: opening database archive /var/lib/pacman/sync/herecura-stable.db
    debug: added 54 packages to package cache for db 'herecura-stable'
    debug: searching for replacements for akonadi-googledata
    debug: loading package cache for repository 'kde4-eyecandy-64'
    debug: opening database archive /var/lib/pacman/sync/kde4-eyecandy-64.db
    debug: added 93 packages to package cache for db 'kde4-eyecandy-64'
    debug: searching for replacements for akonadi-googledata
    debug: searching for replacements for alsa-firmware
    debug: searching for replacements for alsa-lib
    debug: searching for replacements for alsa-utils
    debug: searching for replacements for amarok
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for andyetitmoves
    debug: searching for replacements for apper
    debug: searching for replacements for apper
    debug: searching for replacements for archlinux-artwork
    debug: searching for replacements for aria2
    debug: searching for replacements for aria2
    debug: searching for replacements for aspell
    debug: searching for replacements for atk
    debug: searching for replacements for attica
    debug: searching for replacements for automoc4
    debug: searching for replacements for avahi
    debug: searching for replacements for babl
    debug: searching for replacements for bc
    debug: new version of 'bison' found (2.5-3 => 2.5.1-1)
    debug: adding package bison-2.5.1-1 to the transaction targets
    debug: searching for replacements for bleachbit
    debug: searching for replacements for bleachbit
    debug: searching for replacements for bluedevil
    debug: searching for replacements for bluez
    debug: searching for replacements for boost
    debug: searching for replacements for boost-libs
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for byobu
    debug: searching for replacements for c-ares
    debug: new version of 'c-ares' found (1.8.0-1 => 1.9.0-1)
    debug: adding package c-ares-1.9.0-1 to the transaction targets
    debug: searching for replacements for cairo
    debug: new version of 'cairo' found (1.12.2-1 => 1.12.2-2)
    debug: adding package cairo-1.12.2-2 to the transaction targets
    debug: searching for replacements for cdparanoia
    debug: searching for replacements for cdrdao
    debug: searching for replacements for cdrkit
    debug: searching for replacements for chmlib
    debug: searching for replacements for chromium
    debug: searching for replacements for cifs-utils
    debug: new version of 'cifs-utils' found (5.4-1 => 5.5-1)
    debug: adding package cifs-utils-5.5-1 to the transaction targets
    debug: searching for replacements for cln
    debug: searching for replacements for cmake
    debug: searching for replacements for colord
    debug: new version of 'colord' found (0.1.21-1 => 0.1.21-2)
    debug: adding package colord-0.1.21-2 to the transaction targets
    debug: searching for replacements for compositeproto
    debug: searching for replacements for consolekit
    debug: searching for replacements for convertlit
    debug: searching for replacements for cups
    debug: searching for replacements for cups-filters
    debug: searching for replacements for cups-pdf
    debug: searching for replacements for damageproto
    debug: searching for replacements for dbus
    debug: searching for replacements for dbus-glib
    debug: searching for replacements for dbus-python
    debug: searching for replacements for dbus-python
    :: Starting full system upgrade...
    :: Replace dbus-python with extra/python2-dbus? [Y/n] debug: adding package python2-dbus-1.1.0-2 to the transaction targets
    debug: searching for replacements for dbus-python
    debug: searching for replacements for dbus-python
    debug: searching for replacements for dbus-python
    debug: searching for replacements for dbus-python
    debug: searching for replacements for dbus-python
    debug: searching for replacements for dbus-python
    debug: searching for replacements for dbus-python
    debug: searching for replacements for desktop-file-utils
    debug: new version of 'desktop-file-utils' found (0.19-1 => 0.20-1)
    debug: adding package desktop-file-utils-0.20-1 to the transaction targets
    debug: searching for replacements for dhclient
    debug: searching for replacements for djvulibre
    debug: searching for replacements for dnsmasq
    debug: searching for replacements for docbook-xml
    debug: searching for replacements for docbook-xsl
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dolphin-box-plugin-git
    debug: searching for replacements for dri2proto
    debug: searching for replacements for dropbox
    debug: searching for replacements for dropbox
    debug: searching for replacements for dropbox
    debug: searching for replacements for dropbox
    debug: searching for replacements for dropbox
    debug: searching for replacements for dropbox
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-cli
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-daemon
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dropbox-servicemenu
    debug: searching for replacements for dvd+rw-tools
    debug: searching for replacements for ebook-tools
    debug: searching for replacements for eject
    debug: searching for replacements for enca
    debug: searching for replacements for enchant
    debug: searching for replacements for exiv2
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for extra-monochrome-tray-icons
    debug: searching for replacements for faac
    debug: searching for replacements for faad2
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for faenza-icon-theme
    debug: searching for replacements for ffmpeg
    debug: searching for replacements for fftw
    debug: searching for replacements for firefox
    debug: searching for replacements for firefox-adblock-plus
    debug: searching for replacements for firefox-adblock-plus
    debug: searching for replacements for firefox-i18n-en-gb
    debug: searching for replacements for fixesproto
    debug: searching for replacements for flac
    debug: searching for replacements for flashplugin
    debug: searching for replacements for fontconfig
    debug: searching for replacements for fontsproto
    debug: searching for replacements for foomatic-db
    debug: searching for replacements for foomatic-db-engine
    debug: searching for replacements for foomatic-filters
    debug: searching for replacements for freeglut
    debug: searching for replacements for freetype2
    debug: new version of 'freetype2' found (2.4.9-2 => 2.4.10-1)
    debug: adding package freetype2-2.4.10-1 to the transaction targets
    debug: searching for replacements for fribidi
    debug: searching for replacements for fuse
    debug: searching for replacements for fuseiso
    debug: searching for replacements for fuseiso
    debug: searching for replacements for gamin
    debug: searching for replacements for gconf
    debug: searching for replacements for gd
    debug: searching for replacements for gdk-pixbuf2
    debug: searching for replacements for gegl
    debug: searching for replacements for ghostscript
    debug: searching for replacements for giflib
    debug: searching for replacements for gimp
    debug: searching for replacements for git
    debug: new version of 'git' found (1.7.10.3-1 => 1.7.10.4-1)
    debug: adding package git-1.7.10.4-1 to the transaction targets
    debug: searching for replacements for glew
    debug: searching for replacements for glib-networking
    debug: searching for replacements for glproto
    debug: searching for replacements for gnome-doc-utils
    debug: searching for replacements for gnutls
    debug: new version of 'gnutls' found (3.0.19-1 => 3.0.20-1)
    debug: adding package gnutls-3.0.20-1 to the transaction targets
    debug: searching for replacements for gperf
    debug: searching for replacements for grantlee
    debug: searching for replacements for graphite
    debug: searching for replacements for gsettings-desktop-schemas
    debug: searching for replacements for gsfonts
    debug: searching for replacements for gsm
    debug: searching for replacements for gstreamer0.10
    debug: searching for replacements for gstreamer0.10-base
    debug: searching for replacements for gstreamer0.10-base-plugins
    debug: searching for replacements for gstreamer0.10-good
    debug: searching for replacements for gstreamer0.10-good-plugins
    debug: searching for replacements for gtk-doc
    debug: searching for replacements for gtk-engines
    debug: new version of 'gtk-engines' found (2.20.2-2 => 2.21.0-1)
    debug: adding package gtk-engines-2.21.0-1 to the transaction targets
    debug: searching for replacements for gtk-kde4
    debug: searching for replacements for gtk-kde4
    debug: searching for replacements for gtk-update-icon-cache
    debug: searching for replacements for gtk2
    debug: searching for replacements for gtk2-xfce-engine
    debug: searching for replacements for gtk3
    debug: searching for replacements for gtk3-xfce-engine
    debug: searching for replacements for hicolor-icon-theme
    debug: searching for replacements for hplip
    debug: searching for replacements for hpoj
    debug: searching for replacements for hspell
    debug: searching for replacements for hsqldb-java
    debug: searching for replacements for htop
    debug: searching for replacements for hunspell
    debug: searching for replacements for hyphen
    debug: searching for replacements for icu
    debug: new version of 'icu' found (49.1.1-2 => 49.1.2-1)
    debug: adding package icu-49.1.2-1 to the transaction targets
    debug: searching for replacements for ilmbase
    debug: searching for replacements for imagemagick
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imgur-servicemenu
    debug: searching for replacements for imlib2
    debug: searching for replacements for inputproto
    debug: searching for replacements for intel-dri
    debug: new version of 'intel-dri' found (8.0.3-2 => 8.0.3-3)
    debug: adding package intel-dri-8.0.3-3 to the transaction targets
    debug: searching for replacements for inxi
    debug: searching for replacements for inxi
    debug: searching for replacements for iotop
    debug: searching for replacements for iotop
    debug: searching for replacements for iso-codes
    debug: searching for replacements for jack
    debug: searching for replacements for jasper
    debug: searching for replacements for json-c
    debug: searching for replacements for kactivities
    debug: new version of 'kactivities' found (4.8.3-1 => 4.8.4-1)
    debug: adding package kactivities-4.8.4-1 to the transaction targets
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kamoso
    debug: searching for replacements for kbproto
    debug: searching for replacements for kchmviewer
    debug: searching for replacements for kchmviewer
    debug: searching for replacements for kdeadmin-system-config-printer-kde
    debug: searching for replacements for kdebase-dolphin
    debug: searching for replacements for kdebase-katepart
    debug: searching for replacements for kdebase-kdepasswd
    debug: searching for replacements for kdebase-kdialog
    debug: searching for replacements for kdebase-keditbookmarks
    debug: searching for replacements for kdebase-kfind
    debug: searching for replacements for kdebase-konq-plugins
    debug: searching for replacements for kdebase-konqueror
    debug: new version of 'kdebase-konqueror' found (4.8.3-1 => 4.8.4-1)
    debug: adding package kdebase-konqueror-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdebase-konsole
    debug: searching for replacements for kdebase-lib
    debug: new version of 'kdebase-lib' found (4.8.3-1 => 4.8.4-1)
    debug: adding package kdebase-lib-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdebase-plasma
    debug: searching for replacements for kdebase-runtime
    debug: new version of 'kdebase-runtime' found (4.8.3-1 => 4.8.4-1)
    debug: adding package kdebase-runtime-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdebase-workspace
    debug: new version of 'kdebase-workspace' found (4.8.3-2 => 4.8.4-1)
    debug: adding package kdebase-workspace-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdebindings-python2
    debug: new version of 'kdebindings-python2' found (4.8.3-1 => 4.8.4-1)
    debug: adding package kdebindings-python2-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdegames-kpatience
    debug: searching for replacements for kdegames-libkdegames
    debug: new version of 'kdegames-libkdegames' found (4.8.3-1 => 4.8.4-1)
    debug: adding package kdegames-libkdegames-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdegraphics-gwenview
    debug: searching for replacements for kdegraphics-ksnapshot
    debug: searching for replacements for kdegraphics-okular
    debug: searching for replacements for kdelibs
    debug: new version of 'kdelibs' found (4.8.3-3 => 4.8.4-2)
    debug: adding package kdelibs-4.8.4-2 to the transaction targets
    debug: searching for replacements for kdemultimedia-ffmpegthumbs
    debug: searching for replacements for kdemultimedia-juk
    debug: searching for replacements for kdemultimedia-kmix
    debug: searching for replacements for kdenetwork-kppp
    debug: searching for replacements for kdepim-runtime
    debug: new version of 'kdepim-runtime' found (4.8.3-2 => 4.8.4-1)
    debug: adding package kdepim-runtime-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdepimlibs
    debug: new version of 'kdepimlibs' found (4.8.3-1 => 4.8.4-1)
    debug: adding package kdepimlibs-4.8.4-1 to the transaction targets
    debug: searching for replacements for kdeplasma-addons-applets-showdesktop
    debug: searching for replacements for kdeplasma-applets-networkmanagement
    debug: searching for replacements for kdesdk-dolphin-plugins
    debug: searching for replacements for kdesdk-kate
    debug: searching for replacements for kdeutils-ark
    debug: searching for replacements for kdeutils-filelight
    debug: searching for replacements for kdeutils-kcalc
    debug: searching for replacements for kdeutils-kcharselect
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for kfaenza-icon-theme
    debug: searching for replacements for khrplatform-devel
    debug: new version of 'khrplatform-devel' found (8.0.3-2 => 8.0.3-3)
    debug: adding package khrplatform-devel-8.0.3-3 to the transaction targets
    debug: new version of 'krb5' found (1.10.1-3 => 1.10.2-1)
    debug: adding package krb5-1.10.2-1 to the transaction targets
    debug: searching for replacements for lame
    debug: searching for replacements for lcms
    debug: searching for replacements for lcms2
    debug: searching for replacements for libao
    debug: searching for replacements for libass
    debug: searching for replacements for libasyncns
    debug: searching for replacements for libatasmart
    debug: searching for replacements for libavc1394
    debug: searching for replacements for libbluedevil
    debug: searching for replacements for libbluray
    debug: searching for replacements for libcaca
    debug: searching for replacements for libcanberra
    debug: searching for replacements for libcap-ng
    debug: searching for replacements for libcddb
    debug: searching for replacements for libcdio
    debug: searching for replacements for libcroco
    debug: searching for replacements for libcups
    debug: new version of 'libcups' found (1.5.3-3 => 1.5.3-5)
    debug: adding package libcups-1.5.3-5 to the transaction targets
    debug: searching for replacements for libdaemon
    debug: searching for replacements for libdatrie
    debug: searching for replacements for libdbusmenu-qt
    debug: searching for replacements for libdca
    debug: searching for replacements for libdmtx
    debug: searching for replacements for libdrm
    debug: new version of 'libdrm' found (2.4.33-1 => 2.4.35-1)
    debug: adding package libdrm-2.4.35-1 to the transaction targets
    debug: searching for replacements for libdv
    debug: searching for replacements for libdvbpsi
    debug: searching for replacements for libdvdnav
    debug: searching for replacements for libdvdread
    debug: searching for replacements for libebml
    debug: searching for replacements for libegl
    debug: new version of 'libegl' found (8.0.3-2 => 8.0.3-3)
    debug: adding package libegl-8.0.3-3 to the transaction targets
    debug: searching for replacements for libexif
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfetch
    debug: searching for replacements for libfontenc
    debug: searching for replacements for libftdi
    debug: searching for replacements for libgcal
    debug: searching for replacements for libgcal
    debug: searching for replacements for libgcal
    debug: searching for replacements for libgcal
    debug: searching for replacements for libgcal
    debug: searching for replacements for libgcal
    debug: searching for replacements for libgl
    debug: new version of 'libgl' found (8.0.3-2 => 8.0.3-3)
    debug: adding package libgl-8.0.3-3 to the transaction targets
    debug: searching for replacements for libglade
    debug: searching for replacements for libglapi
    debug: new version of 'libglapi' found (8.0.3-2 => 8.0.3-3)
    debug: adding package libglapi-8.0.3-3 to the transaction targets
    debug: searching for replacements for libgles
    debug: new version of 'libgles' found (8.0.3-2 => 8.0.3-3)
    debug: adding package libgles-8.0.3-3 to the transaction targets
    debug: searching for replacements for libgnome-keyring
    debug: searching for replacements for libgphoto2
    debug: searching for replacements for libgusb
    debug: searching for replacements for libical
    debug: searching for replacements for libice
    debug: searching for replacements for libid3tag
    debug: searching for replacements for libidl2
    debug: searching for replacements for libiec61883
    debug: searching for replacements for libieee1284
    debug: searching for replacements for libimobiledevice
    debug: searching for replacements for libiodbc
    debug: searching for replacements for libirman
    debug: searching for replacements for libjpeg-turbo
    debug: searching for replacements for libkate
    debug: searching for replacements for libkipi
    debug: new version of 'libkipi' found (4.8.3-1 => 4.8.4-1)
    debug: adding package libkipi-4.8.4-1 to the transaction targets
    debug: searching for replacements for libksane
    debug: new version of 'libksane' found (4.8.3-1 => 4.8.4-1)
    debug: adding package libksane-4.8.4-1 to the transaction targets
    debug: searching for replacements for liblastfm
    debug: searching for replacements for libmad
    debug: searching for replacements for libmatroska
    debug: searching for replacements for libmikmod
    debug: searching for replacements for libmng
    debug: searching for replacements for libmodplug
    debug: searching for replacements for libmp4v2
    debug: searching for replacements for libmpcdec
    debug: searching for replacements for libmpeg2
    debug: searching for replacements for libmysqlclient
    debug: new version of 'libmysqlclient' found (5.5.24-1 => 5.5.25-1)
    debug: adding package libmysqlclient-5.5.25-1 to the transaction targets
    debug: searching for replacements for libnewt
    debug: searching for replacements for libnewt
    debug: searching for replacements for libnotify
    debug: searching for replacements for libofa
    debug: searching for replacements for libogg
    debug: searching for replacements for libosip2
    debug: searching for replacements for libosip2
    debug: searching for replacements for libpciaccess
    debug: searching for replacements for libplist
    debug: searching for replacements for libpng
    debug: new version of 'libpng' found (1.5.10-1 => 1.5.11-1)
    debug: adding package libpng-1.5.11-1 to the transaction targets
    debug: searching for replacements for libpng12
    debug: searching for replacements for libpng12
    debug: searching for replacements for libpng12
    debug: searching for replacements for libpng12
    debug: searching for replacements for libproxy
    debug: searching for replacements for libpulse
    debug: searching for replacements for libqalculate
    debug: searching for replacements for libqzeitgeist
    debug: searching for replacements for libraw1394
    debug: searching for replacements for libreoffice-base
    debug: searching for replacements for libreoffice-calc
    debug: searching for replacements for libreoffice-common
    debug: searching for replacements for libreoffice-draw
    debug: searching for replacements for libreoffice-en-GB
    debug: searching for replacements for libreoffice-impress
    debug: searching for replacements for libreoffice-kde4
    debug: searching for replacements for libreoffice-math
    debug: searching for replacements for libreoffice-writer
    debug: searching for replacements for librsvg
    debug: searching for replacements for librsync
    debug: searching for replacements for librsync
    debug: searching for replacements for libsamplerate
    debug: searching for replacements for libshout
    debug: searching for replacements for libsm
    debug: searching for replacements for libsndfile
    debug: searching for replacements for libsoup
    debug: searching for replacements for libsoup-gnome
    debug: searching for replacements for libspectre
    debug: searching for replacements for libssh
    debug: searching for replacements for libstdc++5
    debug: searching for replacements for libtasn1
    debug: searching for replacements for libthai
    debug: searching for replacements for libtheora
    debug: searching for replacements for libtiff
    debug: searching for replacements for libtiger
    debug: searching for replacements for libupnp
    debug: searching for replacements for libusb
    :: Replace libusb with core/libusbx? [Y/n] debug: adding package libusbx-1.0.11-2 to the transaction targets
    debug: searching for replacements for libusb
    debug: searching for replacements for libusb
    debug: searching for replacements for libusb
    debug: searching for replacements for libusb
    debug: searching for replacements for libusb
    debug: searching for replacements for libusb
    debug: searching for replacements for libusb
    debug: searching for replacements for libusb
    debug: searching for replacements for libva
    debug: new version of 'libva' found (1.0.15-1 => 1.1.0-1)
    debug: adding package libva-1.1.0-1 to the transaction targets
    debug: searching for replacements for libva-driver-intel
    debug: searching for replacements for libvdpau
    debug: searching for replacements for libvisual
    debug: searching for replacements for libvorbis
    debug: searching for replacements for libvpx
    debug: searching for replacements for libwbclient
    debug: new version of 'libwbclient' found (3.6.5-1 => 3.6.5-3)
    debug: adding package libwbclient-3.6.5-3 to the transaction targets
    debug: searching for replacements for libwmf
    debug: searching for replacements for libwpd
    debug: searching for replacements for libwps
    debug: searching for replacements for libx11
    debug: searching for replacements for libxau
    debug: searching for replacements for libxaw
    debug: searching for replacements for libxcb
    debug: searching for replacements for libxcomposite
    debug: searching for replacements for libxcursor
    debug: searching for replacements for libxdamage
    debug: searching for replacements for libxdmcp
    debug: searching for replacements for libxext
    debug: searching for replacements for libxfixes
    debug: searching for replacements for libxfont
    debug: searching for replacements for libxft
    debug: searching for replacements for libxi
    debug: searching for replacements for libxinerama
    debug: searching for replacements for libxkbfile
    debug: searching for replacements for libxklavier
    debug: searching for replacements for libxml2
    debug: searching for replacements for libxmu
    debug: searching for replacements for libxpm
    debug: searching for replacements for libxrandr
    debug: searching for replacements for libxrender
    debug: searching for replacements for libxres
    debug: searching for replacements for libxslt
    debug: searching for replacements for libxss
    debug: searching for replacements for libxt
    debug: searching for replacements for libxtst
    debug: searching for replacements for libxv
    debug: searching for replacements for libxvmc
    debug: searching for replacements for libxxf86dga
    debug: searching for replacements for libxxf86vm
    debug: searching for replacements for libzip
    debug: new version of 'linux-api-headers' found (3.3.2-1 => 3.3.8-1)
    debug: adding package linux-api-headers-3.3.8-1 to the transaction targets
    debug: searching for replacements for lirc-utils
    debug: new version of 'lirc-utils' found (1:0.9.0-16 => 1:0.9.0-18)
    debug: adding package lirc-utils-1:0.9.0-18 to the transaction targets
    debug: searching for replacements for lm_sensors
    debug: searching for replacements for lpsolve
    debug: searching for replacements for lrzip
    debug: searching for replacements for lrzip
    debug: searching for replacements for lsof
    debug: searching for replacements for lua
    debug: searching for replacements for mcpp
    debug: searching for replacements for media-player-info
    debug: searching for replacements for mercurial
    debug: searching for replacements for mesa
    debug: searching for replacements for mesa-demos
    debug: searching for replacements for mime-types
    debug: new version of 'mkinitcpio' found (0.9.1-1 => 0.9.2-2)
    debug: adding package mkinitcpio-0.9.2-2 to the transaction targets
    debug: searching for replacements for mobile-broadband-provider-info
    debug: searching for replacements for modemmanager
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for monochrome-tray-icons
    debug: searching for replacements for mozilla-common
    debug: searching for replacements for mpg123
    debug: searching for replacements for mplayer
    debug: searching for replacements for mtdev
    debug: searching for replacements for mysql
    debug: new version of 'mysql' found (5.5.24-1 => 5.5.25-1)
    debug: adding package mysql-5.5.25-1 to the transaction targets
    debug: searching for replacements for mysql-clients
    debug: new version of 'mysql-clients' found (5.5.24-1 => 5.5.25-1)
    debug: adding package mysql-clients-5.5.25-1 to the transaction targets
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for nano-syntax-highlighting
    debug: searching for replacements for neon
    debug: searching for replacements for net-snmp
    debug: searching for replacements for nettle
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for networkmanager-git
    debug: searching for replacements for nspr
    debug: searching for replacements for nss
    debug: searching for replacements for ntfs-3g
    debug: searching for replacements for obex-data-server
    debug: searching for replacements for obexd-client
    debug: searching for replacements for obexfs
    debug: searching for replacements for obexfs
    debug: searching for replacements for obexftp
    debug: searching for replacements for openal
    debug: searching for replacements for opencore-amr
    debug: searching for replacements for openexr
    debug: searching for replacements for openjpeg
    debug: searching for replacements for openobex
    debug: searching for replacements for openslp
    debug: searching for replacements for opera
    debug: searching for replacements for opera
    debug: searching for replacements for orbit2
    debug: searching for replacements for orc
    debug: searching for replacements for oxygen-gtk2
    debug: searching for replacements for oxygen-icons
    debug: new version of 'oxygen-icons' found (4.8.3-1 => 4.8.4-1)
    debug: adding package oxygen-icons-4.8.4-1 to the transaction targets
    debug: searching for replacements for p11-kit
    debug: searching for replacements for p7zip
    debug: searching for replacements for package-query
    debug: searching for replacements for package-query
    debug: searching for replacements for package-query
    debug: searching for replacements for package-query
    debug: searching for replacements for packagekit
    debug: searching for replacements for packagekit
    debug: searching for replacements for packagekit-qt2
    debug: searching for replacements for packagekit-qt2
    debug: searching for replacements for packer
    debug: searching for replacements for packer
    debug: searching for replacements for packer
    debug: searching for replacements for packer
    debug: searching for replacements for packer
    debug: searching for replacements for packer
    debug: new version of 'pam' found (1.1.5-3 => 1.1.5-4)
    debug: adding package pam-1.1.5-4 to the transaction targets
    debug: searching for replacements for pango
    debug: new version of 'pango' found (1.30.0-1 => 1.30.1-1)
    debug: adding package pango-1.30.1-1 to the transaction targets
    debug: searching for replacements for parted
    debug: searching for replacements for perl-error
    debug: searching for replacements for phonon
    debug: searching for replacements for phonon-vlc
    debug: new version of 'pinentry' found (0.8.1-3 => 0.8.1-4)
    debug: adding package pinentry-0.8.1-4 to the transaction targets
    debug: searching for replacements for pixman
    debug: searching for replacements for pm-quirks
    debug: searching for replacements for pm-utils
    debug: searching for replacements for polkit
    debug: searching for replacements for polkit-kde
    debug: searching for replacements for polkit-qt
    debug: searching for replacements for poppler
    debug: searching for replacements for poppler-data
    debug: searching for replacements for poppler-qt
    debug: searching for replacements for portaudio
    debug: searching for replacements for portaudio
    debug: searching for replacements for prison
    debug: searching for replacements for pycups
    debug: searching for replacements for pygobject2-devel
    debug: searching for replacements for pygtk
    debug: searching for replacements for pyqt
    debug: new version of 'pyqt' found (4.9.1-1 => 4.9.1-2)
    debug: adding package pyqt-4.9.1-2 to the transaction targets
    debug: searching for replacements for pysmbc
    debug: searching for replacements for python
    debug: searching for replacements for python-m2crypto
    debug: searching for replacements for python-pycurl
    debug: searching for replacements for python2
    debug: searching for replacements for python2-cairo
    debug: searching for replacements for python2-gobject2
    debug: searching for replacements for python2-pyqt
    debug: new version of 'python2-pyqt' found (4.9.1-1 => 4.9.1-2)
    debug: adding package python2-pyqt-4.9.1-2 to the transaction targets
    debug: searching for replacements for python2-sip
    debug: searching for replacements for qca
    debug: searching for replacements for qimageblitz
    debug: searching for replacements for qjson
    debug: searching for replacements for qrencode
    debug: searching for replacements for qscintilla
    debug: searching for replacements for qt
    debug: searching for replacements for qt-gstreamer
    debug: searching for replacements for qtscriptgenerator
    debug: searching for replacements for qtwebkit
    debug: searching for replacements for randrproto
    debug: searching for replacements for raptor
    debug: searching for replacements for rar
    debug: searching for replacements for rar
    debug: searching for replacements for rar
    debug: searching for replacements for rar
    debug: searching for replacements for rar
    debug: searching for replacements for rar
    debug: searching for replacements for rarian
    debug: searching for replacements for rasqal
    debug: searching for replacements for rdiff-backup
    debug: searching for replacements for rdiff-backup
    debug: searching for replacements for recode
    debug: searching for replacements for recordproto
    debug: searching for replacements for redland
    debug: searching for replacements for redland-storage-virtuoso
    debug: searching for replacements for reflector
    debug: searching for replacements for reflector
    debug: searching for replacements for rekonq
    debug: searching for replacements for rekonq
    debug: searching for replacements for renderproto
    debug: searching for replacements for rsync
    debug: searching for replacements for rtmpdump
    debug: searching for replacements for samba
    debug: searching for replacements for sane
    debug: searching for replacements for schroedinger
    debug: searching for replacements for scrnsaverproto
    debug: searching for replacements for sdl
    debug: searching for replacements for sdl_image
    debug: searching for replacements for sdl_mixer
    debug: searching for replacements for sg3_utils
    debug: searching for replacements for shared-color-profiles
    debug: searching for replacements for shared-desktop-ontologies
    debug: searching for replacements for shared-mime-info
    debug: searching for replacements for sharutils
    debug: searching for replacements for shorewall
    debug: searching for replacements for shorewall
    debug: searching for replacements for shorewall-core
    debug: searching for replacements for shorewall-core
    debug: new version of 'shorewall-core' found (4.5.4.1-1 => 4.5.5.1-1)
    debug: adding package shorewall-core-4.5.5.1-1 to the transaction targets
    debug: searching for replacements for sip
    debug: searching for replacements for skanlite
    debug: searching for replacements for slang
    debug: searching for replacements for smbclient
    debug: new version of 'smbclient' found (3.6.5-1 => 3.6.5-3)
    debug: adding package smbclient-3.6.5-3 to the transaction targets
    debug: searching for replacements for smpeg
    debug: searching for replacements for soprano
    debug: searching for replacements for speex
    debug: searching for replacements for sqlite
    debug: new version of 'sqlite' found (3.7.12.1-1 => 3.7.13-1)
    debug: adding package sqlite-3.7.13-1 to the transaction targets
    debug: searching for replacements for squid
    debug: searching for replacements for startup-notification
    debug: searching for replacements for strigi
    debug: searching for replacements for system-config-printer-common
    debug: searching for replacements for taglib
    debug: searching for replacements for taglib-extras
    debug: searching for replacements for talloc
    debug: searching for replacements for tdb
    debug: searching for replacements for tidyhtml
    debug: searching for replacements for tmux
    debug: searching for replacements for tmux
    debug: searching for replacements for transmission-cli
    debug: searching for replacements for transmission-qt
    debug: searching for replacements for ttf-bitstream-vera
    debug: searching for replacements for ttf-charis
    debug: searching for replacements for ttf-charis
    debug: searching for replacements for ttf-charis
    debug: searching for replacements for ttf-charis
    debug: searching for replacements for ttf-charis
    debug: searching for replacements for ttf-dejavu
    debug: searching for replacements for ttf-freefont
    debug: searching for replacements for ttf-google-webfonts
    debug: searching for replacements for ttf-google-webfonts
    debug: searching for replacements for ttf-google-webfonts
    debug: searching for replacements for ttf-google-webfonts
    debug: searching for replacements for ttf-google-webfonts
    debug: searching for replacements for ttf-malayalam-fonts
    debug: searching for replacements for ttf-malayalam-fonts
    debug: searching for replacements for ttf-malayalam-fonts
    debug: searching for replacements for ttf-malayalam-fonts
    debug: searching for replacements for ttf-malayalam-fonts
    debug: searching for replacements for ttf-mintspirit
    debug: searching for replacements for ttf-mintspirit
    debug: searching for replacements for ttf-mintspirit
    debug: searching for replacements for ttf-mintspirit
    debug: searching for replacements for ttf-mintspirit
    debug: searching for replacements for ttf-ms-fonts
    debug: searching for replacements for ttf-ms-fonts
    debug: searching for replacements for ttf-ms-fonts
    debug: searching for replacements for ttf-ms-fonts
    debug: searching for replacements for ttf-ms-fonts
    debug: searching for replacements for udisks
    debug: searching for replacements for unace
    debug: searching for replacements for unace
    debug: searching for replacements for unixodbc
    debug: searching for replacements for unrar
    debug: searching for replacements for unzip
    debug: searching for replacements for upower
    debug: searching for replacements for usbmuxd
    debug: searching for replacements for v4l-utils
    debug: searching for replacements for videoproto
    debug: searching for replacements for virtuoso
    debug: searching for replacements for vlc
    debug: searching for replacements for wavpack
    debug: searching for replacements for webmin
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for webmin-plugin-shorewall
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for worldofgoo
    debug: searching for replacements for wvdial
    debug: searching for replacements for wvdial
    debug: searching for replacements for wvstreams
    debug: searching for replacements for wvstreams
    debug: searching for replacements for x264
    debug: searching for replacements for xcb-proto
    debug: searching for replacements for xcb-util
    debug: searching for replacements for xcb-util-keysyms
    debug: searching for replacements for xdg-utils
    debug: searching for replacements for xextproto
    debug: searching for replacements for xf86-input-evdev
    debug: searching for replacements for xf86-input-joystick
    debug: searching for replacements for xf86-input-synaptics
    debug: searching for replacements for xf86-video-intel
    debug: searching for replacements for xf86dgaproto
    debug: searching for replacements for xf86vidmodeproto
    debug: searching for replacements for xineramaproto
    debug: searching for replacements for xkeyboard-config
    debug: searching for replacements for xorg-bdftopcf
    debug: searching for replacements for xorg-font-util
    debug: searching for replacements for xorg-font-utils
    debug: searching for replacements for xorg-fonts-alias
    debug: searching for replacements for xorg-fonts-encodings
    debug: searching for replacements for xorg-fonts-misc
    debug: searching for replacements for xorg-iceauth
    debug: searching for replacements for xorg-mkfontdir
    debug: searching for replacements for xorg-mkfontscale
    debug: searching for replacements for xorg-server
    debug: searching for replacements for xorg-server-common
    debug: searching for replacements for xorg-server-utils
    debug: searching for replacements for xorg-sessreg
    debug: searching for replacements for xorg-setxkbmap
    debug: searching for replacements for xorg-xauth
    debug: searching for replacements for xorg-xbacklight
    debug: searching for replacements for xorg-xcmsdb
    debug: searching for replacements for xorg-xgamma
    debug: searching for replacements for xorg-xhost
    debug: searching for replacements for xorg-xinit
    debug: searching for replacements for xorg-xinput
    debug: searching for replacements for xorg-xkbcomp
    debug: searching for replacements for xorg-xmessage
    debug: searching for replacements for xorg-xmodmap
    debug: searching for replacements for xorg-xprop
    debug: searching for replacements for xorg-xrandr
    debug: searching for replacements for xorg-xrdb
    debug: searching for replacements for xorg-xrefresh
    debug: searching for replacements for xorg-xset
    debug: searching for replacements for xorg-xsetroot
    debug: searching for replacements for xplc
    debug: searching for replacements for xplc
    debug: searching for replacements for xproto
    debug: searching for replacements for xvidcore
    debug: searching for replacements for yajl
    debug: searching for replacements for yajl
    debug: searching for replacements for yaourt
    d

  • Getting Creative Zen player to connect through amarok [SOLVED]

    Edited 12-27 to include new info
    I'm trying to get myCreative Zen player to connect through amarok but am having some problems. After some looking around I figured out the libmtp in the extra repository doesn't support this player, but the newest versions do. I made a new package for libmtp-0.2.4 and installed it since there's been some tweaks that affect this player since 0.2.2 which is in testing. I also had to recompile amarok since one of libs changed a name with the new libmtp. The instructions from libmtp mentioned udev rules needed to be defined, which was done by copying a file from the source code into /etc/udev/rules.d. That file (minus the parts relating to other players, which is pretty much the same as here):
    # UDEV-style hotplug map for libmtp
    # Put this file in /etc/udev/rules.d
    ACTION!="add", GOTO="libmtp_rules_end"
    ATTR{dev}!="?*", GOTO="libmtp_rules_end"
    SUBSYSTEM=="usb", GOTO="libmtp_usb_rules"
    # The following thing will be deprecated when older kernels are phased out.
    SUBSYSTEM=="usb_device", GOTO="libmtp_usb_device_rules"
    GOTO="libmtp_rules_end"
    LABEL="libmtp_usb_rules"
    # Creative ZEN 8GB
    ATTR{idVendor}=="041e", ATTR{idProduct}=="4157", SYMLINK+="libmtp-%k", MODE="666"
    GOTO="libmtp_rules_end"
    LABEL="libmtp_usb_device_rules"
    # Creative ZEN 8GB
    ATTRS{idVendor}=="041e", ATTRS{idProduct}=="4157", SYMLINK+="libmtp-%k", MODE="666"
    GOTO="libmtp_rules_end"
    LABEL="libmtp_rules_end"
    When I plug the player to my usb port dmesg gives
    usb 5-1: new high speed USB device using ehci_hcd and address 8
    usb 5-1: configuration #1 chosen from 1 choice
    As my normal user amarok doesn't seem to recognize anything, and mtp-detect gives:
    libmtp version: 0.2.4
    Attempting to connect device(s)
    usb_claim_interface(): Operation not permitted
    LIBMTP PANIC: Unable to initialize device 1
    LIBMTP PANIC: configure_usb_devices() error code: 7 on line 1561
    Detect: There has been an error connecting. Exiting
    As root mtp-detect gives me a bunch of output that seems like it's doing what it should, also while it's spitting this out the screen on the player changes to say it's docked, which wasn't happening as the normal user. This makes me think it's some permissions issue. I did find things from google telling me that sometimes the user needs to be added to a certain group to use libmtp, though it seemed somewhat distro dependent. My main user is in the following groups: dbus hal network audio optical storage scanner camera users thinkpad
    However I don't think my problems are solely permission related, since even as root amarok won't recognize the player. I can use gnomad2 as root, which mostly works, though it crashes when I try and close gnomad after adding music and the player thinks it's still docked even after unplugging it. I had to use a pin to reset it just to turn it off. When I ran it from a console I got the following output at the end after the crash
    PTP: Closing session
    ERROR: Could not close session!
    inep: usb_get_endpoint_status(): Protocol error
    outep: usb_get_endpoint_status(): No such device
    usb_clear_halt() on IN endpoint: No such device
    usb_clear_halt() on OUT endpoint: No such device
    usb_clear_halt() on INTERRUPT endpoint: No such device
    The application 'gnomad2' lost its connection to the display :0.0;
    most likely the X server was shut down or you killed/destroyed
    the application.
    Any suggestions for where to go from here?
    Last edited by mcmillan (2008-01-11 05:38:14)

    I tried uploading onto my school website, but it doesn't seem accessable from there. However I just modified the version number from the regular Pkgbuild file from abs. What I have is:
    # $Id: PKGBUILD,v 1.8 2007/05/20 19:11:05 travis Exp $
    # Maintainer: damir <[email protected]>
    #Contributor: Kevin Edmonds <[email protected]>
    pkgname=libmtp
    pkgver=0.2.4
    pkgrel=1
    pkgdesc="library implementation of the Media Transfer Protocol"
    arch=("i686" "x86_64")
    url="http://libmtp.sourceforge.net"
    license=("LGPL")
    depends=("libusb")
    source=(http://easynews.dl.sourceforge.net/sourceforge/libmtp/$pkgname-$pkgver.tar.gz)
    options=('!libtool')
    #md5sums=('597b62d994d9491531b9e67190f6cfe7')
    build() {
    cd $startdir/src/$pkgname-$pkgver
    ./configure --prefix=/usr
    make || return 1
    make DESTDIR=$startdir/pkg install
    If you still have trouble building it let me know some other way than that I can send you the package.
    I've been meaning to post an update about my issues. I've figured out that when I connect the player it creates device nodes with the root group.  Some have permissions set to 666, which seems to fit with the udev rules I posted. But some of them are only rw for owner and group, others only have read permissions. As a test I tried changing the permissions by hand to 666, and I can use gnomad as my regular user, though it's buggy and seems to crash randomly (not just when I transfer files like I originally thought). I haven't been able to test what amarok does, since for some reason it stopped working this weekend and I haven't had a chance to figure out what happened. It seems there some problem with the udev rules, but I don't know much about how that works to figure out what's going wrong.

  • Root partition suddenly full while updating packages with Pacman

    Hello
    I'm not sure if this is a problem with Pacman, but my root partition seems to have become completely full while updating my system using pacman -Syu. Before updating anything, there seems to have been an update to a new version of Pacman (3.3.1-1) that needed to be installed before updating packages.
    In the middle of the updates, I got this error:
    error: error writing to file '/var/cache/pacman/pkg/openoffice-base-3.1.1-2-x86_64.pkg.tar.gz': No space left on device
    Also, I don't know if this is related, but I got a lot of 'not found' errors after that.
    The entire output from everything:
    ~ $ sudo pacman -Syu
    Password:
    :: Synchronizing package databases...
    core 34.6K 101.4K/s 00:00:00 [#####################] 100%
    extra 427.5K 394.3K/s 00:00:01 [#####################] 100%
    community 374.7K 362.2K/s 00:00:01 [#####################] 100%
    :: The following packages should be upgraded first :
    pacman
    :: Do you want to cancel the current operation
    :: and upgrade these packages now? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): pacman-3.3.1-1
    Total Download Size: 0.60 MB
    Total Installed Size: 2.10 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    pacman-3.3.1-1-x86_64 618.9K 455.6K/s 00:00:01 [#####################] 100%
    checking package integrity...
    (1/1) checking for file conflicts [#####################] 100%
    (1/1) upgrading pacman [#####################] 100%
    ~ $ sudo pacman -Syu
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    resolving dependencies...
    looking for inter-conflicts...
    Targets (42): taglib-extras-1.0.1-1 qt-4.5.3-2 liblastfm-0.3.0-4
    loudmouth-1.4.3-1 libmtp-0.3.7-1.1 amarok-2.2.0-1 apr-1.3.9-1
    db-4.8.24-1 apr-util-1.3.9-3 apache-2.2.13-3 bluez-4.54-1
    python-2.6.3-1 dbus-python-0.83.0-2.1 device-mapper-2.02.53-1
    eclipse-3.5.1-1 gpm-1.20.6-3 perl-5.10.1-3 groff-1.20.1-3
    vim-7.2.266-1 gvim-7.2.266-2 heimdal-1.2.1-7 inkscape-0.46-13
    iproute2-2.6.29-2 lib32-db-4.8.24-1 lib32-heimdal-1.2.1-7
    libical-0.44-1 libsasl-2.1.23-2 lm_sensors-3.1.1-2
    lvm2-2.02.53-1 nexuiz-data-2.5.2-1 nexuiz-2.5.2-1
    redland-1.0.9-4 openoffice-base-3.1.1-2 pam-1.0.4-2
    php-5.3.0-5 pstoedit-3.50-1 ruby-1.9.1_p243-2 soprano-2.3.1-1
    texlive-bin-2009.4-1 texlive-core-2009.15574-1 wget-1.12-1
    xchat-2.8.6-5
    Total Download Size: 1354.95 MB
    Total Installed Size: 2035.02 MB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from core...
    db-4.8.24-1-x86_64 4.7M 432.0K/s 00:00:11 [#####################] 100%
    device-mapper-2.02.... 479.0K 287.9K/s 00:00:02 [#####################] 100%
    gpm-1.20.6-3-x86_64 173.2K 243.7K/s 00:00:01 [#####################] 100%
    perl-5.10.1-3-x86_64 13.5M 412.5K/s 00:00:33 [#####################] 100%
    groff-1.20.1-3-x86_64 4.1M 365.7K/s 00:00:12 [#####################] 100%
    heimdal-1.2.1-7-x86_64 2.8M 368.5K/s 00:00:08 [#####################] 100%
    iproute2-2.6.29-2-x... 489.0K 303.8K/s 00:00:02 [#####################] 100%
    libsasl-2.1.23-2-x86_64 118.5K 252.4K/s 00:00:00 [#####################] 100%
    lvm2-2.02.53-1-x86_64 930.3K 327.3K/s 00:00:03 [#####################] 100%
    pam-1.0.4-2-x86_64 537.8K 289.5K/s 00:00:02 [#####################] 100%
    wget-1.12-1-x86_64 672.4K 308.0K/s 00:00:02 [#####################] 100%
    :: Retrieving packages from extra...
    qt-4.5.3-2-x86_64 26.9M 418.8K/s 00:01:06 [#####################] 100%
    liblastfm-0.3.0-4-x... 223.4K 252.0K/s 00:00:01 [#####################] 100%
    loudmouth-1.4.3-1-x... 80.8K 183.8K/s 00:00:00 [#####################] 100%
    libmtp-0.3.7-1.1-x86_64 439.4K 309.5K/s 00:00:01 [#####################] 100%
    amarok-2.2.0-1-x86_64 10.9M 486.0K/s 00:00:23 [#####################] 100%
    apr-1.3.9-1-x86_64 328.5K 332.4K/s 00:00:01 [#####################] 100%
    apr-util-1.3.9-3-x86_64 237.6K 322.3K/s 00:00:01 [#####################] 100%
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from archlinux.unixheads.org : Connection timed out
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'apache-2.2.13-3-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    bluez-4.54-1-x86_64 671.6K 361.7K/s 00:00:02 [#####################] 100%
    python-2.6.3-1-x86_64 15.2M 442.0K/s 00:00:35 [#####################] 100%
    dbus-python-0.83.0-... 177.4K 225.6K/s 00:00:01 [#####################] 100%
    eclipse-3.5.1-1-x86_64 162.0M 457.1K/s 00:06:03 [#####################] 100%
    vim-7.2.266-1-x86_64 8.6M 437.9K/s 00:00:20 [#####################] 100%
    gvim-7.2.266-2-x86_64 1115.4K 216.9K/s 00:00:05 [#####################] 100%
    inkscape-0.46-13-x86_64 18.4M 464.6K/s 00:00:41 [#####################] 100%
    libical-0.44-1-x86_64 281.3K 283.7K/s 00:00:01 [#####################] 100%
    lm_sensors-3.1.1-2-... 133.2K 228.9K/s 00:00:01 [#####################] 100%
    redland-1.0.9-4-x86_64 307.4K 275.7K/s 00:00:01 [#####################] 100%
    error: error writing to file '/var/cache/pacman/pkg/openoffice-base-3.1.1-2-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'openoffice-base-3.1.1-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'openoffice-base-3.1.1-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/php-5.3.0-5-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'php-5.3.0-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'php-5.3.0-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/pstoedit-3.50-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'pstoedit-3.50-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'pstoedit-3.50-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/ruby-1.9.1_p243-2-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'ruby-1.9.1_p243-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'ruby-1.9.1_p243-2-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/soprano-2.3.1-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'soprano-2.3.1-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'soprano-2.3.1-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/texlive-bin-2009.4-1-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'texlive-bin-2009.4-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'texlive-bin-2009.4-1-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/texlive-core-2009.15574-1-any.pkg.tar.gz': No space left on device
    error: failed retrieving file 'texlive-core-2009.15574-1-any.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'texlive-core-2009.15574-1-any.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    error: error writing to file '/var/cache/pacman/pkg/xchat-2.8.6-5-x86_64.pkg.tar.gz': No space left on device
    error: failed retrieving file 'xchat-2.8.6-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : Not Found
    error: failed retrieving file 'xchat-2.8.6-5-x86_64.pkg.tar.gz' from mirror.cs.vt.edu : File unavailable (e.g., file not found, no access)
    warning: failed to retrieve some files from extra
    error: failed to commit transaction (File unavailable (e.g., file not found, no access))
    Errors occurred, no packages were upgraded.
    ~ $
    Also, I haven't restarted my system yet. Should I try and see what happens?
    Thanks!

    This happened to me recently. I could not restart my laptop properly due to lack of space on my root partition.
    The error during boot was along the lines of:-
    Starting D-BUS system messagebus   - Failed
    Failed to start message bus: Failed to close "var/run/dbus.pid": No space left on drive
    Hardware Abstraction Layer - Failed
    everything else during the boot was as normal till I started to type in my username - but couldn't because the keyboard was inactive.
    I used a Wolvix live CD to investigate and found a QT4 file in the packman cache which was 6.9GB in size (compared to the normal 27mb size). Once that was deleted and the drive/partition error checked everything was back to normal. So before you reboot I would definitely recommend clearing any oversize file out of your packman cache, or just clearing the whole cache.
    Last edited by Nixie (2009-10-05 17:16:13)

  • Oh no. Can't uninstall or reinstall Akregator or Amarok. Not in DB.

    Well, this is probably a typical newbie screw-up here.  When I first installed Arch, I decided to try kdemod.  Even though it's way cooler than standard kde, I'm kind of getting tired of that look.  So...I followed the guidelines for uninstall from the kdemod faq that basically calls for grepping 'kdemod' and uninstalling everything individually via -Rd in pacman including qt-enhanced. 
    Ok, I didn't think this through very well at the time.  I really LOVE akregator and amarok...so I neglected to uninstall those pkgs with everything else.  Dumb.  Really dumb.  Now, I have the icons in my menu but OF COURSE they're broken.  Now the problem is that I can't 'pacman -Rd akregator' because I get:
    error: failed to add target 'akregator' (could not find or read package)
    I also cannot 'pacman -Sy akregator' because I get:
    error: 'akregator': not found in sync db
    I don't know what to do now.  I would like to go ahead and install those things again and use them b/c I don't care for rhythmbox or exaile (I can live with exaile tho) and I don't know of a good alternative to akregator yet.
    Can anyone suggest anything?  I'm in a pickle.  :-(
    Many tks,
    Carrie
    (5x5)

    Very well, I'll go into excruciating detail.
    "Bon Echo" was (is?) the codename for firefox 2.0 when it was in alpha form. That's why you see that name associated with Firefox on those pages you've found.  We're aware of this.
    Mozilla has very strict rules regarding their trademark of the "Firefox" name - any modifications to the code they provide may (afaik) no longer be called "Firefox" as they are no longer strictly the product called "Firefox".  We had a lengthy discussion about this issue as developers and decided that, since we apply a few patches to get our firefox package in proper working order, that we wouldn't go through the hassle we might get if we continue to brand the application firefox.
    So, in our build scripts, we disabled branding, which is something that (again afaik) mozilla added to the build process to make it easier for distros like ours to remove their trademarked "Firefox" name from the application.  By default, this removes "Firefox" and the well-known firefox logo from the application in all places, and replaces "Firefox" with "Bon Echo" - the codename they used through the alpha process - and the firefox logo with a generic globe-like icon.
    We currently package firefox version 2.0.0.11:
    $ pacman -Qi firefox
    Name : firefox
    Version : 2.0.0.11-1
    which is distinctly NOT the alpha versions. The name remains 'firefox' simply because we don't want to over-confuse users - we try to keep things as simple as possible, and telling people to install the "bonecho" package when they're looking for firefox isn't exactly simple.
    To my knowledge, this is something that other distros do as well, and something that has been discussed in this forum when we first made the switch from "Firefox" to "Bon Echo" as other users were curious.  We often recommend people search the forums before asking questions - a search for "Bon Echo" in the forum's search engine would have turned up at least a couple helpful results, in particular:
    http://bbs.archlinux.org/viewtopic.php?id=38629
    http://bbs.archlinux.org/viewtopic.php?id=34136
    http://bbs.archlinux.org/viewtopic.php?id=33622
    Hopefully that clears up any confusion you may have.
    You can trust me.  I try not to talk about things I don't know.

  • [SOLVED]Amarok 2.0.2 Build Fails..Help

    Hello all
    I am trying to compile amarok 2.0.2 but it fails at 8%. I tried to install it from aur and manually but the same error:
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/moc_shellimplgenerator.o                                                                       
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/moc_shellheadergenerator.o                                                                     
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/moc_setupgenerator.o                                                                           
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/generator.dir/qrc_generator.o                                                                               
    Linking CXX executable generator                                                           
    Please wait while source files are being generated...                                       
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    ** WARNING unknown directive '#warning' at /usr/include/QtCore/qglobal.h:313               
    WARNING(MetaJavaBuilder) :: enum 'QGradient::InterpolationMode' does not have a type entry or is not an enum                                                                           
    WARNING(MetaJavaBuilder) :: enum '__codecvt_result' does not have a type entry or is not an enum                                                                                       
    WARNING(MetaJavaBuilder) :: enum 'enum_2' does not have a type entry or is not an enum     
    Classes in typesystem: 506                                                                 
    Generated:                                                                                 
      - classes...: 487 (487)                                                                   
      - header....: 329 (329)                                                                   
      - impl......: 329 (329)                                                                   
      - modules...: 9 (9)                                                                       
      - pri.......: 9 (9)                                                                       
    Done, 3 warnings (844 known issues)
    [  4%] Built target generator     
    Scanning dependencies of target qtscript_core
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/main.o                                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QBasicTimer.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QBitArray.o                                   
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QBuffer.o                                     
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QByteArray.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QByteArrayMatcher.o                           
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QChildEvent.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QCoreApplication.o                           
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QCryptographicHash.o                         
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDataStream.o                                 
    [  4%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDir.o                                       
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDirIterator.o                               
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QDynamicPropertyChangeEvent.o                 
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QEvent.o                                     
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QEventLoop.o                                 
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFile.o                                       
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFileInfo.o                                   
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFileSystemWatcher.o                         
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFuture.o                                     
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureIterator.o                             
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizer.o                         
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizer.cpp:45: warning: 'QScriptValue qtscript_QFutureSynchronizer_prototype_call(QScriptContext*, QScriptEngine*)' defined but not used                                                                               
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizerVoid.o                     
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QFutureSynchronizerVoid.cpp:45: warning: 'QScriptValue qtscript_QFutureSynchronizerVoid_prototype_call(QScriptContext*, QScriptEngine*)' defined but not used                                                                       
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureVoid.o                                 
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureWatcher.o                             
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QFutureWatcherVoid.o                         
    [  5%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QIODevice.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QLibraryInfo.o                               
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QLibraryInfo.cpp:150: warning: 'QScriptValue qtscript_QLibraryInfo_prototype_call(QScriptContext*, QScriptEngine*)' defined but not used
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QLocale.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QMutex.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QObject.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QPoint.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QPointF.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QProcess.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QRect.o                                       
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QRectF.o                                     
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QRunnable.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSemaphore.o                                 
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSettings.o                                   
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSignalMapper.o                               
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSize.o                                       
    [  6%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSizeF.o                                     
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSocketNotifier.o                             
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QStringMatcher.o                             
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QSystemSemaphore.o                           
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTemporaryFile.o                             
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextBoundaryFinder.o                         
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.o                                 
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp: In function 'QScriptValue qtscript_construct_QTextCodec_ConversionFlag(QScriptContext*, QScriptEngine*)':               
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp:161: warning: comparison between signed and unsigned integer expressions                                                 
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp: In function 'QScriptValue qtscript_QTextCodec_ConversionFlags_toString(QScriptContext*, QScriptEngine*)':               
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QTextCodec.cpp:243: warning: comparison between signed and unsigned integer expressions                                                 
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextDecoder.o                               
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextEncoder.o                               
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTextStream.o                                 
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QThreadPool.o                                 
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTime.o                                       
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTimeLine.o                                   
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTimer.o                                     
    [  7%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTimerEvent.o                                 
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QTranslator.o                                 
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QUrl.o                                       
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QUuid.o                                       
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QWaitCondition.o                             
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamAttribute.o                         
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamAttributes.o                       
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamEntityDeclaration.o                 
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamEntityResolver.o                   
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamNamespaceDeclaration.o             
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamNotationDeclaration.o               
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamReader.o                           
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QXmlStreamWriter.o                           
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_Qt.o                                         
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp: In function 'QScriptValue qtscript_construct_Qt_KeyboardModifier(QScriptContext*, QScriptEngine*)':                             
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp:2113: warning: comparison between signed and unsigned integer expressions                                                       
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp: In function 'QScriptValue qtscript_Qt_KeyboardModifiers_toString(QScriptContext*, QScriptEngine*)':                             
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp:2195: warning: comparison between signed and unsigned integer expressions
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp: In function 'QScriptValue qtscript_construct_Qt_Modifier(QScriptContext*, QScriptEngine*)':
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_Qt.cpp:5854: warning: comparison between signed and unsigned integer expressions
    [  8%] Building CXX object src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QtConcurrent.o
    In file included from /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0.2/src/scriptengine/generator/generator/generated_cpp/com_trolltech_qt_core/qtscript_QtConcurrent.cpp:10:
    /usr/include/QtCore/qtconcurrentreducekernel.h: In member function 'bool QtConcurrent::ReduceKernel<ReduceFunctor, ReduceResultType, T>::shouldThrottle()':
    /usr/include/QtCore/qtconcurrentreducekernel.h:214: error: 'QThreadPool' has not been declared
    /usr/include/QtCore/qtconcurrentreducekernel.h: In member function 'bool QtConcurrent::ReduceKernel<ReduceFunctor, ReduceResultType, T>::shouldStartThread()':
    /usr/include/QtCore/qtconcurrentreducekernel.h:220: error: 'QThreadPool' has not been declared
    make[2]: *** [src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/generated_cpp/com_trolltech_qt_core/qtscript_QtConcurrent.o] Error 1
    make[1]: *** [src/scriptengine/generator/generator/CMakeFiles/qtscript_core.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
        Aborting...
    Error: Makepkg was unable to build amarok2 package.
    bash-3.2#
    P.S: I am a noob, so was not sure which part of code to put up here so I pasted the entire comments instead.
    Last edited by kapz (2009-05-09 19:37:58)

    You must edit /usr/include/QtCore/qtconcurrentreducekernel.h and add
    #include <QtCore/qthreadpool.h>
    along with the other "#include" lines at the beginning of the file.
    You will also need patches for the current libgpod version. Grab the updated PKGBUILD and sources here : http://jm.ambrosino.free.fr/archlinux/_ … s/amarok2/
    Or the i686 binary : http://jm.ambrosino.free.fr/archlinux/i … pkg.tar.gz

  • [SOLVED] Amarok 2 make fails

    Hi,
    I'm trying to install Amarok 2 via yaourt with this package: http://aur.archlinux.org/packages.php?ID=19633
    However, it fails with several errors.   I've done some searching, but I can't find any solution that's helpful to me/one I understand (still being new to Arch).
    Here is the output:
    ==> Building and installing package
    ==> Making package: amarok2 2.0-1 i686 (Fri Dec 12 18:54:45 EST 2008)
    ==> WARNING: Running makepkg as root...
    ==> Checking Runtime Dependencies...
    ==> Checking Buildtime Dependencies...
    ==> Retrieving Sources...
    -> Found amarok-2.0.tar.bz2 in build dir
    ==> Validating source files with md5sums...
    amarok-2.0.tar.bz2 ... Passed
    ==> Extracting Sources...
    -> bsdtar -x -f amarok-2.0.tar.bz2
    ==> Removing existing pkg/ directory...
    ==> Starting build()...
    -- Found Qt-Version 4.4.3 (using /usr/bin/qmake)
    -- Found X11: /usr/lib/libX11.so
    -- Found Threads: TRUE
    -- Found Automoc4: /usr/bin/automoc4
    -- Found Perl: /usr/bin/perl
    -- Found KDE 4.1 include dir: /usr/include
    -- Found KDE 4.1 library dir: /usr/lib
    -- Found KDE4 kconfig_compiler preprocessor: /usr/bin/kconfig_compiler
    -- Found automoc4: /usr/bin/automoc4
    Qt QTNSPLUGIN library not found.
    -- Found taglib: -L/usr/lib -ltag
    -- Taglib found: -L/usr/lib -ltag
    -- Found Strigi
    -- Found Strigi: /usr/lib/libstreams.so
    -- Strigi API is pre-screwup check, need 'char'
    -- Found MySQL: /usr/include/mysql, /usr/lib/libmysqlclient.so
    -- Found MySQL Embedded: /usr/include/mysql, /usr/lib/mysql/libmysqld.a
    -- Found GLIB2: /usr/lib/libglib-2.0.so
    -- KDE CMake PKGCONFIG macro indicates that libgpod-1.0 is not installed on your computer.
    -- Install the package which contains libgpod-1.0.pc if you want to support this feature.
    -- Could not find OPTIONAL package Ipod
    -- Found MP4V2: /usr/lib/libmp4v2.so
    -- Found MTP but version requirements not met
    -- Found CURL: /usr/lib/libcurl.so
    -- Libgcrypt found: /usr/lib/libgcrypt.so
    -- Found GObject libraries: /usr/lib/libgobject-2.0.so;/usr/lib/libgmodule-2.0.so;/usr/lib/libgthread-2.0.so;/usr/lib/libglib-2.0.so
    -- Found GObject includes : /usr/include/glib-2.0/gobject
    -- KDE CMake PKGCONFIG macro indicates that loudmouth-1.0 is not installed on your computer.
    -- Install the package which contains loudmouth-1.0.pc if you want to support this feature.
    -- Could not find OPTIONAL package Loudmouth
    -- Found Soprano: /usr/lib/libsoprano.so
    -- Found Soprano includes: /usr/include
    -- Found Soprano Index: /usr/lib/libsopranoindex.so
    -- Found Soprano Client: /usr/lib/libsopranoclient.so
    -- KDE CMake PKGCONFIG macro indicates that libgpod-1.0 is not installed on your computer.
    -- Install the package which contains libgpod-1.0.pc if you want to support this feature.
    -- Could not find OPTIONAL package Ipod
    -- The following external packages were located on your system.
    -- This installation will have the extra features provided by these packages.
    + kdelibs
    + taglib
    + strigi
    + mysqld
    + zlib
    + glib2
    + Gdk
    + libmp4v2
    + curl
    + libxml2
    + openssl or libgcrypt
    + gobject
    + soprano
    + nepomuk
    + Qt4 Glib support
    -- The following OPTIONAL packages could NOT be located on your system.
    -- Consider installing them to enable more features from this software.
    + libgpod, 0.6.0: Support Apple iPod audio devices <http://sourceforge.net/projects/gtkpod/>
    + libmtp, 0.3.0: Enable Support for portable media devices that use the media transfer protocol <http://libmtp.sourceforge.net/>
    + loudmouth: Loudmouth is the communication backend needed by mp3tunes for synching. <http://www.loudmouth-project.org>
    -- Configuring done
    CMake Warning at /usr/share/apps/cmake/modules/KDE4Macros.cmake:560 (add_library):
    Cannot generate a safe linker search path for target
    amarok_collection-sqlcollection because files in some directories may
    conflict with libraries in implicit directories:
    link library [libmysqlclient.so] in /usr/lib may be hidden by files in:
    /usr/lib/mysql
    Some of these libraries may not be found correctly.
    Call Stack (most recent call first):
    src/collection/sqlcollection/CMakeLists.txt:50 (kde4_add_plugin)
    -- Generating done
    -- Build files have been written to: /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0
    [ 4%] Built target generator
    [ 11%] Built target qtscript_core
    [ 49%] Built target qtscript_gui
    [ 53%] Built target qtscript_network
    [ 54%] Built target qtscript_sql
    [ 54%] Built target qtscript_uitools
    [ 57%] Built target qtscript_xml
    [ 59%] Built target amarok_taglib
    [ 64%] Built target amarokplasma
    [ 64%] Built target amarokpud
    [ 83%] Built target amaroklib
    [ 83%] Built target amarok
    [ 84%] Built target amarok_afttagger
    [ 84%] Built target amarok_collection-daapcollection
    [ 84%] Building CXX object src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/amarok_collection-mtpcollection_automoc.o
    In file included from /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/moc_MtpHandler.cpp:10,
    from /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/amarok_collection-mtpcollection_automoc.cpp:4:
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:68: error: 'LIBMTP_raw_device_t' has not been declared
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:160: error: 'LIBMTP_raw_device_t' has not been declared
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:171: error: ISO C++ forbids declaration of 'LIBMTP_raw_device_t' with no type
    /tmp/yaourt-tmp-root/aur-amarok2/amarok2/src/amarok-2.0/src/collection/mtpcollection/handler/MtpHandler.h:171: error: expected ';' before '*' token
    make[2]: *** [src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/amarok_collection-mtpcollection_automoc.o] Error 1
    make[1]: *** [src/collection/mtpcollection/CMakeFiles/amarok_collection-mtpcollection.dir/all] Error 2
    make: *** [all] Error 2
    ==> ERROR: Build Failed.
    Aborting...
    Error: Makepkg was unable to build amarok2 package.
    Does anyone know how I can fix this?   I suppose waiting for Amarok 2 to arrive in the main repos is the best solution, but I don't know when that will happen.
    Last edited by vertimyst (2008-12-13 01:41:20)

    FrozenFox wrote:
    EDIT: Curse you, slammer. Beat me to it
    The "mtpcollection" in the error line and this earlier note in the program:
    " Found MTP but version requirements not met  "
    Give me the impression that it may be because of an outdated libmtp. Try pacman -Rd libmtp and install libmtp-devel from AUR, perhaps?
    I didn't see that bit, actually.   If I had maybe I would have thought of the solution myself.
    But thanks guys, it worked. ^_^
    Any idea as to when we'll get a package in the repos?

  • [Solved]Amarok don't play files with non latin1 characters in filename

    I know that this problem is not in amarok, i patched phonon from aur http://aur.archlinux.org/packages.php?ID=27465
    /src/import/gstreamer/mediaobject.cpp
    at line 365 in bool MediaObject::createPipefromURL(const QUrl &url)
    QByteArray encoded_cstr_url = url.toEncoded();
    m_datasource = gst_element_make_from_uri(GST_URI_SRC, encoded_cstr_url.constData(), (const char*)NULL);
    //for utf8 locale replace toLocal8Bit to toAscii
    //toLocalFile fails for files with "?" in filenames. toLocalFile("a?c.s") => "a"
    + if ( url.toString().indexOf("file://") == 0 )
    + g_object_set(m_datasource, "location", url.toString().replace(0,7,"").toLocal8Bit().constData(), NULL);
    if (!m_datasource)
    return false;
    and now amarok plays ALL files
    Last edited by klama (2009-08-03 12:23:16)

    which phonon backend are you using? try with a different one

  • [Amarok] Problem + pacman thing

    Step by step
    [root@localhost custompkg]# pacman -R amarok-base
    error: /var/lib/pacman/local/amarok-base-1.4.5-4/files: No such file or directory
    error: could not find amarok-base in database
    [root@localhost custompkg]# pacman -S amarok-base
    :: amarok-base-1.4.5-4: is up to date. Upgrade anyway? [Y/n]
    Targets: amarok-base-1.4.5-4
    Total Package Size: 17.6 MB
    Proceed with upgrade? [Y/n]
    checking package integrity... done.
    loading package data... done.
    error: /var/lib/pacman/local/amarok-base-1.4.5-4/files: No such file or directory
    upgrading amarok-base... done.
    ==> amarok: advanced feature dependences:
    visualisations: 'sdl' + 'libvisual' + 'libvisual-plugins' >=0.4.0
    advanced scripting: 'python'
    collection database:
    \- MySQL: 'mysql'
    \- PostgreSQL: 'postgresql'
    media device support:
    \- iPod: 'libgpod'
    \- iRiver: 'libifp'
    \- Creative Nomad, Dell DJ and others: 'libnjb' >=2.0
    \- devices supporting Microsoft MTP: 'libmtp' >=0.1.0
    [root@localhost custompkg]# amarok
    Amarok: [Loader] Starting amarokapp..
    Amarok: [Loader] Don't run gdb, valgrind, etc. against this binary! Use amarokapp.
    kbuildsycoca running...
    Reusing existing ksycoca
    kio (KService*): WARNING: Invalid Service : basket_config_features.desktop
    kio (KService*): WARNING: Invalid Service : basket_config_notes.desktop
    kio (KService*): WARNING: Invalid Service : /opt/kde/share/applications/kde/kmyfirewall.desktop
    kio (KSycoca): ERROR: No database available!
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/ark.desktop' specifies undefined mimetype/servicetype 'application/x-tbz2'
    kbuildsycoca: WARNING: 'ark_part.desktop' specifies undefined mimetype/servicetype 'application/x-tbz2'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/amarok.desktop' specifies undefined mimetype/servicetype 'application/asx'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/amarok.desktop' specifies undefined mimetype/servicetype 'audio/midi'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/amarok.desktop' specifies undefined mimetype/servicetype 'audio/x-aac'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/amarok.desktop' specifies undefined mimetype/servicetype 'audio/x-m4a'
    kbuildsycoca: WARNING: 'kmfipteditorpart.desktop' specifies undefined mimetype/servicetype 'text/english'
    kbuildsycoca: WARNING: 'kmfipteditorpart.desktop' specifies undefined mimetype/servicetype 'text/x-c'
    kbuildsycoca: WARNING: 'kmfipteditorpart.desktop' specifies undefined mimetype/servicetype 'text/x-c++'
    kbuildsycoca: WARNING: 'kfile_ooo.desktop' specifies undefined mimetype/servicetype 'application/vnd.sun.xml.writer.global'
    kbuildsycoca: WARNING: 'kfile_ooo.desktop' specifies undefined mimetype/servicetype 'application/vnd.sun.xml.writer.math'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/bmp'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/g3fax'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-compressed-xcf'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-fits'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-gray'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-png'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-portable-anymap'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-portable-graymap'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-psd'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-sgi'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-sun-raster'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-tga'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xbitmap'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xcf'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xpixmap'
    kbuildsycoca: WARNING: '/usr/share/applications/gimp.desktop' specifies undefined mimetype/servicetype 'image/x-xwindowdump'
    kbuildsycoca: WARNING: 'karm_part.desktop' specifies undefined mimetype/servicetype 'text/english'
    kbuildsycoca: WARNING: 'karm_part.desktop' specifies undefined mimetype/servicetype 'text/x-c'
    kbuildsycoca: WARNING: 'karm_part.desktop' specifies undefined mimetype/servicetype 'text/x-c++'
    kbuildsycoca: WARNING: 'knotify.desktop' specifies undefined mimetype/servicetype 'KNotify'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'text/x-javascript'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'text/x-python'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'text/x-perl'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'text/x-php'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'application/x-cgi'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'text/mathml'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'text/x-dtd'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish.desktop' specifies undefined mimetype/servicetype 'text/x-sql'
    kbuildsycoca: WARNING: '/opt/gnome/share/applications/bluefish-project.desktop' specifies undefined mimetype/servicetype 'application/bluefish-project'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/english'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/mrml'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-c'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-objc'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-lyx'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-perl'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-php'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-php-source'
    kbuildsycoca: WARNING: '/usr/share/applications/gvim.desktop' specifies undefined mimetype/servicetype 'text/x-python'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'KaffeinePart'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'audio/x-ogg'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-realaudio-plugin'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/msvideo'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/x-avi'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/x-fli'
    kbuildsycoca: WARNING: 'xine_part.desktop' specifies undefined mimetype/servicetype 'video/x-ms-asf-plugin'
    kbuildsycoca: WARNING: 'klinkstatus_part.desktop' specifies undefined mimetype/servicetype 'text/english'
    kbuildsycoca: WARNING: 'klinkstatus_part.desktop' specifies undefined mimetype/servicetype 'text/x-c'
    kbuildsycoca: WARNING: 'klinkstatus_part.desktop' specifies undefined mimetype/servicetype 'text/x-c++'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/Thunar-folder-handler.desktop' specifies undefined mimetype/servicetype 'x-directory/gnome-default-handler'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/Thunar-folder-handler.desktop' specifies undefined mimetype/servicetype 'x-directory/normal'
    kbuildsycoca: WARNING: 'basket_part.desktop' specifies undefined mimetype/servicetype 'application/x-basket'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-ms-dos-executable'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-msdownload'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/exe'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-exe'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/dos-exe'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'vms/exe'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-winexe'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/msdos-windows'
    kbuildsycoca: WARNING: '/usr/share/applications/wine.desktop' specifies undefined mimetype/servicetype 'application/x-zip-compressed'
    kbuildsycoca: WARNING: 'katepart.desktop' specifies undefined mimetype/servicetype 'text/x-fortran'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/squeeze.desktop' specifies undefined mimetype/servicetype 'application/x-bzip-compressed-tar'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/squeeze.desktop' specifies undefined mimetype/servicetype 'application/x-bzip2-compressed-tar'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/squeeze.desktop' specifies undefined mimetype/servicetype 'application/x-compressed-tar'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/squeeze.desktop' specifies undefined mimetype/servicetype 'application/x-zip-compressed'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/squeeze.desktop' specifies undefined mimetype/servicetype 'application/zip'
    kbuildsycoca: WARNING: 'kcertpart.desktop' specifies undefined mimetype/servicetype 'application/binary-certificate'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'audio/x-ogg'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-realaudio-plugin'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'video/msvideo'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'video/x-avi'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kaffeine.desktop' specifies undefined mimetype/servicetype 'video/x-fli'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kmid.desktop' specifies undefined mimetype/servicetype 'audio/midi'
    kbuildsycoca: WARNING: 'kchartpart.desktop' specifies undefined mimetype/servicetype 'application/vnd.oasis.opendocument.chart-template'
    kbuildsycoca: WARNING: 'gvimagepart.desktop' specifies undefined mimetype/servicetype 'image/x-krl'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'application/arj'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'application/x-bzip-compressed-tar'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'application/x-zip-compressed'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'application/zip'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'multipart/x-zip'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'application/x-7z-compressed'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'application/x-compressed-tar'
    kbuildsycoca: WARNING: '/opt/xfce4/share/applications/xarchiver.desktop' specifies undefined mimetype/servicetype 'application/x-bzip2-compressed-tar'
    kbuildsycoca: WARNING: 'kformulapart.desktop' specifies undefined mimetype/servicetype 'application/vnd.oasis.opendocument.formula-template'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/ktorrent.desktop' specifies undefined mimetype/servicetype 'application/x-torrent'
    kbuildsycoca: WARNING: '/usr/share/applications/base.desktop' specifies undefined mimetype/servicetype 'application/vnd.oasis.opendocument.database'
    kbuildsycoca: WARNING: '/usr/share/applications/writer.desktop' specifies undefined mimetype/servicetype 'application/vnd.oasis.opendocument.text-web'
    kbuildsycoca: WARNING: '/usr/share/applications/writer.desktop' specifies undefined mimetype/servicetype 'application/vnd.oasis.opendocument.text-master'
    kbuildsycoca: WARNING: '/usr/share/applications/writer.desktop' specifies undefined mimetype/servicetype 'application/vnd.sun.xml.writer.global'
    kbuildsycoca: WARNING: '/usr/share/applications/writer.desktop' specifies undefined mimetype/servicetype 'application/x-doc'
    kbuildsycoca: WARNING: '/usr/share/applications/writer.desktop' specifies undefined mimetype/servicetype 'application/rtf'
    kbuildsycoca: WARNING: '/usr/share/applications/writer.desktop' specifies undefined mimetype/servicetype 'application/vnd.wordperfect'
    kbuildsycoca: WARNING: 'kxsldbg_part.desktop' specifies undefined mimetype/servicetype 'text/english'
    kbuildsycoca: WARNING: 'kxsldbg_part.desktop' specifies undefined mimetype/servicetype 'text/x-c'
    kbuildsycoca: WARNING: 'kxsldbg_part.desktop' specifies undefined mimetype/servicetype 'text/x-c++'
    kbuildsycoca: WARNING: '/usr/share/applications/math.desktop' specifies undefined mimetype/servicetype 'application/vnd.sun.xml.math'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'application/x-navi-animation'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/bmp'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-MS-bmp'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-icon'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-portable-anymap'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-portable-graymap'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-cmu-raster'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-sun-raster'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-tga'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/vnd.wap.wbmp'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-xbitmap'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-xpixmap'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/svg'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/x-png'
    kbuildsycoca: WARNING: '/usr/share/applications/gqview.desktop' specifies undefined mimetype/servicetype 'image/xpm'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/sdp'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/x-smil'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/streamingmedia'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/x-streamingmedia'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'application/vnd.rn-realmedia-vbr'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-aac'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/m4a'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-m4a'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mp1'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-mp1'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mp2'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mp3'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-mpeg'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/mpg'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-mpg'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/rn-mpeg'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/scpls'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/wav'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-pn-windows-pcm'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-realaudio'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'audio/x-pls'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-mpeg'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-mpeg2'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/msvideo'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-ms-afs'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wmx'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-ms-wvxvideo'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-avi'
    kbuildsycoca: WARNING: '/usr/share/applications/mplayer.desktop' specifies undefined mimetype/servicetype 'video/x-fli'
    kbuildsycoca: WARNING: '/opt/kde/share/applications/kde/kexi.desktop' specifies undefined mimetype/servicetype 'application/x-kexiproject-sqlite'
    kdecore (KAction): WARNING: KAction::insertKAccel( kaccel = 0x814e640 ): KAccel object already contains an action name "play_pause"
    QLayout "unnamed" added to QVBox "unnamed", which already has a layout
    kdecore (KAction): WARNING: KAction::insertKAccel( kaccel = 0x814e640 ): KAccel object already contains an action name "play_pause"
    QLayout: Adding KToolBar/mainToolBar (child of QVBox/unnamed) to layout for PlaylistWindow/PlaylistWindow
    [root@localhost custompkg]# pacman -R amarok-base
    error: could not find amarok-base in database
    [root@localhost custompkg]#
    I can`t remove Amarok, but it`s playing now.  :-o
    Besides Amarok works unstable, sometimes 1min, 30min, 10h and dissapear. His database is SQLite.
    I think that some screwed (interrupted) pacman update (-Syu) did all this things.
    Caused that my Amarok is more unstable than ever. Earlier he had only 1 disappearance/day (always working 24/24/7). Now even 1st song can shut him down. It`s random, without console errors 1 sec before his disappearance.
    What do you think about it?
    ^^
    P.S.
    I`ve noticed that now he`s playing 40min already (lol), but it`s deceptive. :-/
    Last edited by Kardell (2007-03-26 21:29:45)

    df -h give me this, so yes I do have enough space.
    Filesystem Size Used Avail Use% Mounted on
    /dev/sdd1 14G 1.8G 12G 14% /
    none 1.2G 0 1.2G 0% /dev/shm
    /dev/sdd2 19G 1.6G 16G 9% /usr
    /dev/sdd3 73G 18G 55G 25% /home
    /dev/sdd5 4.6G 138M 4.5G 3% /Stepmania
    /dev/sda1 14G 5.0G 8.9G 36% /mnt/virtualbox
    /dev/sdb1 14G 2.3G 12G 17% /mnt/virtualbox/driveD
    /dev/sdc1 7.8G 146M 7.7G 2% /mnt/virtualbox/driveE

Maybe you are looking for