You are not logged in.
Pages: 1
I'm running checkgmail version 1.14pre2-svn from AUR. I upgraded a ton of packages on my system yesterday, including going from Perl 5 to 6. Now, when starting checkgmail, it complains:
CheckGmail v1.14pre2-svn
Copyright © 2005-6, Owen Marshall
Sorry! CheckGmail can't find the following package(s) on your system. These packages are needed for CheckGmail to run.
LWP::UserAgent HTTP::Request::Common
Try installing them if they're provided by your distro, and then run CheckGmail again ...
If that fails, you might have to download and install the packages from CPAN (http://search.cpan.org)
It might be related to this bug, so I installed perl-lwp-protocol-https, but the problem persists.
Any ideas?
Last edited by Proofrific (2011-12-25 01:16:26)
Offline
Does the patch posted in here help?
Offline
Thanks for the response, samuvuo. Unfortunately, checkgmail doesn't even get to the login process. So, that bug doesn't seem to apply. For example, I can't even update.
$ checkgmail -update
Warning: LWP::UserAgent not found ...
Warning: HTTP::Request::Common not found ...
CheckGmail requires the above packages to run
Please download and install from CPAN (http://search.cpan.org) and try again ...
Offline
True, I wasn't reading properly (or process what I was reading).
I'm running Perl 5 and packages are in /usr/share/perl5/vendor_perl. With Perl 6 I'm guessing this would be /usr/share/perl6/vendor_perl. Are the packages there? If you do have the packages installed, then this sounds like a path problem (then again, I'm no Perl expert).
Offline
Oops. Apparently, I'm still running Perl 5. I can't remember how I concluded that I was running Perl 6 now.
I used the following code to list all my Perl modules:
perl -MFile::Find=find -MFile::Spec::Functions -Tlwe 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC'
For LWP::UserAgent, it appears in two locations:
/usr/share/perl5/vendor_perl/LWP/UserAgent.pm
/usr/share/perl5/core_perl/CPAN/LWP/UserAgent.pm
I'm not sure why there's a CPAN version installed.
Offline
Oops. Apparently, I'm still running Perl 5. I can't remember how I concluded that I was running Perl 6 now.
perl-libwww is version 6.x, maybe you got it from there?
For LWP::UserAgent, it appears in two locations
Not a Perl expert (as I said before), but since it's in core_perl, I'm guessing it's part of the Perl package. I have it in
/usr/share/perl5/core_perl/CPAN/LWP/UserAgent.pm.
What are the permissions of the directories /usr/share/perl5/vendor_perl/LWP and /usr/share/perl5/core_perl/CPAN/LWP? Are they 755?
Offline
perl-libwww is version 6.x, maybe you got it from there?
Haha. Yes, that's where I got it from!
What are the permissions of the directories /usr/share/perl5/vendor_perl/LWP and /usr/share/perl5/core_perl/CPAN/LWP? Are they 755?
Yes, they're both 755.
drwxr-xr-x 2 root root 4096 Nov 27 01:37 LWP
I tried running a simple Perl script to see if LWP::UserAgent could be loaded.
#!/usr/bin/perl
use strict;
use LWP::UserAgent;
It had the following error:
Can't locate HTTP/Request.pm in @INC (@INC contains: /usr/lib/perl5/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/core_perl /usr/share/perl5/core_perl .) at /usr/share/perl5/vendor_perl/LWP/UserAgent.pm line 10.
BEGIN failed--compilation aborted at /usr/share/perl5/vendor_perl/LWP/UserAgent.pm line 10.
Compilation failed in require at ./test.pl line 4.
BEGIN failed--compilation aborted at ./test.pl line 4.
I can't find HTTP::Request in my list of Perl modules. So, it seems like I don't have it. Samuvuo, do you also not have it on your system, or is it just my computer? Thanks for your help!
Offline
Nope, no Request.pm in my system. Only:
/usr/share/perl5/core_perl/HTTP
/usr/share/perl5/core_perl/HTTP/Tiny.pm
/usr/share/perl5/core_perl/CPAN/HTTP
/usr/share/perl5/core_perl/CPAN/HTTP/Client.pm
/usr/share/perl5/core_perl/CPAN/HTTP/Credentials.pm
Offline
I installed HTTP::Request using the following PKGBUILD:
# $Id$
# Contributer:
# Maintainer:
pkgname=perl-http-request
_realname=HTTP-Message
pkgver=6.02
pkgrel=1
pkgdesc="Perl/CPAN Module HTTP::Request - HTTP style request message"
arch=('any')
url="http://search.cpan.org/dist/${_realname}/"
license=('GPL' 'Artistic')
depends=('perl>=5.10.0')
source=("http://www.cpan.org/authors/id/G/GA/GAAS/${_realname}-${pkgver}.tar.gz")
md5sums=("a6b28e44f7b5e5573362f042d522a456")
options=(!emptydirs)
build() {
cd "${srcdir}/${_realname}-${pkgver}"
# Install module into the vendor directories.
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "${srcdir}/${_realname}-${pkgver}"
make DESTDIR="${pkgdir}" install
# Remove .packlist and perllocal.pod files.
find "${pkgdir}" -name '.packlist' -delete
find "${pkgdir}" -name 'perllocal.pod' -delete
}
Then, my test program was able to load it, and so was checkgmail. Now, it's having a new problem, that LWP::Protocol::https isn't installed. Running a simple test program
#!/usr/bin/perl
use strict;
use LWP::Protocol::https;
reveals that Net::HTTP is missing:
Can't locate Net/HTTP.pm in @INC (@INC contains: /usr/lib/perl5/site_perl /usr/share/perl5/site_perl /usr/lib/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib/perl5/core_perl /usr/share/perl5/core_perl .) at /usr/share/perl5/vendor_perl/LWP/Protocol/http.pm line 7.
Compilation failed in require at /usr/share/perl5/vendor_perl/LWP/Protocol/https.pm line 6.
Compilation failed in require at ./test.pl line 3.
BEGIN failed--compilation aborted at ./test.pl line 3.
I reinstalled the package "perl-net-http", and checkgmail was able to start. But, it wasn't able to log in, which is the problem that samuvuo pointed out here. After applying the patch on that page, checkgmail works!
Offline
Are you installing packages without their dependencies? All of your missing packages, perl-http-message (which provides HTTP/Request.pm) and perl-net-http (for Net/HTTP.pm) are dependencies. perl-http-message is a dependency of perl-libwww (perl-libwww provides LWP/UserAgent.pm). perl-net-http is a dependency of perl-lwp-protocol-https. Did you just do a pacman -Syu to update your system? Yes checkgmail has its own problems but I am curious about your problem with module/package deps. I maintain the packages.
Just for the record, LWP::UserAgent is not a core module. /usr/share/perl5/core_perl/CPAN/LWP/UserAgent.pm is for the CPAN::LWP::UserAgent module which is in the core.
PS your perl-http-request package will conflict with the perl-http-message package in [extra].
Offline
Hi juster. Thanks for the info. Yes, I did a simple `pacman -Syu`. But, it was a long time since I last updated, so there were a lot of packages (over 400, including going from kernel 2.6 -> 3.1).
I thought it was strange that reinstalling "perl-net-http" solved one of the problems. I'm assuming that something went wrong when updating so many packages for me to have to reinstall the packages, even though the pacman logs are happy.
When I upgraded from kernel 2.6 to 3.1, I unknowingly kept booting into the old kernel because I didn't update GRUB with the new kernel and initrd names. Of course, I kept getting errors from various modules. So, I tried updating the system and such until I figured out my mistake by running `uname`. Maybe updating from the wrong kernel caused the problem?
Thanks for your work in maintaining the packages. Is there any information I can provide?
Offline
I'm not sure if your kernel problems would have such a strong effect. I would suspect not. Your problems seem to be that you were missing packages altogether. perl-net-http should have been installed when perl-libwww was upgraded. Likewise for perl-http-message.
Could you post your pacman.log to a pastebin or somewhere I could look at it? I doubt I will be able to find the fundamental cause of your problems but I am just curious. I am wondering if I made some mistake with these packages.
PS I will also try to package the patch in this thread because the maintainer of the checkgmail package is not responsive.
Offline
Here's my pacman.log.
[2011-12-23 22:20] Running 'pacman -Syu'
[2011-12-23 22:20] synchronizing package lists
[2011-12-23 22:21] starting full system upgrade
[2011-12-24 00:00] Running 'pacman -Syu -f filesystem'
[2011-12-24 00:00] synchronizing package lists
[2011-12-24 00:00] starting full system upgrade
[2011-12-24 00:01] Running 'pacman -Sy -f initscripts'
[2011-12-24 00:01] synchronizing package lists
[2011-12-24 00:01] ATTENTION UDEV:
[2011-12-24 00:01] ----------
[2011-12-24 00:01] We now use upstream rules for assigning devices to the 'disk', 'optical',
[2011-12-24 00:01] 'scanner' and 'video' groups. Beware of any changes.
[2011-12-24 00:01] --
[2011-12-24 00:01] We no longer create symlinks from /dev/<dev> to /dev/<dev>0.
[2011-12-24 00:01] --
[2011-12-24 00:01] For security reasons, we no longer add devices to the 'storage' group. Use
[2011-12-24 00:01] udisks and friends, or add custom rules to /etc/udev.d/rules/, if you want
[2011-12-24 00:01] this functionality back.
[2011-12-24 00:01] --
[2011-12-24 00:01] We no longer create the static nodes on install needed for an initrd-less and
[2011-12-24 00:01] devtmpfs-less boot, this only affects fresh installs.
[2011-12-24 00:01] ---------------
[2011-12-24 00:01] upgraded udev (173-3 -> 175-1)
[2011-12-24 00:01] warning: /etc/rc.conf installed as /etc/rc.conf.pacnew
[2011-12-24 00:01] If using non-bash-compatible shell, please set LANG in /etc/locale.conf,
[2011-12-24 00:01] as LOCALE in /etc/rc.conf no longer works.
[2011-12-24 00:01] upgraded initscripts (2011.07.3-1 -> 2011.12.1-1)
[2011-12-24 00:01] Running 'pacman -Su'
[2011-12-24 00:01] starting full system upgrade
[2011-12-24 00:05] Running 'pacman -Suf'
[2011-12-24 00:05] starting full system upgrade
[2011-12-24 00:07] removed pygobject (2.28.6-1)
[2011-12-24 00:07] upgraded linux-api-headers (3.0.1-1 -> 3.1.4-1)
[2011-12-24 00:07] upgraded tzdata (2011h-1 -> 2011n-1)
[2011-12-24 00:07] Generating locales...
[2011-12-24 00:07] en_US.UTF-8... done
[2011-12-24 00:07] en_US.ISO-8859-1... done
[2011-12-24 00:07] Generation complete.
[2011-12-24 00:07] upgraded glibc (2.14-5 -> 2.14.1-4)
[2011-12-24 00:07] upgraded ncurses (5.9-1 -> 5.9-2)
[2011-12-24 00:07] upgraded readline (6.2.001-2 -> 6.2.002-1)
[2011-12-24 00:07] upgraded bash (4.2.010-1 -> 4.2.020-1)
[2011-12-24 00:07] upgraded gdbm (1.8.3-8 -> 1.10-1)
[2011-12-24 00:07] upgraded gcc-libs (4.6.1-3 -> 4.6.2-3)
[2011-12-24 00:07] upgraded db (5.2.28-1 -> 5.2.36-2)
[2011-12-24 00:07] upgraded cracklib (2.8.18-1 -> 2.8.18-2)
[2011-12-24 00:07] upgraded pam (1.1.4-1 -> 1.1.5-1)
[2011-12-24 00:07] upgraded shadow (4.1.4.3-2 -> 4.1.4.3-5)
[2011-12-24 00:07] upgraded libcap (2.22-1 -> 2.22-2)
[2011-12-24 00:07] upgraded coreutils (8.12-3 -> 8.14-1)
[2011-12-24 00:07] upgraded perl (5.14.1-3 -> 5.14.2-4)
[2011-12-24 00:07] upgraded openssl (1.0.0.d-1 -> 1.0.0.e-1)
[2011-12-24 00:07] upgraded expat (2.0.1-6 -> 2.0.1-7)
[2011-12-24 00:07] upgraded libsasl (2.1.23-7 -> 2.1.23-8)
[2011-12-24 00:07] upgraded filesystem (2011.08-1 -> 2011.12-2)
[2011-12-24 00:07] upgraded util-linux (2.19.1-3 -> 2.20.1-1)
[2011-12-24 00:07] upgraded e2fsprogs (1.41.14-1 -> 1.41.14-2)
[2011-12-24 00:07] upgraded libldap (2.4.26-3 -> 2.4.28-1)
[2011-12-24 00:07] installed libltdl (2.4.2-2)
[2011-12-24 00:07] upgraded unixodbc (2.3.0-1 -> 2.3.1-1)
[2011-12-24 00:07] upgraded apr-util (1.3.12-2 -> 1.3.12-4)
[2011-12-24 00:07] upgraded pcre (8.13-2 -> 8.21-1)
[2011-12-24 00:07] warning: /etc/httpd/conf/httpd.conf installed as /etc/httpd/conf/httpd.conf.pacnew
[2011-12-24 00:07] upgraded apache (2.2.19-1 -> 2.2.21-1)
[2011-12-24 00:07] upgraded nettle (2.2-1 -> 2.4-1)
[2011-12-24 00:07] installed p11-kit (0.9-1)
[2011-12-24 00:07] upgraded gnutls (3.0.1-1 -> 3.0.9-1)
[2011-12-24 00:07] upgraded gwenhywfar (4.2.1-1 -> 4.3.0-1)
[2011-12-24 00:07] upgraded aqbanking (5.0.14-1 -> 5.0.17-1)
[2011-12-24 00:07] upgraded glib2 (2.28.8-1 -> 2.30.2-1)
[2011-12-24 00:07] upgraded atk (2.0.1-1 -> 2.2.0-1)
[2011-12-24 00:07] upgraded glibmm (2.28.2-1 -> 2.30.1-1)
[2011-12-24 00:07] upgraded atkmm (2.22.4-1 -> 2.22.6-1)
[2011-12-24 00:07] upgraded libjpeg-turbo (1.1.1-3 -> 1.1.1-4)
[2011-12-24 00:07] upgraded libmng (1.0.10-3 -> 1.0.10-4)
[2011-12-24 00:07] upgraded sqlite3 (3.7.7.1-1 -> 3.7.9-1)
[2011-12-24 00:07] upgraded run-parts (3.4.4-1 -> 4.0.4-1)
[2011-12-24 00:07] upgraded findutils (4.4.2-3 -> 4.4.2-4)
[2011-12-24 00:07] upgraded sed (4.2.1-3 -> 4.2.1-4)
[2011-12-24 00:07] upgraded ca-certificates (20110421-3 -> 20111211-1)
[2011-12-24 00:07] upgraded dbus-core (1.4.14-1 -> 1.4.16-1)
[2011-12-24 00:07] upgraded dbus (1.4.14-1 -> 1.4.16-1)
[2011-12-24 00:07] upgraded libdrm (2.4.26-1 -> 2.4.29-1)
[2011-12-24 00:07] upgraded libglapi (7.11-1 -> 7.11.2-1)
[2011-12-24 00:07] upgraded libgl (7.11-1 -> 7.11.2-1)
[2011-12-24 00:07] upgraded libxrandr (1.3.2-1 -> 1.3.2-2)
[2011-12-24 00:07] upgraded libxi (1.4.3-1 -> 1.4.4-1)
[2011-12-24 00:07] upgraded qt (4.7.3-3 -> 4.8.0-2)
[2011-12-24 00:07] upgraded attica (0.2.0-1 -> 0.2.9-1)
[2011-12-24 00:07] upgraded audiofile (0.2.7-1 -> 0.3.2-1)
[2011-12-24 00:07] upgraded avahi (0.6.30-4 -> 0.6.30-6)
[2011-12-24 00:07] upgraded babl (0.1.4-1 -> 0.1.6-1)
[2011-12-24 00:07] upgraded bc (1.06-7 -> 1.06-8)
[2011-12-24 00:07] upgraded binutils (2.21.1-2 -> 2.22-2)
[2011-12-24 00:07] upgraded bzip2 (1.0.6-1 -> 1.0.6-3)
[2011-12-24 00:07] upgraded icu (4.8.1-1 -> 4.8.1.1-1)
[2011-12-24 00:07] upgraded boost-libs (1.47.0-1 -> 1.48.0-2)
[2011-12-24 00:07] upgraded cabextract (1.4-1 -> 1.4-2)
[2011-12-24 00:07] upgraded ca-certificates-java (20110426-4 -> 20110912-1)
[2011-12-24 00:07] upgraded cairo-perl (1.061-4 -> 1.081-1)
[2011-12-24 00:07] upgraded lame (3.98.4-1 -> 3.99.3-1)
[2011-12-24 00:07] upgraded cdrdao (1.2.3-5 -> 1.2.3-6)
[2011-12-24 00:07] upgraded file (5.08-1 -> 5.09-1)
[2011-12-24 00:07] upgraded cdrkit (1.1.11-1 -> 1.1.11-2)
[2011-12-24 00:07] installed perl-net-ssleay (1.42-2)
[2011-12-24 00:07] installed perl-io-socket-ssl (1.44-1)
[2011-12-24 00:07] installed perl-net-http (6.01-1)
[2011-12-24 00:07] installed perl-encode-locale (1.02-1)
[2011-12-24 00:07] installed perl-http-date (6.00-1)
[2011-12-24 00:07] installed perl-file-listing (6.03-1)
[2011-12-24 00:07] installed perl-lwp-mediatypes (6.01-1)
[2011-12-24 00:07] upgraded perl-uri (1.58-1 -> 1.59-1)
[2011-12-24 00:07] installed perl-http-message (6.02-1)
[2011-12-24 00:07] installed perl-http-cookies (6.00-1)
[2011-12-24 00:07] installed perl-http-daemon (6.00-1)
[2011-12-24 00:07] installed perl-http-negotiate (6.00-1)
[2011-12-24 00:07] installed perl-www-robotrules (6.01-1)
[2011-12-24 00:07] upgraded perl-libwww (5.837-1 -> 6.02-2)
[2011-12-24 00:07] installed perl-mozilla-ca (20111025-1)
[2011-12-24 00:07] installed perl-lwp-protocol-https (6.02-1)
[2011-12-24 00:07] upgraded checkgmail (1.13-5 -> 1.13-6)
[2011-12-24 00:07] upgraded libdatrie (0.2.4-1 -> 0.2.5-1)
[2011-12-24 00:07] upgraded libthai (0.1.15-1 -> 0.1.16-1)
[2011-12-24 00:07] upgraded freetype2 (2.4.6-1 -> 2.4.8-1)
[2011-12-24 00:07] upgraded pango (1.28.4-3 -> 1.29.4-1)
[2011-12-24 00:07] upgraded shared-mime-info (0.90-1 -> 0.91-1)
[2011-12-24 00:07] upgraded keyutils (1.5.2-1 -> 1.5.5-1)
[2011-12-24 00:07] upgraded krb5 (1.9.1-3 -> 1.9.2-2)
[2011-12-24 00:07] upgraded libcups (1.4.8-2 -> 1.5.0-1)
[2011-12-24 00:07] upgraded gdk-pixbuf2 (2.23.5-1 -> 2.24.1-1)
[2011-12-24 00:07] upgraded gtk-update-icon-cache (2.24.5-3 -> 2.24.8-2)
[2011-12-24 00:07] upgraded gtk2 (2.24.5-3 -> 2.24.8-2)
[2011-12-24 00:07] upgraded dbus-glib (0.94-2 -> 0.98-1)
[2011-12-24 00:07] upgraded nspr (4.8.9-1 -> 4.8.9-2)
[2011-12-24 00:07] upgraded nss (3.12.11-1 -> 3.13.1-1)
[2011-12-24 00:07] upgraded libevent (2.0.12-1 -> 2.0.16-1)
[2011-12-24 00:07] upgraded chromium (13.0.782.215-1 -> 16.0.912.63-1)
[2011-12-24 00:07] upgraded isl (0.06-2 -> 0.07-1)
[2011-12-24 00:07] upgraded cloog (0.16.2-2 -> 0.16.3-1)
[2011-12-24 00:07] upgraded clucene (2.3.3.4-1 -> 2.3.3.4-2)
[2011-12-24 00:07] upgraded popt (1.16-3 -> 1.16-4)
[2011-12-24 00:07] upgraded cryptsetup (1.3.1-2 -> 1.4.0-2)
[2011-12-24 00:07] upgraded openjpeg (1.3-3 -> 1.4-1)
[2011-12-24 00:07] upgraded poppler-data (0.4.4-1 -> 0.4.5-1)
[2011-12-24 00:07] upgraded poppler (0.16.7-1 -> 0.18.2-1)
[2011-12-24 00:07] upgraded libusb (1.0.8-1 -> 1.0.8-2)
[2011-12-24 00:07] upgraded libusb-compat (0.1.3-1 -> 0.1.3-2)
[2011-12-24 00:07] upgraded cups (1.4.8-2 -> 1.5.0-1)
[2011-12-24 00:07] upgraded libssh2 (1.2.9-1 -> 1.3.0-1)
[2011-12-24 00:07] upgraded curl (7.21.7-1 -> 7.23.1-2)
[2011-12-24 00:07] upgraded cyrus-sasl-gssapi (2.1.23-7 -> 2.1.23-8)
[2011-12-24 00:07] upgraded cyrus-sasl-ldap (2.1.23-7 -> 2.1.23-8)
[2011-12-24 00:07] upgraded postgresql-libs (9.0.4-4 -> 9.1.2-1)
[2011-12-24 00:07] upgraded libmysqlclient (5.5.15-1 -> 5.5.19-1)
[2011-12-24 00:07] upgraded cyrus-sasl-sql (2.1.23-7 -> 2.1.23-8)
[2011-12-24 00:07] warning: undefined reference to <schema id='org.gnome.desktop.default-applications.at'/>
[2011-12-24 00:07] upgraded dconf (0.8.0-1 -> 0.10.0-1)
[2011-12-24 00:07] upgraded dhcpcd (5.2.12-1 -> 5.2.12-4)
[2011-12-24 00:07] upgraded dialog (1.1_20110707-1 -> 1.1_20111020-1)
[2011-12-24 00:07] upgraded diffutils (3.1-1 -> 3.2-1)
[2011-12-24 00:07] upgraded djvulibre (3.5.24-1 -> 3.5.24-2)
[2011-12-24 00:07] upgraded dmidecode (2.11-1 -> 2.11-2)
[2011-12-24 00:07] upgraded glib-perl (1.223-3 -> 1.241-1)
[2011-12-24 00:07] upgraded pango-perl (1.221-4 -> 1.223-1)
[2011-12-24 00:07] upgraded gtk2-perl (1.222-3 -> 1.241-1)
[2011-12-24 00:07] upgraded perl-gtk2-ex-formfactory (0.66-2 -> 0.67-1)
[2011-12-24 00:07] upgraded lcms2 (2.2-1 -> 2.3-1)
[2011-12-24 00:07] upgraded imagemagick (6.7.1.6-1 -> 6.7.4.0-1)
[2011-12-24 00:07] upgraded gawk (4.0.0-1 -> 4.0.0-2)
[2011-12-24 00:07] upgraded lzo2 (2.05-1 -> 2.06-1)
[2011-12-24 00:07] upgraded libdvdread (4.1.3-2 -> 4.2.0-1)
[2011-12-24 00:07] upgraded xcb-util (0.3.6-1 -> 0.3.8-1)
[2011-12-24 00:07] installed json-c (0.9-1)
[2011-12-24 00:07] upgraded libpulse (0.9.23-1 -> 1.1-1)
[2011-12-24 00:07] upgraded libtheora (1.1.1-1 -> 1.1.1-2)
[2011-12-24 00:07] Starting with libva version 1.0.15, the intel back-end is now in libva-driver-intel.
[2011-12-24 00:07] upgraded libva (1.0.14-1 -> 1.0.15-1)
[2011-12-24 00:07] upgraded libvdpau (0.4.1-1 -> 0.4.1-2)
[2011-12-24 00:08] upgraded sdl (1.2.14-7 -> 1.2.14-10)
[2011-12-24 00:08] upgraded speex (1.2rc1-1 -> 1.2rc1-2)
[2011-12-24 00:08] upgraded x264 (20110617-1 -> 20111030-1)
[2011-12-24 00:08] upgraded ffmpeg (20110724-1 -> 20111211-1)
[2011-12-24 00:08] upgraded gzip (1.4-2 -> 1.4-4)
[2011-12-24 00:08] upgraded texinfo (4.13a-5 -> 4.13a-7)
[2011-12-24 00:08] upgraded mjpegtools (1.9.0-4 -> 2.0.0-1)
[2011-12-24 00:08] upgraded transcode (1.1.5-5 -> 1.1.7-1)
[2011-12-24 00:08] upgraded dvdrip (0.98.11-9 -> 0.98.11-10)
[2011-12-24 00:08] upgraded dvd+rw-tools (7.1-2 -> 7.1-4)
[2011-12-24 00:08] upgraded enca (1.13-1 -> 1.13-2)
[2011-12-24 00:08] installed hspell (1.1-1)
[2011-12-24 00:08] upgraded enchant (1.6.0-3 -> 1.6.0-4)
[2011-12-24 00:08] upgraded ethtool (1:3.0-1 -> 1:3.1-1)
[2011-12-24 00:08] upgraded eventlog (0.2.12-2 -> 0.2.12-3)
[2011-12-24 00:08] installed libgusb (0.1.3-1)
[2011-12-24 00:08] upgraded polkit (0.101-2 -> 0.103-1)
[2011-12-24 00:08] upgraded python2 (2.7.2-2 -> 2.7.2-4)
[2011-12-24 00:08] installed libieee1284 (0.2.11-3)
[2011-12-24 00:08] NOTE
[2011-12-24 00:08] ----
[2011-12-24 00:08] Add your user to group 'scanner' to use scanner devices.
[2011-12-24 00:08] installed sane (1.0.22-4)
[2011-12-24 00:08] installed shared-color-profiles (0.1.5-1)
[2011-12-24 00:08] installed colord (0.1.15-3)
[2011-12-24 00:08] warning: undefined reference to <schema id='org.gnome.desktop.default-applications.at'/>
[2011-12-24 00:08] upgraded gtk3 (3.0.12-1 -> 3.2.3-1)
[2011-12-24 00:08] upgraded poppler-glib (0.16.7-1 -> 0.18.2-1)
[2011-12-24 00:08] upgraded gnome-icon-theme-symbolic (3.0.0-1 -> 3.2.1-1)
[2011-12-24 00:08] upgraded gnome-icon-theme (3.0.0-2 -> 3.2.1.2-1)
[2011-12-24 00:08] upgraded t1lib (5.1.2-2 -> 5.1.2-3)
[2011-12-24 00:08] upgraded libgnome-keyring (3.0.3-1 -> 3.2.2-1)
[2011-12-24 00:08] upgraded gsettings-desktop-schemas (3.0.1-2 -> 3.2.0-1)
[2011-12-24 00:08] upgraded evince (3.0.2-1 -> 3.2.1-2)
[2011-12-24 00:08] upgraded exiv2 (0.21.1-2 -> 0.22-1)
[2011-12-24 00:08] upgraded libxfce4util (4.8.1-2 -> 4.8.2-1)
[2011-12-24 00:08] upgraded exo (0.6.2-1 -> 0.6.2-3)
[2011-12-24 00:08] upgraded libmp4v2 (1.9.1-1 -> 1.9.1-2)
[2011-12-24 00:08] upgraded faac (1.28-2 -> 1.28-3)
[2011-12-24 00:08] upgraded fakeroot (1.17-1 -> 1.18.2-1)
[2011-12-24 00:08] upgraded libnice (0.1.0-1 -> 0.1.1-1)
[2011-12-24 00:08] upgraded gstreamer0.10-bad (0.10.22-1 -> 0.10.22-3)
[2011-12-24 00:08] installed pygobject2-devel (2.28.6-4)
[2011-12-24 00:08] installed python2-gobject2 (2.28.6-4)
[2011-12-24 00:08] upgraded farsight2 (0.0.29-1 -> 0.0.31-1)
[2011-12-24 00:08] upgraded imlib2 (1.4.4-1 -> 1.4.5-1)
[2011-12-24 00:08] upgraded giblib (1.2.4-4 -> 1.2.4-5)
[2011-12-24 00:08] upgraded feh (1.15.1-1 -> 2.1-1)
[2011-12-24 00:08] upgraded fftw (3.2.2-2 -> 3.3-1)
[2011-12-24 00:08] upgraded wxgtk (2.8.12.1-1 -> 2.8.12.1-2)
[2011-12-24 00:08] upgraded filezilla (3.5.0-2 -> 3.5.2-1)
[2011-12-24 00:08] upgraded mozilla-common (1.4-1 -> 1.4-3)
[2011-12-24 00:08] upgraded startup-notification (0.12-1 -> 0.12-2)
[2011-12-24 00:08] upgraded libnotify (0.7.3-1 -> 0.7.4-1)
[2011-12-24 00:08] upgraded firefox (6.0-1 -> 9.0.1-1)
[2011-12-24 00:08] upgraded jack (0.121.2-2 -> 0.121.3-5)
[2011-12-24 00:08] upgraded fluidsynth (1.1.4-1 -> 1.1.5-1)
[2011-12-24 00:08] upgraded fribidi (0.19.2-1 -> 0.19.2-2)
[2011-12-24 00:08] upgraded fuse (2.8.5-1 -> 2.8.6-1)
[2011-12-24 00:08] upgraded garcon (0.1.8-1 -> 0.1.9-1)
[2011-12-24 00:08] upgraded gcc (4.6.1-3 -> 4.6.2-3)
[2011-12-24 00:08] upgraded gcc-fortran (4.6.1-3 -> 4.6.2-3)
[2011-12-24 00:08] upgraded gconf (2.32.4-1 -> 3.2.3-1)
[2011-12-24 00:08] upgraded gd (2.0.36RC1-3 -> 2.0.36RC1-4)
[2011-12-24 00:08] upgraded gegl (0.1.6-1 -> 0.1.8-1)
[2011-12-24 00:08] upgraded gettext (0.18.1.1-3 -> 0.18.1.1-4)
[2011-12-24 00:08] upgraded libcroco (0.6.2-1 -> 0.6.3-1)
[2011-12-24 00:08] upgraded librsvg (2.34.0-1 -> 2.34.2-1)
[2011-12-24 00:08] upgraded gimp (2.6.11-6 -> 2.6.11-7)
[2011-12-24 00:08] upgraded glib-networking (2.28.7-4 -> 2.30.1-1)
[2011-12-24 00:08] upgraded parted (3.0-3 -> 3.0-4)
[2011-12-24 00:08] upgraded libatasmart (0.17-1 -> 0.18-1)
[2011-12-24 00:08] upgraded lsof (4.84-3 -> 4.85-1)
[2011-12-24 00:08] upgraded udisks (1.0.3-6 -> 1.0.4-1)
[2011-12-24 00:08] installed libgdu (3.0.2-2)
[2011-12-24 00:08] upgraded gnome-disk-utility (3.0.2-1 -> 3.0.2-2)
[2011-12-24 00:08] installed libcap-ng (0.6.6-1)
[2011-12-24 00:08] upgraded gnome-keyring (3.0.3-1 -> 3.2.2-3)
[2011-12-24 00:08] upgraded talloc (2.0.5-1 -> 2.0.7-1)
[2011-12-24 00:08] upgraded smbclient (3.6.0-1 -> 3.6.1-1)
[2011-12-24 00:08] upgraded gnome-vfs (2.24.4-5 -> 2.24.4-6)
[2011-12-24 00:08] upgraded libgsf (1.14.21-1 -> 1.14.22-2)
[2011-12-24 00:08] upgraded goffice (0.8.15-1 -> 0.8.17-1)
[2011-12-24 00:08] upgraded gnucash (2.4.7-1 -> 2.4.8-1)
[2011-12-24 00:08] upgraded gobject-introspection (0.10.8-1 -> 1.30.0-1)
[2011-12-24 00:08] upgraded gpm (1.20.6-6 -> 1.20.6-7)
[2011-12-24 00:08] upgraded gqview (2.0.4-3 -> 2.0.4-4)
[2011-12-24 00:08] upgraded grantlee (0.1.9-1 -> 0.2.0-1)
[2011-12-24 00:08] upgraded grep (2.9-1 -> 2.10-1)
[2011-12-24 00:08] upgraded groff (1.21-1 -> 1.21-2)
[2011-12-24 00:08] upgraded grub (0.97-20 -> 0.97-21)
[2011-12-24 00:08] upgraded libdca (0.0.5-2 -> 0.0.5-3)
[2011-12-24 00:08] upgraded libdc1394 (2.1.3-1 -> 2.1.3-2)
[2011-12-24 00:08] upgraded libmpcdec (1.2.6-2 -> 1.2.6-3)
[2011-12-24 00:08] upgraded libdvdnav (4.1.3-2 -> 4.2.0-2)
[2011-12-24 00:08] upgraded raptor (2.0.4-1 -> 2.0.6-1)
[2011-12-24 00:08] upgraded ladspa (1.13-2 -> 1.13-3)
[2011-12-24 00:08] upgraded liblrdf (0.4.0-8 -> 0.4.0-9)
[2011-12-24 00:08] upgraded libass (0.9.13-1 -> 0.10.0-2)
[2011-12-24 00:08] upgraded gstreamer0.10-bad-plugins (0.10.22-1 -> 0.10.22-3)
[2011-12-24 00:08] upgraded gstreamer0.10-ffmpeg (0.10.11-1 -> 0.10.12-1)
[2011-12-24 00:08] upgraded gstreamer0.10-ugly (0.10.18-2 -> 0.10.18-4)
[2011-12-24 00:08] upgraded gstreamer0.10-ugly-plugins (0.10.18-2 -> 0.10.18-4)
[2011-12-24 00:08] upgraded gtk-xfce-engine (2.8.1-1 -> 2.99.0-1)
[2011-12-24 00:08] >>please run /usr/sbin/cups-genppdupdate
[2011-12-24 00:08] >>and restart cups deamon
[2011-12-24 00:08] upgraded gutenprint (5.2.7-2 -> 5.2.7-3)
[2011-12-24 00:08] upgraded libsoup (2.34.3-1 -> 2.36.1-1)
[2011-12-24 00:08] upgraded libsoup-gnome (2.34.3-1 -> 2.36.1-1)
[2011-12-24 00:08] upgraded libarchive (2.8.4-2 -> 2.8.5-2)
[2011-12-24 00:08] upgraded gvfs (1.8.2-1 -> 1.10.1-1)
[2011-12-24 00:08] upgraded heirloom-mailx (12.5-2 -> 12.5-3)
[2011-12-24 00:08] upgraded hyphen (2.7.1-2 -> 2.8.3-1)
[2011-12-24 00:08] upgraded hyphen-en (2.7.1-2 -> 2.8.3-1)
[2011-12-24 00:09] upgraded inkscape (0.48.2-1 -> 0.48.2-5)
[2011-12-24 00:09] upgraded intel-dri (7.11-1 -> 7.11.2-1)
[2011-12-24 00:09] upgraded iproute2 (2.6.39-1 -> 2.6.39-2)
[2011-12-24 00:09] upgraded sysfsutils (2.1.0-6 -> 2.1.0-7)
[2011-12-24 00:09] upgraded iputils (20101006-1 -> 20101006-2)
[2011-12-24 00:09] upgraded iso-codes (3.14-1 -> 3.29-1)
[2011-12-24 00:09] upgraded jfsutils (1.1.15-2 -> 1.1.15-3)
[2011-12-24 00:09] upgraded strigi (0.7.5-4 -> 0.7.7-1)
[2011-12-24 00:09] upgraded mpfr (3.0.1.p4-2 -> 3.1.0.p3-1)
[2011-12-24 00:09] upgraded rasqal (1:0.9.27-1 -> 1:0.9.28-1)
[2011-12-24 00:09] upgraded redland (1:1.0.14-1 -> 1:1.0.15-2)
[2011-12-24 00:09] upgraded redland-storage-virtuoso (1:1.0.14-1 -> 1:1.0.15-2)
[2011-12-24 00:09] upgraded virtuoso (6.1.3-1 -> 6.1.4-1)
[2011-12-24 00:09] upgraded soprano (2.7.0-1 -> 2.7.3-1)
[2011-12-24 00:09] upgraded shared-desktop-ontologies (0.7.1-1 -> 0.8.1-1)
[2011-12-24 00:09] upgraded libdbusmenu-qt (0.8.3-1 -> 0.9.0-1)
[2011-12-24 00:09] upgraded polkit-qt (0.99.0-1 -> 0.103.0-1)
[2011-12-24 00:09] upgraded libqzeitgeist (0.7.0-1 -> 0.8.0-1)
[2011-12-24 00:09] upgraded phonon (4.5.55-1 -> 1:4.6.0-1)
[2011-12-24 00:09] installed libplist (1.4-1)
[2011-12-24 00:09] installed usbmuxd (1.0.7-2)
[2011-12-24 00:09] installed libimobiledevice (1.1.1-2)
[2011-12-24 00:09] upgraded upower (0.9.12-1 -> 0.9.15-1)
[2011-12-24 00:09] installed gperf (3.0.4-4)
[2011-12-24 00:09] installed m4 (1.4.16-2)
[2011-12-24 00:09] installed bison (2.5-3)
[2011-12-24 00:09] installed qtwebkit (2.2.1-1)
[2011-12-24 00:09] upgraded kdelibs (4.7.0-1 -> 4.7.4-2)
[2011-12-24 00:09] upgraded libssh (0.5.1-1 -> 0.5.2-1)
[2011-12-24 00:09] upgraded tar (1.26-1 -> 1.26-2)
[2011-12-24 00:09] upgraded libtool (2.4-4 -> 2.4.2-2)
[2011-12-24 00:09] upgraded libcanberra (0.28-1 -> 0.28-2)
[2011-12-24 00:09] upgraded oxygen-icons (4.7.0-1 -> 4.7.4-1)
[2011-12-24 00:09] upgraded kdebase-runtime (4.7.0-1 -> 4.7.4-1)
[2011-12-24 00:09] upgraded kdemultimedia-kioslave (4.7.0-1 -> 4.7.4-1)
[2011-12-24 00:09] upgraded k3b (2.0.2-1 -> 2.0.2-4)
[2011-12-24 00:09] upgraded kbd (1.15.3-1 -> 1.15.3-2)
[2011-12-24 00:09] upgraded less (444-1 -> 444-2)
[2011-12-24 00:09] upgraded lesstif (0.95.2-2 -> 0.95.2-4)
[2011-12-24 00:09] upgraded libavc1394 (0.5.3-3 -> 0.5.4-1)
[2011-12-24 00:09] upgraded libcddb (1.3.2-2 -> 1.3.2-3)
[2011-12-24 00:09] upgraded libdbi (0.8.4-1 -> 0.8.4-2)
[2011-12-24 00:09] upgraded libdvbpsi (0.2.0-1 -> 0.2.2-1)
[2011-12-24 00:09] upgraded libdvdcss (1.2.10-2 -> 1.2.11-1)
[2011-12-24 00:09] upgraded libebml (1.2.1-1 -> 1.2.2-2)
[2011-12-24 00:09] upgraded libiec61883 (1.2.0-2 -> 1.2.0-3)
[2011-12-24 00:09] upgraded libmatroska (1.2.0-1 -> 1.3.0-2)
[2011-12-24 00:09] upgraded libmtp (1.1.0-1 -> 1.1.1-1)
[2011-12-24 00:09] upgraded libnl (1.1-2 -> 1.1-3)
[2011-12-24 00:09] upgraded libpcap (1.1.1-2 -> 1.1.1-4)
[2011-12-24 00:09] upgraded libpipeline (1.2.0-1 -> 1.2.0-2)
[2011-12-24 00:09] upgraded libpurple (2.10.0-1 -> 2.10.1-1)
[2011-12-24 00:09] upgraded libreoffice-en-US (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] installed graphite (1:1.0.3-1)
[2011-12-24 00:09] upgraded libreoffice-common (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] upgraded libreoffice-base (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] upgraded libreoffice-calc (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] upgraded libreoffice-draw (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] upgraded libreoffice-impress (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] upgraded libreoffice-math (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] upgraded libreoffice-writer (3.4.2-2 -> 3.4.4-4)
[2011-12-24 00:09] upgraded libsexy (0.1.11-2 -> 0.1.11-3)
[2011-12-24 00:09] upgraded libshout (2.2.2-3 -> 1:2.2.2-4)
[2011-12-24 00:09] upgraded libsigsegv (2.6-1 -> 2.6-2)
[2011-12-24 00:09] upgraded libstdc++5 (3.3.6-3 -> 3.3.6-4)
[2011-12-24 00:09] upgraded libunique (1.1.6-4 -> 1.1.6-5)
[2011-12-24 00:09] upgraded libupnp (1.6.13-1 -> 1.6.14-1)
[2011-12-24 00:09] upgraded libwebkit (1.4.2-1 -> 1.6.1-1)
[2011-12-24 00:09] upgraded libwnck (2.30.6-2 -> 2.30.7-1)
[2011-12-24 00:09] upgraded libx86 (1.1-2 -> 1.1-3)
[2011-12-24 00:09] upgraded xfconf (4.8.0-2 -> 4.8.1-1)
[2011-12-24 00:09] upgraded libxfce4ui (4.8.0-3 -> 4.8.1-1)
[2011-12-24 00:09] upgraded libxml++ (2.34.1-1 -> 2.34.2-1)
[2011-12-24 00:09] upgraded licenses (2.8-1 -> 2.9-1)
[2011-12-24 00:09] upgraded linux-atm (2.5.1-2 -> 2.5.2-1)
[2011-12-24 00:09] upgraded linux-firmware (20110727-1 -> 20111101-1)
[2011-12-24 00:09] upgraded linux-headers (3.0.3-1 -> 3.1.5-1)
[2011-12-24 00:09] upgraded logrotate (3.8.0-1 -> 3.8.1-1)
[2011-12-24 00:09] upgraded lua (5.1.4-6 -> 5.1.4-9)
[2011-12-24 00:09] upgraded make (3.82-3 -> 3.82-4)
[2011-12-24 00:09] upgraded man-db (2.6.0.2-2 -> 2.6.0.2-3)
[2011-12-24 00:09] upgraded man-pages (3.32-1 -> 3.35-1)
[2011-12-24 00:09] upgraded mcpp (2.7.2-2 -> 2.7.2-3)
[2011-12-24 00:09] upgraded mpg123 (1.13.3-2 -> 1.13.4-1)
[2011-12-24 00:09] installed libbluray (0.2.1-1)
[2011-12-24 00:09] upgraded mencoder (34007-1 -> 34426-1)
[2011-12-24 00:09] upgraded mesa (7.11-1 -> 7.11.2-1)
[2011-12-24 00:09] upgraded midori (0.4.0-1 -> 0.4.3-1)
[2011-12-24 00:09] upgraded mkinitcpio-busybox (1.18.5-1 -> 1.19.2-1)
[2011-12-24 00:09] upgraded module-init-tools (3.16-1 -> 3.16-3)
[2011-12-24 00:09] upgraded mkinitcpio (0.7.2-1 -> 0.8.0-3)
[2011-12-24 00:09] upgraded nano (2.2.6-1 -> 2.2.6-2)
[2011-12-24 00:09] upgraded netcfg (2.6.7-1 -> 2.6.8-1)
[2011-12-24 00:09] upgraded net-tools (1.60-18 -> 1.60.20110819cvs-3)
[2011-12-24 00:09] upgraded notification-daemon (0.7.1-1 -> 0.7.3-1)
[2011-12-24 00:09]
[2011-12-24 00:09] ==> The file /etc/conf.d/ntp-client.conf has been renamed /etc/conf.d/ntpd.conf
[2011-12-24 00:09] ==> If you made changes to the former, please update the latter.
[2011-12-24 00:09]
[2011-12-24 00:09] upgraded ntp (4.2.6.p3-3 -> 4.2.6.p4-2)
[2011-12-24 00:09] upgraded octave (3.4.2-2 -> 3.4.3-1)
[2011-12-24 00:10] upgraded openjdk6 (6.b22_1.10.3-1 -> 6.b22_1.10.4-1)
[2011-12-24 00:10] upgraded openssh (5.8p2-9 -> 5.9p1-5)
[2011-12-24 00:10] upgraded opera (11.50-1 -> 11.60-1)
[2011-12-24 00:10] upgraded xfce4-panel (4.8.5-1 -> 4.8.6-1)
[2011-12-24 00:10] upgraded orage (4.8.1-3 -> 4.8.2-1)
[2011-12-24 00:10] warning: /etc/pacman.d/mirrorlist installed as /etc/pacman.d/mirrorlist.pacnew
[2011-12-24 00:10] upgraded pacman-mirrorlist (20110816-1 -> 20111026-1)
[2011-12-24 00:10] upgraded pangomm (2.28.1-1 -> 2.28.4-1)
[2011-12-24 00:10] upgraded patch (2.6.1-2 -> 2.6.1-3)
[2011-12-24 00:10] upgraded pciutils (3.1.7-4 -> 3.1.8-1)
[2011-12-24 00:10] upgraded perl-event (1.17-1 -> 1.20-1)
[2011-12-24 00:10] upgraded perl-anyevent (1:5.34-1 -> 2:6.1-1)
[2011-12-24 00:10] upgraded perl-exiftool (8.61-1 -> 8.72-1)
[2011-12-24 00:10] upgraded perl-netaddr-ip (4.037-2 -> 4.058-1)
[2011-12-24 00:10] upgraded pidgin (2.10.0-1 -> 2.10.1-1)
[2011-12-24 00:10] upgraded pixman (0.22.2-1 -> 0.24.0-1)
[2011-12-24 00:10] upgraded pkg-config (0.26-1 -> 0.26-2)
[2011-12-24 00:10] upgraded pm-quirks (0.20100619-1 -> 0.20100619-2)
[2011-12-24 00:10] upgraded ppp (2.4.5-2 -> 2.4.5-3)
[2011-12-24 00:10] upgraded psutils (1.17-2 -> 1.17-3)
[2011-12-24 00:10] upgraded pygobject-devel (2.28.6-1 -> 3.0.3-1)
[2011-12-24 00:10] upgraded python (3.2.1-1 -> 3.2.2-2)
[2011-12-24 00:10] upgraded python-imaging (1.1.7-3 -> 1.1.7-4)
[2011-12-24 00:10] upgraded python-lxml (2.3-1 -> 2.3.2-1)
[2011-12-24 00:10] upgraded python-urwid (0.9.9.1-2 -> 1.0.1-1)
[2011-12-24 00:10] upgraded python-wnck (2.32.0-6 -> 2.32.0-9)
[2011-12-24 00:10] upgraded raptor1 (1.4.21-3 -> 1.4.21-4)
[2011-12-24 00:10] upgraded rarian (0.8.1-1 -> 0.8.1-2)
[2011-12-24 00:10] upgraded reiserfsprogs (3.6.21-3 -> 3.6.21-4)
[2011-12-24 00:10] upgraded ristretto (0.0.93-1 -> 0.3.0-1)
[2011-12-24 00:10] upgraded rpcbind (0.2.0-3 -> 0.2.0-5)
[2011-12-24 00:10] upgraded rsync (3.0.8-2 -> 3.0.9-1)
[2011-12-24 00:10] upgraded slim (1.3.2-5 -> 1.3.2-6)
[2011-12-24 00:10] upgraded sshfs (2.3-1 -> 2.3-2)
[2011-12-24 00:10] upgraded subversion (1.6.17-6 -> 1.7.2-1)
[2011-12-24 00:10] upgraded sudo (1.8.2-1 -> 1.8.3.p1-1)
[2011-12-24 00:10] upgraded syslog-ng (3.2.4-3 -> 3.3.3-1)
[2011-12-24 00:10] upgraded sysvinit (2.88-2 -> 2.88-3)
[2011-12-24 00:10] warning: /etc/texmf/web2c/updmap.cfg installed as /etc/texmf/web2c/updmap.cfg.pacnew
[2011-12-24 00:10] >>> texlive: updating the filename database...
[2011-12-24 00:10] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:10] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:10] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:10] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:10] mktexlsr: Done.
[2011-12-24 00:10] recreating all formats...Error: `pdftex -ini -jobname=eplain -progname=eplain -translate-file=cp227.tcx *eplain.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=jadetex -progname=jadetex *jadetex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=pdfjadetex -progname=pdfjadetex *pdfjadetex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=latex -progname=latex -translate-file=cp227.tcx *latex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=pdflatex -progname=pdflatex -translate-file=cp227.tcx *pdflatex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=mllatex -progname=mllatex -translate-file=cp227.tcx -mltex mllatex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=pdftex -progname=pdftex -translate-file=cp227.tcx *pdfetex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=etex -progname=etex -translate-file=cp227.tcx *etex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=pdfetex -progname=pdfetex -translate-file=cp227.tcx *pdfetex.ini' failed
[2011-12-24 00:10] Error: `xetex -ini -jobname=xetex -progname=xetex -etex xetex.ini' failed
[2011-12-24 00:10] Error: `xetex -ini -jobname=xelatex -progname=xelatex -etex xelatex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=xmltex -progname=xmltex *xmltex.ini' failed
[2011-12-24 00:10] Error: `pdftex -ini -jobname=pdfxmltex -progname=pdfxmltex *pdfxmltex.ini' failed
[2011-12-24 00:10]
[2011-12-24 00:10] ###############################################################################
[2011-12-24 00:10] fmtutil: Error! Not all formats have been built successfully.
[2011-12-24 00:10] Visit the log files in directory
[2011-12-24 00:10] /var/lib/texmf/web2c
[2011-12-24 00:10] for details.
[2011-12-24 00:10] ###############################################################################
[2011-12-24 00:10]
[2011-12-24 00:10] This is a summary of all `failed' messages:
[2011-12-24 00:10] `pdftex -ini -jobname=eplain -progname=eplain -translate-file=cp227.tcx *eplain.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=jadetex -progname=jadetex *jadetex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=pdfjadetex -progname=pdfjadetex *pdfjadetex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=latex -progname=latex -translate-file=cp227.tcx *latex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=pdflatex -progname=pdflatex -translate-file=cp227.tcx *pdflatex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=mllatex -progname=mllatex -translate-file=cp227.tcx -mltex mllatex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=pdftex -progname=pdftex -translate-file=cp227.tcx *pdfetex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=etex -progname=etex -translate-file=cp227.tcx *etex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=pdfetex -progname=pdfetex -translate-file=cp227.tcx *pdfetex.ini' failed
[2011-12-24 00:10] `xetex -ini -jobname=xetex -progname=xetex -etex xetex.ini' failed
[2011-12-24 00:10] `xetex -ini -jobname=xelatex -progname=xelatex -etex xelatex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=xmltex -progname=xmltex *xmltex.ini' failed
[2011-12-24 00:10] `pdftex -ini -jobname=pdfxmltex -progname=pdfxmltex *pdfxmltex.ini' failed
[2011-12-24 00:10] done.
[2011-12-24 00:10] (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)
[2011-12-24 00:10] upgraded texlive-bin (2010.1-8 -> 2011.3-1)
[2011-12-24 00:11] >>> texlive: saving updmap.cfg as /tmp/tmp.UH21yGTeWL...
[2011-12-24 00:11] >>> texlive: regenerating updmap.cfg (custom additions shoud go
[2011-12-24 00:11] into /etc/texmf/web2c/updmap-local.cfg
[2011-12-24 00:11] >>> texlive: updating the filename database...
[2011-12-24 00:11] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:11] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:11] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:11] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:11] mktexlsr: Done.
[2011-12-24 00:11] >>> texlive: updating the fontmap files with updmap...
[2011-12-24 00:11] done.
[2011-12-24 00:11] >>> texlive: recreating all formats...
[2011-12-24 00:11] done.
[2011-12-24 00:11] (logs are under /var/lib/texmf/web2c/<engine>/<formatname>.log)
[2011-12-24 00:11] NB: To setup ConTeXt and the lua(la)tex font db,
[2011-12-24 00:11] see http://wiki.archlinux.org/index.php/TeX_Live
[2011-12-24 00:11] upgraded texlive-core (2010.22154-1 -> 2011.24722-1)
[2011-12-24 00:11] >>> texlive: updating the filename database...
[2011-12-24 00:11] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:11] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:11] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:11] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:11] mktexlsr: Done.
[2011-12-24 00:11] upgraded texlive-bibtexextra (2010.22146-1 -> 2011.24688-1)
[2011-12-24 00:12] >>> texlive: saving updmap.cfg as /tmp/tmp.Nc2RirXhHa...
[2011-12-24 00:12] >>> texlive: regenerating updmap.cfg (custom additions shoud go
[2011-12-24 00:12] into /etc/texmf/web2c/updmap-local.cfg
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] >>> texlive: updating the fontmap files with updmap...
[2011-12-24 00:12] done.
[2011-12-24 00:12] upgraded texlive-fontsextra (2010.22053-1 -> 2011.24706-1)
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] upgraded texlive-formatsextra (2010.22089-1 -> 2011.23089-1)
[2011-12-24 00:12] >>> texlive: saving updmap.cfg as /tmp/tmp.8uCDixoelB...
[2011-12-24 00:12] >>> texlive: regenerating updmap.cfg (custom additions shoud go
[2011-12-24 00:12] into /etc/texmf/web2c/updmap-local.cfg
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] >>> texlive: updating the fontmap files with updmap...
[2011-12-24 00:12] done.
[2011-12-24 00:12] upgraded texlive-games (2010.20619-2 -> 2011.24714-1)
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] upgraded texlive-genericextra (2010.22096-1 -> 2011.24609-1)
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] upgraded texlive-htmlxml (2010.21272-1 -> 2011.24013-1)
[2011-12-24 00:12] >>> texlive: saving updmap.cfg as /tmp/tmp.w9rQgibgz1...
[2011-12-24 00:12] >>> texlive: regenerating updmap.cfg (custom additions shoud go
[2011-12-24 00:12] into /etc/texmf/web2c/updmap-local.cfg
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] >>> texlive: updating the fontmap files with updmap...
[2011-12-24 00:12] done.
[2011-12-24 00:12] upgraded texlive-latexextra (2010.22155-1 -> 2011.24718-1)
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] upgraded texlive-humanities (2010.22054-1 -> 2011.24631-1)
[2011-12-24 00:12] >>> texlive: saving updmap.cfg as /tmp/tmp.udUE6qsFDq...
[2011-12-24 00:12] >>> texlive: regenerating updmap.cfg (custom additions shoud go
[2011-12-24 00:12] into /etc/texmf/web2c/updmap-local.cfg
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] >>> texlive: updating the fontmap files with updmap...
[2011-12-24 00:12] done.
[2011-12-24 00:12] upgraded texlive-music (2010.21982-1 -> 2011.24518-1)
[2011-12-24 00:12] >>> texlive: saving updmap.cfg as /tmp/tmp.EnEJ2OuwKl...
[2011-12-24 00:12] >>> texlive: regenerating updmap.cfg (custom additions shoud go
[2011-12-24 00:12] into /etc/texmf/web2c/updmap-local.cfg
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] >>> texlive: updating the fontmap files with updmap...
[2011-12-24 00:12] done.
[2011-12-24 00:12] upgraded texlive-pictures (2010.22101-1 -> 2011.24715-1)
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] upgraded texlive-plainextra (2010.21462-1 -> 2011.23567-1)
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] upgraded texlive-pstricks (2010.22140-1 -> 2011.24695-1)
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] upgraded texlive-publishers (2010.22075-1 -> 2011.24723-1)
[2011-12-24 00:12] >>> texlive: saving updmap.cfg as /tmp/tmp.MH9HS1tMu1...
[2011-12-24 00:12] >>> texlive: regenerating updmap.cfg (custom additions shoud go
[2011-12-24 00:12] into /etc/texmf/web2c/updmap-local.cfg
[2011-12-24 00:12] >>> texlive: updating the filename database...
[2011-12-24 00:12] mktexlsr: Updating /etc/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /usr/share/texmf-dist/ls-R...
[2011-12-24 00:12] mktexlsr: Updating /var/lib/texmf/ls-R...
[2011-12-24 00:12] mktexlsr: Done.
[2011-12-24 00:12] >>> texlive: updating the fontmap files with updmap...
[2011-12-24 00:12] done.
[2011-12-24 00:12] upgraded texlive-science (2010.22139-1 -> 2011.24724-1)
[2011-12-24 00:12] upgraded thunar (1.2.2-3 -> 1.2.3-3)
[2011-12-24 00:12] upgraded unrar (4.0.7-1 -> 4.1.3-1)
[2011-12-24 00:12] upgraded vbetool (1.1-1 -> 1.1-2)
[2011-12-24 00:12] upgraded vim-runtime (7.3.266-1 -> 7.3.353-2)
[2011-12-24 00:12] upgraded vim (7.3.266-1 -> 7.3.353-2)
[2011-12-24 00:12] installed xcb-util-keysyms (0.3.8-1)
[2011-12-24 00:12] upgraded vlc (1.1.11-4 -> 1.1.13-1)
[2011-12-24 00:12] upgraded vte-common (0.28.1-1 -> 0.30.1-2)
[2011-12-24 00:12] upgraded vte (0.28.1-1 -> 0.28.2-3)
[2011-12-24 00:12] upgraded wget (1.13.1-1 -> 1.13.4-1)
[2011-12-24 00:12] upgraded which (2.20-4 -> 2.20-5)
[2011-12-24 00:12] upgraded wpa_supplicant (0.7.3-3 -> 0.7.3-4)
[2011-12-24 00:12] upgraded wireless_tools (29-4 -> 29-5)
[2011-12-24 00:12] installed inetutils (1.8-6)
[2011-12-24 00:12] installed python2-urwid (1.0.1-1)
[2011-12-24 00:12] upgraded wicd (1.7.0-10 -> 1.7.0-13)
[2011-12-24 00:12] upgraded wicd-gtk (1.7.0-10 -> 1.7.0-13)
[2011-12-24 00:12] upgraded xcursor-themes (1.0.3-1 -> 1.0.3-2)
[2011-12-24 00:12] upgraded xf86dgaproto (2.1-1 -> 2.1-2)
[2011-12-24 00:12] upgraded xf86-input-evdev (2.6.0-3 -> 2.6.0-4)
[2011-12-24 00:12] upgraded xf86-video-intel (2.15.0-2 -> 2.17.0-2)
[2011-12-24 00:12] upgraded xf86-video-vesa (2.3.0-5 -> 2.3.0-7)
[2011-12-24 00:12] upgraded xfce4-screenshooter (1.8.0-1 -> 1.8.0-2)
[2011-12-24 00:12] upgraded xfce4-session (4.8.1-3 -> 4.8.2-2)
[2011-12-24 00:12] upgraded xfce4-settings (4.8.2-1 -> 4.8.3-2)
[2011-12-24 00:12] upgraded xfce4-xkb-plugin (0.5.4.1-1 -> 0.5.4.2-1)
[2011-12-24 00:12] upgraded xorg-xinit (1.3.0-3 -> 1.3.1-2)
[2011-12-24 00:12] upgraded xfce-utils (4.8.2-1 -> 4.8.3-1)
[2011-12-24 00:12] upgraded xfdesktop (4.8.2-3 -> 4.8.3-1)
[2011-12-24 00:12] upgraded xfsprogs (3.1.5-1 -> 3.1.7-1)
[2011-12-24 00:12] upgraded xfwm4 (4.8.1-1 -> 4.8.3-1)
[2011-12-24 00:12] upgraded xfwm4-themes (4.6.0-1 -> 4.6.0-2)
[2011-12-24 00:12] upgraded xkeyboard-config (2.2.1-1 -> 2.4.1-2)
[2011-12-24 00:12] upgraded xorg-fonts-alias (1.0.2-1 -> 1.0.2-2)
[2011-12-24 00:12] upgraded xorg-server-common (1.10.3.901-1 -> 1.11.3-1)
[2011-12-24 00:12] upgraded xorg-server (1.10.3.901-1 -> 1.11.3-1)
[2011-12-24 00:12] upgraded xorg-sessreg (1.0.6-2 -> 1.0.7-1)
[2011-12-24 00:12] upgraded xorg-xdpyinfo (1.2.0-2 -> 1.3.0-1)
[2011-12-24 00:12] upgraded xscreensaver (5.14-1 -> 5.15-2)
[2011-12-24 00:12] upgraded xterm (271-1 -> 276-1)
[2011-12-24 00:13] upgraded xulrunner (6.0-2 -> 9.0.1-1)
[2011-12-24 00:13] upgraded yajl (2.0.2-1 -> 2.0.4-1)
[2011-12-24 00:52] Running 'pacman -Su'
[2011-12-24 00:53] starting full system upgrade
[2011-12-24 00:54] Running 'pacman -Su'
[2011-12-24 00:54] starting full system upgrade
[2011-12-24 00:57] removed kernel26 (2.6.39.1-1)
[2011-12-24 00:57] >>> Updating module dependencies. Please wait ...
[2011-12-24 00:57] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
[2011-12-24 00:57] ==> Building image from preset: 'default'
[2011-12-24 00:57] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
[2011-12-24 00:57] ==> Starting build: 3.1.5-1-ARCH
[2011-12-24 00:57] -> Parsing hook: [base]
[2011-12-24 00:57] -> Parsing hook: [udev]
[2011-12-24 00:57] -> Parsing hook: [autodetect]
[2011-12-24 00:57] -> Parsing hook: [pata]
[2011-12-24 00:57] -> Parsing hook: [scsi]
[2011-12-24 00:57] -> Parsing hook: [sata]
[2011-12-24 00:57] -> Parsing hook: [encrypt]
[2011-12-24 00:57] -> Parsing hook: [filesystems]
[2011-12-24 00:57] ==> Generating module dependencies
[2011-12-24 00:57] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
[2011-12-24 00:57] ==> Image generation successful
[2011-12-24 00:57] ==> Building image from preset: 'fallback'
[2011-12-24 00:57] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
[2011-12-24 00:57] ==> Starting build: 3.1.5-1-ARCH
[2011-12-24 00:57] -> Parsing hook: [base]
[2011-12-24 00:57] -> Parsing hook: [udev]
[2011-12-24 00:57] -> Parsing hook: [pata]
[2011-12-24 00:57] -> Parsing hook: [scsi]
[2011-12-24 00:57] -> Parsing hook: [sata]
[2011-12-24 00:57] -> Parsing hook: [encrypt]
[2011-12-24 00:57] -> Parsing hook: [filesystems]
[2011-12-24 00:57] ==> Generating module dependencies
[2011-12-24 00:57] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
[2011-12-24 00:57] ==> Image generation successful
[2011-12-24 00:57] installed linux (3.1.5-1)
[2011-12-24 01:02] Running 'pacman -S util-linux'
[2011-12-24 01:02] upgraded util-linux (2.20.1-1 -> 2.20.1-1)
[2011-12-24 01:15] Running 'pacman -Syu'
[2011-12-24 01:15] synchronizing package lists
[2011-12-24 01:50] Running 'pacman -U udev-173-3-x86_64.pkg.tar.xz'
[2011-12-24 01:50] Running 'pacman -U mkinitcpio-0.7.2-1-any.pkg.tar.xz'
[2011-12-24 01:50] upgraded mkinitcpio (0.8.0-3 -> 0.7.2-1)
[2011-12-24 01:50] Running 'pacman -U udev-173-3-x86_64.pkg.tar.xz'
[2011-12-24 01:51] Running 'pacman -U initscripts-2011.07.3-1-x86_64.pkg.tar.xz'
[2011-12-24 01:51] warning: /etc/rc.conf installed as /etc/rc.conf.pacnew
[2011-12-24 01:51] upgraded initscripts (2011.12.1-1 -> 2011.07.3-1)
[2011-12-24 01:51] Running 'pacman -U udev-173-3-x86_64.pkg.tar.xz'
[2011-12-24 01:51] Running 'pacman -U libatasmart-0.17-1-x86_64.pkg.tar.gz'
[2011-12-24 01:51] upgraded libatasmart (0.18-1 -> 0.17-1)
[2011-12-24 01:51] Running 'pacman -U udev-173-3-x86_64.pkg.tar.xz'
[2011-12-24 01:51] upgraded udev (175-1 -> 173-3)
[2011-12-24 01:57] Running 'pacman -Sy'
[2011-12-24 01:57] synchronizing package lists
[2011-12-24 02:08] Running 'pacman -U /var/cache/pacman/pkg/linux-3.1.5-1-x86_64.pkg.tar.xz'
[2011-12-24 02:08] >>> Updating module dependencies. Please wait ...
[2011-12-24 02:08] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
[2011-12-24 02:08] ==> Building image from preset: 'default'
[2011-12-24 02:08] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
[2011-12-24 02:08] ==> Starting build: 3.1.5-1-ARCH
[2011-12-24 02:08] -> Parsing hook: [base]
[2011-12-24 02:08] ==> ERROR: file not found: `/etc/modprobe.d/usb-load-ehci-first.conf'
[2011-12-24 02:08] -> Parsing hook: [udev]
[2011-12-24 02:08] -> Parsing hook: [autodetect]
[2011-12-24 02:08] -> Parsing hook: [pata]
[2011-12-24 02:08] -> Parsing hook: [scsi]
[2011-12-24 02:08] -> Parsing hook: [sata]
[2011-12-24 02:08] -> Parsing hook: [encrypt]
[2011-12-24 02:08] -> Parsing hook: [filesystems]
[2011-12-24 02:08] ==> Generating module dependencies
[2011-12-24 02:08] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
[2011-12-24 02:08] 10647 blocks
[2011-12-24 02:08] ==> Image generation successful
[2011-12-24 02:08] ==> Building image from preset: 'fallback'
[2011-12-24 02:08] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
[2011-12-24 02:08] ==> Starting build: 3.1.5-1-ARCH
[2011-12-24 02:08] -> Parsing hook: [base]
[2011-12-24 02:08] ==> ERROR: file not found: `/etc/modprobe.d/usb-load-ehci-first.conf'
[2011-12-24 02:08] -> Parsing hook: [udev]
[2011-12-24 02:08] -> Parsing hook: [pata]
[2011-12-24 02:08] -> Parsing hook: [scsi]
[2011-12-24 02:08] -> Parsing hook: [sata]
[2011-12-24 02:08] -> Parsing hook: [encrypt]
[2011-12-24 02:08] -> Parsing hook: [filesystems]
[2011-12-24 02:08] ==> Generating module dependencies
[2011-12-24 02:08] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
[2011-12-24 02:08] 27632 blocks
[2011-12-24 02:08] ==> Image generation successful
[2011-12-24 02:08] upgraded linux (3.1.5-1 -> 3.1.5-1)
[2011-12-24 02:10] Running 'pacman -U udev-175-1-x86_64.pkg.tar.xz mkinitcpio-0.8.0-3-any.pkg.tar.xz initscripts-2011.12.1-1-any.pkg.tar.xz libatasmart-0.18-1-x86_64.pkg.tar.xz'
[2011-12-24 02:10] Running 'pacman -Uf udev-175-1-x86_64.pkg.tar.xz mkinitcpio-0.8.0-3-any.pkg.tar.xz initscripts-2011.12.1-1-any.pkg.tar.xz libatasmart-0.18-1-x86_64.pkg.tar.xz'
[2011-12-24 02:10] ATTENTION UDEV:
[2011-12-24 02:10] ----------
[2011-12-24 02:10] We now use upstream rules for assigning devices to the 'disk', 'optical',
[2011-12-24 02:10] 'scanner' and 'video' groups. Beware of any changes.
[2011-12-24 02:10] --
[2011-12-24 02:10] We no longer create symlinks from /dev/<dev> to /dev/<dev>0.
[2011-12-24 02:10] --
[2011-12-24 02:10] For security reasons, we no longer add devices to the 'storage' group. Use
[2011-12-24 02:10] udisks and friends, or add custom rules to /etc/udev.d/rules/, if you want
[2011-12-24 02:10] this functionality back.
[2011-12-24 02:10] --
[2011-12-24 02:10] We no longer create the static nodes on install needed for an initrd-less and
[2011-12-24 02:10] devtmpfs-less boot, this only affects fresh installs.
[2011-12-24 02:10] ---------------
[2011-12-24 02:10] upgraded udev (173-3 -> 175-1)
[2011-12-24 02:10] upgraded mkinitcpio (0.7.2-1 -> 0.8.0-3)
[2011-12-24 02:10] warning: /etc/rc.conf installed as /etc/rc.conf.pacnew
[2011-12-24 02:10] If using non-bash-compatible shell, please set LANG in /etc/locale.conf,
[2011-12-24 02:10] as LOCALE in /etc/rc.conf no longer works.
[2011-12-24 02:10] upgraded initscripts (2011.07.3-1 -> 2011.12.1-1)
[2011-12-24 02:10] upgraded libatasmart (0.17-1 -> 0.18-1)
[2011-12-24 02:24] Running 'pacman -U linux-3.1.5-1-x86_64.pkg.tar.xz'
[2011-12-24 02:24] >>> Updating module dependencies. Please wait ...
[2011-12-24 02:24] >>> Generating initial ramdisk, using mkinitcpio. Please wait...
[2011-12-24 02:24] ==> Building image from preset: 'default'
[2011-12-24 02:24] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
[2011-12-24 02:24] ==> Starting build: 3.1.5-1-ARCH
[2011-12-24 02:24] -> Parsing hook: [base]
[2011-12-24 02:24] -> Parsing hook: [udev]
[2011-12-24 02:24] -> Parsing hook: [autodetect]
[2011-12-24 02:24] -> Parsing hook: [pata]
[2011-12-24 02:24] -> Parsing hook: [scsi]
[2011-12-24 02:24] -> Parsing hook: [sata]
[2011-12-24 02:24] -> Parsing hook: [encrypt]
[2011-12-24 02:24] -> Parsing hook: [filesystems]
[2011-12-24 02:24] ==> Generating module dependencies
[2011-12-24 02:24] ==> Creating gzip initcpio image: /boot/initramfs-linux.img
[2011-12-24 02:24] ==> Image generation successful
[2011-12-24 02:24] ==> Building image from preset: 'fallback'
[2011-12-24 02:24] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
[2011-12-24 02:24] ==> Starting build: 3.1.5-1-ARCH
[2011-12-24 02:24] -> Parsing hook: [base]
[2011-12-24 02:24] -> Parsing hook: [udev]
[2011-12-24 02:24] -> Parsing hook: [pata]
[2011-12-24 02:24] -> Parsing hook: [scsi]
[2011-12-24 02:24] -> Parsing hook: [sata]
[2011-12-24 02:24] -> Parsing hook: [encrypt]
[2011-12-24 02:24] -> Parsing hook: [filesystems]
[2011-12-24 02:24] ==> Generating module dependencies
[2011-12-24 02:24] ==> Creating gzip initcpio image: /boot/initramfs-linux-fallback.img
[2011-12-24 02:24] ==> Image generation successful
[2011-12-24 02:24] upgraded linux (3.1.5-1 -> 3.1.5-1)
[2011-12-24 02:34] Running 'pacman -S perl-libwww'
[2011-12-24 02:35] upgraded perl-libwww (6.02-2 -> 6.02-2)
[2011-12-24 02:37] Running 'pacman -S perl-libwww'
[2011-12-24 02:37] upgraded perl-libwww (6.02-2 -> 6.02-2)
[2011-12-24 02:39] Running 'pacman -S perl-lwp-protocol-https'
[2011-12-24 02:39] upgraded perl-lwp-protocol-https (6.02-1 -> 6.02-1)
[2011-12-24 02:40] Running 'pacman -S notify-osd'
[2011-12-24 02:41] Running 'pacman -S libwnck3'
[2011-12-24 02:41] installed libwnck3 (3.2.1-1)
[2011-12-24 02:42] Running 'pacman -U notify-osd-0.9.32-3-x86_64.pkg.tar.xz'
[2011-12-24 02:42] installed notify-osd (0.9.32-3)
[2011-12-24 02:43] Running 'pacman -U checkgmail-svn-notify-osd-47-1-x86_64.pkg.tar.xz'
[2011-12-24 02:43] removed checkgmail (1.13-6)
[2011-12-24 02:43] installed checkgmail-svn-notify-osd (47-1)
[2011-12-24 02:47] Running 'pacman -S perl-lwp-protocol-https'
[2011-12-24 02:51] Running 'pacman -Syu'
[2011-12-24 02:51] synchronizing package lists
[2011-12-24 02:51] starting full system upgrade
[2011-12-24 11:48] Running 'pacman -S perl-libwww'
[2011-12-24 11:48] Running 'pacman -S perl-lwp-protocol-https'
[2011-12-24 11:56] Running 'pacman -R checkgmail-svn-notify-osd'
[2011-12-24 11:56] removed checkgmail-svn-notify-osd (47-1)
[2011-12-24 11:56] Running 'pacman -U checkgmail-svn-47-1-x86_64.pkg.tar.xz'
[2011-12-24 11:56] installed checkgmail-svn (47-1)
[2011-12-24 15:38] Running 'pacman -R perl-libwww'
[2011-12-24 15:39] Running 'pacman -U perl-libwww-5.837-1-any.pkg.tar.xz'
[2011-12-24 16:56] Running 'pacman -U perl-http-request-6.02-1-any.pkg.tar.xz'
[2011-12-24 16:56] installed perl-http-request (6.02-1)
[2011-12-24 16:57] Running 'pacman -S perl-http-date'
[2011-12-24 16:57] upgraded perl-http-date (6.00-1 -> 6.00-1)
[2011-12-24 16:58] Running 'pacman -Syu'
[2011-12-24 16:58] synchronizing package lists
[2011-12-24 16:59] starting full system upgrade
[2011-12-24 16:59] upgraded libxi (1.4.4-1 -> 1.4.5-1)
[2011-12-24 17:04] Running 'pacman -S perl-http-cookies'
[2011-12-24 17:04] upgraded perl-http-cookies (6.00-1 -> 6.00-1)
[2011-12-24 17:07] Running 'pacman -S perl-lwp-protocol-https'
[2011-12-24 17:07] upgraded perl-lwp-protocol-https (6.02-1 -> 6.02-1)
[2011-12-24 17:10] Running 'pacman -S perl-net-http'
[2011-12-24 17:10] upgraded perl-net-http (6.01-1 -> 6.01-1)
Note that perl-net-http was already installed. Yet, reinstalling it somehow fixed a problem.
Offline
Apparently, in my massive upgrade of 400+ packages, other packages (besides the Perl ones described above) also didn't install completely. Using
pacman -Qk `pacman -Qq`
to check the status of installed packages, I found that the following packages were missing files:
libgdu
libltdl
perl-file-listing
perl-http-daemon
perl-http-negotiate
perl-lwp-mediatypes
perl-www-robotrules
polkit
pygobject2-devel
python2-gobject2
So, I reinstalled them using pacman.
Offline
Pages: 1