PyQt + qtdbus + MPRIS2 GetTracksMetadata

Hi all,
I'm writing an MPRIS2 module for one of my projects using PyQt and qtdbus.
Everything were working fine so far, but I suddenly came across a little strange problem with GetTracksMetadata method. The docs tell me that it's result type is "aa{sv}" which translates to Qt's "QList<QVariantMap>".
So I coded it as usual:
class MPRIS2Tracklist(QtDBus.QDBusAbstractAdaptor):
@pyqtSlot("QStringList", result="QList<QVariantMap>")
def GetTracksMetadata(self, as):
pass # irrevelant
Yet not luck this time, because trying to run it I got this message:
C++ type 'QList<QVariantMap>' is not supported as a pyqtSlot result type
Strange .
I then tried to define it as "general" slot or even no slot at all and then define Introspection manually (using Q_CLASSINFO), but still nothing.
Anyone knows of a way around it or is it just undoable?

Similar Messages

  • PyQt: C++ basic literacy to understand Qt docs

    Hello,
       I am trying to learn PyQt. I can manage fine with my python and basic Qt, but what's bugging me is that there doesn't seem to be so much written about pyqt. I've gone throuth all the tutorials pointed to in pyqt's site, and other places such as learningpython.com. I've read the one up to date book on pyqt4 that I know of: Rapid Gui Programming with Python and Qt by Mark Summerfield.
       My problem is that PyQt's reference seems to be only a basic class reference, while the Qt docs are way more complete, and contain interesting explanations which I have not found in PyQt's docs, and there's also the qt demos and examples. I am spending a lot of time in the Qt docs lately, trying to figure out which Qt class to use, and to understand its basics. But I don't know any c++, so I'm guessing through the workings of the c++ snippets I see. Sometimes this is good enough to point me to the class which I'm looking for, but I can hardly understand anything in any detail when I cannot understand the code.
       So I've been thinking I should try to learn some C++ to be able to understand the docs fully if I want to learn the toolkit in any depth. I love python, I find it amazingly productive and I have a kind of crush on it's syntax. So learning c++ would be only a kind of side project, if it may... The questions I'd like to ask you are:
    * Is it possible to gain such thing as a basic knowledge of c++, good enough to understand this kind of docs, without having to go the whole way into c++?
    * Do you think it might be worthwile to spend such a time learning a language which from the outside seems a very different beast from the one I use, and which I'm almost certainly bound not to use? (Well, who knows what the future might hold...)
    * Could you give me any tips about where to start? Do you know about anything online broadly  analogous to www.diveintopython.org, for example?
       Thanks in advance for your time!

    fede wrote:
    I've programmed a bit in pascal back around 1991-93, and a little bit of C a few years later. I think I am quite comfortable with OOP, at least as it's implemented in python - don't know if that involves any great simplifications... From c I remember there were lines with 'side effects' and 3 or 4 things happening at the same time, the concept of pointers, call by reference and by value, though I'm not at all familiar with what this is useful for.
    It is quite easy to follow Qt's examples as far as they are calling methods and setting properties, and that has been very useful to me so far. But I wonder if by studying a little bit I could understand code such as the first two lines of this, for example, wehre I've got no idea of what's going on:
    void AddressWidget::addEntry(QString name, QString address)
    QList< QPair<QString, QString> >list = table->getList();
    QPair<QString, QString> pair(name, address);
    if (!list.contains(pair)) {
    table->insertRows(0, 1, QModelIndex());
    QModelIndex index = table->index(0, 0, QModelIndex());
    table->setData(index, name, Qt::EditRole);
    index = table->index(0, 1, QModelIndex());
    table->setData(index, address, Qt::EditRole);
    removeTab(indexOf(newAddressTab));
    } else {
    QMessageBox::information(this, tr("Duplicate Name"),
    tr("The name \"%1\" already exists.").arg(name));
    I don't think it would hurt to read an overview of C++ then. I started with python then began using c++ because its my school's language of choice. In learning the under workings of c++ I have in the process learned things I can apply with python.
    As for those first two lines...
    In c++ the syntax
    name<datatype>
    indicates the use of a template which can be a class or function. A template enables you to write a function or class that can work any data type. In the case above you have a Qt list containing Qt pairs which contain 2 QStrings. You could for instance make a QList of a class that you made like this:
    QList<myClass> listOfMyClasses;
    In python passing the data type to a class or function isn't needed since it is dynamic typed.
    Templates are one tool to eliminate having to write multiple copies of a class or function to work with different datatypes. If I want to write a function that will sum two numbers, instead of writing one function for integers, one for doubles, one for floats...etc I can make a template which can handle all of those data types. (this isn't a very practical use of templates but it is simple one for the sake of discussion) I would call this template function like this:
    sum<double>(2.1, 3.2)
    //or
    sum<int>(2, 3)

  • Python2-pyqt depends on python3

    The package python2-pyqt depends on pyqt, which itself requires python3. Is it a normal situation, or should I fill in a bug report ?
    Tondu

    I changed PKGBUILDs of python2-pyqt and python2-sip when noticed that it requires python3, because there are no applications that uses python3 in my system yet. I will share them here, but use it on your own risk (if you want to, of course), because when an application that uses python3 will appear in your system - it will fail:
    pkgbase=pyqt
    pkgname='python2-pyqt-pure'
    pkgver=4.8.4
    pkgrel=1
    arch=('i686' 'x86_64')
    url="http://riverbankcomputing.co.uk/software/pyqt/intro"
    license=('GPL')
    pkgdesc="PyQt: A set of Python2 bindings for the Qt toolkit"
    depends=('python2-sip' 'dbus-python')
    makedepends=('qt' 'dbus-python' 'python2-sip' 'phonon'
    'python-opengl' 'qt-assistant-compat')
    optdepends=('phonon: enable audio and video in PyQt applications'
    'python-opengl: enable OpenGL 3D graphics in PyQt applications'
    'qscintilla: QScintilla API'
    'qt-assistant-compat: add PyQt online help in Qt Assistant')
    replaces=('python2-qt')
    provides=('python2-qt' 'pyqt' 'python2-pyqt')
    conflicts=('python2-pyqt')
    source=("http://riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-x11-gpl-${pkgver}.tar.gz")
    md5sums=('97c5dc1042feb5b3fe20baabad055af1')
    build() {
    cd "${srcdir}"
    cd "${srcdir}/PyQt-x11-gpl-${pkgver}"
    python2 configure.py \
    --confirm-license \
    -v /usr/share/sip \
    --qsci-api
    # Thanks Gerardo for the rpath fix
    find -name 'Makefile' | xargs sed -i 's|-Wl,-rpath,/usr/lib||g;s|-Wl,-rpath,.* ||g'
    make
    package() {
    cd "${srcdir}/PyQt-x11-gpl-${pkgver}"
    # INSTALL_ROOT is needed for the QtDesigner module, the other Makefiles use DESTDIR
    make DESTDIR="${pkgdir}" INSTALL_ROOT="${pkgdir}" instal
    pkgbase='sip'
    pkgname='python2-sip-pure'
    pkgver=4.12.2
    pkgdesc="A tool that makes it easy to create Python2 bindings for C and C++ libraries"
    pkgrel=1
    arch=('i686' 'x86_64')
    depends=('python2')
    makedepends=('python2')
    provides=('sip' 'python2-sip' 'python-sip')
    conflicts=('python2-sip')
    url="http://www.riverbankcomputing.com/software/sip/"
    license=('custom:"sip"')
    source=("http://www.riverbankcomputing.com/static/Downloads/sip4/${pkgbase}-${pkgver}.tar.gz")
    md5sums=('9df80f88e0e4022cdd8a8891c6c38048')
    build() {
    cd "${srcdir}"
    cd "${srcdir}/${pkgbase}-${pkgver}"
    python2 configure.py CFLAGS="${CFLAGS}" LFLAGS="${LDFLAGS}"
    make
    package() {
    cd "${srcdir}/${pkgbase}-${pkgver}"
    make DESTDIR="${pkgdir}" install
    install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"

  • Python 2.4, PyQt on OS X 10.4

    I've recently purchased a g5 and am trying to
    recreate my typical freebsd and linux development
    environment on OS X. This is proving extremely
    difficult in one aera in particular: python.
    The version of python that ships with 10.4.4 is
    woefully out of date. I've tried to upgrade it,
    and now have versions of 2.4 from Darwin Ports,
    Active State, and MacPython installed. MacPython
    looks to be the most OS X-like in its installation,
    so I'll probably stick with that one.
    My recent work has used a lot of Qt, and as such
    I've been using the Eric3 IDE with Qt4. I've
    downloaded Eric3 and PyQt from SF:
    http://sourceforge.net/projects/pyqt-mac/
    ...and they are built for 2.3.
    I'm about to rebuild PyQT from scratch, and
    patch Eric3 to run using /usr/bin/env python2.4.
    My questions are:
    1. Is it always this hard?
    [Corollary: Am I going to have this much pain
    when I start working on Ruby projects?]
    2. Does anyone provide a sane python 2.4 with full
    package support, including MySQL-PostgreSQL-ODBC,
    PyQT, and so forth?
    3. Is XCode any good as a Python IDE, other than for
    editting files? I'm basically giving up on Eric3;
    the preferences don't even save on the POS OS X
    version. Might go Komodo.
    I've googled quite a bit and found a lot of useless
    traffic on lists like PythonMac-SIG, but there
    doesn't seem to be a whole lot of support for
    [reasonably modern] python on OS X.

    Welcome to the headache of porting to OS X...
    Heheh, thanks ... it's certainly easier to have a
    sense of humor about this after a night's sleep
    file(1) shows the following:
    For the Framework...
    /Developer/qt4/lib/QtCore.framework/Versions/4.0/QtCore: Mach-O dynamically linked shared library ppc
    For the 'regular' Qt dirtree:
    /Developer/qt4/lib/libQtCore.4.1.0.dylib: Mach-O dynamically linked shared library ppc
    Might be just the file extension that confuses ld [since
    the compile failed because of "-lQtCore"]. I had made a
    symlink with a .so extension; should have poked around
    and found about dylib first.
    If it really is just a matter of symlinking with a .dylib
    extension, this could be fixed with a shell script. Have
    to play with it.
    On the plus side, the dual build of Qt worked, painful
    as it was. PyQt built and installed fine, now I have
    both in proper framework structure [hehe sounds a bit
    redundant there]. Still had to symlink all the
    frameworks from the qt4 dir into /Library/Frameworks.
    Tried to rebuild QScintilla and Eric3 afterwards. Looks
    like they both require Qt3 to build still. Supposedly the
    snapshot of Eric3 supports Qt4 for building GUIs; I',
    going to try to build it for python 2.4 using Qt3 to
    build Qt4 libraries.
    Should be a piece of cake, hehe.

  • Request update PyQT to 4.4.4

    I don't know whether this is the correct place to request update of PyQT to 4.4.4.
    Tried to build my own PyQT due to synce-kpm issue.
    Looks like the download URL in PKGBUILD is outdated. PyQT has been upgraded to 4.4.4.
    To the developer/TU who is building this package. Please install dbus-python before building PyQT 4.4.4 so that
    /usr/lib/python2.6/site-packages/dbus/mainloop/qt.so is generated so that synce-kpm can work correctly.
    The makefile generate some error listed below.
    install: cannot create regular file `/usr/lib/qt/plugins/designer/libpythonplugin.so': Permission denied
    make[1]: [install_target] Error 1 (ignored)
    strip --strip-unneeded "/usr/lib/qt/plugins/designer/libpythonplugin.so"
    strip: '/usr/lib/qt/plugins/designer/libpythonplugin.so': No such file
    make[1]: [install_target] Error 1 (ignored)
    cp -f -r /home/xxxx/WIP/pyqt/src/PyQt-x11-gpl-4.4.4/designer/python /usr/lib/qt/plugins/designer/
    cp: cannot create directory `/usr/lib/qt/plugins/designer/python': Permission denied
    I don't know whether the error has any impact on my pc.

    I'm pretty sure there is a bug report about the dbus-python thing and the package is flagged out of date so it should get updated soon.  If not, a polite email to the maintainer might help you.
    The make errors look like there files are ingnoring the install prefix for some reason.

  • Any chance for PyQt with phonon?

    I am developing a PyQt app (uRSSus, it's in AUR, too ;-) and would like to use phonon in it. Is there a reason why phonon is disabled in Qt and PyQt?

    mindfall wrote:IIRC rationale was that Phonon in Qt 4.4 was still too buggy while KDE4 Phonon worked better. And since Phonon is basically a KDE tech imported into Qt, the Qt version might always be a bit behind?
    KDE's Phonon is an extra package, with no dependencies on KDE.. so maybe one could use KDE's Phonon with bindings from PyKDE4 even for plain PyQt apps?
    But kdebindings-python doesn't seem to include phonon either.

  • SimpleShortcuts - a simple application launcher [PyQt]

    Hi.
    I learned programming as my hobbie and this is my first serious application.
    I don't like application launchers like Gnome-do, so I wrote this little Python application for easily running my favourite applications. I use a mouse gesture for running the script, it is really useful for me now.
    It works on python3 and python2 with pyqt.
    Here is a few screenshots (sorry for ugly Oxygen widget-set):
    I hope you like it .
    Project page
    https://gitorious.org/simpleshortcuts
    Clone url:
    [email protected]:simpleshortcuts/simpleshortcuts.git
    Last edited by utdemir (2011-08-07 17:32:39)

    And just how can I try it out? Are you just teasing people? :-) Is it in the AUR or your unofficial repo?
    Edit: Ah, Now I see you added the links to your git repo.
    Last edited by karol (2011-08-07 17:32:37)

  • Upgrading python2-pyqt breaks ipython qtconsole

    Hi,
    I upgraded my machine today.  Among the updates were pyqt and python2-pyqt.  However, after this update, ipython2 qtconsole no longer starts.  Downgrading just python2-pyqt fixes the problem.  There must be something wrong with the way the new python2-pyqt package has been built.
    [2013-03-07 10:17] starting full system upgrade
    [2013-03-07 10:17] upgraded sip (4.14.3-1 -> 4.14.4-1)
    [2013-03-07 10:17] upgraded python-sip (4.14.3-1 -> 4.14.4-1)
    [2013-03-07 10:17] upgraded pyqt-common (4.9.6-2 -> 4.10-1)
    [2013-03-07 10:17] upgraded pyqt (4.9.6-2 -> 4.10-1)
    [2013-03-07 10:17] upgraded python2-sip (4.14.3-1 -> 4.14.4-1)
    [2013-03-07 10:17] upgraded python2-pyqt (4.9.6-2 -> 4.10-1)
    [2013-03-07 10:17] upgraded qscintilla (2.7-2 -> 2.7.1-1)
    Traceback (most recent call last):
    File "/usr/bin/ipython2", line 7, in <module>
    launch_new_instance()
    File "/usr/lib/python2.7/site-packages/IPython/frontend/terminal/ipapp.py", line 388, in launch_new_instance
    app.initialize()
    File "<string>", line 2, in initialize
    File "/usr/lib/python2.7/site-packages/IPython/config/application.py", line 84, in catch_config_error
    return method(app, *args, **kwargs)
    File "/usr/lib/python2.7/site-packages/IPython/frontend/terminal/ipapp.py", line 313, in initialize
    super(TerminalIPythonApp, self).initialize(argv)
    File "<string>", line 2, in initialize
    File "/usr/lib/python2.7/site-packages/IPython/config/application.py", line 84, in catch_config_error
    return method(app, *args, **kwargs)
    File "/usr/lib/python2.7/site-packages/IPython/core/application.py", line 325, in initialize
    self.parse_command_line(argv)
    File "/usr/lib/python2.7/site-packages/IPython/frontend/terminal/ipapp.py", line 308, in parse_command_line
    return super(TerminalIPythonApp, self).parse_command_line(argv)
    File "<string>", line 2, in parse_command_line
    File "/usr/lib/python2.7/site-packages/IPython/config/application.py", line 84, in catch_config_error
    return method(app, *args, **kwargs)
    File "/usr/lib/python2.7/site-packages/IPython/config/application.py", line 420, in parse_command_line
    return self.initialize_subcommand(subc, subargv)
    File "<string>", line 2, in initialize_subcommand
    File "/usr/lib/python2.7/site-packages/IPython/config/application.py", line 84, in catch_config_error
    return method(app, *args, **kwargs)
    File "/usr/lib/python2.7/site-packages/IPython/config/application.py", line 352, in initialize_subcommand
    subapp = import_item(subapp)
    File "/usr/lib/python2.7/site-packages/IPython/utils/importstring.py", line 40, in import_item
    module = __import__(package,fromlist=[obj])
    File "/usr/lib/python2.7/site-packages/IPython/frontend/qt/console/qtconsoleapp.py", line 56, in <module>
    from IPython.external.qt import QtCore, QtGui
    File "/usr/lib/python2.7/site-packages/IPython/external/qt.py", line 43, in <module>
    raise ImportError('Cannot import PySide >= 1.0.3 or PyQt4 >= 4.7')
    ImportError: Cannot import PySide >= 1.0.3 or PyQt4 >= 4.7
    I have:
    qt4 4.8.4-13
    Last edited by ayr0 (2013-03-07 23:11:24)

    davidovitch wrote:
    I think this issue is related to a bug in IPython, where the version check fails to recognise that 4.10 > 4.7. This fail because the version is compared as strings and not as numbers, hence '4.10'<'4.7'. It has been reported and fixed upstream. See here: https://github.com/ipython/ipython/pull/2831, and corresponding pull request: https://github.com/ipython/ipython/comm … ba0da2c293
    EDIT: replacing both ipython and iptyhon2 with ipython-git does the trick for me.
    That solution worked for me.

  • PyQt 4.6, QFileDialog crashes with segfault

    Hi,
    after the latest Archlinux upgrade ( to KDE 4.3.2 ) I have problems with PyQt.
    A simple QFileDialog, invoked like in this:
    fd = QFileDialog()
    fd.__init__(self)
    self.filename = fd.getOpenFileName()
    crashes really hard, strace gives me this:
    lstat64("/home", {st_mode=S_IFDIR|0755, st_size=33, ...}) = 0
    stat64("/home/rob", {st_mode=S_IFDIR|0755, st_size=8192, ...}) = 0
    lstat64("/home/rob", {st_mode=S_IFDIR|0755, st_size=8192, ...}) = 0
    stat64("/home/rob/prog", {st_mode=S_IFDIR|0755, st_size=94, ...}) = 0
    lstat64("/home/rob/prog", {st_mode=S_IFDIR|0755, st_size=94, ...}) = 0
    stat64("/home/rob/prog/fi", {st_mode=S_IFDIR|0755, st_size=148, ...}) = 0
    lstat64("/home/rob/prog/fi", {st_mode=S_IFDIR|0755, st_size=148, ...}) = 0
    stat64("/home/rob/prog/fi/sim", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    lstat64("/home/rob/prog/fi/sim", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    stat64("/home/rob/prog/fi/sim/data", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    lstat64("/home/rob/prog/fi/sim/data", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
    clock_gettime(CLOCK_MONOTONIC, {44462, 929257064}) = 0
    poll([{fd=8, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=8, revents=POLLOUT}])
    writev(8, [{"\22\0\17\0\223\2 \4#\0\0\0#\0\0\0 \2<\1\t\0\0\0C\0\0\0\1\0\0\0\1"..., 328}, {NULL, 0}, {""..., 0}], 3) = 328
    read(8, 0x8cf0f88, 4096) = -1 EAGAIN (Resource temporarily unavailable)
    poll([{fd=8, events=POLLIN|POLLOUT}], 1, -1) = 1 ([{fd=8, revents=POLLIN|POLLOUT}])
    read(8, "\34M\375\25\223\2 \4#\0\0\0Qs\246\2\0\1\0\0\300\t\373\277\2\0\0\0`\337\275\n\34"..., 4096) = 160
    writev(8, [{"&\0\2\0<\1\0\0"..., 8}, {NULL, 0}, {""..., 0}], 3) = 8
    poll([{fd=8, events=POLLIN}], 1, -1) = 1 ([{fd=8, revents=POLLIN}])
    read(8, "\26\0\2\26\223\2 \4\223\2 \4\221\2 \4\0\0\0\0\201\2\246\1\0\0\0\0|\n\373\277\1"..., 4096) = 64
    futex(0xb7e1f380, FUTEX_WAIT_PRIVATE, 2, NULL) = 0
    futex(0xb7e1f380, FUTEX_WAKE_PRIVATE, 1) = 0
    read(8, 0x8cf0f88, 4096) = -1 EAGAIN (Resource temporarily unavailable)
    futex(0xb7e1f380, FUTEX_WAIT_PRIVATE, 2, NULL) = -1 EAGAIN (Resource temporarily unavailable)
    futex(0xb7e1f380, FUTEX_WAKE_PRIVATE, 1) = 0
    --- SIGSEGV (Segmentation fault) @ 0 (0) ---
    +++ killed by SIGSEGV +++
    Its not important where I invoke the FileDialog. It works about every Fifth time I run it, most times the second time I try it works. This is quite Annoying.
    Versions are:
    pyqt 4.6.0-1
    sip 4.9.0-1
    qt 4.5.3-3
    Downgrading pyqt and sip works better, but then pyuic4 stops working with some undefined error.
    This Version of Qt sucks anyway, as it also has the bug Opera triggers...
    Anyone else experiencing this?
    -rob
    Last edited by crobe (2009-10-11 18:32:56)

    Interesting, nobody has this bug?
    I downgraded pyqt, sip, kdebindings-python, I hope it works now.

  • Small PyQT color swapper program

    Hi everyone, today I wrote a small program in python/QT which scans a file you pass it for unique #RRGGBB color tags, and gives you an interface to modify them. I made it specifically for editing SublimeText/SublimeText2/Textmate color schemes, but it could be applied to lots of things, and thought it might be useful to share.
    You'll need PyQt4 to run it.
    Apologies for the sloppy coding^^
    http://git.minornine.com/index.cgi/scri … in/recolor
    #!/usr/bin/env python
    # GUI to replace #RRGGBB color tags in a file
    # Copyright 2011 Josh Bothun
    # [email protected]
    import sys
    import tempfile
    import re
    import math
    import os
    import shutil
    from copy import copy
    from PyQt4.QtCore import *
    from PyQt4.QtGui import *
    def getColors(path):
    """ Find unique color tags in a file """
    try:
    file = open(path, 'r')
    pat = re.compile(r'#[a-fA-F0-9]{6}')
    tags = set()
    for line in file:
    for match in re.findall(pat, line):
    tags.add(match.upper())
    file.close()
    return tags
    except (OSError, IOError):
    return None
    def setColors(inpath, colormap):
    """ Replace color tags in `path` from dict `colormap` """
    try:
    infile = open(inpath, 'r')
    fh, outpath = tempfile.mkstemp()
    outfile = open(outpath, 'w')
    for line in infile:
    for oldcolor, newcolor in colormap.items():
    if oldcolor in line:
    line = line.replace(oldcolor, newcolor)
    outfile.write(line)
    outfile.close()
    infile.close()
    os.close(fh)
    # Move the temp file to original file location
    os.remove(inpath)
    shutil.move(outpath, inpath)
    return True
    except (OSError, IOError):
    return False
    def getVisibleFore(bgcolor):
    # Calculate black/white text
    return '#FFFFFF' if int(bgcolor.strip('#'), 16) < 0x7fffff \
    else "#000000"
    class MainWindow(QMainWindow):
    def __init__(self, colors, infile):
    # Init UI
    QMainWindow.__init__(self)
    self.infile = infile
    self.frame = QWidget(self)
    self.frame.setLayout(QVBoxLayout())
    self.setCentralWidget(self.frame)
    self.setStatusBar(QStatusBar(self))
    # Color mapping
    self.colormap = dict(zip(colors, colors))
    # Populate color pickers
    self.colorFrame = QWidget(self.frame)
    self.colorFrame.setLayout(QGridLayout())
    self.frame.layout().addWidget(self.colorFrame)
    self.createColorButtons()
    # Static buttons
    staticFrame = QWidget(self.frame)
    staticFrame.setLayout(QHBoxLayout())
    self.frame.layout().addWidget(staticFrame)
    applyButton = QPushButton('Apply')
    discardButton = QPushButton('Discard')
    staticFrame.layout().addWidget(applyButton)
    staticFrame.layout().addWidget(discardButton)
    # Static button callbacks
    self.connect(applyButton, SIGNAL('clicked()'), self.applyColors)
    self.connect(discardButton, SIGNAL('clicked()'), self.discardColors)
    def createColorButtons(self):
    rows = int(math.sqrt(len(self.colormap.keys())))
    for i, color in enumerate(self.colormap.keys()):
    # Create the button
    button = QPushButton(self)
    button.setFlat(True)
    pal = button.palette()
    pal.setColor(button.backgroundRole(), QColor(color))
    pal.setColor(button.foregroundRole(), QColor(getVisibleFore(color)))
    button.setAutoFillBackground(True)
    button.setPalette(pal)
    button.setText(color)
    self.colorFrame.layout().addWidget(button, i % rows, i / rows)
    # HACK: Store color on button object
    setattr(button, '_ORIG_COLOR', color)
    setattr(button, '_COLOR', color)
    # Create closure around button and color
    self.createSelectorClosure(button)
    def discardColors(self):
    # Reset map
    for key, val in self.colormap.items():
    self.colormap[key] = key
    # Reset button colors
    for widget in self.colorFrame.children():
    if isinstance(widget, QPushButton):
    self.setButtonColor(widget, widget._ORIG_COLOR)
    widget.update()
    self.statusBar().showMessage('Colors reset to default')
    def applyColors(self):
    if setColors(self.infile, self.colormap):
    self.statusBar().showMessage('Colors successfully replaced!')
    else:
    self.statusBar().showMessage('ERROR: Could not replace colors')
    def setButtonColor(self, button, tag):
    color = QColor(tag)
    pal = button.palette()
    pal.setColor(button.backgroundRole(), color)
    button.setPalette(pal)
    button.setText(tag)
    def createSelectorClosure(self, button):
    # Create callback method
    def selectColor():
    color = getattr(button, '_COLOR', '#FFFFFF')
    orig_color = getattr(button, '_ORIG_COLOR', '#FFFFFF')
    new = QColorDialog.getColor(initial=QColor(color))
    if new.isValid():
    tag = str(new.name()).upper()
    # Tag must be unique
    if tag == orig_color or tag not in self.colormap.keys():
    # Update map
    self.colormap[orig_color] = tag
    # HACK: Update button color attr
    setattr(button, '_COLOR', tag)
    # Update label
    self.setButtonColor(button, tag)
    else:
    QMessageBox.critical(self, 'Error', 'You must select a unique color.')
    # Connect click function
    self.connect(button, SIGNAL('clicked()'), selectColor)
    def main():
    if len(sys.argv) < 2:
    print 'Need an input file'
    sys.exit()
    infile = sys.argv[1]
    colors = getColors(infile)
    if not colors:
    print 'Unable to read file', infile
    sys.exit()
    # Run qt
    app = QApplication(sys.argv)
    window = MainWindow(colors, infile)
    window.show()
    sys.exit(app.exec_())
    if __name__ == '__main__':
    main()

    noah.w's PaintLike2 program might get you what you want
    http://forum.java.sun.com/thread.jspa?forumID=256&threadID=476969
    there is a PaintLike3 (also from noah.w) in the forums somewhere,
    but I couldn't find it

  • [Solved] Python (PyQt) reference to callable problem?

    So, I'm having trouble with creating menu options that are connected to a function call with specific arguments...
    Sample code:
    for i in range(0,8):
    a = QtGui.QAction(QtGui.QIcon(), "Option %s" % i, self)
    exec("""def f(): getattr(win, "show_option")(%i)""" % i)
    a.triggered.connect(f)
    self.menu.addAction(a)
    This is the only way I could make it work and it seems like such a hack...
    .connect obviously needs a reference to a callable and not a call.
    I've tried everything I could think of, normally I would do this with a lambda, i.e.
    a.triggered.connect(lambda: function("option"))
    But it doesn't work in this case. All options will always call it with "7" (so the lambda is connected to the original "i"?)
    I can see the problem but I don't know what to do about it.
    Last edited by initbox (2012-11-19 16:20:22)

    rockin turtle wrote:Don't you want to register a different callback function for each menu option?
    You don't need to create separate functions for it if you do it "cleverly", like I did, e.g. with a lambda so you can create a callable that calls a function with the argument you want.
    Except it didn't work in this case as seen. It does work in other cases (i.e. when you don't need to use a changing variable like I did).
    rockin turtle wrote:I don't think Qt will provide any arguments when it calls your function, so the only way for you to know which option was selected is to provide a different function for each action.
    It might provide some sort of source object reference, but not anything direct like a fancy message (unless you get the source object's displayed text or some sort of other "identifier" and act based on that). You could probably create a custom message that gets passed if you use Qt signals?
    vadmium wrote:In that case the lambda function knows to use the i variable from the scope of the outer function where your loop is defined. But the value of the variable only gets looked up when the lambda is run. This is presumably after the loop has finished when i is left with the value of 7. Nested variable scoping in Python can be tricky like that. It’s the same story as using global variables.
    Have you heard of functools.partial()?
    Yeah, that sounds correct, thanks, I'll try that. I'm not that great with the terminology.
    I'm actually surprised that it can even get "i" afterwards, shouldn't it get discarded after the loop is done? Actually, I guess not, because the lambdas are still referencing it. Tricky.

  • [SOLVED] VAIO brightness no longer working after upgrade

    Hi I used to set brightness on my VAIO VPCCAS1E, via...
    xfce4 -> fn keys
    i3 -> "echo 5 | sudo tee /sys/class/backlight/acpi_video0/brightness"
    none of them are working after having upgraded the system yesterday. I have checked the news and done my -Syu accordingly.
    Upgrade log:
    [2013-06-05 09:49] [PACMAN] Running 'pacman -Syu'
    [2013-06-05 09:49] [PACMAN] synchronizing package lists
    [2013-06-05 09:50] [PACMAN] starting full system upgrade
    [2013-06-05 10:29] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.VTY/foo2zjs-20130530-3-x86_64.pkg.tar.xz'
    [2013-06-05 10:31] [PACMAN] Running 'pacman -U /tmp/yaourt-tmp-szebenyib/foo2zjs-20130530-3-x86_64.pkg.tar.xz'
    [2013-06-05 10:31] [ALPM-SCRIPTLET]
    [2013-06-05 10:31] [ALPM-SCRIPTLET] Restarting cups
    [2013-06-05 10:31] [ALPM-SCRIPTLET]
    [2013-06-05 10:31] [ALPM-SCRIPTLET]
    [2013-06-05 10:31] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 10:31] [ALPM-SCRIPTLET] - -
    [2013-06-05 10:31] [ALPM-SCRIPTLET] -Remember to check for foomatic-db-foo2zjs updates as well-
    [2013-06-05 10:31] [ALPM-SCRIPTLET] - -
    [2013-06-05 10:31] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 10:31] [ALPM-SCRIPTLET]
    [2013-06-05 10:31] [PACMAN] upgraded foo2zjs (20130302-3 -> 20130530-3)
    [2013-06-05 10:34] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.JSV/plymouth-0.8.8-10-x86_64.pkg.tar.xz'
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] ==================================================================================
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 1. To make Plymouth work:
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 1.1. Add "plymouth" to HOOKS after "base" and "udev" in /etc/mkinitcpio.conf
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 1.2. Add 'quiet splash' to the grub command line
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 1.3. Rebuild your initrd image (# mkinitcpio -p [kernel preset name]).
    [2013-06-05 10:34] [ALPM-SCRIPTLET] E.g.: sudo mkinitcpio -p linux
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 2. To enable encryption, replace "encrypt" with "plymouth-encrypt" in
    [2013-06-05 10:34] [ALPM-SCRIPTLET] mkinitcpio.conf and rebuild your initrd image.
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 3. You will also need to rebuild your initrd image every time you change your theme
    [2013-06-05 10:34] [ALPM-SCRIPTLET] (the default is set as 'spinfinity').
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] To list all plymouth themes:
    [2013-06-05 10:34] [ALPM-SCRIPTLET] plymouth-set-default-theme -l
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] To change theme:
    [2013-06-05 10:34] [ALPM-SCRIPTLET] # plymouth-set-default-theme <theme>
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] To rebuild initrd image:
    [2013-06-05 10:34] [ALPM-SCRIPTLET] # mkinitcpio -p linux
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 4. For Smooth Transition to Display Manager you have to:
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 4.1. See the Wiki Page (link in 5) to prepare your Display Manager
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 4.2. Disable your Display Manager Unit
    [2013-06-05 10:34] [ALPM-SCRIPTLET] E.g. : systemctl disable kdm.service
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 4.3. Enable the respective DM-plymouth Unit (GDM,KDM,Lightdm,LXDM units provided)
    [2013-06-05 10:34] [ALPM-SCRIPTLET] E.g. : systemctl enable kdm-plymouth.service
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] 5. For more information please visit the Wiki page:
    [2013-06-05 10:34] [ALPM-SCRIPTLET] https://wiki.archlinux.org/index.php/Plymouth
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [ALPM-SCRIPTLET] OBS. If you have any leftover "kill Plymouth" lines in /etc/rc.local or ~/.xinitrc
    [2013-06-05 10:34] [ALPM-SCRIPTLET] they are no longer required.
    [2013-06-05 10:34] [ALPM-SCRIPTLET] ==================================================================================
    [2013-06-05 10:34] [ALPM-SCRIPTLET]
    [2013-06-05 10:34] [PACMAN] upgraded plymouth (0.8.8-5 -> 0.8.8-10)
    [2013-06-05 10:36] [PACMAN] Running 'pacman -U tmp/plymouth.tar.gz'
    [2013-06-05 10:36] [PACMAN] Running 'pacman -U plymouth.tar.gz'
    [2013-06-05 10:37] [PACMAN] Running 'pacman -S catalyst-utils'
    [2013-06-05 10:40] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.eGs/catalyst-utils-13.4-2-x86_64.pkg.tar.xz'
    [2013-06-05 10:40] [PACMAN] Running 'pacman -S catalyst-dkms lib32-catalyst-utils'
    [2013-06-05 10:41] [PACMAN] Running 'pacman -S catalyst'
    [2013-06-05 10:44] [PACMAN] Running 'pacman --color auto -Sy'
    [2013-06-05 10:44] [PACMAN] synchronizing package lists
    [2013-06-05 10:47] [PACMAN] Running 'pacman -S catalyst catalyst-utils'
    [2013-06-05 10:47] [PACMAN] Running 'pacman -Syu'
    [2013-06-05 10:47] [PACMAN] synchronizing package lists
    [2013-06-05 10:52] [PACMAN] Running 'pacman --color auto -Sy'
    [2013-06-05 10:52] [PACMAN] synchronizing package lists
    [2013-06-05 10:53] [PACMAN] Running 'pacman -Syu'
    [2013-06-05 10:53] [PACMAN] synchronizing package lists
    [2013-06-05 10:53] [PACMAN] Running 'pacman --color auto -Sy'
    [2013-06-05 10:53] [PACMAN] synchronizing package lists
    [2013-06-05 10:55] [PACMAN] Running 'pacman --color auto -Sy'
    [2013-06-05 10:55] [PACMAN] synchronizing package lists
    [2013-06-05 10:58] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.9k2/catalyst-dkms-13.4-1-x86_64.pkg.tar.xz'
    [2013-06-05 11:02] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.FaM/catalyst-utils-13.4-2-x86_64.pkg.tar.xz'
    [2013-06-05 11:03] [PACMAN] Running 'pacman --color auto -S --asdeps --needed multilib/lib32-libdrm'
    [2013-06-05 11:03] [PACMAN] installed lib32-libpciaccess (0.13.1-1)
    [2013-06-05 11:03] [PACMAN] installed lib32-libdrm (2.4.45-1)
    [2013-06-05 11:09] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.lze/catalyst-total-13.4-3-x86_64.pkg.tar.xz'
    [2013-06-05 11:12] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.QOe/catalyst-dkms-13.4-1-x86_64.pkg.tar.xz'
    [2013-06-05 11:14] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.MWT/catalyst-dkms-13.4-1-x86_64.pkg.tar.xz'
    [2013-06-05 11:19] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.MKV/catalyst-utils-13.4-2-x86_64.pkg.tar.xz'
    [2013-06-05 11:20] [PACMAN] Running 'pacman -U /tmp/yaourt-tmp-szebenyib/catalyst-utils-13.4-2-x86_64.pkg.tar.xz /tmp/yaourt-tmp-szebenyib/catalyst-dkms-13.4-1-x86_64.pkg.tar.xz'
    [2013-06-05 11:29] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.3qD/lib32-catalyst-utils-13.4-1-x86_64.pkg.tar.xz'
    [2013-06-05 11:31] [PACMAN] Running 'pacman -U /tmp/yaourt-tmp-szebenyib/lib32-catalyst-utils-13.4-1-x86_64.pkg.tar.xz'
    [2013-06-05 11:33] [PACMAN] Running 'pacman -U --force /tmp/yaourt-tmp-szebenyib/lib32-catalyst-utils-13.4-1-x86_64.pkg.tar.xz'
    [2013-06-05 11:33] [ALPM-SCRIPTLET] ----------------------------------------------------------------
    [2013-06-05 11:33] [ALPM-SCRIPTLET] lib32-catalyst-utils works with [multilib] repository
    [2013-06-05 11:33] [ALPM-SCRIPTLET] ----------------------------------------------------------------
    [2013-06-05 11:33] [PACMAN] upgraded lib32-catalyst-utils (13.1-2 -> 13.4-1)
    [2013-06-05 11:33] [PACMAN] Running 'pacman -U tmp/catalyst-dkms-13.4-1-x86_64.pkg.tar.xz tmp/catalyst-utils-13.4-2-x86_64.pkg.tar.xz'
    [2013-06-05 11:34] [PACMAN] Running 'pacman -U --force tmp/catalyst-dkms-13.4-1-x86_64.pkg.tar.xz tmp/catalyst-utils-13.4-2-x86_64.pkg.tar.xz'
    [2013-06-05 11:34] [ALPM-SCRIPTLET] [37;44m[1m---------------- I/O BUG ---------------------------------------[0m
    [2013-06-05 11:34] [ALPM-SCRIPTLET] There's a bug in fglrx found by lano1106 which generates
    [2013-06-05 11:34] [ALPM-SCRIPTLET] great amount of unneeded I/O operations
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] To activate workaround enable systemd service:
    [2013-06-05 11:34] [ALPM-SCRIPTLET] systemctl enable temp-links-catalyst
    [2013-06-05 11:34] [ALPM-SCRIPTLET] systemctl start temp-links-catalyst
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] More infos:
    [2013-06-05 11:34] [ALPM-SCRIPTLET] https://bbs.archlinux.org/viewtopic.php?pid=1279977#p1279977
    [2013-06-05 11:34] [ALPM-SCRIPTLET] https://bbs.archlinux.org/viewtopic.php?pid=1280193#p1280193
    [2013-06-05 11:34] [ALPM-SCRIPTLET] [37;44m[1m----------------------------------------------------------------[0m
    [2013-06-05 11:34] [PACMAN] upgraded catalyst-utils (13.1-5 -> 13.4-2)
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] -------- Uninstall Beginning --------
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Module: fglrx
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Version: 13.1-2
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Kernel: 3.8.4-1-ARCH (x86_64)
    [2013-06-05 11:34] [ALPM-SCRIPTLET] -------------------------------------
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Status: Before uninstall, this module version was ACTIVE on this kernel.
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] fglrx.ko:
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - Uninstallation
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - Deleting from: /usr/lib/modules/3.8.4-1-ARCH/extramodules/
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - Original module
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - No original module was found for this module on this kernel.
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - Use the dkms install command to reinstall any previous module version.
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] depmod.......
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] DKMS: uninstall completed.
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] ------------------------------
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Deleting module version: 13.1-2
    [2013-06-05 11:34] [ALPM-SCRIPTLET] completely from the DKMS tree.
    [2013-06-05 11:34] [ALPM-SCRIPTLET] ------------------------------
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Done.
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Creating symlink /var/lib/dkms/fglrx/13.4-1/source ->
    [2013-06-05 11:34] [ALPM-SCRIPTLET] /usr/src/fglrx-13.4-1
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] DKMS: add completed.
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Kernel preparation unnecessary for this kernel. Skipping...
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Building module:
    [2013-06-05 11:34] [ALPM-SCRIPTLET] cleaning build area....
    [2013-06-05 11:34] [ALPM-SCRIPTLET] sh make.sh --nohints --uname_r=3.8.4-1-ARCH --norootcheck........
    [2013-06-05 11:34] [ALPM-SCRIPTLET] cleaning build area....
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] DKMS: build completed.
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] fglrx.ko:
    [2013-06-05 11:34] [ALPM-SCRIPTLET] Running module version sanity check.
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - Original module
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - No original module exists within this kernel
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - Installation
    [2013-06-05 11:34] [ALPM-SCRIPTLET] - Installing to /usr/lib/modules/3.8.4-1-ARCH/extramodules/
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] depmod....
    [2013-06-05 11:34] [ALPM-SCRIPTLET]
    [2013-06-05 11:34] [ALPM-SCRIPTLET] DKMS: install completed.
    [2013-06-05 11:34] [PACMAN] upgraded catalyst-dkms (13.1-2 -> 13.4-1)
    [2013-06-05 11:36] [PACMAN] Running 'pacman -R fondu'
    [2013-06-05 11:36] [PACMAN] removed fondu (060102-3)
    [2013-06-05 11:50] [PACMAN] Running 'pacman --color auto -U --force /tmp/yaourt-tmp-szebenyib/PKGDEST.nWC/foo2zjs-20130530-3-x86_64.pkg.tar.xz'
    [2013-06-05 11:50] [ALPM-SCRIPTLET]
    [2013-06-05 11:50] [ALPM-SCRIPTLET] Restarting cups
    [2013-06-05 11:50] [ALPM-SCRIPTLET]
    [2013-06-05 11:50] [ALPM-SCRIPTLET]
    [2013-06-05 11:50] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 11:50] [ALPM-SCRIPTLET] - -
    [2013-06-05 11:50] [ALPM-SCRIPTLET] -Remember to check for foomatic-db-foo2zjs updates as well-
    [2013-06-05 11:50] [ALPM-SCRIPTLET] - -
    [2013-06-05 11:50] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 11:50] [ALPM-SCRIPTLET]
    [2013-06-05 11:50] [PACMAN] reinstalled foo2zjs (20130530-3)
    [2013-06-05 11:50] [PACMAN] Running 'pacman -R foomatic-db-foo2zjs'
    [2013-06-05 11:51] [PACMAN] Running 'pacman -R foomatic-db-foo2zjs foo2zjs'
    [2013-06-05 11:51] [ALPM-SCRIPTLET]
    [2013-06-05 11:51] [ALPM-SCRIPTLET] Restarting cups
    [2013-06-05 11:51] [ALPM-SCRIPTLET]
    [2013-06-05 11:51] [ALPM-SCRIPTLET]
    [2013-06-05 11:51] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 11:51] [ALPM-SCRIPTLET] - -
    [2013-06-05 11:51] [ALPM-SCRIPTLET] - Remember to replace foomatic-db-foo2zjs with -
    [2013-06-05 11:51] [ALPM-SCRIPTLET] - foomatic-db from [extra]. -
    [2013-06-05 11:51] [ALPM-SCRIPTLET] - -
    [2013-06-05 11:51] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 11:51] [ALPM-SCRIPTLET]
    [2013-06-05 11:51] [PACMAN] removed foo2zjs (20130530-3)
    [2013-06-05 11:51] [PACMAN] removed foomatic-db-foo2zjs (4.0.17_20120712-2)
    [2013-06-05 11:51] [PACMAN] Running 'pacman --color auto -S --asdeps --needed --noconfirm extra/enscript'
    [2013-06-05 11:51] [PACMAN] installed enscript (1.6.5.2-2)
    [2013-06-05 12:05] [PACMAN] Running 'pacman --color auto -U --asdeps --noconfirm /tmp/yaourt-tmp-szebenyib/PKGDEST.yFz/foomatic-db-foo2zjs-1:4.0.17_20130518-1-x86_64.pkg.tar.xz'
    [2013-06-05 12:05] [PACMAN] installed foomatic-db-foo2zjs (1:4.0.17_20130518-1)
    [2013-06-05 12:13] [PACMAN] Running 'pacman --color auto -U --noconfirm /tmp/yaourt-tmp-szebenyib/PKGDEST.N1v/foo2zjs-20130530-3-x86_64.pkg.tar.xz'
    [2013-06-05 12:13] [ALPM-SCRIPTLET]
    [2013-06-05 12:13] [ALPM-SCRIPTLET] Restarting cups
    [2013-06-05 12:13] [ALPM-SCRIPTLET]
    [2013-06-05 12:13] [ALPM-SCRIPTLET]
    [2013-06-05 12:13] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - You need to add your user to the lp group. -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - Please refer to the table at http://foo2zjs.rkkda.com/ -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - to choose the appropriate driver for your printer. -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] - -
    [2013-06-05 12:13] [ALPM-SCRIPTLET] -----------------------------------------------------------
    [2013-06-05 12:13] [ALPM-SCRIPTLET]
    [2013-06-05 12:13] [PACMAN] installed foo2zjs (20130530-3)
    [2013-06-05 12:30] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.omZ/plymouth-0.8.8-10-x86_64.pkg.tar.xz'
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] ==================================================================================
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 1. To make Plymouth work:
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 1.1. Add "plymouth" to HOOKS after "base" and "udev" in /etc/mkinitcpio.conf
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 1.2. Add 'quiet splash' to the grub command line
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 1.3. Rebuild your initrd image (# mkinitcpio -p [kernel preset name]).
    [2013-06-05 12:30] [ALPM-SCRIPTLET] E.g.: sudo mkinitcpio -p linux
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 2. To enable encryption, replace "encrypt" with "plymouth-encrypt" in
    [2013-06-05 12:30] [ALPM-SCRIPTLET] mkinitcpio.conf and rebuild your initrd image.
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 3. You will also need to rebuild your initrd image every time you change your theme
    [2013-06-05 12:30] [ALPM-SCRIPTLET] (the default is set as 'spinfinity').
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] To list all plymouth themes:
    [2013-06-05 12:30] [ALPM-SCRIPTLET] plymouth-set-default-theme -l
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] To change theme:
    [2013-06-05 12:30] [ALPM-SCRIPTLET] # plymouth-set-default-theme <theme>
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] To rebuild initrd image:
    [2013-06-05 12:30] [ALPM-SCRIPTLET] # mkinitcpio -p linux
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 4. For Smooth Transition to Display Manager you have to:
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 4.1. See the Wiki Page (link in 5) to prepare your Display Manager
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 4.2. Disable your Display Manager Unit
    [2013-06-05 12:30] [ALPM-SCRIPTLET] E.g. : systemctl disable kdm.service
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 4.3. Enable the respective DM-plymouth Unit (GDM,KDM,Lightdm,LXDM units provided)
    [2013-06-05 12:30] [ALPM-SCRIPTLET] E.g. : systemctl enable kdm-plymouth.service
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] 5. For more information please visit the Wiki page:
    [2013-06-05 12:30] [ALPM-SCRIPTLET] https://wiki.archlinux.org/index.php/Plymouth
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [ALPM-SCRIPTLET] OBS. If you have any leftover "kill Plymouth" lines in /etc/rc.local or ~/.xinitrc
    [2013-06-05 12:30] [ALPM-SCRIPTLET] they are no longer required.
    [2013-06-05 12:30] [ALPM-SCRIPTLET] ==================================================================================
    [2013-06-05 12:30] [ALPM-SCRIPTLET]
    [2013-06-05 12:30] [PACMAN] reinstalled plymouth (0.8.8-10)
    [2013-06-05 12:30] [PACMAN] Running 'pacman --color auto -S --asdeps --needed community/audit'
    [2013-06-05 12:30] [PACMAN] installed audit (2.2.3-2)
    [2013-06-05 12:32] [PACMAN] Running 'pacman --color auto -U /tmp/yaourt-tmp-szebenyib/PKGDEST.8WE/e4rat-0.2.3-2-x86_64.pkg.tar.xz'
    [2013-06-05 12:32] [PACMAN] upgraded e4rat (0.2.3-1 -> 0.2.3-2)
    [2013-06-05 12:39] [PACMAN] Running 'pacman -R plymouth'
    [2013-06-05 12:39] [PACMAN] removed plymouth (0.8.8-10)
    [2013-06-05 12:41] [PACMAN] Running 'pacman -Syu --ignore filesystem,bash'
    [2013-06-05 12:41] [PACMAN] synchronizing package lists
    [2013-06-05 12:41] [PACMAN] starting full system upgrade
    [2013-06-05 13:04] [PACMAN] upgraded linux-api-headers (3.7.4-1 -> 3.8.4-1)
    [2013-06-05 13:04] [PACMAN] upgraded tzdata (2013b-1 -> 2013c-1)
    [2013-06-05 13:04] [ALPM-SCRIPTLET] Generating locales...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] en_US.UTF-8... done
    [2013-06-05 13:04] [ALPM-SCRIPTLET] hu_HU.UTF-8... done
    [2013-06-05 13:04] [ALPM-SCRIPTLET] Generation complete.
    [2013-06-05 13:04] [PACMAN] upgraded glibc (2.17-3 -> 2.17-6)
    [2013-06-05 13:04] [PACMAN] upgraded lib32-glibc (2.17-2 -> 2.17-5)
    [2013-06-05 13:04] [PACMAN] upgraded lib32-gcc-libs (4.7.2-4 -> 4.8.1-1)
    [2013-06-05 13:04] [PACMAN] upgraded gcc-libs-multilib (4.7.2-4 -> 4.8.1-1)
    [2013-06-05 13:04] [PACMAN] upgraded pcre (8.32-1 -> 8.33-1)
    [2013-06-05 13:04] [PACMAN] upgraded glib2 (2.34.3-1 -> 2.36.2-1)
    [2013-06-05 13:04] [PACMAN] upgraded zlib (1.2.7-1 -> 1.2.8-1)
    [2013-06-05 13:04] [PACMAN] upgraded cracklib (2.8.22-1 -> 2.8.22-3)
    [2013-06-05 13:04] [PACMAN] upgraded libtirpc (0.2.2-4 -> 0.2.3-1)
    [2013-06-05 13:04] [PACMAN] upgraded pam (1.1.6-1 -> 1.1.6-4)
    [2013-06-05 13:04] [PACMAN] upgraded expat (2.1.0-1 -> 2.1.0-2)
    [2013-06-05 13:04] [PACMAN] upgraded gmp (5.1.1-1 -> 5.1.2-1)
    [2013-06-05 13:04] [PACMAN] upgraded libcap (2.22-3 -> 2.22-5)
    [2013-06-05 13:04] [PACMAN] upgraded coreutils (8.21-1 -> 8.21-2)
    [2013-06-05 13:04] [PACMAN] upgraded dbus (1.6.8-6 -> 1.6.10-1)
    [2013-06-05 13:04] [PACMAN] upgraded kbd (1.15.5-3 -> 1.15.5-4)
    [2013-06-05 13:04] [PACMAN] upgraded kmod (12-1 -> 13-2)
    [2013-06-05 13:04] [PACMAN] upgraded hwids (20130228-1 -> 20130512-1)
    [2013-06-05 13:04] [PACMAN] upgraded libgcrypt (1.5.1-1 -> 1.5.2-1)
    [2013-06-05 13:04] [PACMAN] upgraded shadow (4.1.5.1-5 -> 4.1.5.1-6)
    [2013-06-05 13:04] [PACMAN] upgraded util-linux (2.22.2-2 -> 2.23.1-2)
    [2013-06-05 13:04] [ALPM-SCRIPTLET] ==> The /bin/systemd symlink has been removed. Any references in your
    [2013-06-05 13:04] [ALPM-SCRIPTLET] bootloader (or elsewhere) must be updated to /usr/lib/systemd/systemd.
    [2013-06-05 13:04] [PACMAN] upgraded systemd (198-2 -> 204-3)
    [2013-06-05 13:04] [PACMAN] upgraded nspr (4.9.5-1 -> 4.9.6-1)
    [2013-06-05 13:04] [PACMAN] installed js185 (1.0.0-2)
    [2013-06-05 13:04] [PACMAN] upgraded polkit (0.110-1 -> 0.110-2)
    [2013-06-05 13:04] [PACMAN] upgraded accountsservice (0.6.30-1 -> 0.6.32-1)
    [2013-06-05 13:04] [PACMAN] upgraded acpid (2.0.18-2 -> 2.0.19-1)
    [2013-06-05 13:04] [PACMAN] upgraded alsa-lib (1.0.26-1 -> 1.0.27.1-1)
    [2013-06-05 13:04] [PACMAN] upgraded alsa-plugins (1.0.26-1 -> 1.0.27-1)
    [2013-06-05 13:04] [PACMAN] upgraded dialog (1.2_20121230-1 -> 1.2_20130523-1)
    [2013-06-05 13:04] [PACMAN] upgraded pciutils (3.1.10-1 -> 3.2.0-3)
    [2013-06-05 13:04] [PACMAN] upgraded psmisc (22.19-1 -> 22.20-1)
    [2013-06-05 13:04] [PACMAN] upgraded alsa-utils (1.0.26-1 -> 1.0.27.1-2)
    [2013-06-05 13:04] [PACMAN] upgraded libsasl (2.1.26-2 -> 2.1.26-4)
    [2013-06-05 13:04] [PACMAN] upgraded e2fsprogs (1.42.7-1 -> 1.42.7-2)
    [2013-06-05 13:04] [PACMAN] upgraded libldap (2.4.34-1 -> 2.4.35-4)
    [2013-06-05 13:04] [PACMAN] upgraded apr-util (1.5.1-1 -> 1.5.2-1)
    [2013-06-05 13:04] [ALPM-SCRIPTLET] ==> Kulcsok hozzáfűzése a(z) archlinux.gpg fájlból...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
    [2013-06-05 13:04] [ALPM-SCRIPTLET] gpg: depth: 0 valid: 1 signed: 6 trust: 0-, 0q, 0n, 0m, 0f, 1u
    [2013-06-05 13:04] [ALPM-SCRIPTLET] gpg: depth: 1 valid: 6 signed: 64 trust: 1-, 0q, 0n, 5m, 0f, 0u
    [2013-06-05 13:04] [ALPM-SCRIPTLET] gpg: depth: 2 valid: 63 signed: 3 trust: 63-, 0q, 0n, 0m, 0f, 0u
    [2013-06-05 13:04] [ALPM-SCRIPTLET] gpg: A bizalmi adatbázis következő ellenőrzése: 2014-01-22.
    [2013-06-05 13:04] [ALPM-SCRIPTLET] ==> Megbízható kulcsok aláírása helyileg a kulcstartóban...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> 0E8B644079F599DFC1DDC3973348882F6AC6A4C2 kulcs aláírása helyileg...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> 684148BB25B49E986A4944C55184252D824B18E8 kulcs aláírása helyileg...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> 44D4A033AC140143927397D47EFD567D4C7EA887 kulcs aláírása helyileg...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> 27FFC4769E19F096D41D9265A04F9397CDFD6BB0 kulcs aláírása helyileg...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> AB19265E5D7D20687D303246BA1DFB64FFF979E7 kulcs aláírása helyileg...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] ==> Megbízhatósági értékek importálása...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] ==> Visszavont kulcsok tiltása a kulcstartóban...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> 1390420191 kulcs tiltása...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> E2539214C6C11350 kulcs tiltása...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] -> 8544EA82113502DE kulcs tiltása...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] ==> Megbízhatósági adatbázis frissítése...
    [2013-06-05 13:04] [ALPM-SCRIPTLET] gpg: A bizalmi adatbázis következő ellenőrzése: 2014-01-22.
    [2013-06-05 13:04] [PACMAN] upgraded archlinux-keyring (20130224-1 -> 20130525-1)
    [2013-06-05 13:04] [PACMAN] upgraded libxau (1.0.7-1 -> 1.0.8-1)
    [2013-06-05 13:04] [PACMAN] upgraded libxcb (1.9-3 -> 1.9.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded libx11 (1.5.0-2 -> 1.6.0-1)
    [2013-06-05 13:05] [PACMAN] upgraded libxext (1.3.1-1 -> 1.3.2-1)
    [2013-06-05 13:05] [PACMAN] upgraded libxi (1.7-1 -> 1.7.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded libxfixes (5.0-2 -> 5.0.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded libxtst (1.2.1-1 -> 1.2.2-1)
    [2013-06-05 13:05] [PACMAN] upgraded at-spi2-core (2.6.3-1 -> 2.8.0-1)
    [2013-06-05 13:05] [PACMAN] upgraded atk (2.6.0-1 -> 2.8.0-1)
    [2013-06-05 13:05] [PACMAN] upgraded at-spi2-atk (2.6.2-1 -> 2.8.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded libsigc++ (2.2.11-1 -> 2.3.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded glibmm (2.34.1-1 -> 2.36.2-1)
    [2013-06-05 13:05] [PACMAN] upgraded atkmm (2.22.6-1 -> 2.22.7-1)
    [2013-06-05 13:05] [PACMAN] upgraded perl (5.16.3-1 -> 5.18.0-1)
    [2013-06-05 13:05] [PACMAN] upgraded automake (1.13.1-1 -> 1.13.2-1)
    [2013-06-05 13:05] [PACMAN] upgraded avahi (0.6.31-6 -> 0.6.31-9)
    [2013-06-05 13:05] [PACMAN] upgraded libpng (1.5.14-1 -> 1.6.2-3)
    [2013-06-05 13:05] [ALPM-SCRIPTLET] updating font cache... done.
    [2013-06-05 13:05] [PACMAN] upgraded fontconfig (2.10.2-1 -> 2.10.93-1)
    [2013-06-05 13:05] [PACMAN] upgraded pixman (0.28.2-1 -> 0.30.0-1)
    [2013-06-05 13:05] [PACMAN] upgraded libdrm (2.4.43-1 -> 2.4.45-1)
    [2013-06-05 13:05] [PACMAN] upgraded wayland (1.0.6-1 -> 1.1.0-1)
    [2013-06-05 13:05] [PACMAN] upgraded libxxf86vm (1.1.2-1 -> 1.1.3-1)
    [2013-06-05 13:05] [PACMAN] installed llvm-amdgpu-lib-snapshot (20130403-3)
    [2013-06-05 13:05] [PACMAN] upgraded mesa (9.1.1-1 -> 9.1.3-1)
    [2013-06-05 13:05] [PACMAN] upgraded cairo (1.12.14-3 -> 1.12.14-4)
    [2013-06-05 13:05] [PACMAN] upgraded libjpeg-turbo (1.2.1-1 -> 1.3.0-2)
    [2013-06-05 13:05] [PACMAN] upgraded libtiff (4.0.3-1 -> 4.0.3-2)
    [2013-06-05 13:05] [ALPM-SCRIPTLET] g_module_open() failed for /usr/lib/gdk-pixbuf-2.0/2.10.0/loaders/libpixbufloader-svg.so: libpng15.so.15: cannot open shared object file: No such file or directory
    [2013-06-05 13:05] [PACMAN] upgraded gdk-pixbuf2 (2.26.5-2 -> 2.28.1-2)
    [2013-06-05 13:05] [PACMAN] upgraded giflib (4.1.6-5 -> 4.2.1-2)
    [2013-06-05 13:05] [PACMAN] upgraded imlib2 (1.4.5-2 -> 1.4.5-4)
    [2013-06-05 13:05] [PACMAN] upgraded libxcursor (1.1.13-1 -> 1.1.14-1)
    [2013-06-05 13:05] [PACMAN] upgraded lua (5.2.1-3 -> 5.2.2-1)
    [2013-06-05 13:05] [PACMAN] upgraded icu (51.1-1 -> 51.2-1)
    [2013-06-05 13:05] [PACMAN] upgraded graphite (1:1.2.1-1 -> 1:1.2.2-1)
    [2013-06-05 13:05] [PACMAN] upgraded harfbuzz (0.9.14-1 -> 0.9.17-2)
    [2013-06-05 13:05] [ALPM-SCRIPTLET] /tmp/alpm_DTKAFN/.INSTALL: sor: 5: sbin/ldconfig: Nincs ilyen fájl vagy könyvtár
    [2013-06-05 13:05] [PACMAN] upgraded pango (1.32.5-1 -> 1.34.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded awesome (3.5-2 -> 3.5.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded bash-completion (2.0-3 -> 2.1-2)
    [2013-06-05 13:05] [PACMAN] upgraded binutils-multilib (2.23.1-3 -> 2.23.2-2)
    [2013-06-05 13:05] [PACMAN] upgraded m4 (1.4.16-2 -> 1.4.16-3)
    [2013-06-05 13:05] [PACMAN] upgraded bison (2.7-1 -> 2.7.1-1)
    [2013-06-05 13:05] [PACMAN] upgraded sqlite (3.7.16.1-1 -> 3.7.17-1)
    [2013-06-05 13:05] [PACMAN] upgraded python2 (2.7.3-4 -> 2.7.5-1)
    [2013-06-05 13:05] [PACMAN] upgraded bluez (4.101-1 -> 4.101-2)
    [2013-06-05 13:05] [PACMAN] upgraded gtk-update-icon-cache (2.24.17-1 -> 2.24.18-1)
    [2013-06-05 13:05] [PACMAN] upgraded librsvg (2.36.4-1 -> 2.37.0-2)
    [2013-06-05 13:06] [PACMAN] upgraded gnome-icon-theme-symbolic (3.6.2-1 -> 3.8.2.2-1)
    [2013-06-05 13:06] [PACMAN] upgraded gnome-icon-theme (3.6.2-1 -> 3.8.2-1)
    [2013-06-05 13:06] [PACMAN] upgraded libpulse (3.0-2 -> 3.0-3)
    [2013-06-05 13:06] [PACMAN] upgraded libusbx (1.0.14-1 -> 1.0.15-1)
    [2013-06-05 13:06] [PACMAN] upgraded openobex (1.5-3 -> 1.7-5)
    [2013-06-05 13:06] [PACMAN] upgraded libltdl (2.4.2-7 -> 2.4.2-9)
    [2013-06-05 13:06] [PACMAN] upgraded libxt (1.1.3-1 -> 1.1.4-1)
    [2013-06-05 13:06] [PACMAN] upgraded liblqr (0.4.1-3 -> 0.4.2-1)
    [2013-06-05 13:06] [PACMAN] upgraded imagemagick (6.8.4.0-1 -> 6.8.5.7-1)
    [2013-06-05 13:06] [PACMAN] upgraded obex-data-server (0.4.6-5 -> 0.4.6-7)
    [2013-06-05 13:06] [PACMAN] upgraded blueman (1.23-5 -> 1.23-6)
    [2013-06-05 13:06] [PACMAN] upgraded boost-libs (1.52.0-3 -> 1.53.0-2)
    [2013-06-05 13:06] [PACMAN] upgraded boost (1.52.0-3 -> 1.53.0-2)
    [2013-06-05 13:06] [PACMAN] upgraded sed (4.2.2-2 -> 4.2.2-3)
    [2013-06-05 13:06] [PACMAN] upgraded ca-certificates (20130119-1 -> 20130119-2)
    [2013-06-05 13:06] [PACMAN] upgraded ca-certificates-java (20121112+nmu2-1 -> 20121112+nmu2-2)
    [2013-06-05 13:06] [PACMAN] upgraded cairo-perl (1.082-2 -> 1.103-2)
    [2013-06-05 13:06] [PACMAN] upgraded cairomm (1.10.0-2 -> 1.10.0-3)
    [2013-06-05 13:06] [PACMAN] upgraded libxml2 (2.8.0-1 -> 2.9.1-2)
    [2013-06-05 13:06] [PACMAN] upgraded libbluray (0.2.3-1 -> 0.3.0-1)
    [2013-06-05 13:06] [PACMAN] upgraded libva (1.1.0-2 -> 1.1.1-1)
    [2013-06-05 13:06] [PACMAN] upgraded libvpx (1.1.0-1 -> 1.2.0-1)
    [2013-06-05 13:06] [PACMAN] upgraded openjpeg (1.5.0-1 -> 1.5.1-1)
    [2013-06-05 13:06] [PACMAN] upgraded opus (1.0.2-1 -> 1.0.2-2)
    [2013-06-05 13:06] [PACMAN] upgraded rtmpdump (20121203-1 -> 20121203-2)
    [2013-06-05 13:06] [PACMAN] upgraded v4l-utils (0.9.3-2 -> 0.9.5-2)
    [2013-06-05 13:06] [PACMAN] upgraded ffmpeg (1:1.2-1 -> 1:1.2.1-1)
    [2013-06-05 13:06] [PACMAN] upgraded chromaprint (0.7-4 -> 0.7-5)
    [2013-06-05 13:06] [PACMAN] upgraded keyutils (1.5.5-3 -> 1.5.5-5)
    [2013-06-05 13:06] [PACMAN] upgraded krb5 (1.11.1-1 -> 1.11.2-4)
    [2013-06-05 13:06] [PACMAN] installed libbsd (0.4.2-1)
    [2013-06-05 13:06] [PACMAN] upgraded libwbclient (3.6.13-1 -> 4.0.6-1)
    [2013-06-05 13:06] [PACMAN] upgraded cifs-utils (5.9-1 -> 6.0-2)
    [2013-06-05 13:06] [PACMAN] upgraded cogl (1.10.4-1 -> 1.14.0-3)
    [2013-06-05 13:06] [PACMAN] upgraded json-glib (0.15.2-1 -> 0.16.0-1)
    [2013-06-05 13:06] [PACMAN] upgraded xkeyboard-config (2.8-1 -> 2.9-1)
    [2013-06-05 13:06] [PACMAN] upgraded libxkbcommon (0.2.0-3 -> 0.3.0-1)
    [2013-06-05 13:06] [PACMAN] upgraded clutter (1.12.2-1 -> 1.14.4-2)
    [2013-06-05 13:06] [PACMAN] upgraded libtasn1 (3.2-1 -> 3.3-1)
    [2013-06-05 13:06] [PACMAN] upgraded nettle (2.6-1 -> 2.7.1-1)
    [2013-06-05 13:06] [PACMAN] upgraded p11-kit (0.13-1 -> 0.18.2-1)
    [2013-06-05 13:06] [PACMAN] upgraded gnutls (3.1.10-1 -> 3.2.1-1)
    [2013-06-05 13:06] [PACMAN] upgraded libcups (1.6.2-1 -> 1.6.2-2)
    [2013-06-05 13:06] [PACMAN] upgraded libxinerama (1.1.2-1 -> 1.1.3-1)
    [2013-06-05 13:06] [PACMAN] upgraded libxrandr (1.4.0-1 -> 1.4.1-1)
    [2013-06-05 13:06] [PACMAN] upgraded libgusb (0.1.4-1 -> 0.1.6-1)
    [2013-06-05 13:06] [PACMAN] upgraded dconf (0.14.1-1 -> 0.16.0-1)
    [2013-06-05 13:06] [ALPM] warning: /etc/colord.conf installed as /etc/colord.conf.pacnew
    [2013-06-05 13:06] [PACMAN] upgraded colord (0.1.31-1 -> 1.0.0-1)
    [2013-06-05 13:06] [PACMAN] upgraded gtk3 (3.6.4-2 -> 3.8.2-1)
    [2013-06-05 13:06] [PACMAN] upgraded clutter-gtk (1.4.2-1 -> 1.4.4-1)
    [2013-06-05 13:06] [PACMAN] upgraded curl (7.29.0-2 -> 7.30.0-1)
    [2013-06-05 13:06] [PACMAN] upgraded cmake (2.8.10.2-5 -> 2.8.11-2)
    [2013-06-05 13:06] [PACMAN] upgraded cpupower (3.8-1 -> 3.9-3)
    [2013-06-05 13:06] [PACMAN] upgraded cronie (1.4.9-2 -> 1.4.9-4)
    [2013-06-05 13:06] [PACMAN] upgraded device-mapper (2.02.98-3 -> 2.02.98-4)
    [2013-06-05 13:06] [PACMAN] upgraded popt (1.16-5 -> 1.16-6)
    [2013-06-05 13:06] [PACMAN] upgraded cryptsetup (1.6.0-1 -> 1.6.1-2)
    [2013-06-05 13:06] [PACMAN] upgraded poppler (0.22.2-1 -> 0.22.4-1)
    [2013-06-05 13:06] [PACMAN] upgraded qpdf (4.0.1-1 -> 4.1.0-1)
    [2013-06-05 13:06] [PACMAN] upgraded cups-filters (1.0.31-1 -> 1.0.34-4)
    [2013-06-05 13:07] [PACMAN] upgraded cups (1.6.2-1 -> 1.6.2-2)
    [2013-06-05 13:07] [PACMAN] upgraded dash (0.5.7-3 -> 0.5.7-4)
    [2013-06-05 13:07] [PACMAN] upgraded iptables (1.4.18-1 -> 1.4.19.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded iproute2 (3.8.0-1 -> 3.9.0-2)
    [2013-06-05 13:07] [PACMAN] upgraded dhclient (4.2.5-1 -> 4.2.5.p1-2)
    [2013-06-05 13:07] [PACMAN] upgraded dhcpcd (5.6.7-1 -> 5.6.8-3)
    [2013-06-05 13:07] [PACMAN] upgraded libksba (1.2.0-3 -> 1.3.0-1)
    [2013-06-05 13:07] [PACMAN] upgraded dirmngr (1.1.0-4 -> 1.1.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded gcc-multilib (4.7.2-4 -> 4.8.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded dkms (2.2.0.3-13 -> 2.2.0.3-14)
    [2013-06-05 13:07] [PACMAN] upgraded libxslt (1.1.26-3 -> 1.1.28-1)
    [2013-06-05 13:07] [PACMAN] upgraded docbook-xsl (1.78.0-1 -> 1.78.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded gtk2 (2.24.17-1 -> 2.24.18-1)
    [2013-06-05 13:07] [PACMAN] upgraded dropbox (1.6.16-1 -> 2.0.16-1)
    [2013-06-05 13:07] [ALPM-SCRIPTLET] /tmp/alpm_NMeaOd/.INSTALL: sor: 9: sbin/ldconfig: Nincs ilyen fájl vagy könyvtár
    [2013-06-05 13:07] [PACMAN] upgraded fakeroot (1.18.4-1 -> 1.19-1)
    [2013-06-05 13:07] [PACMAN] upgraded file-roller (3.6.3-2 -> 3.8.2-1)
    [2013-06-05 13:07] [PACMAN] upgraded wxgtk (2.8.12.1-4 -> 2.8.12.1-5)
    [2013-06-05 13:07] [PACMAN] upgraded filezilla (3.6.0.2-1 -> 3.7.0.2-1)
    [2013-06-05 13:07] [PACMAN] upgraded nss (3.14.3-2 -> 3.14.3-3)
    [2013-06-05 13:07] [PACMAN] upgraded firefox (19.0.2-1 -> 21.0-1)
    [2013-06-05 13:07] [PACMAN] upgraded libogg (1.3.0-1 -> 1.3.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded flac (1.2.1-3 -> 1.3.0-1)
    [2013-06-05 13:07] [PACMAN] upgraded flashplugin (11.2.202.275-1 -> 11.2.202.285-1)
    [2013-06-05 13:07] [PACMAN] upgraded foomatic-filters (1:4.0.17_20120712-1 -> 1:4.0.17_20130518-1)
    [2013-06-05 13:07] [PACMAN] upgraded foomatic-db-engine (1:4.0.17_20120712-1 -> 1:4.0.17_20130518-1)
    [2013-06-05 13:07] [PACMAN] upgraded freeglut (2.8.0-2 -> 2.8.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded fuse (2.9.2-1 -> 2.9.2-3)
    [2013-06-05 13:07] [PACMAN] upgraded libxfce4util (4.10.0-1 -> 4.10.1-2)
    [2013-06-05 13:07] [PACMAN] upgraded garcon (0.2.0-1 -> 0.2.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded gawk (4.0.2-1 -> 4.1.0-1)
    [2013-06-05 13:07] [PACMAN] upgraded gconf (3.2.6-1 -> 3.2.6-2)
    [2013-06-05 13:07] [PACMAN] upgraded gcr (3.6.2-2 -> 3.8.2-1)
    [2013-06-05 13:07] [PACMAN] upgraded gd (2.0.36RC1-5 -> 2.0.36RC1-6)
    [2013-06-05 13:07] [PACMAN] upgraded geany (1.23-1 -> 1.23.1-1)
    [2013-06-05 13:07] [PACMAN] upgraded geoip-database (20130206-1 -> 20130514-1)
    [2013-06-05 13:07] [PACMAN] upgraded geoip (1.4.8-2 -> 1.5.0-1)
    [2013-06-05 13:07] [PACMAN] upgraded ghostscript (9.07-1 -> 9.07-2)
    [2013-06-05 13:07] [PACMAN] upgraded perl-error (0.17019-1 -> 0.17020-1)
    [2013-06-05 13:07] [PACMAN] upgraded git (1.8.2-1 -> 1.8.3-1)
    [2013-06-05 13:07] [PACMAN] upgraded libproxy (0.4.11-1 -> 0.4.11-2)
    [2013-06-05 13:07] [PACMAN] upgraded gsettings-desktop-schemas (3.6.1-1 -> 3.8.2-1)
    [2013-06-05 13:07] [PACMAN] upgraded glib-networking (2.34.2-1 -> 2.36.2-1)
    [2013-06-05 13:07] [PACMAN] upgraded glib-perl (1.260-1 -> 1.280-3)
    [2013-06-05 13:07] [PACMAN] upgraded gmtk (1.0.7-1 -> 1.0.8-1)
    [2013-06-05 13:07] [PACMAN] upgraded libatasmart (0.19-1 -> 0.19-2)
    [2013-06-05 13:07] [PACMAN] upgraded udisks2 (2.0.1-1 -> 2.1.0-3)
    [2013-06-05 13:07] [PACMAN] upgraded libsecret (0.14-1 -> 0.15-1)
    [2013-06-05 13:08] [PACMAN] upgraded gnome-disk-utility (3.6.1-1 -> 3.8.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded lirc-utils (1:0.9.0-39 -> 1:0.9.0-46)
    [2013-06-05 13:08] [PACMAN] installed tevent (0.9.18-1)
    [2013-06-05 13:08] [PACMAN] installed ldb (1.1.15-1)
    [2013-06-05 13:08] [PACMAN] upgraded smbclient (3.6.13-1 -> 4.0.6-1)
    [2013-06-05 13:08] [PACMAN] upgraded libxxf86dga (1.1.3-1 -> 1.1.4-1)
    [2013-06-05 13:08] [PACMAN] upgraded mpg123 (1.15.1-1 -> 1.15.4-1)
    [2013-06-05 13:08] [PACMAN] upgraded libcdio-paranoia (10.2+0.90-1 -> 10.2+0.90+1-1)
    [2013-06-05 13:08] [PACMAN] upgraded mplayer (35920-1 -> 36285-1)
    [2013-06-05 13:08] [PACMAN] upgraded gnome-mplayer (1.0.7-2 -> 1.0.8-1)
    [2013-06-05 13:08] [PACMAN] upgraded pango-perl (1.223-2 -> 1.224-2)
    [2013-06-05 13:08] [PACMAN] upgraded gtk2-perl (1.244-1 -> 1.247-2)
    [2013-06-05 13:08] [PACMAN] upgraded gnome-vfs-perl (1.081-6 -> 1.081-7)
    [2013-06-05 13:08] [PACMAN] upgraded gnomecanvas-perl (1.002-10 -> 1.002-11)
    [2013-06-05 13:08] [PACMAN] upgraded pinentry (0.8.2-2 -> 0.8.3-1)
    [2013-06-05 13:08] [PACMAN] upgraded gnupg (2.0.19-6 -> 2.0.20-2)
    [2013-06-05 13:08] [PACMAN] upgraded python2-mako (0.7.3-1 -> 0.8.1-1)
    [2013-06-05 13:08] [PACMAN] upgraded gobject-introspection (1.34.2-1 -> 1.36.0-1)
    [2013-06-05 13:08] [PACMAN] upgraded parted (3.1-1 -> 3.1-2)
    [2013-06-05 13:08] [PACMAN] upgraded pangomm (2.28.4-1 -> 2.34.0-1)
    [2013-06-05 13:08] [PACMAN] upgraded gtkmm (2.24.2-2 -> 2.24.3-1)
    [2013-06-05 13:08] [PACMAN] upgraded gparted (0.15.0-1 -> 0.16.1-5)
    [2013-06-05 13:08] [PACMAN] upgraded gpgme (1.3.2-1 -> 1.4.1-1)
    [2013-06-05 13:08] [PACMAN] upgraded gpm (1.20.7-1 -> 1.20.7-3)
    [2013-06-05 13:08] [PACMAN] upgraded groff (1.22.2-2 -> 1.22.2-3)
    [2013-06-05 13:08] [PACMAN] upgraded gstreamer0.10 (0.10.36-1 -> 0.10.36-2)
    [2013-06-05 13:08] [PACMAN] upgraded gstreamer0.10-good (0.10.31-1 -> 0.10.31-3)
    [2013-06-05 13:08] [ALPM-SCRIPTLET] /tmp/alpm_i2PHDJ/.INSTALL: sor: 18: usr/sbin/gconfpkg: Nincs ilyen fájl vagy könyvtár
    [2013-06-05 13:08] [ALPM-SCRIPTLET] /tmp/alpm_EvtktN/.INSTALL: sor: 4: usr/sbin/gconfpkg: Nincs ilyen fájl vagy könyvtár
    [2013-06-05 13:08] [PACMAN] upgraded gstreamer0.10-good-plugins (0.10.31-1 -> 0.10.31-3)
    [2013-06-05 13:08] [PACMAN] installed gstreamer (1.0.7-1)
    [2013-06-05 13:08] [PACMAN] upgraded orc (0.4.16-1 -> 0.4.17-1)
    [2013-06-05 13:08] [PACMAN] upgraded libxv (1.0.7-1 -> 1.0.8-1)
    [2013-06-05 13:08] [PACMAN] installed gst-plugins-base-libs (1.0.7-1)
    [2013-06-05 13:08] [PACMAN] upgraded libwebp (0.2.1-1 -> 0.3.0-3)
    [2013-06-05 13:08] [PACMAN] installed geoclue (0.12.99-1)
    [2013-06-05 13:08] [PACMAN] installed webkitgtk3 (2.0.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded gthumb (3.1.2-1 -> 3.2.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded gtkmm3 (3.6.0-1 -> 3.8.1-1)
    [2013-06-05 13:08] [PACMAN] upgraded gvfs (1.14.2-4 -> 1.16.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded gvfs-smb (1.14.2-4 -> 1.16.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded vim-runtime (7.3.875-1 -> 7.3.918-2)
    [2013-06-05 13:08] [PACMAN] upgraded ruby (2.0.0_p0-1 -> 2.0.0_p195-1)
    [2013-06-05 13:08] [PACMAN] upgraded gvim (7.3.875-1 -> 7.3.918-2)
    [2013-06-05 13:08] [PACMAN] upgraded hddtemp (0.3.beta15.52-1 -> 0.3.beta15.52-2)
    [2013-06-05 13:08] [PACMAN] upgraded hdparm (9.43-1 -> 9.43-2)
    [2013-06-05 13:08] [PACMAN] upgraded pygobject-devel (3.4.2-1 -> 3.8.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded python2-gobject (3.4.2-1 -> 3.8.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded ibus (1.5.1-1 -> 1.5.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded jre7-openjdk-headless (7.u17_2.3.8-1 -> 7.u21_2.3.9-4)
    [2013-06-05 13:08] [PACMAN] upgraded jre7-openjdk (7.u17_2.3.8-1 -> 7.u21_2.3.9-4)
    [2013-06-05 13:08] [PACMAN] upgraded icedtea-web-java7 (1.3.1-2 -> 1.4-1)
    [2013-06-05 13:08] [PACMAN] upgraded ilmbase (1.0.3-1 -> 2.0.0-1)
    [2013-06-05 13:08] [PACMAN] upgraded inetutils (1.9.1-4 -> 1.9.1-6)
    [2013-06-05 13:08] [PACMAN] upgraded python (3.3.0-3 -> 3.3.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded iotop (0.5-1 -> 0.5-2)
    [2013-06-05 13:08] [PACMAN] upgraded iputils (20121221-1 -> 20121221-2)
    [2013-06-05 13:08] [PACMAN] upgraded isl (0.11.1-1 -> 0.11.2-1)
    [2013-06-05 13:08] [PACMAN] upgraded jbig2dec (0.11-5 -> 0.11-6)
    [2013-06-05 13:08] [PACMAN] upgraded jdk7-openjdk (7.u17_2.3.8-1 -> 7.u21_2.3.9-4)
    [2013-06-05 13:08] [PACMAN] upgraded jfsutils (1.1.15-3 -> 1.1.15-4)
    [2013-06-05 13:08] [PACMAN] upgraded js (1.8.5-3 -> 17.0.0-1)
    [2013-06-05 13:08] [PACMAN] upgraded strigi (0.7.8-2 -> 0.7.8-3)
    [2013-06-05 13:09] [PACMAN] upgraded qt4 (4.8.4-16 -> 4.8.4-18)
    [2013-06-05 13:09] [PACMAN] upgraded virtuoso-base (6.1.6-1 -> 6.1.6-2)
    [2013-06-05 13:09] [PACMAN] upgraded soprano (2.9.0-2 -> 2.9.2-1)
    [2013-06-05 13:09] [PACMAN] upgraded openexr (1.7.1-2 -> 2.0.0-1)
    [2013-06-05 13:09] [PACMAN] upgraded procps-ng (3.3.7-1 -> 3.3.8-1)
    [2013-06-05 13:09] [PACMAN] upgraded pm-utils (1.4.1-5 -> 1.4.1-6)
    [2013-06-05 13:09] [PACMAN] upgraded libplist (1.8-2 -> 1.10-1)
    [2013-06-05 13:09] [PACMAN] upgraded usbmuxd (1.0.8-1 -> 1.0.8-2)
    [2013-06-05 13:09] [PACMAN] upgraded libimobiledevice (1.1.4-2 -> 1.1.5-1)
    [2013-06-05 13:09] [PACMAN] upgraded upower (0.9.20-1 -> 0.9.20-2)
    [2013-06-05 13:09] [PACMAN] upgraded qtwebkit (2.3.0-1 -> 2.3.1-2)
    [2013-06-05 13:09] [PACMAN] upgraded kdelibs (4.10.1-2 -> 4.10.3-3)
    [2013-06-05 13:09] [ALPM-SCRIPTLET] gtk-update-icon-cache: Cache file created successfully.
    [2013-06-05 13:09] [PACMAN] upgraded klavaro (1.9.6-1 -> 1.9.7-1)
    [2013-06-05 13:09] [PACMAN] upgraded laptop-mode-tools (1.63-1 -> 1.63-2)
    [2013-06-05 13:09] [PACMAN] upgraded less (451-1 -> 458-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-alsa-lib (1.0.26-1 -> 1.0.27.1-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-dbus-core (1.6.8-1 -> 1.6.10-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-fontconfig (2.10.2-1 -> 2.10.93-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-zlib (1.2.7-1 -> 1.2.8-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-glib2 (2.34.3-1 -> 2.36.2-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-glu (9.0.0-1 -> 9.0.0-2)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libjpeg-turbo (1.2.1-1 -> 1.3.0-2)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libpng (1.5.14-1 -> 1.6.2-1)
    [2013-06-05 13:09] [PACMAN] installed lib32-xz (5.0.4-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libtiff (4.0.3-1 -> 4.0.3-2)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxau (1.0.7-1 -> 1.0.8-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxcb (1.9-2 -> 1.9.1-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxfixes (5.0-1 -> 5.0.1-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxcursor (1.1.13-1 -> 1.1.14-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxext (1.3.1-1 -> 1.3.2-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxi (1.7-1 -> 1.7.1-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxrandr (1.4.0-1 -> 1.4.1-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-libxv (1.0.7-1 -> 1.0.8-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-sqlite (3.7.16-1 -> 3.7.17-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-qt4 (4.8.4-4 -> 4.8.4-5)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-util-linux (2.22.2-1 -> 2.23.1-1)
    [2013-06-05 13:09] [PACMAN] upgraded lib32-v4l-utils (0.9.3-1 -> 0.9.5-1)
    [2013-06-05 13:09] [PACMAN] upgraded libbonobo (2.32.1-3 -> 2.32.1-4)
    [2013-06-05 13:09] [PACMAN] upgraded libburn (1.2.8-1 -> 1.3.0.pl01-1)
    [2013-06-05 13:09] [PACMAN] upgraded libdmx (1.1.2-1 -> 1.1.3-1)
    [2013-06-05 13:09] [PACMAN] upgraded libdvbpsi (0.2.2-1 -> 1:0.2.2-1)
    [2013-06-05 13:09] [PACMAN] upgraded libfontenc (1.1.1-1 -> 1.1.2-1)
    [2013-06-05 13:09] [PACMAN] upgraded libgnome-keyring (3.6.0-2 -> 3.8.0-1)
    [2013-06-05 13:09] [PACMAN] upgraded libgpod (0.8.2-6 -> 0.8.2-7)
    [2013-06-05 13:09] [PACMAN] upgraded libgxps (0.2.2-2 -> 0.2.2-3)
    [2013-06-05 13:09] [PACMAN] upgraded libical (0.48-1 -> 1.0-2)
    [2013-06-05 13:09] [PACMAN] upgraded libisofs (1.2.8-1 -> 1.3.0-1)
    [2013-06-05 13:09] [PACMAN] upgraded libkate (0.4.1-3 -> 0.4.1-4)
    [2013-06-05 13:09] [PACMAN] upgraded liblastfm (1.0.6-2 -> 1.0.7-1)
    [2013-06-05 13:09] [PACMAN] upgraded libmicrohttpd (0.9.25-1 -> 0.9.27-1)
    [2013-06-05 13:09] [PACMAN] upgraded libnfs (1.3.0-1 -> 1.5.0-1)
    [2013-06-05 13:09] [PACMAN] upgraded libpcap (1.3.0-3 -> 1.4.0-1)
    [2013-06-05 13:09] [PACMAN] upgraded libpipeline (1.2.2-1 -> 1.2.3-1)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-hu (4.0.1-1 -> 4.0.3-1)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-common (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-base (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-calc (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-draw (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-gnome (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-impress (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-kde4 (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-math (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded postgresql-libs (9.2.3-1 -> 9.2.4-2)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-postgresql-connector (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:09] [PACMAN] upgraded libreoffice-sdk (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:10] [PACMAN] upgraded libreoffice-sdk-doc (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:10] [PACMAN] upgraded libwpd (0.9.4-1 -> 0.9.6-1)
    [2013-06-05 13:10] [PACMAN] upgraded libwps (0.2.7-1 -> 0.2.9-1)
    [2013-06-05 13:10] [PACMAN] upgraded libreoffice-writer (4.0.1-5 -> 4.0.3-3)
    [2013-06-05 13:10] [PACMAN] upgraded libshairport (1.2.1-2 -> 1.2.1.20121215-1)
    [2013-06-05 13:10] [PACMAN] upgraded tar (1.26-2 -> 1.26-4)
    [2013-06-05 13:10] [PACMAN] upgraded libtool (2.4.2-7 -> 2.4.2-9)
    [2013-06-05 13:10] [PACMAN] upgraded libtorrent-rasterbar (1:0.16.9-1 -> 1:0.16.10-1)
    [2013-06-05 13:10] [PACMAN] upgraded libxres (1.0.6-1 -> 1.0.7-1)
    [2013-06-05 13:10] [PACMAN] upgraded linux-firmware (20121118-1 -> 20130528-1)
    [2013-06-05 13:10] [PACMAN] upgraded mkinitcpio (0.13.0-1 -> 0.14.0-1)
    [2013-06-05 13:10] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
    [2013-06-05 13:10] [ALPM-SCRIPTLET] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Starting build: 3.9.4-1-ARCH
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [v86d]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [keymap]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> ERROR: Hook 'plymouth' cannot be found
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> ERROR: Hook 'plymouth-encrypt' cannot be found
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [lvm2]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> ERROR: file not found: `/usr/sbin/dmsetup'
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [resume]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> WARNING: errors were encountered during the build. The image may not be complete.
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Starting build: 3.9.4-1-ARCH
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [base]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [v86d]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [keymap]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [udev]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [block]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: aic94xx
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> WARNING: Possibly missing firmware for module: bfa
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> ERROR: Hook 'plymouth' cannot be found
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> ERROR: Hook 'plymouth-encrypt' cannot be found
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [lvm2]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> ERROR: file not found: `/usr/sbin/dmsetup'
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [resume]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] -> Running build hook: [shutdown]
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Generating module dependencies
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
    [2013-06-05 13:10] [ALPM-SCRIPTLET] ==> WARNING: errors were encountered during the build. The image may not be complete.
    [2013-06-05 13:10] [PACMAN] upgraded linux (3.8.4-1 -> 3.9.4-1)
    [2013-06-05 13:10] [PACMAN] upgraded linux-headers (3.8.4-1 -> 3.9.4-1)
    [2013-06-05 13:10] [PACMAN] upgraded linux-lts-headers (3.0.71-1 -> 3.0.80-1)
    [2013-06-05 13:10] [PACMAN] upgraded lm_sensors (3.3.3-1 -> 3.3.4-1)
    [2013-06-05 13:10] [PACMAN] upgraded logrotate (3.8.3-1 -> 3.8.4-2)
    [2013-06-05 13:10] [PACMAN] upgraded lsof (4.87-1 -> 4.87-2)
    [2013-06-05 13:10] [PACMAN] upgraded lvm2 (2.02.98-3 -> 2.02.98-4)
    [2013-06-05 13:10] [PACMAN] upgraded man-db (2.6.3-1 -> 2.6.3-3)
    [2013-06-05 13:11] [PACMAN] upgraded man-pages (3.50-1 -> 3.51-1)
    [2013-06-05 13:11] [PACMAN] upgraded mdadm (3.2.6-3 -> 3.2.6-4)
    [2013-06-05 13:11] [PACMAN] upgraded meld (1.7.1-1 -> 1.7.3-1)
    [2013-06-05 13:11] [PACMAN] upgraded mercurial (2.5.2-1 -> 2.6.2-1)
    [2013-06-05 13:11] [PACMAN] upgraded zenity (3.6.0-1 -> 3.8.0-1)
    [2013-06-05 13:11] [PACMAN] upgraded metacity (2.34.13-1 -> 2.34.13-5)
    [2013-06-05 13:11] [PACMAN] upgraded mjpegtools (2.0.0-2 -> 2.0.0-3)
    [2013-06-05 13:11] [ALPM] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
    [2013-06-05 13:11] [PACMAN] upgraded pacman-mirrorlist (20130323-1 -> 20130601-1)
    [2013-06-05 13:11] [PACMAN] upgraded pacman (4.1.0-2 -> 4.1.1-1)
    [2013-06-05 13:11] [PACMAN] upgraded pyalpm (0.5.3-2 -> 0.6.1-1)
    [2013-06-05 13:11] [PACMAN] upgraded namcap (3.2.4-2 -> 3.2.5-1)
    [2013-06-05 13:11] [PACMAN] upgraded net-tools (1.60.20120804git-2 -> 1.60.20130531git-1)
    [2013-06-05 13:11] [PACMAN] upgraded xinetd (2.3.15-2 -> 2.3.15-3)
    [2013-06-05 13:11] [PACMAN] upgraded netkit-bsd-finger (0.17-7 -> 0.17-8)
    [2013-06-05 13:11] [PACMAN] upgraded wpa_supplicant (2.0-3 -> 2.0-4)
    [2013-06-05 13:11] [PACMAN] upgraded ppp (2.4.5-5 -> 2.4.5-6)
    [2013-06-05 13:11] [PACMAN] installed libqmi (1.2.0-2)
    [2013-06-05 13:11] [PACMAN] installed libmbim (1.0.0-1)
    [2013-06-05 13:11] [PACMAN] installed modemmanager (0.7.990-5)
    [2013-06-05 13:11] [PACMAN] upgraded networkmanager (0.9.8.0-2 -> 0.9.8.0-4)
    [2013-06-05 13:11] [PACMAN] upgraded network-manager-applet (0.9.8.0-1 -> 0.9.8.0-3)
    [2013-06-05 13:11] [PACMAN] upgraded python2-distribute (0.6.34-1 -> 0.6.40-1)
    [2013-06-05 13:11] [PACMAN] upgraded sip (4.14.5-1 -> 4.14.6-1)
    [2013-06-05 13:11] [PACMAN] upgraded python2-sip (4.14.5-1 -> 4.14.6-1)
    [2013-06-05 13:11] [PACMAN] upgraded pyqt-common (4.10-1 -> 4.10.1-1)
    [2013-06-05 13:11] [PACMAN] upgraded python2-pyqt (4.10-1 -> 4.10.1-1)
    [2013-06-05 13:11] [PACMAN] upgraded ninja-ide (2.1.1-1 -> 2.2-1)
    [2013-06-05 13:11] [PACMAN] upgraded ntfs-3g (2013.1.13-2 -> 2013.1.13-3)
    [2013-06-05 13:11] [PACMAN] upgraded ntp (4.2.6.p5-13 -> 4.2.6.p5-14)
    [2013-06-05 13:11] [ALPM-SCRIPTLET]
    [2013-06-05 13:11] [ALPM-SCRIPTLET] ==> The sshd daemon has been moved to /usr/bin alongside all binaries.
    [2013-06-05 13:11] [ALPM-SCRIPTLET] ==> Please update this path in your scripts if applicable.
    [2013-06-05 13:11] [ALPM-SCRIPTLET]
    [2013-06-05 13:11] [PACMAN] upgraded openssh (6.2p1-1 -> 6.2p2-1)
    [2013-06-05 13:11] [PACMAN] upgraded opera (12.14.1738-1 -> 12.15.1748-1)
    [2013-06-05 13:11] [PACMAN] upgraded xfce4-panel (4.10.0-1 -> 4.10.1-1)
    [2013-06-05 13:11] [PACMAN] upgraded orage (4.8.4-1 -> 4.8.4-2)
    [2013-06-05 13:11] [PACMAN] upgraded pcmciautils (018-6 -> 018-7)
    [2013-06-05 13:11] [PACMAN] upgraded perl-bit-vector (7.2-2 -> 7.2-3)
    [2013-06-05 13:11] [PACMAN] upgraded perl-digest-sha1 (2.13-3 -> 2.13-4)
    [2013-06-05 13:11] [PACMAN] upgraded perl-gd (2.49-1 -> 2.49-2)
    [2013-06-05 13:11] [PACMAN] upgraded perl-html-parser (3.69-2 -> 3.71-2)
    [2013-06-05 13:11] [PACMAN] upgraded perl-image-exiftool (9.13-1 -> 9.27-1)
    [2013-06-05 13:11] [PACMAN] upgraded perl-net-ssleay (1.52-1 -> 1.54-2)
    [2013-06-05 13:11] [PACMAN] upgraded perl-io-socket-ssl (1.81-1 -> 1.94-1)
    [2013-06-05 13:11] [PACMAN] upgraded perl-json (2.53-2 -> 2.58-1)
    [2013-06-05 13:11] [PACMAN] upgraded perl-json-xs (2.33-1 -> 2.33-2)
    [2013-06-05 13:11] [PACMAN] upgraded perl-libwww (6.04-1 -> 6.05-1)
    [2013-06-05 13:11] [PACMAN] upgraded perl-locale-gettext (1.05-9 -> 1.05-10)
    [2013-06-05 13:11] [PACMAN] upgraded perl-lwp-protocol-https (6.03-1 -> 6.04-1)
    [2013-06-05 13:11] [PACMAN] upgraded perl-net-dbus (1.0.0-2 -> 1.0.0-3)
    [2013-06-05 13:11] [PACMAN] upgraded perl-test-pod (1.46-1 -> 1.48-1)
    [2013-06-05 13:11] [PACMAN] upgraded perl-text-iconv (1.7-7 -> 1.7-8)
    [2013-06-05 13:11] [PACMAN] upgraded perl-tree-dag-node (1.07-1 -> 1.11-1)
    [2013-06-05 13:11] [PACMAN] upgraded perl-xml-parser (2.41-3 -> 2.41-4)
    [2013-06-05 13:11] [PACMAN] upgraded perl-yaml-syck (1.22-1 -> 1.27-1)
    [2013-06-05 13:11] [PACMAN] upgraded poppler-glib (0.22.2-1 -> 0.22.4-1)
    [2013-06-05 13:11] [PACMAN] upgraded poppler-qt (0.22.2-1 -> 0.22.4-1)
    [2013-06-05 13:11] [PACMAN] upgraded pptpclient (1.7.2-4 -> 1.7.2-5)
    [2013-06-05 13:11] [PACMAN] upgraded protobuf (2.5.0-1 -> 2.5.0-3)
    [2013-06-05 13:11] [PACMAN] upgraded rtkit (0.11-1 -> 0.11-2)
    [2013-06-05 13:11] [PACMAN] upgraded sbc (1.0-1 -> 1.1-1)
    [2013-06-05 13:11] [ALPM-SCRIPTLET] >>> If you have per-user copies of configuration files (such as client.conf,
    [2013-06-05 13:11] [ALPM-SCRIPTLET] daemon.conf or default.pa) in ~/.pulse/, make sure you keep them in sync
    [2013-06-05 13:11] [ALPM-SCRIPTLET] with changes to the packaged files in /etc/pulse/. Otherwise, PulseAudio
    [2013-06-05 13:11] [ALPM-SCRIPTLET] may refuse to start due to configuration errors.
    [2013-06-05 13:11] [ALPM-SCRIPTLET]
    [2013-06-05 13:11] [ALPM-SCRIPTLET] >>> Autospawn is now disabled by default. If you need to run PulseAudio outside
    [2013-06-05 13:11] [ALPM-SCRIPTLET] of an X session, either:
    [2013-06-05 13:11] [ALPM-SCRIPTLET] - Enable autospawn in client.conf, or
    [2013-06-05 13:11] [ALPM-SCRIPTLET] - Start it manually by executing 'pulseaudio --start'
    [2013-06-05 13:11] [PACMAN] upgraded pulseaudio (3.0-2 -> 3.0-3)
    [2013-06-05 13:11] [PACMAN] upgraded python2-zope-interface (4.0.3-1 -> 4.0.5-1)
    [2013-06-05 13:11] [PACMAN] upgraded reiserfsprogs (3.6.22-1 -> 3.6.22-2)
    [2013-06-05 13:11] [PACMAN] upgraded rfkill (0.4-7 -> 0.5-1)
    [2013-06-05 13:11] [PACMAN] upgraded rsync (3.0.9-5 -> 3.0.9-6)
    [2013-06-05 13:11] [PACMAN] upgraded rxvt-unicode (9.18-1 -> 9.18-5)
    [2013-06-05 13:11] [PACMAN] upgraded sdl_image (1.2.12-2 -> 1.2.12-3)
    [2013-06-05 13:11] [PACMAN] upgraded seahorse (3.6.3-1 -> 3.8.2-1)
    [2013-06-05 13:11] [PACMAN] upgraded skype (4.1.0.20-6 -> 4.2.0.11-1)
    [2013-06-05 13:11] [PACMAN] upgraded slim (1.3.5-2 -> 1.3.5-3)
    [2013-06-05 13:11] [PACMAN] upgraded subversion (1.7.8-1 -> 1.7.9-6)
    [2013-06-05 13:11] [PACMAN] upgraded sudo (1.8.6.p7-2 -> 1.8.6.p8-2)
    [2013-06-05 13:11] [PACMAN] upgraded sysvinit-tools (2.88-9 -> 2.88-11)
    [2013-06-05 13:11] [PACMAN] upgraded systemd-sysvcompat (198-2 -> 204-3)
    [2013-06-05 13:11] [PACMAN] upgraded terminator (0.96-4 -> 0.97-1)
    [2013-06-05 13:11] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:11] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:11] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:11] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:11] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:11] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:12] [ALPM-SCRIPTLET] recreating all formats... done.
    [2013-06-05 13:12] [ALPM-SCRIPTLET] (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)
    [2013-06-05 13:12] [PACMAN] upgraded texlive-bin (2012.0-8 -> 2012.0-12)
    [2013-06-05 13:13] [ALPM-SCRIPTLET] >>> texlive: saving updmap.cfg as /tmp/tmp.BkYRWYLQwd...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] >>> texlive: regenerating updmap.cfg (custom additions should go
    [2013-06-05 13:13] [ALPM-SCRIPTLET] into /etc/texmf/web2c/updmap-local.cfg
    [2013-06-05 13:13] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:13] [ALPM-SCRIPTLET] >>> texlive: updating the fontmap files with updmap...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] done.
    [2013-06-05 13:13] [ALPM-SCRIPTLET] >>> texlive: recreating all formats...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] done.
    [2013-06-05 13:13] [ALPM-SCRIPTLET] (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)
    [2013-06-05 13:13] [ALPM-SCRIPTLET] NB: To setup ConTeXt and the lua(la)tex font db,
    [2013-06-05 13:13] [ALPM-SCRIPTLET] see http://wiki.archlinux.org/index.php/TeX_Live
    [2013-06-05 13:13] [PACMAN] upgraded texlive-core (2012.28273-1 -> 2012.29661-1)
    [2013-06-05 13:13] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:13] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:13] [PACMAN] upgraded texlive-bibtexextra (2012.28244-1 -> 2012.29663-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: saving updmap.cfg as /tmp/tmp.PCRnjpu2LX...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: regenerating updmap.cfg (custom additions should go
    [2013-06-05 13:14] [ALPM-SCRIPTLET] into /etc/texmf/web2c/updmap-local.cfg
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the fontmap files with updmap...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] done.
    [2013-06-05 13:14] [PACMAN] upgraded texlive-fontsextra (2012.28268-1 -> 2012.29646-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:14] [PACMAN] upgraded texlive-formatsextra (2012.26689-1 -> 2012.29110-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: saving updmap.cfg as /tmp/tmp.wUzwlpN7S4...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: regenerating updmap.cfg (custom additions should go
    [2013-06-05 13:14] [ALPM-SCRIPTLET] into /etc/texmf/web2c/updmap-local.cfg
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the fontmap files with updmap...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] done.
    [2013-06-05 13:14] [PACMAN] upgraded texlive-games (2012.28243-1 -> 2012.29679-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:14] [PACMAN] upgraded texlive-genericextra (2012.28210-1 -> 2012.29501-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:14] [PACMAN] upgraded texlive-htmlxml (2012.28273-1 -> 2012.29474-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: saving updmap.cfg as /tmp/tmp.OUUwjPH5PT...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: regenerating updmap.cfg (custom additions should go
    [2013-06-05 13:14] [ALPM-SCRIPTLET] into /etc/texmf/web2c/updmap-local.cfg
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the fontmap files with updmap...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] done.
    [2013-06-05 13:14] [PACMAN] upgraded texlive-latexextra (2012.28272-1 -> 2012.29701-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: updating the filename database...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /etc/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Updating /var/lib/texmf/ls-R...
    [2013-06-05 13:14] [ALPM-SCRIPTLET] mktexlsr: Done.
    [2013-06-05 13:14] [PACMAN] upgraded texlive-humanities (2012.28280-1 -> 2012.29347-1)
    [2013-06-05 13:14] [ALPM-SCRIPTLET] >>> texlive: saving u

    It has solved itself today. After making a -Syu today and installing a newer kernel then reinstalling catalyst-dkms from AUR it is working again!! )))) Marking as solved.
    Kernel: 3.9.5-1-ARCH
    Catalyst-dkms: 13.1-2 (instead of newest 13.4-1)
    Last edited by szebenyib (2013-06-14 12:02:42)

  • Suspend to RAM no longer works, even in a console

    I've recently installed Arch on an SSD (OCZ Vertex 2) and I have testing repo enabled.  I can get the laptop to suspend outside of KDE using pm-suspend, but the system never comes back after pressing a key.  The cursor just stays there.  The caps lock key still toggles, but I can't shutdown using the power button.
    In KDE when I close the lid it doesn't do anything. 
    When I first set up KDE suspend worked....I'm not sure what package broke it, but could anyone have any ideas?
    Here are my installed packages:
    a52dec 0.7.4-4
    aalib 1.4rc5-7
    acl 2.2.49-1
    acpi 1.4-2
    acpid 1.0.10-3
    akonadi 1.4.1-1
    akonadi-googledata 1.2.0-1
    alsa-lib 1.0.23-2
    alsa-utils 1.0.23-2
    antlr 2.7.7-8
    apr 1.4.2-1
    apr-util 1.3.10-1
    aria2 1.10.3-1
    aspell 0.60.6-4
    atk 1.32.0-1
    attica 0.1.4-1
    attr 2.4.44-1
    autoconf 2.68-1
    automake 1.11.1-1
    automoc4 0.9.88-1
    avahi 0.6.27-7
    avogadro 1.0.1-1
    babl 0.1.2-1
    bash 4.1.007-1
    beautiful-soup 3.1.0.1-4
    binutils 2.20.1-4
    bison 2.4.3-1
    blas 3.2.2-2
    boost 1.43.0-2
    boost-libs 1.43.0-2
    bzip2 1.0.6-1
    c-ares 1.7.3-1
    ca-certificates 20090814+nmu2-1
    ca-certificates-java 20100412-1
    cabextract 1.3-1
    cairo 1.10.0-2
    cdparanoia 10.2-2
    cfitsio 3.250-2
    cherrypy 3.1.2-3
    chmlib 0.40-1
    chromium 7.0.517.43-1
    cln 1.2.2-3
    cloog-ppl 0.15.9-2
    clucene 0.9.21b-1
    clyde-git 20101027-1
    cmake 2.8.2-3
    compositeproto 0.4.1-1
    consolekit 0.4.2-1
    coreutils 8.6-1
    cracklib 2.8.16-1
    cryptsetup 1.1.3-1
    curl 7.21.2-2
    damageproto 1.2.0-1
    dash 0.5.6.1-1
    db 4.8.26-2
    dbus 1.4.0-1
    dbus-core 1.4.0-1
    dbus-glib 0.86-1
    dbus-python 0.83.1-2
    dcron 4.4-2
    desktop-file-utils 0.16-1
    device-mapper 2.02.74-1
    dhcpcd 5.2.8-1
    dialog 1.1_20100428-2
    diffutils 3.0-1
    dirmngr 1.1.0-1
    djvulibre 3.5.23-1
    dmidecode 2.10-1
    dmxproto 2.3-1
    dnsutils 9.7.1.P2-1
    dri2proto 2.3-1
    e2fsprogs 1.41.12-1
    ebook-tools 0.2.1-1
    eigen 2.0.15-1
    eject 2.1.5-4
    elfutils 0.149-2
    enca 1.13-1
    enchant 1.6.0-1
    ethtool 6-2
    eventlog 0.2.12-1
    exiv2 0.20-1
    expat 2.0.1-5
    faac 1.28-2
    faad2 2.7-1
    fakeroot 1.14.4-2
    farsight2 0.0.21-2
    ffmpeg 25472-1
    fftw 3.2.2-1
    file 5.04-2
    filesystem 2010.10-1
    findutils 4.4.2-2
    fixesproto 4.1.1-1
    flac 1.2.1-2
    flashplugin-prerelease 10.2.161.23-1
    flex 2.5.35-4
    fluidsynth 1.1.3-1
    fontconfig 2.8.0-1
    fontsproto 2.1.0-1
    freeglut 2.6.0-1
    freetype2 2.4.3-1
    fribidi 0.19.2-1
    gawk 3.1.8-1
    gcc 4.5.1-1
    gcc-libs 4.5.1-1
    gconf 2.32.0-1
    gdbm 1.8.3-7
    gdk-pixbuf2 2.22.0-2
    gegl 0.1.2-1
    gen-init-cpio 2.6.32-1
    gettext 0.18.1.1-1
    ggz-client-libs 0.0.14.1-1
    ghostscript 9.00-1
    giflib 4.1.6-3
    gimp 2.6.11-1
    git 1.7.3.2-1
    glew 1.5.6-1
    glib2 2.26.0-2
    glibc 2.12.1-4
    glproto 1.4.12-1
    gmp 5.0.1-1
    gnugo 3.8-1
    gnupg 1.4.11-1
    gnupg2 2.0.16-2
    gnutls 2.8.6-1
    gobject-introspection 0.9.12-1
    gpgme 1.3.0-1
    gpm 1.20.6-5
    gpsd 2.95-4
    grep 2.7-1
    groff 1.20.1-4
    grub 0.97-17
    gsfonts 1.0.7pre44-2
    gsl 1.14-1
    gstreamer0.10 0.10.30-1
    gstreamer0.10-base 0.10.30-1
    gstreamer0.10-base-plugins 0.10.30-1
    gstreamer0.10-python 0.10.18-3
    gtk2 2.22.0-5
    gzip 1.4-1
    hal 0.5.14-4
    hal-info 0.20091130-1
    heimdal 1.3.3-1
    hicolor-icon-theme 0.12-1
    htop 0.8.3-1
    huludesktop 0.9.8-3
    hunspell 1.2.12-1
    iana-etc 2.30-1
    ilmbase 1.0.1-1
    imagemagick 6.6.4.10-1
    imlib2 1.4.4-1
    initscripts 2010.07-1
    inputproto 2.0-1
    intel-dri 7.9-1
    iputils 20100214-2
    iso-codes 3.14-1
    jack 0.118.0-4
    jasper 1.900.1-6
    jfsutils 1.1.14-1
    kbd 1.15.2-1
    kbproto 1.0.5-1
    kde-agent 20090801-2
    kdeaccessibility-colorschemes 4.5.2-1
    kdeaccessibility-iconthemes 4.5.2-1
    kdeaccessibility-kmag 4.5.2-1
    kdeaccessibility-kmousetool 4.5.2-1
    kdeaccessibility-kmouth 4.5.2-1
    kdeadmin-kcron 4.5.2-1
    kdeadmin-ksystemlog 4.5.2-1
    kdeadmin-kuser 4.5.2-1
    kdeadmin-system-config-printer-kde 4.5.2-1
    kdeartwork-aurorae 4.5.2-1
    kdeartwork-colorschemes 4.5.2-1
    kdeartwork-desktopthemes 4.5.2-1
    kdeartwork-emoticons 4.5.2-1
    kdeartwork-iconthemes 4.5.2-1
    kdeartwork-kscreensaver 4.5.2-1
    kdeartwork-sounds 4.5.2-1
    kdeartwork-styles 4.5.2-1
    kdeartwork-wallpapers 4.5.2-1
    kdeartwork-weatherwallpapers 4.5.2-1
    kdebase-dolphin 4.5.2-1
    kdebase-kdepasswd 4.5.2-1
    kdebase-kdialog 4.5.2-1
    kdebase-kfind 4.5.2-1
    kdebase-konqueror 4.5.2-1
    kdebase-konsole 4.5.2-1
    kdebase-kwrite 4.5.2-1
    kdebase-lib 4.5.2-1
    kdebase-plasma 4.5.2-1
    kdebase-runtime 4.5.2-2
    kdebase-workspace 4.5.2-2
    kdebindings-python 4.5.2-8
    kdeedu-blinken 4.5.2-2
    kdeedu-cantor 4.5.2-2
    kdeedu-data 4.5.2-2
    kdeedu-kalgebra 4.5.2-2
    kdeedu-kalzium 4.5.2-2
    kdeedu-kanagram 4.5.2-2
    kdeedu-kbruch 4.5.2-2
    kdeedu-kgeography 4.5.2-2
    kdeedu-khangman 4.5.2-2
    kdeedu-kig 4.5.2-2
    kdeedu-kiten 4.5.2-2
    kdeedu-klettres 4.5.2-2
    kdeedu-kmplot 4.5.2-2
    kdeedu-kstars 4.5.2-2
    kdeedu-ktouch 4.5.2-2
    kdeedu-kturtle 4.5.2-2
    kdeedu-kwordquiz 4.5.2-2
    kdeedu-libkdeedu 4.5.2-2
    kdeedu-marble 4.5.2-2
    kdeedu-parley 4.5.2-2
    kdeedu-rocs 4.5.2-2
    kdeedu-step 4.5.2-2
    kdegames-bomber 4.5.2-1
    kdegames-bovo 4.5.2-1
    kdegames-granatier 4.5.2-1
    kdegames-kajongg 4.5.2-1
    kdegames-kapman 4.5.2-1
    kdegames-katomic 4.5.2-1
    kdegames-kbattleship 4.5.2-1
    kdegames-kblackbox 4.5.2-1
    kdegames-kblocks 4.5.2-1
    kdegames-kbounce 4.5.2-1
    kdegames-kbreakout 4.5.2-1
    kdegames-kdiamond 4.5.2-1
    kdegames-kfourinline 4.5.2-1
    kdegames-kgoldrunner 4.5.2-1
    kdegames-kigo 4.5.2-1
    kdegames-killbots 4.5.2-1
    kdegames-kiriki 4.5.2-1
    kdegames-kjumpingcube 4.5.2-1
    kdegames-klines 4.5.2-1
    kdegames-kmahjongg 4.5.2-1
    kdegames-kmines 4.5.2-1
    kdegames-knetwalk 4.5.2-1
    kdegames-kolf 4.5.2-1
    kdegames-kollision 4.5.2-1
    kdegames-konquest 4.5.2-1
    kdegames-kpatience 4.5.2-1
    kdegames-kreversi 4.5.2-1
    kdegames-ksame 4.5.2-1
    kdegames-kshisen 4.5.2-1
    kdegames-ksirk 4.5.2-1
    kdegames-kspaceduel 4.5.2-1
    kdegames-ksquares 4.5.2-1
    kdegames-ksudoku 4.5.2-1
    kdegames-ktron 4.5.2-1
    kdegames-ktuberling 4.5.2-1
    kdegames-kubrick 4.5.2-1
    kdegames-libkdegames 4.5.2-1
    kdegames-libkmahjongg 4.5.2-1
    kdegames-lskat 4.5.2-1
    kdegames-palapeli 4.5.2-1
    kdegraphics-gwenview 4.5.2-2
    kdegraphics-kamera 4.5.2-2
    kdegraphics-kcolorchooser 4.5.2-2
    kdegraphics-kgamma 4.5.2-2
    kdegraphics-kolourpaint 4.5.2-2
    kdegraphics-kruler 4.5.2-2
    kdegraphics-ksnapshot 4.5.2-2
    kdegraphics-libs 4.5.2-2
    kdegraphics-okular 4.5.2-2
    kdelibs 4.5.2-2
    kdemultimedia-dragonplayer 4.5.2-1
    kdemultimedia-ffmpegthumbs 4.5.2-1
    kdemultimedia-juk 4.5.2-1
    kdemultimedia-kioslave 4.5.2-1
    kdemultimedia-kmix 4.5.2-1
    kdemultimedia-kscd 4.5.2-1
    kdemultimedia-mplayerthumbs 4.5.2-1
    kdenetwork-filesharing 4.5.2-1
    kdenetwork-kdnssd 4.5.2-1
    kdenetwork-kget 4.5.2-1
    kdenetwork-kopete 4.5.2-1
    kdenetwork-kppp 4.5.2-1
    kdenetwork-krdc 4.5.2-1
    kdenetwork-krfb 4.5.2-1
    kdepim-akonadiconsole 4.4.7-1
    kdepim-akregator 4.4.7-1
    kdepim-blogilo 4.4.7-1
    kdepim-console 4.4.7-1
    kdepim-kaddressbook 4.4.7-1
    kdepim-kalarm 4.4.7-1
    kdepim-kjots 4.4.7-1
    kdepim-kleopatra 4.4.7-1
    kdepim-kmail 4.4.7-1
    kdepim-knode 4.4.7-1
    kdepim-knotes 4.4.7-1
    kdepim-kontact 4.4.7-1
    kdepim-korganizer 4.4.7-1
    kdepim-kresources 4.4.7-1
    kdepim-ktimetracker 4.4.7-1
    kdepim-libkdepim 4.4.7-1
    kdepim-runtime 4.4.7-1
    kdepim-wizards 4.4.7-1
    kdepimlibs 4.5.2-1
    kdeplasma-addons-applets-bball 4.5.2-1
    kdeplasma-addons-applets-binary-clock 4.5.2-1
    kdeplasma-addons-applets-blackboard 4.5.2-1
    kdeplasma-addons-applets-bookmarks 4.5.2-1
    kdeplasma-addons-applets-bubblemon 4.5.2-1
    kdeplasma-addons-applets-calculator 4.5.2-1
    kdeplasma-addons-applets-charselect 4.5.2-1
    kdeplasma-addons-applets-comic 4.5.2-1
    kdeplasma-addons-applets-community 4.5.2-1
    kdeplasma-addons-applets-dict 4.5.2-1
    kdeplasma-addons-applets-eyes 4.5.2-1
    kdeplasma-addons-applets-fifteenpuzzle 4.5.2-1
    kdeplasma-addons-applets-filewatcher 4.5.2-1
    kdeplasma-addons-applets-frame 4.5.2-1
    kdeplasma-addons-applets-fuzzy-clock 4.5.2-1
    kdeplasma-addons-applets-incomingmsg 4.5.2-1
    kdeplasma-addons-applets-kdeobservatory 4.5.2-1
    kdeplasma-addons-applets-kimpanel 4.5.2-1
    kdeplasma-addons-applets-knowledgebase 4.5.2-1
    kdeplasma-addons-applets-kolourpicker 4.5.2-1
    kdeplasma-addons-applets-konqprofiles 4.5.2-1
    kdeplasma-addons-applets-konsoleprofiles 4.5.2-1
    kdeplasma-addons-applets-lancelot 4.5.2-1
    kdeplasma-addons-applets-leavenote 4.5.2-1
    kdeplasma-addons-applets-life 4.5.2-1
    kdeplasma-addons-applets-luna 4.5.2-1
    kdeplasma-addons-applets-magnifique 4.5.2-1
    kdeplasma-addons-applets-mediaplayer 4.5.2-1
    kdeplasma-addons-applets-microblog 4.5.2-1
    kdeplasma-addons-applets-news 4.5.2-1
    kdeplasma-addons-applets-notes 4.5.2-1
    kdeplasma-addons-applets-nowplaying 4.5.2-1
    kdeplasma-addons-applets-paste 4.5.2-1
    kdeplasma-addons-applets-pastebin 4.5.2-1
    kdeplasma-addons-applets-plasmaboard 4.5.2-1
    kdeplasma-addons-applets-previewer 4.5.2-1
    kdeplasma-addons-applets-qalculate 4.5.2-1
    kdeplasma-addons-applets-rememberthemilk 4.5.2-1
    kdeplasma-addons-applets-rssnow 4.5.2-1
    kdeplasma-addons-applets-showdashboard 4.5.2-1
    kdeplasma-addons-applets-showdesktop 4.5.2-1
    kdeplasma-addons-applets-social-news 4.5.2-1
    kdeplasma-addons-applets-spellcheck 4.5.2-1
    kdeplasma-addons-applets-systemloadviewer 4.5.2-1
    kdeplasma-addons-applets-timer 4.5.2-1
    kdeplasma-addons-applets-unitconverter 4.5.2-1
    kdeplasma-addons-applets-weather 4.5.2-1
    kdeplasma-addons-applets-weatherstation 4.5.2-1
    kdeplasma-addons-applets-webslice 4.5.2-1
    kdeplasma-addons-libs 4.5.2-1
    kdeplasma-addons-runners-audioplayercontrol 4.5.2-1
    kdeplasma-addons-runners-browserhistory 4.5.2-1
    kdeplasma-addons-runners-characters 4.5.2-1
    kdeplasma-addons-runners-contacts 4.5.2-1
    kdeplasma-addons-runners-converter 4.5.2-1
    kdeplasma-addons-runners-datetime 4.5.2-1
    kdeplasma-addons-runners-katesessions 4.5.2-1
    kdeplasma-addons-runners-konquerorsessions 4.5.2-1
    kdeplasma-addons-runners-konsolesessions 4.5.2-1
    kdeplasma-addons-runners-kopete 4.5.2-1
    kdeplasma-addons-runners-mediawiki 4.5.2-1
    kdeplasma-addons-runners-spellchecker 4.5.2-1
    kdeplasma-addons-wallpapers-mandelbrot 4.5.2-1
    kdeplasma-addons-wallpapers-marble 4.5.2-1
    kdeplasma-addons-wallpapers-pattern 4.5.2-1
    kdeplasma-addons-wallpapers-virus 4.5.2-1
    kdeplasma-addons-wallpapers-weather 4.5.2-1
    kdesdk-cervisia 4.5.2-1
    kdesdk-dolphin-plugins 4.5.2-1
    kdesdk-kapptemplate 4.5.2-1
    kdesdk-kate 4.5.2-1
    kdesdk-kbugbuster 4.5.2-1
    kdesdk-kcachegrind 4.5.2-1
    kdesdk-kdeaccounts-plugin 4.5.2-1
    kdesdk-kdepalettes 4.5.2-1
    kdesdk-kioslave 4.5.2-1
    kdesdk-kmtrace 4.5.2-1
    kdesdk-kompare 4.5.2-1
    kdesdk-kpartloader 4.5.2-1
    kdesdk-kprofilemethod 4.5.2-1
    kdesdk-kstartperf 4.5.2-1
    kdesdk-kuiviewer 4.5.2-1
    kdesdk-lokalize 4.5.2-1
    kdesdk-poxml 4.5.2-1
    kdesdk-scripts 4.5.2-1
    kdesdk-strigi-analyzer 4.5.2-1
    kdesdk-umbrello 4.5.2-1
    kdetoys-amor 4.5.2-1
    kdetoys-kteatime 4.5.2-1
    kdetoys-ktux 4.5.2-1
    kdeutils-ark 4.5.2-2
    kdeutils-kcalc 4.5.2-2
    kdeutils-kcharselect 4.5.2-2
    kdeutils-kdf 4.5.2-2
    kdeutils-kfloppy 4.5.2-2
    kdeutils-kgpg 4.5.2-2
    kdeutils-kremotecontrol 4.5.2-2
    kdeutils-ktimer 4.5.2-2
    kdeutils-kwallet 4.5.2-2
    kdeutils-okteta 4.5.2-2
    kdeutils-printer-applet 4.5.2-2
    kdeutils-superkaramba 4.5.2-2
    kdeutils-sweeper 4.5.2-2
    kdewebdev-kfilereplace 4.5.2-1
    kdewebdev-kimagemapeditor 4.5.2-1
    kdewebdev-klinkstatus 4.5.2-1
    kdewebdev-kommander 4.5.2-1
    kernel26 2.6.35.7-1
    kernel26-headers 2.6.35.7-1
    ksplash-theme-generator 0.4-1
    kwebkitpart 0.9.6-1
    lame 3.98.4-1
    lapack 3.2.2-2
    lcms 1.19-1
    less 436-1
    lesstif 0.95.2-2
    lib32-alsa-lib 1.0.23-4
    lib32-expat 2.0.1-7
    lib32-fontconfig 2.8.0-3
    lib32-freetype2 2.4.3-1
    lib32-gcc-libs 4.5.1-7
    lib32-glibc 2.12.1-7
    lib32-libdrm 2.4.21-4
    lib32-libgl 7.8.2-5
    lib32-libice 1.0.6-3
    lib32-libsm 1.1.1-3
    lib32-libx11 1.3.5-2
    lib32-libxau 1.0.6-2
    lib32-libxcb 1.7-2
    lib32-libxcursor 1.1.10-3
    lib32-libxdamage 1.1.3-3
    lib32-libxdmcp 1.0.3-4
    lib32-libxext 1.1.2-3
    lib32-libxfixes 4.0.5-3
    lib32-libxrandr 1.3.0-3
    lib32-libxrender 0.9.6-4
    lib32-libxt 1.0.8-3
    lib32-libxxf86dga 1.1.1-3
    lib32-libxxf86vm 1.1.0-3
    lib32-mesa 7.8.2-5
    lib32-util-linux-ng 2.18-3
    lib32-zlib 1.2.5-5
    libao 1.0.0-2
    libarchive 2.8.4-2
    libass 0.9.11-1
    libassuan 2.0.1-1
    libcaca 0.99.beta17-1
    libcap 2.19-1
    libcddb 1.3.2-2
    libcdio 0.82-1
    libcroco 0.6.2-1
    libcups 1.4.4-3
    libdaemon 0.14-1
    libdatrie 0.2.4-1
    libdbusmenu-qt 0.6.4-1
    libdca 0.0.5-2
    libdmx 1.1.0-1
    libdrm 2.4.22-1
    libdvbpsi 0.1.7-1
    libdvdnav 4.1.3-2
    libdvdread 4.1.3-2
    libebml 1.0.0-1
    libevent 1.4.14b-2
    libexif 0.6.19-1
    libfetch 2.33-1
    libffi 3.0.9-1
    libfontenc 1.1.0-1
    libftdi 0.18-1
    libgadu 1.9.1-1
    libgcal 0.9.6-1
    libgcrypt 1.4.6-1
    libggz 0.0.14.1-1
    libgl 7.9-1
    libglade 2.6.4-2
    libgpg-error 1.9-2
    libgphoto2 2.4.9-1
    libgssglue 0.1-2
    libical 0.46-1
    libice 1.0.7-1
    libid3tag 0.15.1b-6
    libidl2 0.8.14-1
    libidn 1.19-1
    libieee1284 0.2.11-3
    libindi 0.6.2-1
    libiodbc 3.52.7-4
    libjpeg 8.0.2-1
    libksba 1.0.8-1
    libktorrent 1.0.4-1
    libldap 2.4.23-1
    libmad 0.15.1b-4
    libmatroska 1.0.0-1
    libmng 1.0.10-3
    libmodplug 0.8.8.1-1
    libmp4v2 1.9.1-1
    libmpc 0.8.2-2
    libmpcdec 1.2.6-2
    libmpeg2 0.5.1-1
    libmsn 4.1-2
    libmtp 1.0.2-1
    libmysqlclient 5.1.51-1
    libnice 0.0.13-3
    libnl 1.1-2
    libnova 0.13.0-1
    libofa 0.9.3-2
    libogg 1.2.0-1
    libotr 3.2.0-1
    libpcap 1.1.1-1
    libpciaccess 0.12.0-1
    libpng 1.4.4-1
    libproxy 0.4.6-2
    libqalculate 0.9.7-1
    libraw1394 2.0.5-1
    librpcsecgss 0.19-3
    librsvg 2.32.0-2
    libsamplerate 0.1.7-1
    libsasl 2.1.23-4
    libshout 2.2.2-3
    libsm 1.1.1-1
    libsndfile 1.0.23-1
    libspectre 0.2.6-2
    libssh 0.4.6-1
    libtasn1 2.6-1
    libthai 0.1.14-1
    libtheora 1.1.1-1
    libtiff 3.9.4-1
    libtirpc 0.2.1-1
    libtool 2.4-1
    libusb 0.1.12-4
    libusb1 1.0.8-1
    libva 1.0.5-2
    libvdpau 0.4-1
    libvisual 0.4.0-3
    libvncserver 0.9.7-3
    libvorbis 1.3.1-1
    libvpx 0.9.2-1
    libwmf 0.2.8.4-8
    libx11 1.3.5-1
    libx86 1.1-2
    libxau 1.0.6-1
    libxaw 1.0.8-1
    libxcb 1.7-1
    libxcomposite 0.4.2-1
    libxcursor 1.1.10-1
    libxdamage 1.1.3-1
    libxdmcp 1.0.3-1
    libxext 1.1.2-1
    libxfixes 4.0.5-1
    libxfont 1.4.2-2
    libxft 2.1.14-1
    libxi 1.3.2-1
    libxinerama 1.1-1
    libxkbfile 1.0.6-1
    libxklavier 5.0-1
    libxml2 2.7.7-2
    libxmu 1.0.5-1
    libxp 1.0.0-3
    libxpm 3.5.8-1
    libxrandr 1.3.0-1
    libxrender 0.9.6-1
    libxslt 1.1.26-2
    libxss 1.2.0-1
    libxt 1.0.8-1
    libxtst 1.1.0-1
    libxv 1.0.5-1
    libxvmc 1.0.6-1
    libxxf86dga 1.1.1-1
    libxxf86vm 1.1.0-1
    libzip 0.9.3-1
    licenses 2.6-1
    linux-api-headers 2.6.34-1
    linux-firmware 20100911-1
    lirc-utils 0.8.6-5
    lm_sensors 3.2.0-1
    logrotate 3.7.9-1
    lua 5.1.4-6
    lua-lzlib 0.4_work2-4
    lua-yajl-git 20100308-1
    luafilesystem 1.5.0-1
    luasec 0.4-2
    luasocket 2.0.2-3
    lvm2 2.02.74-1
    lzo2 2.03-1
    m4 1.4.15-1
    mailx 8.1.1-7
    make 3.82-2
    man-db 2.5.7-1
    man-pages 3.29-1
    mcpp 2.7.2-2
    mdadm 3.1.4-1
    mesa-demos 8.0.1-1
    mkinitcpio 0.6.7-1
    mkinitcpio-busybox 1.17.2-1
    mlocate 0.23.1-2
    module-init-tools 3.12-1
    mozilla-common 1.4-1
    mpfr 3.0.0.p4-1
    mplayer 32492-2
    musicbrainz 2.1.5-4
    mysql 5.1.51-1
    mysql-clients 5.1.51-1
    nano 2.2.5-1
    ncurses 5.7-3
    neon 0.29.3-2
    net-tools 1.60-14
    nfs-utils 1.2.2-3
    nfsidmap 0.23-3
    nickle 2.70-1
    nspr 4.8.6-1
    nss 3.12.8-1
    openbabel 2.2.3-1
    opencore-amr 0.1.2-1
    openexr 1.6.1-1
    openjdk6 6.b20_1.9.1-1
    openjpeg 1.3-3
    openssh 5.6p1-1
    openssl 1.0.0.a-3
    openvpn 2.1.3-1
    orbit2 2.14.19-1
    orc 0.4.7-1
    oss 4.2_2003-1
    oxygen-icons 4.5.2-1
    package-query 0.4-1
    pacman 3.4.1-1
    pacman-mirrorlist 20100825-1
    pam 1.1.1-1
    pango 1.28.3-1
    patch 2.6.1-1
    pciutils 3.1.7-1
    pcmciautils 017-1
    pcre 8.10-1
    perl 5.12.1-2
    perl-error 0.17016-1
    perl-html-parser 3.66-1
    perl-html-tagset 3.20-1
    perl-libwww 5.836-1
    perl-uri 1.54-1
    perl-xyne-arch 2010.10.09.1-1
    perl-xyne-common 2010.10.09.1-1
    phonon 4.4.2-2
    phonon-gstreamer 4.4.2-2
    phoronix-test-suite 2.8.1-1
    php 5.3.3-2
    pinentry 0.8.0-2
    pixman 0.18.4-1
    pkg-config 0.25-2
    pm-quirks 0.20100619-1
    pm-utils 1.4.0-1
    podofo 0.8.4-1
    polkit 0.98-1
    polkit-kde 0.95.1-2
    polkit-qt 0.96.1-3
    poppler 0.14.4-1
    poppler-data 0.4.3-1
    poppler-qt 0.14.4-1
    popt 1.16-2
    postgresql-libs 9.0.1-2
    powerpill 2010.08.24.1-1
    ppl 0.11-1
    ppp 2.4.5-1
    printproto 1.0.4-2
    procps 3.2.8-1
    psmisc 22.13-1
    pth 2.0.7-3
    pycairo 1.8.10-2
    pycrypto 2.3-1
    pycups 1.9.51-2
    pygobject 2.26.0-2
    pygtk 2.22.0-3
    pyqt 4.8.0-1
    pysmbc 1.0.9-1
    python-dateutil 1.5-2
    python-dnspython 1.8.0-2
    python-imaging 1.1.7-2
    python-lxml 2.2.8-2
    python-mechanize 0.2.2-2
    python-numpy 1.5.0-2
    python-pypdf 1.12-5
    python-urwid 0.9.9.1-2
    python2 2.7-2
    qca 2.0.2-2
    qca-ossl 2.0.0-3
    qimageblitz 0.0.6-1
    qscintilla 2.4.5-4
    qt 4.7.0-4
    qwt 5.2.1-1
    randrproto 1.3.1-1
    raptor 1.4.21-1
    rarian 0.8.1-1
    rasqal 0.9.20-1
    rdesktop 1.6.0-5
    readline 6.1.002-1
    recode 3.6-5
    recordproto 1.14-1
    redland 1.0.12-1
    reiserfsprogs 3.6.21-2
    renderproto 0.11.1-1
    rp-pppoe 3.10-5
    rpcbind 0.2.0-2
    rrdtool 1.4.4-2
    run-parts 3.4.1-1
    sane 1.0.21-3
    schroedinger 1.0.9-1
    scrnsaverproto 1.2.0-1
    sdl 1.2.14-5
    sdl_image 1.2.10-2
    sed 4.2.1-2
    shadow 4.1.4.2-3
    shared-desktop-ontologies 0.5-1
    shared-mime-info 0.80-1
    sip 4.11.2-1
    smbclient 3.5.6-1
    soprano 2.5.2-1
    speex 1.2rc1-1
    sqlite3 3.7.3-1
    stdin-plasmoid-svn 0.2r32-1
    strigi 0.7.2-3
    subversion 1.6.9-6
    sudo 1.7.4.p4-1
    sysfsutils 2.1.0-5
    syslog-ng 3.1.2-1
    system-config-printer-common 1.2.5-3
    sysvinit 2.88-2
    taglib 1.6.3-1
    talloc 2.0.1-1
    tar 1.23-3
    tcp_wrappers 7.6-12
    tdb 1.2.1-2
    telepathy-farsight 0.0.15-2
    telepathy-glib 0.12.2-1
    telepathy-qt4 0.3.5-1
    texinfo 4.13a-4
    tidyhtml 1.46-1
    ttf-dejavu 2.30-2
    ttf-freefont 20090104-2
    ttf-ms-fonts 2.0-3
    tunepimp 0.5.3-8
    twisted 10.1.0-1
    tzdata 2010n-1
    udev 163-1
    unixodbc 2.3.0-1
    unrar 3.9.10-1
    unzip 6.0-5
    usbutils 0.90-1
    util-linux-ng 2.18-3
    v4l-utils 0.8.1-1
    vbetool 1.1-1
    vi 050325-3
    videoproto 2.3.1-1
    vim 7.3.3-2
    vim-colorsamplerpack 8.03-2
    vim-runtime 7.3.3-2
    virtualbox_bin 3.2.10-2
    virtuoso 6.1.2-1
    vlc 1.1.4.1-2
    wget 1.12-2
    which 2.20-3
    wicd 1.7.0-6
    wine 1.3.5-1
    wireless_tools 29-3
    wpa_supplicant 0.7.3-1
    x264 20101013-1
    xbitmaps 1.1.0-1
    xcb-proto 1.6-2
    xcb-util 0.3.6-1
    xdg-utils 1.0.2.20100618-1
    xextproto 7.1.2-1
    xf86-input-evdev 2.5.0-1
    xf86-input-keyboard 1.4.0-3
    xf86-input-mouse 1.6.0-1
    xf86-input-synaptics 1.3.0-1
    xf86-video-intel 2.13.0-4
    xf86-video-vesa 2.3.0-3
    xf86dgaproto 2.1-1
    xf86vidmodeproto 2.3-1
    xfsprogs 3.1.3-1
    xineramaproto 1.2-1
    xkeyboard-config 2.0-1
    xorg-docs 1.5-1
    xorg-font-utils 7.5-2
    xorg-fonts-100dpi 1.0.1-3
    xorg-fonts-75dpi 1.0.1-3
    xorg-fonts-alias 1.0.2-1
    xorg-fonts-encodings 1.0.3-1
    xorg-fonts-misc 1.0.1-1
    xorg-iceauth 1.0.3-1
    xorg-luit 1.1.0-1
    xorg-res-utils 1.0.3-3
    xorg-server 1.9.0.901-2
    xorg-server-common 1.9.0.901-2
    xorg-server-utils 7.6-1
    xorg-sessreg 1.0.6-1
    xorg-twm 1.0.4-3
    xorg-utils 7.6-5
    xorg-xauth 1.0.4-1
    xorg-xbacklight 1.1.1-1
    xorg-xcmsdb 1.0.3-1
    xorg-xgamma 1.0.3-1
    xorg-xhost 1.0.3-1
    xorg-xinit 1.2.1-1
    xorg-xinput 1.5.2-1
    xorg-xkb-utils 7.5-2
    xorg-xmodmap 1.0.5-1
    xorg-xrandr 1.3.3-1
    xorg-xrdb 1.0.6-1
    xorg-xrefresh 1.0.3-1
    xorg-xset 1.2.0-1
    xorg-xsetroot 1.0.3-1
    xproto 7.0.18-1
    xterm 266-1
    xvidcore 1.2.2-1
    xz 5.0.0-1
    yajl 1.0.9-3
    yaourt 0.9.5-1
    zlib 1.2.5-2
    zope-interface 3.5.3-2
    zvbi 0.2.33-2
    Last edited by DarksideEE7 (2010-10-28 16:29:14)

    Could it be that I don't have a swap file?  Surely not....I have 4GB of memory and I've never had problems with suspend in the past. 
    I was able to get it to suspend while in KDE using pm-suspend while in konsole and all of the console screens were black, with the exception of tty7, which had konsole up (without any window decoration).  I wasn't able to execute any commands (including shutdown), nor could I su - to root. 
    This happened a second time, and it mentioned that it was enable to mount  sda2 (which is my route partition)  Any ideas on how to fix this?  I NEED suspend. 
    Other than that I'm getting great performance, especially with my fstab options set in place.
    Last edited by DarksideEE7 (2010-10-28 23:40:08)

  • Configuring HP LaserJet 100 (scanner doesn't work)

    Hi,
    I've been trying to get my printer+scanner to work. Printing works fine, but can't get the scanning to work.
    It is a network printer. Currently it's configured via 'hp-setup', but I've tried configuring it through CUPS web interface, and it's the same problem.
    Here's what I get from 'xsane': 
    And from 'scanimage -L':
    % scanimage -L
    device `hpaio:/net/HP_LaserJet_100_colorMFP_M175nw?ip=10.2.0.10' is a Hewlett-Packard HP_LaserJet_100_colorMFP_M175nw all-in-one
    device `v4l:/dev/video0' is a Noname HP HD Webcam virtual device
    Here's the output from 'hp-doctor':
    % hp-doctor
    HP Linux Imaging and Printing System (ver. 3.14.6)
    Self Diagnse Utility and Healing Utility ver. 1.0
    Copyright (c) 2001-13 Hewlett-Packard Development Company, LP
    This software comes with ABSOLUTELY NO WARRANTY.
    This is free software, and you are welcome to distribute it
    under certain conditions. See COPYING file for more details.
    warning: arch distro is not found in AUTH_TYPES
    Checking for Deprecated items....
    error: This distro (i.e unknown 0.0) is either deprecated or not yet supported.
    The diagnosis is limited on unsupported platforms. Do you want to continue?(y=yes*, n=no):
    Checking for HPLIP updates....
    error: HPLIP upgrade is disabled by Archlinux for security reasons, see https://bugs.archlinux.org/task/38083 - if you like to upgrade HPLIP, use the Archlinux software package manager pacman.
    Done.
    error: Failed to upgrade latest HPLIP. Is hp-upgrade already running (i.e. foreground or background)?
    Checking for Dependencies....
    warning: unknown-0.0 version is not supported. Using unknown-0 versions dependencies to verify and install...
    | SYSTEM INFO |
    Kernel: 3.14.6-1-ARCH #1 SMP PREEMPT Sun Jun 8 10:08:38 CEST 2014 GNU/Linux
    Host: sablade
    Proc: 3.14.6-1-ARCH #1 SMP PREEMPT Sun Jun 8 10:08:38 CEST 2014 GNU/Linux
    Distribution: unknown 0.0
    Bitness: 64 bit
    | HPLIP CONFIGURATION |
    HPLIP-Version: HPLIP 3.14.6
    HPLIP-Home: /usr/share/hplip
    warning: HPLIP-Installation: Auto installation is not supported for unknown distro 0.0 version
    Current contents of '/etc/hp/hplip.conf' file:
    # hplip.conf. Generated from hplip.conf.in by configure.
    [hplip]
    version=3.14.6
    [dirs]
    home=/usr/share/hplip
    run=/var/run
    ppd=/usr/share/ppd/HP
    ppdbase=/usr/share/ppd
    doc=/usr/share/doc/hplip-3.14.6
    html=/usr/share/doc/hplip-3.14.6
    icon=/usr/share/applications
    cupsbackend=/usr/lib/cups/backend
    cupsfilter=/usr/lib/cups/filter
    drv=/usr/share/cups/drv/hp
    bin=/usr/bin
    # Following values are determined at configure time and cannot be changed.
    [configure]
    network-build=yes
    libusb01-build=no
    pp-build=yes
    gui-build=yes
    scanner-build=yes
    fax-build=yes
    dbus-build=yes
    cups11-build=no
    doc-build=yes
    shadow-build=no
    hpijs-install=yes
    foomatic-drv-install=yes
    foomatic-ppd-install=yes
    foomatic-rip-hplip-install=no
    hpcups-install=yes
    cups-drv-install=yes
    cups-ppd-install=yes
    internal-tag=3.14.6
    restricted-build=no
    ui-toolkit=qt4
    qt3=no
    qt4=yes
    policy-kit=no
    lite-build=no
    udev_sysfs_rules=no
    hpcups-only-build=no
    hpijs-only-build=no
    Current contents of '/var/lib/hp/hplip.state' file:
    [plugin]
    installed = 1
    eula = 1
    version = 3.14.6
    Current contents of '~/.hplip/hplip.conf' file:
    [settings]
    systray_visible = 0
    systray_messages = 0
    [last_used]
    device_uri = "hp:/net/HP_LaserJet_100_colorMFP_M175nw?ip=10.2.0.10"
    printer_name =
    working_dir = .
    [commands]
    scan = /usr/bin/xsane -V %SANE_URI%
    [refresh]
    rate = 30
    enable = false
    type = 1
    [polling]
    enable = false
    interval = 5
    device_list =
    [fax]
    voice_phone =
    email_address =
    [upgrade]
    notify_upgrade = false
    last_upgraded_time = 1402934982.23681
    pending_upgrade_time = 0
    [installation]
    date_time = 17/06/14 09:15:12
    version = 3.14.6
    <Package-name> <Package-Desc> <Required/Optional> <Min-Version> <Installed-Version> <Status> <Comment>
    | External Dependencies |
    policykit Admin-Policy-framework OPTIONAL - 0.112 OK - gs Ghostscript REQUIRED 7.05 9.14 OK - network Network-wget OPTIONAL - 1.15 OK - scanimage Shell-Scanning OPTIONAL 1.0 1.0.24 OK - avahi-utils avahi-utils OPTIONAL - 0.6.31 OK - dbus DBus REQUIRED - 1.8.4 OK - cups CUPS REQUIRED 1.1 1.7.3 OK 'CUPS Scheduler is running'
    xsane SANE-GUI OPTIONAL 0.9 0.999 OK -
    | General Dependencies |
    error: reportlab Python-PDF-Lib OPTIONAL 2.0 3.1.8 MISSING 'reportlab needs to be installed' libcrypto OpenSSL-Crypto-Lib REQUIRED - 1.0.1 OK -
    pil Python-Image-Lib OPTIONAL - 1.1.7 OK -
    pyqt4-dbus PyQt4-DBUS REQUIRED 4.0 4.11 OK -
    libjpeg JPEG-Lib REQUIRED - - OK -
    libpthread POSIX-Threads-Lib REQUIRED - 2.19 OK -
    python-dbus Python-DBUS REQUIRED 0.80.0 1.2.0 OK - python-devel Python-SDK REQUIRED 2.2 3.4.1 OK -
    pyqt4 Python-Qt4 REQUIRED 4.0 4.11 OK - cups-devel CUPS-SDK REQUIRED - 1.7.3 OK - sane-devel SANE-SDK REQUIRED - 1.0.24 OK - libusb USB-Lib REQUIRED - 1.0 OK - sane Scan-Lib REQUIRED - 1.0.24 OK - cups-image CUPS-Image-Lib REQUIRED - 1.7.3 OK - libnetsnmp-devel SNMP-Networking-SDK REQUIRED 5.0.9 5.7.2 OK -
    python-xml Python-XML-Lib REQUIRED - 2.1.0 OK -
    python-notify Desktop-notifications OPTIONAL - - OK -
    | Compile Time Dependencies |
    gcc gcc-Compiler REQUIRED - 4.9.0 OK - libtool Build-tools REQUIRED - 2.4.2 OK - make GNU-Build-tools REQUIRED 3.0 4.0 OK -
    | Python Extentions |
    cupsext CUPS-Extension REQUIRED - 3.14.6 OK -
    pcardext PhotoCard-Extension REQUIRED - 3.14.6 OK -
    hpmudext IO-Extension REQUIRED - 3.14.6 OK -
    | Scan Configuration |
    hpaio HPLIP-SANE-Backend REQUIRED - 3.14.6 OK 'hpaio found in /etc/sane.d/dll.conf'
    scanext Scan-SANE-Extension REQUIRED - 3.14.6 OK -
    | DISCOVERED SCANNER DEVICES |
    device `hpaio:/net/HP_LaserJet_100_colorMFP_M175nw?ip=10.2.0.10' is a Hewlett-Packard HP_LaserJet_100_colorMFP_M175nw all-in-one
    device `v4l:/dev/video0' is a Noname HP HD Webcam virtual device
    | DISCOVERED USB DEVICES |
    No devices found.
    | INSTALLED CUPS PRINTER QUEUES |
    HP_LaserJet_100_colorMFP_M175nw
    Type: Printer
    Device URI: hp:/net/HP_LaserJet_100_colorMFP_M175nw?ip=10.2.0.10
    PPD: /etc/cups/ppd/HP_LaserJet_100_colorMFP_M175nw.ppd
    PPD Description: HP LaserJet 100 color MFP M175 Postscript (recommended)
    Printer status: printer HP_LaserJet_100_colorMFP_M175nw is idle. enabled since Mon 16 Jun 2014 16:56:01 BST
    Required plug-in status: Installed
    error: Unable to communicate with device (code=12): hp:/net/HP_LaserJet_100_colorMFP_M175nw?ip=10.2.0.10 <-- I'm
    error: unable to open channel guessing here is
    error: Communication status: Failed the problem -->
    | PERMISSION |
    Checking Permissions....
    Permissions are correct.
    Checking for Configured Queues....
    Queue(s) configured correctly using HPLIP.
    Checking for HP Properitery Plugin's....
    Plugin's already installed
    Checking for Printer Status....
    error: 'HP_LaserJet_100_colorMFP_M175nw' Printer is either Powered-OFF or Failed to communicate.
    Turn On Printer and re-run hp-doctor
    Diagnose completed...

    I've had similar problems, installing python-pillow and python2-pyqt package, as mentioned elsewhere in this forum, solved the problem.
    I can now use simple scan for scanning, when before it only detected my webcam.
    Last edited by pagadder (2014-09-30 07:06:31)

  • [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

Maybe you are looking for