Pacman/Pacman.conf Scripts

I've been working on these two pieces for a while. For the most part, they're complete to my standards, but obviously they can always looked to be improved upon. I use the first one daily with no real problems (though I could add a little more error handling) and the other one does work for me though I don't need to call upon it too much.
My goal was really to provide an interface for pacman which was fast but still easy to use. I also realized that I can't write any GUI code, nor do I feel like it's nessisary to make something simple. It really only requires bash, a few coreutils, and pacman to be used, so if you're on a lower-end system and don't want to call upon a large GUI front end, this may be something good for you to try out.
Any feedback is appreciated too
Pacman Manager Script
#!/bin/bash
#Pacman Manager
#Author: Doug Swain ([email protected])
###Defining Operations###
function install {
echo "Installing package now"
echo
sudo pacman -S $PACKAGE
echo
echo "The package ($PACKAGE) is now installed"
echo "Press enter to contiue"
read
function uninstall {
echo "Uninstalling package now"
echo
sudo pacman -R $PACKAGE
echo
echo "The package ($PACKAGE) has been removed."
echo "Press enter to contiue"
read
function sync {
echo "Syncing with servers"
echo
sudo pacman -Sy
echo
echo "Sync complete. Press enter to continue"
read
function update {
echo " Updating your system now"
echo
sudo pacman -Syu --noconfirm
sudo pacman -Scc
echo
echo "Your system has been updated"
echo "Press enter to contiue"
read
function search {
clear
echo "What package would you like to search?"
read PACKAGE
sudo pacman -Ss $PACKAGE
echo "Would you like to search again?"
echo "[Y]es"
echo "[N]o"
read CHOICE
if [[ "$CHOICE" = [Yy] ]]; then
search
elif [[ "$CHOICE" = [Nn] ]]; then
echo "Search Finished. Press Enter to Continue"
read
fi
function manage {
clear
if [ "$UID" != 0 ]; then
echo "Error! Not running as the root user right now. Become a super user and try again"
exit 1
fi
clear
echo " Welcome to the Pacman Manager"
echo
echo " What would you like to do?"
echo
###ENDDEFINE###
###MANAGER###
manage
OPTIONS="Install Uninstall Sync Update Search Exit"
select opt in $OPTIONS; do
if [ "$opt" = "Install" ]; then
clear
echo "What package would you like to install?"
read PACKAGE
install
manage
elif [ "$opt" = "Uninstall" ]; then
clear
echo "What package would you like to uninstall?"
read PACKAGE
uninstall
manage
elif [ "$opt" = "Sync" ]; then
clear
sync
manage
elif [ "$opt" = "Update" ]; then
clear
update
manage
elif [ "$opt" = "Search" ]; then
clear
search
manage
elif [ "$opt" = "Exit" ]; then
clear
exit
fi
done
###ENDMANAGER###
pacman.conf Script
#!/bin/bash
#Pacman Configurator
#Tool to configure and modify pacman and /etc/pacman.conf
#Pretty Stable from my tests, but use with caution
#Backup your /etc/pacman.conf file just in case.
#Author: Doug Swain ([email protected])
###DEFINE FUNCTIONS####
function srv_ctl {
clear
echo "Server Control"
echo "Selections:"
echo "[A]dd URL"
echo "[R]emove URL"
echo "[E]nable Resporitories"
echo "[D]isable Resporitories"
echo "[b]ack"
read CHOICE
if [ "$CHOICE" = "A" ]; then
cat /etc/pacman.conf | grep "srv_ctl"
if [ "$?" != "0" ]; then
echo "[srv_ctl]" >> /etc/pacman.conf
echo "Include = /etc/pacman.d/custom" >> /etc/pacman.conf
fi
clear
echo "Enter URL"
read URL
echo "Adding"
echo $URL >> /etc/pacman.d/custom
cat /etc/pacman.d/custom | grep $URL
echo "The server above has been added."
elif [ "$CHOICE" = "R" ]; then
clear
echo "Current Custom Server List:"
cat /etc/pacman.d/custom
echo "Enter URL"
read URL
echo "Removing"
URLTEST=$(cat /etc/pacman.d/custom | grep $URL)
if [ "$URL" = "$URLTEST" ]; then
cat /etc/pacman.d/custom | grep -v $URL >> /etc/pacman.d/custom1
mv /etc/pacman.d/custom1 /etc/pacman.d/custom
echo "Address removed. Press enter to continue."
read
srv_ctl
elif [ "$URL" != "$URLTEST" ]; then
echo "Error! Address not found. Press Enter to continue"
read
srv_ctl
fi
elif [ "$CHOICE" = "E" ]; then
clear
echo "Current Resporitiories available"
ls /etc/pacman.d/
echo "Enter Resporitory (example: current/custom/extra)"
read RES
echo "[$RES]" >> /etc/pacman.conf
echo "Include = /etc/pacman.d/$RES" >> /etc/pacman.conf
echo "Enabled. Press Enter to contiue"
read
srv_ctl
elif [ "$CHOICE" = "D" ]; then
clear
echo "Current Resporitiories available"
ls /etc/pacman.d/
echo "Enter Resporitory (example: current/custom/extra)"
read RES
cat /etc/pacman.conf | grep -v "$RES" >> /etc/pacman1.conf
mv /etc/pacman1.conf /etc/pacman.conf
echo "Disabled. Press Enter to continue."
read
srv_ctl
elif [ "$CHOICE" = "B" ]; then
echo "Press enter to continue"
read
manage
fi
function pkg_ctl {
clear
echo "What would you like to do?"
echo "[A]dd Package to Ignore List"
echo "[R]emove Package from Ignore List"
echo "[b]ack"
read CHOICE
if [ "$CHOICE" = "A" ]; then
clear
echo "Enter package name"
read PKG
echo "Adding"
echo "IgnorePkg = $PKG" >> /etc/pacman.conf
echo "HoldPkg = $PKG" >> /etc/pacman.conf
echo "Package added. Press Enter to Continue"
read
pkg_ctl
elif [ "$CHOICE" = "R" ]; then
clear
echo "Enter package name"
read PKG
echo "Removing"
cat /etc/pacman.conf | grep -v "$PKG" >> /etc/pacman1.conf
mv /etc/pacman1.conf /etc/pacman.conf
echo "Package removed. Press Enter to Continue"
read
pkg_ctl
elif [ "$CHOICE" = "B" ]; then
echo "Press enter to continue"
read
manage
fi
function manage {
clear
if [ "$UID" != 0 ]; then
echo "Error! Not running as the root user right now. Become a super user and try again"
exit 1
fi
clear
echo " Pacman Configuration"
echo " What would you like to do?"
###END DEFINE####
###MANAGER####
manage
OPTIONS="Server_Control Package_Control Exit"
select opt in $OPTIONS; do
if [ "$opt" = "Server_Control" ]; then
srv_ctl
elif [ "$opt" = "Package_Control" ]; then
pkg_ctl
elif [ "$opt" = "Exit" ]; then
clear
exit 0
fi
done
###ENDMANAGER###
Sadly my webserver is down as of now, so I can't post these scripts directly from my site, but this should work fine anyway. Enjoy!

Oh no I understand. Hah I figured that'd be the case that somebody created something like this.
Well my main point with these scripts was really just for self-teaching and such. Essentially though, my idea was to make a script which can help somebody who is newer and doesn't quite know all the helpful syntax of pacman or somebody who just doesn't want to be bothered with it have a quick and easy way to do it. Since there are already GUI front ends to do something like this, I figured a scripted version would be nicer for somebody who may need something less resource intense. That's the first script
The second script was just to make it a little less painful to navigate the pacman.conf file without having to go through it and figure out the syntax for everything (if you don't already know it) because I figured it was easier to find just a URL than to know all the syntax of the config file, and this just fills in the voids for you.
I use it for myself daily and it does make it a bit easier when you just want to install a package or update real quickly. Like I said though, I'm not surprised that there's something better implimented already. I figured I'd just toss it out there to see who could enjoy it. I appreciate the questioning though as you're right; I didn't make myself very clear-cut. At any rate, useful or not for people, they're here haha. Like I also said, I wrote these just as a learning experience for coding and other things. So, if somebody can find a use for them, all the better. If not, um, sorry to waste thread space haha.

Similar Messages

  • Hello, new here and looking for suggestions on creating a conf script

    Hi,
    The current project that I am working on would like to make a java display window to be fully customizable from a conf script.
    the java display window has 10 fields or so, which are updated every second. the java object passes to JNI, gets populated by C++ data, and returns back to java for display.
    Now, how is one able to create a script that can modify that java window to display only certain fields, lets say 1-5.?
    suggestions, or know of an area that i can look into?
    thanks

    First you may want to google »photoshop tutorial distresssed«.
    As for combining images like that a combination of Blend If-settings (one can split the handles by alt-click-dragging them)), Layer Groups set to Blend Modes other than Pass Through and Grtadient Maps may be employed to maintain high editability.
    One could also just use the images as Layer Masks for Solid Color Layers (and use Levels or Curves to get the intended contrast), though.

  • Vodafone uk huawei wvdial.conf script workin

    Hi,
    so far I was only able to get the UMTS modems working with wvdial.conf. The only problem is to find the correct wvdial.conf scripts for the mobile phone provider.
    Here a script which I found here:
    [url][http://secretlondon.livejournal.com/430709.html/url]
    Worked for me with a a huaweo 169 usb stick on vodafone uk
    [Dialer Defaults]
    Modem = /dev/ttyUSB0
    Baud = 3600000
    Init1 = ATZ
    Init2 = ATQ0 V1 E1 S0=0 &C1 &D2
    Init3 =
    Area Code =
    Phone = *99***2#
    Username = ppp
    Password = ppp
    Ask Password = 0
    Dial Command = ATDT
    Stupid Mode = 1
    Compuserve = 0
    Force Address =
    Idle Seconds = 0
    DialMessage1 =
    DialMessage2 =
    ISDN = 0
    Auto DNS = 1
    Hope someone will find this information useful.
    fr

    http://bbs.archlinux.org/viewtopic.php?id=63325
    Use wvdialconf to setup an initial wvdial.conf if your wvdial.conf is the source of the problem. Otherwise look in the thread above and at my reply to that thread further down (2 more links).
    I really need to setup that wiki entry on connecting to 2G/3G mobile internet - but right now uni doesn't give my any time.

  • Recommended pacman updates conky script?

    Hi,
    I have been trying some of the conky pacman updates scripts on the forum/wiki.
    So far they either say my system is up to date when in fact pacman -Syu shows otherwise, or they fail to give any info at all.
    Can anybody recommend a conky script that is working at this moment in time?:/
    Last edited by ancleessen4 (2010-03-03 15:29:45)

    Sure-heavily plagiairized from either arch or ubuntu threads...a work in progress...;)
    If I find it back I will honour the original author...
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_hints undecorated,below,skip_taskbar
    own_window_type override
    own_window_colour brown
    own_window_transparent yes
    own_window_hints below
    background no
    maximum_width 200
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    # fiddle with window
    use_spacer right
    # Update interval in seconds
    update_interval 1
    # Minimum size of text area
    minimum_size 350 5
    # Draw shades?
    draw_shades yes
    draw_borders no
    # Stippled borders?
    # stippled_borders 8
    # window.border_inner_margin 4
    border_width 2
    # Default colors and also border colors, grey90 == #e5e5e5
    default_color white
    default_shade_color black
    default_outline_color white
    # Text alignment, other possible values are commented
    #alignment top_left
    alignment top_right
    #alignment bottom_left
    #alignment bottom_right
    # Gap between borders of screen and text
    gap_x 10
    gap_y 30
    # Text stuff
    draw_outline no # amplifies text if yes
    uppercase no # set to yes if you want all text to be in uppercase
    override_utf8_locale no
    use_xft yes
    xftfont Terminus:size=9
    #xftfont Sans:size=8
    xftalpha 0.8
    text_buffer_size 768
    # Force UTF8? note that UTF8 support required XFT
    override_utf8_locale yes
    color1 333333
    color2 cccccc
    color3 ddaa00
    ########## BEGIN FORMATTED DISPLAY ##########
    TEXT
    ${font :size=15}${color red}${alignc}${execi 6000 hostname}${font}${color }
    ${font :size=8}${alignc}${color lightgrey}$kernel${font}${color }
    ${hr 1}
    ${color slate grey}UpTime: ${alignr}${color lightgrey}$uptime${color }
    ${font StyleBats:size=17}k${font Terminus:size=12} CPU ${font}${hr 2}
    ${color slate grey}CPU:${color } ${cpu cpu0}% ${cpu cpu1}% ${alignr}${color }$loadavg
    ${alignc}${cpugraph cpu0 20,90 000000 ffffff} ${cpugraph cpu1 20,90 000000 ffffff}
    ${color slate grey}cpu0: ${alignr}${color lightgrey}${execi 5 sensors | grep "Core 0" | cut -d "+" -f2 | cut -c1-2}C${color }
    ${color slate grey}cpu1: ${alignr}${color lightgrey}${execi 5 sensors | grep "Core 1" | cut -d "+" -f2 | cut -c1-2}C${color }
    ${color slate grey}sda: ${alignr}${color lightgrey}${execi 30 hddtemp /dev/sda | cut -c 31-33}C
    ${color slate grey}Processes: ${color }${alignr}$processes
    ${color slate grey}Running: ${color }${alignr}$running_processes
    ${color slate grey}Top CPU:
    ${color #ddaa00} ${top name 1}${alignr}${top_mem cpu 1}
    ${color lightgrey} ${top name 2}${alignr}${top cpu 2}
    ${color lightgrey} ${top name 3}${alignr}${top cpu 3}
    ${color lightgrey} ${top name 4}${alignr}${top cpu 4}
    ${color lightgrey} ${top name 5}${alignr}${top cpu 5}
    ${color lightgrey} ${top name 6}${alignr}${top cpu 6}
    ${font StyleBats:size=17}M${font Terminus:size=12} MEMORY ${font}${hr 2}
    ${color slate grey}RAM: ${alignr}${membar 5,100}
    ${color slate grey}SWAP: ${alignr}${swapbar 5,100}
    ${color slate grey}ROOT: ${alignr}${fs_bar 5,100 /}
    ${color slate grey}HOME: ${alignr}${fs_bar 5,100 /home}
    ${color slate grey}Top Memory:
    ${color #ddaa00} ${top_mem name 1}${alignr}${top_mem mem 1}
    ${color lightgrey} ${top_mem name 2}${alignr}${top_mem mem 2}
    ${color lightgrey} ${top_mem name 3}${alignr}${top_mem mem 3}
    ${font StyleBats:size=17}5${font Terminus:size=12} NETWORK ${font}${hr 2}
    ${color slate grey}Local IP: ${alignr}${color }${addr eth0}
    ${color slate grey}Public IP: ${alignr}${color }${execi 450 ~/.scripts/externip.sh}
    ${color}Up: ${color }${upspeed eth0} k/s
    ${alignc}${upspeedgraph eth0 20,170 000000 ffffff}
    ${color}Down: ${color }${downspeed eth0}k/s${color}
    ${alignc}${downspeedgraph eth0 20,170 000000 ffffff}
    ${font StyleBats:size=17}v${font Terminus:size=12} UPDATES ${font}${hr 2}
    ${execpi 60 /home/neil/.scripts/pacman-update}${color}
    ${execpi 3600 paconky /home/neil/.scripts/repos.paconky}
    ${execpi 3600 paconky /home/neil/.scripts/aur.paconky}
    ${voffset 900}
    Current screen grab;
    http://neilhoughton.com/wp-content/uplo … nshot3.png

  • Pacman & make.conf

    I have been doing alot of reading today on ABS, makepkg etc... I have one question, I think I know the answer but, I'm not sure. Does pacman check the make.conf for cflags prior to package download to insure native support?
    Last edited by plat (2014-08-26 02:04:29)

    I think the exact functionality desired would require many more subdirectories within each of the repos.  Currently core, extra, and community each have two subdirectories: i686, x86_64.  It sounds like plat was hoping to install precompiled binaries for his specific processor which - and this is the key part as to why it can't be done - would require many new subdirectories: one for i686-core2, x86_64-core2, i686-some-other, x86_64-some-other, etc, etc.
    Pacman currently would work just fine with such precompiled binaries.  The limitation is simply that no one has seen sufficient reason to provide so many different versions of every package.  I don't think this is a lack of vision either - in most cases there really wouldn't be any noteworthy difference between an x86_64-generic and an x86_64-processor-specific package.  There are a limited number of cases where it would even be worth considering building your own from ABS just for this optimization - it certainly doesn't seem worth the added maintenance costs of dozens of extra subdirectories in the repos.

  • [solved] yaourt messed up pacman - "pacman: command not found"

    Hi,
    i got some "xxxxxx not found on AUR" messages after doing a "yaourt -Syu --aur" so I began to remove them with "yaourt -Rs xxxxxxx".
    When there was only one left "aqpm2" this is what happened:
    [studio@myhost ~]$ yaourt -Rs aqpm2
    verificando dependências...
    Remover (2): aqpm2-20100615-2  qjson-0.7.1-2
    Tamanho total dos pacotes a serem removidos:   2,93 MB
    Deseja remover estes pacotes? [S/n] s
    (1/2) removendo aqpm2                                                                                                     [##########################################################################] 100%
    (2/2) removendo qjson                                                                                                     [##########################################################################] 100%
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    /usr/bin/yaourt: line 201: testdb: comando não encontrado
    now pacman is broken:
    [studio@myhost ~]$ pacman
    bash: pacman: comando não encontrado
    [studio@myhost ~]$ yaourt -Syu --aur
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    You are not allowed to launch /usr/bin/pacman with sudo
    Please enter root password
    Senha:
    bash: /usr/bin/pacman: Arquivo ou diretório não encontrado
    ==> WARNING: problem in pkgbuild.sh library
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    ==> Searching for new version on AUR
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    Unable to open file: /etc/pacman.conf
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    /usr/lib/yaourt/basicfunctions.sh: line 10: pacman: comando não encontrado
    /usr/bin/yaourt: line 201: testdb: comando não encontrado
    [studio@myhost ~]$ sudo pacman -Syu
    sudo: pacman: command not found
    please help
    Last edited by capoeira (2010-10-16 14:33:39)

    capoeira wrote:
    can I use pacman-static from this repro?
    I'm afraid to break system even more
    http://repo.archmobile.org/x86_64/archmobile/
    OK, that gave me a segfault, so
    I downloaded the package and copied the folders to root.
    no pacman works but gaves me this errors afterwards:
    pacman-3.4.1-1: description file is missing
    pacman-3.4.1-1: dependency file is missing
    pacman-3.4.1-1: file list is missing
    how do I solve this?
    BTW: should I make a bug-report??
    EDIT: any package I try to instal I get this error:
    erro: não foi possível abrir o arquivo /var/lib/pacman/local/pacman-3.4.1-1/depends: Arquivo ou diretório não encontrado
    (it's in portuguese but i think its understandable)
    Last edited by capoeira (2010-10-15 22:08:36)

  • Feature request: extra Include directive in default pacman.conf

    Since arch's move to systemd, cluster administration requires less and less use of sed.  In particular, systemctl, timedatectl, /etc/sysctl.d, /etc/modules-load.d, /etc/hostname, /etc/vconsole.conf, etc. make scripting configuration changes both simpler more robust than the old approach of editing multi-purpose files such as /etc/rc.conf.
    An exception to this trend is pacman.conf, which has non-trivial default contents that almost certainly needs to be customized (e.g., to enable multilib and local repositories).  These changes would be much simpler if the default pacman.conf included a line such as:
    Include = /etc/pacman.d/conf/*.conf
    Currently my scripts use sed to insert this line at the end of the [options] section.  (Unfortunately "Include = /etc/pacman.d/*.conf" doesn't work because there's sometimes a gpg.conf file in /etc/pacman.d, but maybe that could be fixed.)
    I don't know if the forum is the right place for feature requests, but I wanted to get people's reactions.  If people think it's a good idea I can add it as a feature request to the bug tracker.
    There are several other pieces of low-hanging fruit where I'd like to see arch decrease the complexity scripting configuration (e.g., an unattended pacman-key --populate and easier customization of mkinitcpio.conf), but I figured I'd start with the simplest and gauge people's reactions.

    aweb wrote:I don't know if the forum is the right place for feature requests, but I wanted to get people's reactions.  If people think it's a good idea I can add it as a feature request to the bug tracker.
    It isn't... best to place the feedback in flyspray so it will be sure to get to the peeps that need to see it.  Welcome to Arch.

  • [SOLVED] Cannot Compile Pacman 3.5.3

    My head is aching at the moment as I have become desperate to compile Pacman. The normal procedure ./configure then make fails with this error (Honest, I can't make out anything, it sound like a libtool problem):
    make all-recursive
    make[1]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3'
    Making all in lib/libalpm
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/lib/libalpm'
    Making all in po
    make[3]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/lib/libalpm/po'
    make[3]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/lib/libalpm/po'
    make[3]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/lib/libalpm'
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT add.lo -MD -MP -MF .deps/add.Tpo -c -o add.lo add.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT add.lo -MD -MP -MF .deps/add.Tpo -c add.c -fPIC -DPIC -o .libs/add.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT add.lo -MD -MP -MF .deps/add.Tpo -c add.c -o add.o >/dev/null 2>&1
    mv -f .deps/add.Tpo .deps/add.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT alpm.lo -MD -MP -MF .deps/alpm.Tpo -c -o alpm.lo alpm.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT alpm.lo -MD -MP -MF .deps/alpm.Tpo -c alpm.c -fPIC -DPIC -o .libs/alpm.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT alpm.lo -MD -MP -MF .deps/alpm.Tpo -c alpm.c -o alpm.o >/dev/null 2>&1
    mv -f .deps/alpm.Tpo .deps/alpm.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT alpm_list.lo -MD -MP -MF .deps/alpm_list.Tpo -c -o alpm_list.lo alpm_list.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT alpm_list.lo -MD -MP -MF .deps/alpm_list.Tpo -c alpm_list.c -fPIC -DPIC -o .libs/alpm_list.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT alpm_list.lo -MD -MP -MF .deps/alpm_list.Tpo -c alpm_list.c -o alpm_list.o >/dev/null 2>&1
    mv -f .deps/alpm_list.Tpo .deps/alpm_list.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT backup.lo -MD -MP -MF .deps/backup.Tpo -c -o backup.lo backup.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT backup.lo -MD -MP -MF .deps/backup.Tpo -c backup.c -fPIC -DPIC -o .libs/backup.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT backup.lo -MD -MP -MF .deps/backup.Tpo -c backup.c -o backup.o >/dev/null 2>&1
    mv -f .deps/backup.Tpo .deps/backup.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_local.lo -MD -MP -MF .deps/be_local.Tpo -c -o be_local.lo be_local.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_local.lo -MD -MP -MF .deps/be_local.Tpo -c be_local.c -fPIC -DPIC -o .libs/be_local.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_local.lo -MD -MP -MF .deps/be_local.Tpo -c be_local.c -o be_local.o >/dev/null 2>&1
    mv -f .deps/be_local.Tpo .deps/be_local.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_package.lo -MD -MP -MF .deps/be_package.Tpo -c -o be_package.lo be_package.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_package.lo -MD -MP -MF .deps/be_package.Tpo -c be_package.c -fPIC -DPIC -o .libs/be_package.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_package.lo -MD -MP -MF .deps/be_package.Tpo -c be_package.c -o be_package.o >/dev/null 2>&1
    mv -f .deps/be_package.Tpo .deps/be_package.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_sync.lo -MD -MP -MF .deps/be_sync.Tpo -c -o be_sync.lo be_sync.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_sync.lo -MD -MP -MF .deps/be_sync.Tpo -c be_sync.c -fPIC -DPIC -o .libs/be_sync.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT be_sync.lo -MD -MP -MF .deps/be_sync.Tpo -c be_sync.c -o be_sync.o >/dev/null 2>&1
    mv -f .deps/be_sync.Tpo .deps/be_sync.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT conflict.lo -MD -MP -MF .deps/conflict.Tpo -c -o conflict.lo conflict.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT conflict.lo -MD -MP -MF .deps/conflict.Tpo -c conflict.c -fPIC -DPIC -o .libs/conflict.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT conflict.lo -MD -MP -MF .deps/conflict.Tpo -c conflict.c -o conflict.o >/dev/null 2>&1
    mv -f .deps/conflict.Tpo .deps/conflict.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT db.lo -MD -MP -MF .deps/db.Tpo -c -o db.lo db.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT db.lo -MD -MP -MF .deps/db.Tpo -c db.c -fPIC -DPIC -o .libs/db.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT db.lo -MD -MP -MF .deps/db.Tpo -c db.c -o db.o >/dev/null 2>&1
    mv -f .deps/db.Tpo .deps/db.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT delta.lo -MD -MP -MF .deps/delta.Tpo -c -o delta.lo delta.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT delta.lo -MD -MP -MF .deps/delta.Tpo -c delta.c -fPIC -DPIC -o .libs/delta.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT delta.lo -MD -MP -MF .deps/delta.Tpo -c delta.c -o delta.o >/dev/null 2>&1
    mv -f .deps/delta.Tpo .deps/delta.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT deps.lo -MD -MP -MF .deps/deps.Tpo -c -o deps.lo deps.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT deps.lo -MD -MP -MF .deps/deps.Tpo -c deps.c -fPIC -DPIC -o .libs/deps.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT deps.lo -MD -MP -MF .deps/deps.Tpo -c deps.c -o deps.o >/dev/null 2>&1
    mv -f .deps/deps.Tpo .deps/deps.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT diskspace.lo -MD -MP -MF .deps/diskspace.Tpo -c -o diskspace.lo diskspace.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT diskspace.lo -MD -MP -MF .deps/diskspace.Tpo -c diskspace.c -fPIC -DPIC -o .libs/diskspace.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT diskspace.lo -MD -MP -MF .deps/diskspace.Tpo -c diskspace.c -o diskspace.o >/dev/null 2>&1
    mv -f .deps/diskspace.Tpo .deps/diskspace.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT dload.lo -MD -MP -MF .deps/dload.Tpo -c -o dload.lo dload.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT dload.lo -MD -MP -MF .deps/dload.Tpo -c dload.c -fPIC -DPIC -o .libs/dload.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT dload.lo -MD -MP -MF .deps/dload.Tpo -c dload.c -o dload.o >/dev/null 2>&1
    mv -f .deps/dload.Tpo .deps/dload.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT error.lo -MD -MP -MF .deps/error.Tpo -c -o error.lo error.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -fPIC -DPIC -o .libs/error.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT error.lo -MD -MP -MF .deps/error.Tpo -c error.c -o error.o >/dev/null 2>&1
    mv -f .deps/error.Tpo .deps/error.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT group.lo -MD -MP -MF .deps/group.Tpo -c -o group.lo group.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT group.lo -MD -MP -MF .deps/group.Tpo -c group.c -fPIC -DPIC -o .libs/group.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT group.lo -MD -MP -MF .deps/group.Tpo -c group.c -o group.o >/dev/null 2>&1
    mv -f .deps/group.Tpo .deps/group.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT handle.lo -MD -MP -MF .deps/handle.Tpo -c -o handle.lo handle.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT handle.lo -MD -MP -MF .deps/handle.Tpo -c handle.c -fPIC -DPIC -o .libs/handle.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT handle.lo -MD -MP -MF .deps/handle.Tpo -c handle.c -o handle.o >/dev/null 2>&1
    mv -f .deps/handle.Tpo .deps/handle.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT log.lo -MD -MP -MF .deps/log.Tpo -c -o log.lo log.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT log.lo -MD -MP -MF .deps/log.Tpo -c log.c -fPIC -DPIC -o .libs/log.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT log.lo -MD -MP -MF .deps/log.Tpo -c log.c -o log.o >/dev/null 2>&1
    mv -f .deps/log.Tpo .deps/log.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT package.lo -MD -MP -MF .deps/package.Tpo -c -o package.lo package.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT package.lo -MD -MP -MF .deps/package.Tpo -c package.c -fPIC -DPIC -o .libs/package.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT package.lo -MD -MP -MF .deps/package.Tpo -c package.c -o package.o >/dev/null 2>&1
    mv -f .deps/package.Tpo .deps/package.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT pkghash.lo -MD -MP -MF .deps/pkghash.Tpo -c -o pkghash.lo pkghash.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT pkghash.lo -MD -MP -MF .deps/pkghash.Tpo -c pkghash.c -fPIC -DPIC -o .libs/pkghash.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT pkghash.lo -MD -MP -MF .deps/pkghash.Tpo -c pkghash.c -o pkghash.o >/dev/null 2>&1
    mv -f .deps/pkghash.Tpo .deps/pkghash.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT remove.lo -MD -MP -MF .deps/remove.Tpo -c -o remove.lo remove.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT remove.lo -MD -MP -MF .deps/remove.Tpo -c remove.c -fPIC -DPIC -o .libs/remove.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT remove.lo -MD -MP -MF .deps/remove.Tpo -c remove.c -o remove.o >/dev/null 2>&1
    mv -f .deps/remove.Tpo .deps/remove.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT sync.lo -MD -MP -MF .deps/sync.Tpo -c -o sync.lo sync.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT sync.lo -MD -MP -MF .deps/sync.Tpo -c sync.c -fPIC -DPIC -o .libs/sync.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT sync.lo -MD -MP -MF .deps/sync.Tpo -c sync.c -o sync.o >/dev/null 2>&1
    mv -f .deps/sync.Tpo .deps/sync.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT trans.lo -MD -MP -MF .deps/trans.Tpo -c -o trans.lo trans.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT trans.lo -MD -MP -MF .deps/trans.Tpo -c trans.c -fPIC -DPIC -o .libs/trans.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT trans.lo -MD -MP -MF .deps/trans.Tpo -c trans.c -o trans.o >/dev/null 2>&1
    mv -f .deps/trans.Tpo .deps/trans.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT util.lo -MD -MP -MF .deps/util.Tpo -c -o util.lo util.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT util.lo -MD -MP -MF .deps/util.Tpo -c util.c -fPIC -DPIC -o .libs/util.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT util.lo -MD -MP -MF .deps/util.Tpo -c util.c -o util.o >/dev/null 2>&1
    mv -f .deps/util.Tpo .deps/util.Plo
    /bin/sh ../../libtool --tag=CC --mode=compile gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT version.lo -MD -MP -MF .deps/version.Tpo -c -o version.lo version.c
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT version.lo -MD -MP -MF .deps/version.Tpo -c version.c -fPIC -DPIC -o .libs/version.o
    libtool: compile: gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DHAVE_CONFIG_H -I. -I../.. -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -MT version.lo -MD -MP -MF .deps/version.Tpo -c version.c -o version.o >/dev/null 2>&1
    mv -f .deps/version.Tpo .deps/version.Plo
    /bin/sh ../../libtool --tag=CC --mode=link gcc -std=gnu99 -pedantic -D_GNU_SOURCE -fvisibility=internal -fgnu89-inline -g -O2 -Wall -no-undefined -version-info 6:3:0 -o libalpm.la -rpath /usr/local/lib add.lo alpm.lo alpm_list.lo backup.lo be_local.lo be_package.lo be_sync.lo conflict.lo db.lo delta.lo deps.lo diskspace.lo dload.lo error.lo group.lo handle.lo log.lo package.lo pkghash.lo remove.lo sync.lo trans.lo util.lo version.lo -lfetch -lssl -larchive
    libtool: link: gcc -std=gnu99 -shared -fPIC -DPIC .libs/add.o .libs/alpm.o .libs/alpm_list.o .libs/backup.o .libs/be_local.o .libs/be_package.o .libs/be_sync.o .libs/conflict.o .libs/db.o .libs/delta.o .libs/deps.o .libs/diskspace.o .libs/dload.o .libs/error.o .libs/group.o .libs/handle.o .libs/log.o .libs/package.o .libs/pkghash.o .libs/remove.o .libs/sync.o .libs/trans.o .libs/util.o .libs/version.o -lfetch -lssl /usr/lib/libarchive.so -lacl -lattr -lexpat -llzma -lbz2 -lz -lcrypto -O2 -Wl,-soname -Wl,libalpm.so.6 -o .libs/libalpm.so.6.0.3
    libtool: link: (cd ".libs" && rm -f "libalpm.so.6" && ln -s "libalpm.so.6.0.3" "libalpm.so.6")
    libtool: link: (cd ".libs" && rm -f "libalpm.so" && ln -s "libalpm.so.6.0.3" "libalpm.so")
    libtool: link: ar cru .libs/libalpm.a add.o alpm.o alpm_list.o backup.o be_local.o be_package.o be_sync.o conflict.o db.o delta.o deps.o diskspace.o dload.o error.o group.o handle.o log.o package.o pkghash.o remove.o sync.o trans.o util.o version.o
    libtool: link: ranlib .libs/libalpm.a
    libtool: link: ( cd ".libs" && rm -f "libalpm.la" && ln -s "../libalpm.la" "libalpm.la" )
    make[3]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/lib/libalpm'
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/lib/libalpm'
    Making all in src/util
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/src/util'
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT vercmp.o -MD -MP -MF .deps/vercmp.Tpo -c -o vercmp.o vercmp.c
    mv -f .deps/vercmp.Tpo .deps/vercmp.Po
    /bin/sh ../../libtool --tag=CC --mode=link gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o vercmp vercmp.o ../../lib/libalpm/version.o -lfetch -lssl -larchive
    libtool: link: gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o vercmp vercmp.o ../../lib/libalpm/version.o -lfetch -lssl /usr/lib/libarchive.so -lacl -lattr -lexpat -llzma -lbz2 -lz -lcrypto
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT testpkg.o -MD -MP -MF .deps/testpkg.Tpo -c -o testpkg.o testpkg.c
    mv -f .deps/testpkg.Tpo .deps/testpkg.Po
    /bin/sh ../../libtool --tag=CC --mode=link gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o testpkg testpkg.o ../../lib/libalpm/.libs/libalpm.la -lfetch -lssl -larchive
    libtool: link: gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o .libs/testpkg testpkg.o ../../lib/libalpm/.libs/libalpm.so -lfetch -lssl /usr/lib/libarchive.so -lacl -lattr -lexpat -llzma -lbz2 -lz -lcrypto -Wl,-rpath -Wl,/usr/local/lib
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT testdb.o -MD -MP -MF .deps/testdb.Tpo -c -o testdb.o testdb.c
    mv -f .deps/testdb.Tpo .deps/testdb.Po
    /bin/sh ../../libtool --tag=CC --mode=link gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o testdb testdb.o ../../lib/libalpm/.libs/libalpm.la -lfetch -lssl -larchive
    libtool: link: gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o .libs/testdb testdb.o ../../lib/libalpm/.libs/libalpm.so -lfetch -lssl /usr/lib/libarchive.so -lacl -lattr -lexpat -llzma -lbz2 -lz -lcrypto -Wl,-rpath -Wl,/usr/local/lib
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT cleanupdelta.o -MD -MP -MF .deps/cleanupdelta.Tpo -c -o cleanupdelta.o cleanupdelta.c
    mv -f .deps/cleanupdelta.Tpo .deps/cleanupdelta.Po
    /bin/sh ../../libtool --tag=CC --mode=link gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o cleanupdelta cleanupdelta.o ../../lib/libalpm/.libs/libalpm.la -lfetch -lssl -larchive
    libtool: link: gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o .libs/cleanupdelta cleanupdelta.o ../../lib/libalpm/.libs/libalpm.so -lfetch -lssl /usr/lib/libarchive.so -lacl -lattr -lexpat -llzma -lbz2 -lz -lcrypto -Wl,-rpath -Wl,/usr/local/lib
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT pactree.o -MD -MP -MF .deps/pactree.Tpo -c -o pactree.o pactree.c
    mv -f .deps/pactree.Tpo .deps/pactree.Po
    /bin/sh ../../libtool --tag=CC --mode=link gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o pactree pactree.o ../../lib/libalpm/.libs/libalpm.la -lfetch -lssl -larchive
    libtool: link: gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o .libs/pactree pactree.o ../../lib/libalpm/.libs/libalpm.so -lfetch -lssl /usr/lib/libarchive.so -lacl -lattr -lexpat -llzma -lbz2 -lz -lcrypto -Wl,-rpath -Wl,/usr/local/lib
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/src/util'
    Making all in src/pacman
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/src/pacman'
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT conf.o -MD -MP -MF .deps/conf.Tpo -c -o conf.o conf.c
    mv -f .deps/conf.Tpo .deps/conf.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT database.o -MD -MP -MF .deps/database.Tpo -c -o database.o database.c
    mv -f .deps/database.Tpo .deps/database.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT deptest.o -MD -MP -MF .deps/deptest.Tpo -c -o deptest.o deptest.c
    mv -f .deps/deptest.Tpo .deps/deptest.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT package.o -MD -MP -MF .deps/package.Tpo -c -o package.o package.c
    mv -f .deps/package.Tpo .deps/package.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT pacman.o -MD -MP -MF .deps/pacman.Tpo -c -o pacman.o pacman.c
    mv -f .deps/pacman.Tpo .deps/pacman.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT query.o -MD -MP -MF .deps/query.Tpo -c -o query.o query.c
    mv -f .deps/query.Tpo .deps/query.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT remove.o -MD -MP -MF .deps/remove.Tpo -c -o remove.o remove.c
    mv -f .deps/remove.Tpo .deps/remove.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT sync.o -MD -MP -MF .deps/sync.Tpo -c -o sync.o sync.c
    mv -f .deps/sync.Tpo .deps/sync.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT callback.o -MD -MP -MF .deps/callback.Tpo -c -o callback.o callback.c
    mv -f .deps/callback.Tpo .deps/callback.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT upgrade.o -MD -MP -MF .deps/upgrade.Tpo -c -o upgrade.o upgrade.c
    mv -f .deps/upgrade.Tpo .deps/upgrade.Po
    gcc -std=gnu99 -DLOCALEDIR=\"/usr/local/share/locale\" -DCONFFILE=\"/usr/local/etc/pacman.conf\" -DROOTDIR=\"/\" -DDBPATH=\"/usr/local/var/lib/pacman/\" -DCACHEDIR=\"/usr/local/var/cache/pacman/pkg/\" -DLOGFILE=\"/usr/local/var/log/pacman.log\" -DHAVE_CONFIG_H -I. -I../.. -I../../lib/libalpm -pedantic -D_GNU_SOURCE -g -O2 -Wall -MT util.o -MD -MP -MF .deps/util.Tpo -c -o util.o util.c
    mv -f .deps/util.Tpo .deps/util.Po
    /bin/sh ../../libtool --tag=CC --mode=link gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o pacman conf.o database.o deptest.o package.o pacman.o query.o remove.o sync.o callback.o upgrade.o util.o ../../lib/libalpm/.libs/libalpm.la -lfetch -lssl -larchive
    libtool: link: gcc -std=gnu99 -pedantic -D_GNU_SOURCE -g -O2 -Wall -o .libs/pacman conf.o database.o deptest.o package.o pacman.o query.o remove.o sync.o callback.o upgrade.o util.o ../../lib/libalpm/.libs/libalpm.so -lfetch -lssl /usr/lib/libarchive.so -lacl -lattr -lexpat -llzma -lbz2 -lz -lcrypto -Wl,-rpath -Wl,/usr/local/lib
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/src/pacman'
    Making all in scripts
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/scripts'
    GEN makepkg
    GEN pacman-db-upgrade
    GEN pacman-optimize
    GEN pkgdelta
    GEN rankmirrors
    GEN repo-add
    rm -f repo-remove
    ln -s repo-add repo-remove
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/scripts'
    Making all in etc
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/etc'
    GEN makepkg.conf
    GEN pacman.conf
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/etc'
    Making all in po
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/po'
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/po'
    Making all in test/pacman
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/pacman'
    Making all in tests
    make[3]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/pacman/tests'
    make[3]: Nothing to be done for `all'.
    make[3]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/pacman/tests'
    make[3]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/pacman'
    make[3]: Nothing to be done for `all-am'.
    make[3]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/pacman'
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/pacman'
    Making all in test/util
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/util'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/test/util'
    Making all in contrib
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/contrib'
    GEN bacman
    GEN pacdiff
    GEN paclist
    GEN pacscripts
    GEN pacsearch
    GEN wget-xdelta.sh
    GEN bash_completion
    GEN zsh_completion
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/contrib'
    Making all in doc
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3/doc'
    make[2]: Nothing to be done for `all'.
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3/doc'
    make[2]: Entering directory `/home/aardvark/Documents/pacman/pacman-3.5.3'
    make[2]: Nothing to be done for `all-am'.
    make[2]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3'
    make[1]: Leaving directory `/home/aardvark/Documents/pacman/pacman-3.5.3'
    This is the output of ./configure:
    checking build system type... x86_64-unknown-linux-gnu
    checking host system type... x86_64-unknown-linux-gnu
    checking for a BSD-compatible install... /bin/install -c
    checking whether build environment is sane... yes
    checking for a thread-safe mkdir -p... /bin/mkdir -p
    checking for gawk... gawk
    checking whether make sets $(MAKE)... yes
    checking for gawk... (cached) gawk
    checking for style of include used by make... GNU
    checking for gcc... gcc
    checking whether the C compiler works... yes
    checking for C compiler default output file name... a.out
    checking for suffix of executables...
    checking whether we are cross compiling... no
    checking for suffix of object files... o
    checking whether we are using the GNU C compiler... yes
    checking whether gcc accepts -g... yes
    checking for gcc option to accept ISO C89... none needed
    checking dependency style of gcc... gcc3
    checking for gcc option to accept ISO C99... -std=gnu99
    checking whether ln -s works... yes
    checking whether make sets $(MAKE)... (cached) yes
    checking how to print strings... printf
    checking for a sed that does not truncate output... /bin/sed
    checking for grep that handles long lines and -e... /bin/grep
    checking for egrep... /bin/grep -E
    checking for fgrep... /bin/grep -F
    checking for ld used by gcc -std=gnu99... /usr/bin/ld
    checking if the linker (/usr/bin/ld) is GNU ld... yes
    checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
    checking the name lister (/usr/bin/nm -B) interface... BSD nm
    checking the maximum length of command line arguments... 1572864
    checking whether the shell understands some XSI constructs... yes
    checking whether the shell understands "+="... yes
    checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
    checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
    checking for /usr/bin/ld option to reload object files... -r
    checking for objdump... objdump
    checking how to recognize dependent libraries... pass_all
    checking for dlltool... no
    checking how to associate runtime and link libraries... printf %s\n
    checking for ar... ar
    checking for archiver @FILE support... @
    checking for strip... strip
    checking for ranlib... ranlib
    checking command to parse /usr/bin/nm -B output from gcc -std=gnu99 object... ok
    checking for sysroot... no
    checking for mt... no
    checking if : is a manifest tool... no
    checking how to run the C preprocessor... gcc -std=gnu99 -E
    checking for ANSI C header files... yes
    checking for sys/types.h... yes
    checking for sys/stat.h... yes
    checking for stdlib.h... yes
    checking for string.h... yes
    checking for memory.h... yes
    checking for strings.h... yes
    checking for inttypes.h... yes
    checking for stdint.h... yes
    checking for unistd.h... yes
    checking for dlfcn.h... yes
    checking for objdir... .libs
    checking if gcc -std=gnu99 supports -fno-rtti -fno-exceptions... no
    checking for gcc -std=gnu99 option to produce PIC... -fPIC -DPIC
    checking if gcc -std=gnu99 PIC flag -fPIC -DPIC works... yes
    checking if gcc -std=gnu99 static flag -static works... yes
    checking if gcc -std=gnu99 supports -c -o file.o... yes
    checking if gcc -std=gnu99 supports -c -o file.o... (cached) yes
    checking whether the gcc -std=gnu99 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
    checking whether -lc should be explicitly linked in... no
    checking dynamic linker characteristics... GNU/Linux ld.so
    checking how to hardcode library paths into programs... immediate
    checking whether stripping libraries is possible... yes
    checking if libtool supports shared libraries... yes
    checking whether to build shared libraries... yes
    checking whether to build static libraries... yes
    checking for python2.7... python2.7
    checking for bash... /bin/bash
    checking whether NLS is requested... yes
    checking for msgfmt... /usr/bin/msgfmt
    checking for gmsgfmt... /usr/bin/msgfmt
    checking for xgettext... /usr/bin/xgettext
    checking for msgmerge... /usr/bin/msgmerge
    checking for ld used by GCC... /usr/bin/ld -m elf_x86_64
    checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
    checking for shared library run path origin... done
    checking for CFPreferencesCopyAppValue... no
    checking for CFLocaleCopyCurrent... no
    checking for GNU gettext in libc... yes
    checking whether to use NLS... yes
    checking where the gettext function comes from... libc
    checking for archive_read_data in -larchive... yes
    checking whether to link with libssl... yes
    checking for MD5_Final in -lssl... yes
    checking whether to link with libfetch... yes
    checking for fetchParseURL in -lfetch... yes
    checking whether fetchConnectionCacheInit is declared... yes
    checking fcntl.h usability... yes
    checking fcntl.h presence... yes
    checking for fcntl.h... yes
    checking glob.h usability... yes
    checking glob.h presence... yes
    checking for glob.h... yes
    checking libintl.h usability... yes
    checking libintl.h presence... yes
    checking for libintl.h... yes
    checking locale.h usability... yes
    checking locale.h presence... yes
    checking for locale.h... yes
    checking mntent.h usability... yes
    checking mntent.h presence... yes
    checking for mntent.h... yes
    checking for string.h... (cached) yes
    checking sys/ioctl.h usability... yes
    checking sys/ioctl.h presence... yes
    checking for sys/ioctl.h... yes
    checking sys/mount.h usability... yes
    checking sys/mount.h presence... yes
    checking for sys/mount.h... yes
    checking sys/param.h usability... yes
    checking sys/param.h presence... yes
    checking for sys/param.h... yes
    checking sys/statvfs.h usability... yes
    checking sys/statvfs.h presence... yes
    checking for sys/statvfs.h... yes
    checking sys/time.h usability... yes
    checking sys/time.h presence... yes
    checking for sys/time.h... yes
    checking for sys/types.h... (cached) yes
    checking sys/ucred.h usability... no
    checking sys/ucred.h presence... no
    checking for sys/ucred.h... no
    checking syslog.h usability... yes
    checking syslog.h presence... yes
    checking for syslog.h... yes
    checking wchar.h usability... yes
    checking wchar.h presence... yes
    checking for wchar.h... yes
    checking for inline... inline
    checking for mode_t... yes
    checking for off_t... yes
    checking for pid_t... yes
    checking for size_t... yes
    checking whether struct tm is in sys/time.h or time.h... time.h
    checking for uid_t in sys/types.h... yes
    checking for dirent.h that defines DIR... yes
    checking for library containing opendir... none required
    checking for struct dirent.d_type... yes
    checking PATH_MAX defined... yes
    checking vfork.h usability... no
    checking vfork.h presence... no
    checking for vfork.h... no
    checking for fork... yes
    checking for vfork... yes
    checking for working fork... yes
    checking for working vfork... (cached) yes
    checking for library containing getmntent... none required
    checking whether lstat correctly handles trailing slash... yes
    checking whether time.h and sys/time.h may both be included... yes
    checking for sys/time.h... (cached) yes
    checking for unistd.h... (cached) yes
    checking for alarm... yes
    checking for working mktime... yes
    checking for geteuid... yes
    checking for getmntinfo... no
    checking for realpath... yes
    checking for regcomp... yes
    checking for strcasecmp... yes
    checking for strndup... yes
    checking for strrchr... yes
    checking for strsep... yes
    checking for swprintf... yes
    checking for wcwidth... yes
    checking for uname... yes
    checking filesystem statistics type... checking for getmntinfo... (cached) no
    checking for getmntent... (cached) yes
    struct statvfs
    checking for struct statvfs.f_flag... yes
    checking for struct statfs.f_flags... no
    checking for special C compiler options needed for large files... no
    checking for _FILE_OFFSET_BITS value needed for large files... no
    checking whether gcc -std=gnu99 accepts -fvisibility=internal... yes
    checking for -fgnu89-inline... yes
    checking for du... /bin/du
    checking for asciidoc... asciidoc
    checking for building documentation... yes, enabled by configure
    checking for doxygen... no
    checking for doxygen... no, disabled by configure
    checking for debug mode request... no
    checking whether to use git version if available... no, disabled by configure
    configure: creating ./config.status
    config.status: creating lib/libalpm/Makefile
    config.status: creating lib/libalpm/po/Makefile.in
    config.status: creating src/pacman/Makefile
    config.status: creating src/util/Makefile
    config.status: creating scripts/Makefile
    config.status: creating doc/Makefile
    config.status: creating etc/Makefile
    config.status: creating po/Makefile.in
    config.status: creating test/pacman/Makefile
    config.status: creating test/pacman/tests/Makefile
    config.status: creating test/util/Makefile
    config.status: creating contrib/Makefile
    config.status: creating Makefile
    config.status: creating config.h
    config.status: executing depfiles commands
    config.status: executing libtool commands
    config.status: executing po-directories commands
    config.status: creating lib/libalpm/po/POTFILES
    config.status: creating lib/libalpm/po/Makefile
    config.status: creating po/POTFILES
    config.status: creating po/Makefile
    pacman:
    Build information:
    source code location : .
    prefix : /usr/local
    sysconfdir : /usr/local/etc
    conf file : /usr/local/etc/pacman.conf
    localstatedir : /usr/local/var
    database dir : /usr/local/var/lib/pacman/
    cache dir : /usr/local/var/cache/pacman/pkg/
    compiler : gcc -std=gnu99
    compiler flags : -g -O2 -Wall
    defines : -DHAVE_CONFIG_H
    Architecture : x86_64
    Architecture flags : -march=x86-64
    Host Type : x86_64-unknown-linux-gnu
    Filesize command : stat -L -c %s
    In-place sed command : sed -i
    libalpm version : 6.0.3
    libalpm version info : 6:3:0
    pacman version : 3.5.3
    using git version : no
    Directory and file information:
    root working directory : /
    package extension : .pkg.tar.gz
    source pkg extension : .src.tar.gz
    build script name : PKGBUILD
    Compilation options:
    Run make in doc/ dir : yes
    Doxygen support : no
    debug support : no
    I'm sure libtool is installed. I had a working copy of pacman but a bad "make install" destroyed that too. Any help?
    Last edited by newdave (2011-07-07 05:46:27)

    falconindy wrote:
    And where's the error? Other than the completely wrong paths being set for ./configure, there is none. That's a successful make.
    newdave wrote:P.S. I must add that currently pacman is broken on my system so " makepkg -s " does not work (error: no usable package repositories configured.)
    P.P.S note the word configure. this is user error as you've not uncommented any mirrors from /etc/pacman.d/mirrorlist. I strongly suggest you do one of two things:
    1) If you're insistent on compiling pacman by hand, use the configure flags from the package in ABS.
    2) Backup your pacman.conf/makepkg.conf, download a pacman package, and extract it to root, and then restore your config files. After fixing your mirrorlist, reinstall pacman with pacman, using pacman -Sf pacman
    I identified some error keywords in the make output and thought the make had failed. but apparently I was wrong. As you said the make was succesful( sorry for noobish mistake). As to the pacman breakage, the problem was with two duplicate copies of  pacman in /usr/bin/pacman and  /usr/local/bin/pacman ! just removed /usr/local/bin/pacman and pacman got fixed...
    Anyway, Thank you all for your help.

  • [Solved] No Usable Pacman Repositories Configured

    I had the liblzma.so.0 problem and tought pacman was the problem. I tried to reinstall pacman several time and find out that the liblzma.so.0 symlink was the problem.
    Now pacman don't work I have the following message:
    No Usable Pacman Repositories Configured
    Here is the pacman -v output:
    Root : /
    Conf File : /usr/local/etc/pacman.conf
    DB Path : /usr/local/var/lib/pacman/
    Cache Dirs: /usr/local/var/cache/pacman/pkg/
    Lock File : /usr/local/var/lib/pacman/db.lck
    Log File : /usr/local/var/log/pacman.log
    Targets : --
    Erreur: aucune opération spécifiée (utiliser -h pour l'aide)
    That wrong! /usr/local/ shouldn't be there but I am unable to change it!
    Last edited by srivo (2010-12-19 20:39:14)

    Here is the output:
    # /usr/bin/pacman -Qil pacman
    Nom : pacman
    Version : 3.4.1-1
    URL : [url]http://www.archlinux.org/pacman/[/url]
    Licences : GPL
    Groupes : base
    Fournit : --
    Dépend de : bash libarchive>=2.7.1 libfetch>=2.25
    pacman-mirrorlist
    Dépendances opt. : fakeroot: for makepkg usage as normal user
    curl: for rankmirrors usage
    Requis par : archup package-query pkgstats yaourt
    Est en conflit avec : --
    Remplace : --
    Taille (installé) : 2244,00 K
    Paqueteur : Dan McGee <[email protected]>
    Architecture : i686
    Compilé le : ven 03 sep 2010 21:12:12 EDT
    Installé le : dim 19 déc 2010 13:31:36 EST
    Motif d'installation : Explicitement installé
    Script d'installation : Oui
    Description : A library-based package manager with dependency support
    pacman /etc/
    pacman /etc/bash_completion.d/
    pacman /etc/bash_completion.d/pacman
    pacman /etc/makepkg.conf
    pacman /etc/pacman.conf
    pacman /usr/
    pacman /usr/bin/
    pacman /usr/bin/cleanupdelta
    pacman /usr/bin/makepkg
    pacman /usr/bin/pacman
    pacman /usr/bin/pacman-optimize
    pacman /usr/bin/pkgdelta
    pacman /usr/bin/rankmirrors
    pacman /usr/bin/repo-add
    pacman /usr/bin/repo-remove
    pacman /usr/bin/testdb
    pacman /usr/bin/testpkg
    pacman /usr/bin/vercmp
    pacman /usr/include/
    pacman /usr/include/alpm.h
    pacman /usr/include/alpm_list.h
    pacman /usr/lib/
    pacman /usr/lib/libalpm.a
    pacman /usr/lib/libalpm.so
    pacman /usr/lib/libalpm.so.5
    pacman /usr/lib/libalpm.so.5.0.1
    pacman /usr/share/
    pacman /usr/share/locale/
    pacman /usr/share/locale/ca/
    pacman /usr/share/locale/ca/LC_MESSAGES/
    pacman /usr/share/locale/ca/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/ca/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/cs/
    pacman /usr/share/locale/cs/LC_MESSAGES/
    pacman /usr/share/locale/cs/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/cs/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/de/
    pacman /usr/share/locale/de/LC_MESSAGES/
    pacman /usr/share/locale/de/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/de/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/el/
    pacman /usr/share/locale/el/LC_MESSAGES/
    pacman /usr/share/locale/el/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/el/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/en_GB/
    pacman /usr/share/locale/en_GB/LC_MESSAGES/
    pacman /usr/share/locale/en_GB/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/en_GB/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/es/
    pacman /usr/share/locale/es/LC_MESSAGES/
    pacman /usr/share/locale/es/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/es/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/fr/
    pacman /usr/share/locale/fr/LC_MESSAGES/
    pacman /usr/share/locale/fr/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/fr/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/hu/
    pacman /usr/share/locale/hu/LC_MESSAGES/
    pacman /usr/share/locale/hu/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/hu/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/it/
    pacman /usr/share/locale/it/LC_MESSAGES/
    pacman /usr/share/locale/it/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/it/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/kk/
    pacman /usr/share/locale/kk/LC_MESSAGES/
    pacman /usr/share/locale/kk/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/kk/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/nb/
    pacman /usr/share/locale/nb/LC_MESSAGES/
    pacman /usr/share/locale/nb/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/nb/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/pl/
    pacman /usr/share/locale/pl/LC_MESSAGES/
    pacman /usr/share/locale/pl/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/pl/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/pt/
    pacman /usr/share/locale/pt/LC_MESSAGES/
    pacman /usr/share/locale/pt/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/pt/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/pt_BR/
    pacman /usr/share/locale/pt_BR/LC_MESSAGES/
    pacman /usr/share/locale/pt_BR/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/pt_BR/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/ro/
    pacman /usr/share/locale/ro/LC_MESSAGES/
    pacman /usr/share/locale/ro/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/ro/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/ru/
    pacman /usr/share/locale/ru/LC_MESSAGES/
    pacman /usr/share/locale/ru/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/ru/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/sk/
    pacman /usr/share/locale/sk/LC_MESSAGES/
    pacman /usr/share/locale/sk/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/sk/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/sv/
    pacman /usr/share/locale/sv/LC_MESSAGES/
    pacman /usr/share/locale/sv/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/sv/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/tr/
    pacman /usr/share/locale/tr/LC_MESSAGES/
    pacman /usr/share/locale/tr/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/tr/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/uk/
    pacman /usr/share/locale/uk/LC_MESSAGES/
    pacman /usr/share/locale/uk/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/uk/LC_MESSAGES/pacman.mo
    pacman /usr/share/locale/zh_CN/
    pacman /usr/share/locale/zh_CN/LC_MESSAGES/
    pacman /usr/share/locale/zh_CN/LC_MESSAGES/libalpm.mo
    pacman /usr/share/locale/zh_CN/LC_MESSAGES/pacman.mo
    pacman /usr/share/man/
    pacman /usr/share/man/man3/
    pacman /usr/share/man/man3/libalpm.3.gz
    pacman /usr/share/man/man5/
    pacman /usr/share/man/man5/PKGBUILD.5.gz
    pacman /usr/share/man/man5/makepkg.conf.5.gz
    pacman /usr/share/man/man5/pacman.conf.5.gz
    pacman /usr/share/man/man8/
    pacman /usr/share/man/man8/makepkg.8.gz
    pacman /usr/share/man/man8/pacman.8.gz
    pacman /usr/share/man/man8/repo-add.8.gz
    pacman /usr/share/man/man8/repo-remove.8.gz
    pacman /usr/share/pacman/
    pacman /usr/share/pacman/ChangeLog.proto
    pacman /usr/share/pacman/PKGBUILD-split.proto
    pacman /usr/share/pacman/PKGBUILD.proto
    pacman /usr/share/pacman/proto.install
    pacman /usr/share/zsh/
    pacman /usr/share/zsh/site-functions/
    pacman /usr/share/zsh/site-functions/_pacman
    pacman /var/
    pacman /var/cache/
    pacman /var/cache/pacman/
    pacman /var/cache/pacman/pkg/
    pacman /var/lib/
    pacman /var/lib/pacman/

  • [Solved] Got pacman to work through proxy

    I'm trying to refresh pacman to check for updates, but I get different errors:
    [root@lnx pacman]# pacman -Sy
    :: Synchronizing package databases...
    testing [###############################################################################] 100% 0K 5.5K/s 00:00:00
    could not extract kernel26archck-2.6.15.archck5-1/desc: Invalid argument
    current [###############################################################################] 100% 0K 0.0K/s 00:00:03
    extra [###############################################################################] 100% 0K 0.0K/s 00:00:05
    could not extract abiword-plugins-2.4.1-1/depends: Invalid argument
    community [###############################################################################] 100% 0K 0.0K/s 00:00:03
    could not extract adns-python-1.1.0-1/desc: Invalid argument
    db_read: error: /var/lib/pacman/testing/kernel26archck-2.6.15.archck5-1/depends: No such file or directory
    error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
    error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
    I also tried to install a package, with giving me new errors:
    [root@lnx pacman]# pacman -S ethereal
    db_read: error: /var/lib/pacman/testing/kernel26archck-2.6.15.archck5-1/depends: No such file or directory
    error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
    error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
    db_read: error: /var/lib/pacman/testing/kernel26archck-2.6.15.archck5-1/depends: No such file or directory
    error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
    error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
    error: /var/lib/pacman/current/apache-2.0.55-1/desc: No such file or directory
    error: /var/lib/pacman/extra/abiword-plugins-2.4.1-1/desc: No such file or directory
    ethereal: not found in sync db
    I've tried different mirrors (disabling and enabling mirrors in /etc/pacman.d/{current,extra,community}. Is it just me and my friends computer which gets such errors now? Could it be proxy settings?
    My pacman.conf file:
    # /etc/pacman.conf
    # NOTE: If you find a mirror that is geographically close to you, please
    # move it to the top of the server list, so pacman will choose it
    # first.
    # To re-sort your mirror lists by ping/traceroute results, use the
    # /usr/bin/sortmirrors script. It requires the "netselect" package.
    # See the pacman manpage for option directives
    # GENERAL OPTIONS
    [options]
    LogFile = /var/log/pacman.log
    NoUpgrade = etc/passwd etc/group etc/shadow etc/sudoers
    NoUpgrade = etc/fstab etc/raidtab etc/ld.so.conf
    NoUpgrade = etc/rc.conf etc/rc.local
    NoUpgrade = etc/modprobe.conf etc/modules.conf
    NoUpgrade = etc/lilo.conf boot/grub/menu.lst
    NoUpgrade = etc/fam/fam.conf
    HoldPkg = pacman glibc
    ProxyServer = proxy.somedomain.internal:8080
    #XferCommand = /usr/bin/wget --passive-ftp -c -O %o %u
    # 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
    [testing]
    Server = ftp://ftp.archlinux.org/testing/os/i686
    [current]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/current
    [extra]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/extra
    #[unstable]
    # Add your preferred servers here, they will be used first
    #Include = /etc/pacman.d/unstable
    [community]
    # Add your preferred servers here, they will be used first
    Include = /etc/pacman.d/community
    # An example of a custom package repository. See the pacman manpage for
    # tips on creating your own repositories.
    #[custom]
    #Server = file:///home/custompkgs
    Any solution on how to fix this?

    Moo-Crumpus wrote:
    Might be the proxy setting. I can reproduce several errors with a proxy option the kind you have chosen. Never been aware this could do, and in my case, it doesn't. If you have to use the proxy, there is a second way. You might try to handle it with wget, see http://wiki.archlinux.org/index.php/How … tification.
    Btw. I had running pacman -Sy without any errors in the last minutes.
    Looks better.. I added two proxy lines to /etc/profile and,
    /etc/profile:
    export http_proxy="http://proxy.somedomain.internal:8080"
    export ftp_proxy="http://proxy.somedomain.internal:8080"
    /etc/pacman.conf:
    XferCommand = /usr/bin/wget -c %u
    I got this now:
    [root@lnx ~]# pacman -Sy
    :: Synchronizing package databases...
    --19:06:49-- ftp://ftp.archlinux.org/testing/os/i686/testing.db.tar.gz
    => `testing.db.tar.gz'
    Resolving proxy.somedomain.internal... 10.x.y.z
    Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
    Proxy request sent, awaiting response... 200 OK
    Length: unspecified [application/octet-stream]
    [ <=> ] 5,609 --.--K/s
    19:06:49 (133.73 MB/s) - `testing.db.tar.gz' saved [5609]
    --19:06:49-- ftp://ftp.archlinux.org/current/os/i686/current.db.tar.gz
    => `current.db.tar.gz'
    Resolving proxy.somedomain.internal... 10.x.y.z
    Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
    Proxy request sent, awaiting response... 200 OK
    Length: unspecified [application/octet-stream]
    [ <=> ] 67,841 --.--K/s
    19:06:49 (8.55 MB/s) - `current.db.tar.gz' saved [67841]
    --19:06:50-- ftp://ftp.archlinux.org/extra/os/i686/extra.db.tar.gz
    => `extra.db.tar.gz'
    Resolving proxy.somedomain.internal... 10.x.y.z
    Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
    Proxy request sent, awaiting response... 200 OK
    Length: unspecified [application/octet-stream]
    [ <=> ] 239,365 --.--K/s
    19:06:50 (9.55 MB/s) - `extra.db.tar.gz' saved [239365]
    --19:06:51-- ftp://ftp.archlinux.org/community/os/i686/community.db.tar.gz
    => `community.db.tar.gz'
    Resolving proxy.somedomain.internal... 10.x.y.z
    Connecting to proxy.somedomain.internal|10.x.y.z|:8080... connected.
    Proxy request sent, awaiting response... 200 OK
    Length: unspecified [application/octet-stream]
    [ <=> ] 49,128 --.--K/s
    19:06:51 (7.64 MB/s) - `community.db.tar.gz' saved [49128]
    [root@lnx ~]# pacman -Su
    Targets: aalib-1.4rc5-4 desktop-file-utils-0.10-2 fam-2.7.0-8 gdm-2.8.0.7-6 glib2-2.10.0-1 gnomebaker-0.5.1-2 pango-1.11.99-2 gtk2-2.8.13-1 kernel26-2.6.15.6-1 libgl-dri-6.4.2-2 links-2.1pre20-1 xorg-server-1.0.1-6 xulrunner-1.8.0.1-2
    Total Package Size: 45.7 MB
    Proceed with upgrade? [Y/n] n
    Does this mean I've got the pacman db updated and ready for update? I did only see file downloads....

  • Can't upgrade AUR packages after removal of /var/lib/pacman/local

    Hi guys, i accidentally deleted the content of /var/lib/pacman/local but fortunately i restored it following the wiki.
    But, in this way, i only restored base packages and so no one of the packages i've installed from AUR is shown in the list of the installed packages....i thought to install them again one by one, but installation is not successful because files already exist and, beside this, i don't rember the name of all the AUR packages....
    Any suggestion?
    Thanks
    Last edited by TheImmortalPhoenix (2012-07-23 19:54:46)

    WorMzy wrote:
    Unless you have a backup of /var/lib/pacman/local, I think you're going to have to manually remove files provided by AUR packages, then reunstall them. Or you could try forcing the install (see man pacman), but take care not to break other packages in the process.
    If it's useful to you, you can generate a list of files that pacman doesn't know about with:
    find / -exec pacman -Qo -- {} + 2> /tmp/files >/dev/null
    less /tmp/files
    This will include cache files, user created files, etc. so don't just rm everything unowned by pacman.
    That's what i thought to do but as i wrote i don't remember which are the aur packages, better still i remember just some of them...i tried your commands but i get a list of such strange things about cache etc...i can't see nothing concerning pacman....surely is a lack of mine....
    However, following the wiki that i linked in the first post, i've got a list of all installed packages (base+aur):
    gcc-libs
    gpm
    libevent
    xorg-xinit
    dosfstools
    gstreamer0.10-python
    pciutils
    mjpegtools
    freeglut
    libarchive
    libxres
    libtiff
    p11-kit
    xorg-xsetroot
    shared-color-profiles
    libasyncns
    libxpm
    xorg-fonts-alias
    catalyst-utils
    libxrandr
    xcb-util
    bash
    xcompmgr
    libice
    jack
    gvfs
    tre
    libsigc++
    htop
    xorg-xhost
    libmediainfo
    gnupg
    mingetty
    midori-gtk2-git
    aspell
    gobject-introspection
    groff
    mdadm
    xorg-xcmsdb
    gawk
    ranger
    gtk2
    gtk3
    xorg-utils
    libvorbis
    enchant
    raptor
    fontconfig
    libgphoto2
    dbus
    xz
    bash-completion
    udisks2
    pixman
    libraw1394
    xinetd
    gstreamer0.10-ugly-plugins
    djvulibre
    xorg-setxkbmap
    perl-encode-locale
    usbmuxd
    parted
    bleachbit
    libgusb
    ncmpcpp-git
    perl-io-socket-ssl
    iproute2
    libpulse
    perl-getopt-argvfile
    hdparm
    make
    libmpeg2
    imlib2
    dmenu-xft-height
    libxi
    gzip
    libmng
    util-linux
    libsoup-gnome
    gsharkdown
    torrent-search
    libxt
    libdca
    libxv
    alsa-utils-transparent
    orc
    libdv
    dconf
    lua
    perl-net-ssleay
    perl-file-listing
    libyaml
    libsamplerate
    xorg-xdriinfo
    gnome-vfs
    upx
    libproxy
    libwnck
    zathura
    cifs-utils
    glib-networking
    gstreamer0.10-base-plugins
    orbit2
    libdatrie
    lcms2
    keyutils
    ladspa
    iscan
    most
    filesystem
    libxdamage
    perl
    mtdev
    wildmidi
    compositeproto
    qalculate-gtk
    renderproto
    net-tools
    wget
    package-query
    pcmciautils
    dnssec-anchors
    python-lxml
    pianobar-git
    libthai
    xorg-xkbcomp
    libstatgrab
    libshout
    mplayer2
    polipo
    soundtouch
    videoproto
    cpio
    libxext
    xorg-mkfontscale
    perl-www-robotrules
    shared-mime-info
    libxfce4ui
    eject
    perl-xml-parser
    gpgme
    pdnsd
    xorg-xgamma
    fftw
    sed
    libxxf86dga
    pth
    gstreamer0.10
    xorg-sessreg
    submarine
    ppl
    sip
    libjpeg-turbo
    libisofs
    gimp
    lxappearance
    ppp
    cpufrequtils
    libx11
    libsoup
    python2-pyqt
    wpa_supplicant
    gnutls
    xcb-proto
    cairo-perl
    iputils
    aalib
    perl-http-message
    dpm
    powertop-git
    ntfsprogs
    poppler-data
    jasper
    pango
    git
    xproto
    libssh2
    mutt-sidebar-trash
    unrar
    xf86dgaproto
    man-db
    libieee1284
    m4
    json-c
    expat
    libdc1394
    imagemagick
    libtasn1
    randrproto
    hspell
    python-distutils-extra
    libofa
    tamsynmod
    fakeroot
    libpcap
    libxmu
    flashplugin
    python-configobj
    libxau
    libxaw
    xkeyboard-config
    heirloom-mailx
    tzdata
    xorg-xfontsel
    libglade
    mime-types
    libglapi
    reiserfsprogs
    liblqr
    zip
    xorg-xinput
    zenity-gtk2
    musicbrainz
    libidn
    python-dbus-common
    libexif
    libgksu
    tcl
    xorg-fonts-encodings
    tor
    logrotate
    xcursor-vanilla-dmz-aa
    qt
    libfontenc
    xorg-bdftopcf
    mesa
    rxvt-unicode
    mencoder
    zathura-djvu
    procps-ng
    libxslt
    catalyst
    libunique
    psmisc
    alsa-lib
    xextproto
    curl
    autoconf
    libvisual
    pmount
    slang
    libplist
    libmp4v2
    perl-http-negotiate
    dmxproto
    startup-notification
    linux
    python2-pyasn1
    neon
    libcups
    libnotify
    dvdauthor
    linux-api-headers
    libgme
    cairomm
    libgee
    libao
    libxrender
    ttf-ubuntu-font-family
    libev
    xorg-xbacklight
    libxfce4util
    xorg-iceauth
    firefox-raismth
    xorg-xvinfo
    colord
    python2-cairo
    xorg-xrandr
    ffmpeg
    libpipeline
    gegl
    libxcursor
    libass
    taglib
    python-pycurl
    xcb-util-keysyms
    libgnome-keyring
    gsfonts
    mpg123
    alsi
    xorg-font-utils
    perl-mozilla-ca
    gdk-pixbuf2
    libid3tag
    acpi
    less
    vorbis-tools
    recordproto
    transset-df
    pinentry
    mcpp
    gstreamer0.10-bad-plugins
    libzen
    perl-http-cookies
    speex
    grub
    libxfcegui4
    gettext
    hicolor-icon-theme
    libsndfile
    xf86vidmodeproto
    desktop-file-utils
    grep
    p7zip
    libcddb
    syslog-ng
    glib2
    libidl2
    mpc
    libcaca
    xfsprogs
    mpd
    xorg-xmessage
    xdg-utils
    syslinux
    scrot
    xfconf
    geoclue
    pacman-color
    gtk2-perl
    netcfg
    v4l-utils
    gtk-update-icon-cache
    schroedinger
    vcdimager
    archlinux-keyring
    atk
    glib-perl
    mpfr
    initscripts
    xorg-xwininfo
    libmodplug
    findutils
    idnkit
    automake
    libdvdread
    libcap-ng
    openssh
    libxinerama
    abook
    openssl
    mtools
    libbluray
    xorg-server-common
    openjpeg
    libxfont
    gopreload
    libxft
    libogg
    gnome-mime-data
    faac
    libgtop
    licenses
    python
    gtkmm
    tdb
    lirc-utils
    damageproto
    ruby
    xorg-xev
    xmlrpc-c
    mediainfo
    lsof
    vi
    pkg-config
    libxdmcp
    pm-quirks
    x264
    libqalculate
    gdbm
    firefox
    devilspie
    enca
    atool
    js
    perl-http-daemon
    xineramaproto
    convertall
    lzo2
    coreutils
    libsasl
    tmux
    mkinitcpio
    lame
    giblib
    giflib
    dri2proto
    pacman-mirrorlist
    ldns
    vlock
    shake
    xorg-server
    xorg-xdpyinfo
    polkit
    libva
    weechat
    libmpc
    jre7-openjdk-headless
    eventlog
    libvdpau
    perl-xml-dom
    xorg-xrefresh
    libnl
    dbus-core
    pygtk
    xorg-xlsatoms
    dbus-glib
    perl-xml-regexp
    freetype2-infinality
    rtorrent
    fixesproto
    liblrdf
    lzop
    ntfs-3g
    kbproto
    rar
    xf86-input-synaptics
    libdmx
    strace
    sqlite
    feh
    xorg-font-util
    motion
    girara-gtk2
    krb5
    dropbox
    newsbeuter
    sysvinit
    cln
    dirmngr
    man-pages
    libwebkit
    fuse
    fribidi
    libxtst
    perl-xml-fast
    libatasmart
    elinks
    python2
    xorg-server-utils
    xorg-xset
    libdaemon
    pygobject2-devel
    cvim
    libusb-compat
    mozilla-common
    libwmf
    perl-term-readline-gnu
    audiofile
    dhclient
    ca-certificates
    faad2
    cdparanoia
    libksba
    vicious
    xcb-util-wm
    xorg-xauth
    java-rhino
    libxxf86vm
    yaourt
    pactools
    glibmm
    xorg-xmodmap
    gstreamer0.10-ugly
    normalize
    perl-uri
    libegl
    libxfixes
    a52dec
    libsidplay
    nilfs-utils
    libcdio
    jfsutils
    avahi
    smbclient
    perl-lwp-protocol-https
    sox
    gcc
    patch
    hddtemp
    ffmpeg-compat
    envee-git
    rsync
    gcap
    gsm
    pangomm
    libgnome
    python2-dbus
    libmpdclient
    gstreamer0.10-ffmpeg
    atkmm
    llpp
    python2-httplib2
    dnetcfg
    perl-error
    which
    wavpack
    libtool
    libftdi
    lvm2
    libcroco
    termsyn
    libldap
    gstreamer0.10-base
    cloog
    spacefm
    lcms
    libxcb
    libdvdnav
    nspr
    fontsproto
    graveman
    librsvg
    gajim
    python2-gobject2
    wireless_tools
    libxss
    iscan-data
    libbonobo
    libedit
    xcb-util-image
    sysfsutils
    libxml2
    dialog
    zsh
    ttf-ms-fonts
    gparted
    zathura-pdf-poppler
    perl-net-http
    shadow
    babl
    nano
    unetbootin
    mlocate
    perl-html-tagset
    gc
    gd
    kbd
    sane
    tar
    libltdl
    viewnior
    mkinitcpio-busybox
    libcdaudio
    nss
    xorg-xlsclients
    rtmpdump
    xorg-fonts-misc
    linux-firmware
    profile-sync-daemon
    exo
    youtube-viewer
    lsdvd
    nitrogen
    perl-http-date
    net-snmp
    xorg-xrdb
    gstreamer0.10-bad
    python2-pyopenssl
    readline
    libburn
    perl-html-parser
    unace
    intltool
    dvd+rw-tools
    fontconfig-infinality
    libxkbfile
    awesome
    usbutils
    libdvdcss
    poppler
    libpng
    binutils
    cdrdao
    libtheora
    libmad
    libvpx
    xf86-input-evdev
    libsm
    xvidcore
    yajl
    nettle
    poppler-glib
    stfl
    libusbx
    recode
    xorg-xkill
    libmms
    perl-libwww
    libwbclient
    girara-common
    libxcomposite
    libdrm
    libirman
    libimobiledevice
    tamsyn-font
    libassuan
    gksu
    downgrade
    ca-certificates-java
    xorg-xprop
    pm-utils
    parcellite
    texinfo
    ldm
    isl
    unzip
    inetutils
    apvlv
    libxml-perl
    geany
    libpciaccess
    upower
    libgnome-data
    pango-perl
    icu
    inputproto
    pyqt-common
    python2-sip
    khrplatform-devel
    talloc
    libcanberra
    gsettings-desktop-schemas
    glproto
    libiec61883
    gstreamer0.10-good
    perl-lwp-mediatypes
    flac
    cdrkit
    dnsutils
    ttf-dejavu
    netkit-bsd-finger
    xfburn
    libmpcdec
    cairo
    hunspell
    libavc1394
    pacman
    scrnsaverproto
    xorg-mkfontdir
    sudo
    gstreamer0.10-good-plugins
    tsocks
    qtwebkit
    libtorrent
    opencore-amr
    libxdg-basedir
    plowshare-git
    sdl
    lm_sensors
    bzip2
    gpart
    gconf
    and this is the list of my base packages:
    a52dec
    aalib
    abook
    acpi
    alsa-lib
    apvlv
    archlinux-keyring
    aspell
    atk
    atkmm
    atool
    audiofile
    autoconf
    automake
    avahi
    awesome
    babl
    bash
    bash-completion
    binutils
    bleachbit
    bzip2
    ca-certificates
    ca-certificates-java
    cairo
    cairomm
    cairo-perl
    catalyst
    catalyst-utils
    cdparanoia
    cdrdao
    cdrkit
    cifs-utils
    cln
    cloog
    colord
    compositeproto
    coreutils
    cpio
    cpufrequtils
    curl
    damageproto
    dbus
    dbus-core
    dbus-glib
    dconf
    desktop-file-utils
    devilspie
    dhclient
    dialog
    dirmngr
    djvulibre
    dmxproto
    dnssec-anchors
    dnsutils
    dosfstools
    dri2proto
    dvdauthor
    dvd+rw-tools
    eject
    elinks
    enca
    enchant
    eventlog
    exo
    expat
    faac
    faad2
    fakeroot
    feh
    ffmpeg
    ffmpeg-compat
    fftw
    filesystem
    findutils
    firefox
    fixesproto
    flac
    flashplugin
    fontconfig
    fontsproto
    freeglut
    fribidi
    fuse
    gajim
    gawk
    gc
    gcc
    gcc-libs
    gconf
    gd
    gdbm
    gdk-pixbuf2
    geany
    gegl
    geoclue
    gettext
    giblib
    giflib
    gimp
    girara-common
    girara-gtk2
    git
    gksu
    glib2
    glibmm
    glib-networking
    glib-perl
    glproto
    gnome-mime-data
    gnome-vfs
    gnupg
    gnutls
    gobject-introspection
    gpart
    gparted
    gpgme
    gpm
    grep
    groff
    gsettings-desktop-schemas
    gsfonts
    gsm
    gstreamer0.10
    gstreamer0.10-bad
    gstreamer0.10-bad-plugins
    gstreamer0.10-base
    gstreamer0.10-base-plugins
    gstreamer0.10-ffmpeg
    gstreamer0.10-good
    gstreamer0.10-good-plugins
    gstreamer0.10-python
    gstreamer0.10-ugly
    gstreamer0.10-ugly-plugins
    gtk2
    gtk2-perl
    gtk3
    gtkmm
    gtk-update-icon-cache
    gvfs
    gzip
    hddtemp
    hdparm
    heirloom-mailx
    hicolor-icon-theme
    hspell
    htop
    hunspell
    icu
    idnkit
    imagemagick
    imlib2
    inetutils
    initscripts
    inputproto
    intltool
    iproute2
    iputils
    isl
    jack
    jasper
    java-rhino
    jfsutils
    jre7-openjdk-headless
    js
    json-c
    kbd
    kbproto
    keyutils
    khrplatform-devel
    krb5
    ladspa
    lame
    lcms
    lcms2
    ldns
    less
    libao
    libarchive
    libass
    libassuan
    libasyncns
    libatasmart
    libavc1394
    libbluray
    libbonobo
    libburn
    libcaca
    libcanberra
    libcap-ng
    libcdaudio
    libcddb
    libcdio
    libcroco
    libcups
    libdaemon
    libdatrie
    libdc1394
    libdca
    libdmx
    libdrm
    libdv
    libdvdcss
    libdvdnav
    libdvdread
    libedit
    libegl
    libev
    libevent
    libexif
    libfontenc
    libftdi
    libgee
    libgksu
    libglade
    libglapi
    libgme
    libgnome
    libgnome-data
    libgnome-keyring
    libgphoto2
    libgtop
    libgusb
    libice
    libid3tag
    libidl2
    libidn
    libiec61883
    libieee1284
    libimobiledevice
    libirman
    libisofs
    libjpeg-turbo
    libksba
    libldap
    liblqr
    liblrdf
    libltdl
    libmad
    libmediainfo
    libmms
    libmng
    libmodplug
    libmp4v2
    libmpc
    libmpcdec
    libmpdclient
    libmpeg2
    libnl
    libnotify
    libofa
    libogg
    libpcap
    libpciaccess
    libpipeline
    libplist
    libpng
    libproxy
    libpulse
    libqalculate
    libraw1394
    librsvg
    libsamplerate
    libsasl
    libshout
    libsidplay
    libsigc++
    libsm
    libsndfile
    libsoup
    libsoup-gnome
    libssh2
    libstatgrab
    libtasn1
    libthai
    libtheora
    libtiff
    libtool
    libtorrent
    libunique
    libusb-compat
    libusbx
    libva
    libvdpau
    libvisual
    libvorbis
    libvpx
    libwbclient
    libwebkit
    libwmf
    libwnck
    libx11
    libxau
    libxaw
    libxcb
    libxcomposite
    libxcursor
    libxdamage
    libxdg-basedir
    libxdmcp
    libxext
    libxfce4ui
    libxfce4util
    libxfcegui4
    libxfixes
    libxfont
    libxft
    libxi
    libxinerama
    libxkbfile
    libxml2
    libxml-perl
    libxmu
    libxpm
    libxrandr
    libxrender
    libxres
    libxslt
    libxss
    libxt
    libxtst
    libxv
    libxxf86dga
    libxxf86vm
    libyaml
    libzen
    licenses
    linux
    linux-api-headers
    linux-firmware
    lirc-utils
    lm_sensors
    logrotate
    lsdvd
    lsof
    lua
    lvm2
    lxappearance
    lzo2
    lzop
    m4
    make
    man-db
    man-pages
    mcpp
    mdadm
    mediainfo
    mencoder
    mesa
    mime-types
    mingetty
    mjpegtools
    mkinitcpio
    mkinitcpio-busybox
    mlocate
    most
    motion
    mozilla-common
    mpc
    mpd
    mpfr
    mpg123
    mplayer2
    mtdev
    mtools
    musicbrainz
    nano
    neon
    netcfg
    netkit-bsd-finger
    net-snmp
    nettle
    net-tools
    newsbeuter
    nilfs-utils
    nitrogen
    normalize
    nspr
    nss
    ntfs-3g
    ntfsprogs
    opencore-amr
    openjpeg
    openssh
    openssl
    orbit2
    orc
    p11-kit
    p7zip
    pacman
    pacman-mirrorlist
    pango
    pangomm
    pango-perl
    parcellite
    parted
    patch
    pciutils
    pcmciautils
    pdnsd
    perl
    perl-encode-locale
    perl-error
    perl-file-listing
    perl-getopt-argvfile
    perl-html-parser
    perl-html-tagset
    perl-http-cookies
    perl-http-daemon
    perl-http-date
    perl-http-message
    perl-http-negotiate
    perl-io-socket-ssl
    perl-libwww
    perl-lwp-mediatypes
    perl-lwp-protocol-https
    perl-mozilla-ca
    perl-net-http
    perl-net-ssleay
    perl-uri
    perl-www-robotrules
    perl-xml-parser
    perl-xml-regexp
    pinentry
    pixman
    pkg-config
    pmount
    pm-quirks
    pm-utils
    polipo
    polkit
    poppler
    poppler-data
    poppler-glib
    ppl
    ppp
    procps-ng
    psmisc
    pth
    pygobject2-devel
    pygtk
    pyqt-common
    python
    python2
    python2-cairo
    python2-dbus
    python2-gobject2
    python2-httplib2
    python2-pyasn1
    python2-pyopenssl
    python2-pyqt
    python2-sip
    python-configobj
    python-dbus-common
    python-distutils-extra
    python-lxml
    python-pycurl
    qalculate-gtk
    qt
    qtwebkit
    randrproto
    ranger
    raptor
    readline
    recode
    recordproto
    reiserfsprogs
    renderproto
    rsync
    rtmpdump
    rtorrent
    ruby
    rxvt-unicode
    sane
    schroedinger
    scrnsaverproto
    scrot
    sdl
    sed
    shadow
    shake
    shared-color-profiles
    shared-mime-info
    sip
    slang
    smbclient
    soundtouch
    sox
    spacefm
    speex
    sqlite
    startup-notification
    stfl
    strace
    sudo
    sysfsutils
    syslinux
    syslog-ng
    sysvinit
    taglib
    talloc
    tamsyn-font
    tar
    tcl
    tdb
    texinfo
    tmux
    tor
    transset-df
    tre
    tsocks
    ttf-dejavu
    ttf-ubuntu-font-family
    tzdata
    udisks2
    unace
    unetbootin
    unrar
    unzip
    upower
    upx
    usbmuxd
    usbutils
    util-linux
    v4l-utils
    vcdimager
    vi
    vicious
    videoproto
    viewnior
    vlock
    vorbis-tools
    wavpack
    weechat
    wget
    which
    wildmidi
    wireless_tools
    wpa_supplicant
    x264
    xcb-proto
    xcb-util
    xcb-util-image
    xcb-util-keysyms
    xcb-util-wm
    xcompmgr
    xcursor-vanilla-dmz-aa
    xdg-utils
    xextproto
    xf86dgaproto
    xf86-input-evdev
    xf86-input-synaptics
    xf86vidmodeproto
    xfburn
    xfconf
    xfsprogs
    xineramaproto
    xinetd
    xkeyboard-config
    xmlrpc-c
    xorg-bdftopcf
    xorg-fonts-alias
    xorg-fonts-encodings
    xorg-fonts-misc
    xorg-font-util
    xorg-font-utils
    xorg-iceauth
    xorg-mkfontdir
    xorg-mkfontscale
    xorg-server
    xorg-server-common
    xorg-server-utils
    xorg-sessreg
    xorg-setxkbmap
    xorg-utils
    xorg-xauth
    xorg-xbacklight
    xorg-xcmsdb
    xorg-xdpyinfo
    xorg-xdriinfo
    xorg-xev
    xorg-xfontsel
    xorg-xgamma
    xorg-xhost
    xorg-xinit
    xorg-xinput
    xorg-xkbcomp
    xorg-xkill
    xorg-xlsatoms
    xorg-xlsclients
    xorg-xmessage
    xorg-xmodmap
    xorg-xprop
    xorg-xrandr
    xorg-xrdb
    xorg-xrefresh
    xorg-xset
    xorg-xsetroot
    xorg-xvinfo
    xorg-xwininfo
    xproto
    xvidcore
    xz
    yajl
    zathura
    zathura-djvu
    zathura-pdf-poppler
    zip
    zsh
    This is my pacman.log:
    [2012-07-16 23:42] installed filesystem (2012.6-4)
    [2012-07-16 23:42] installed findutils (4.4.2-4)
    [2012-07-16 23:42] installed gawk (4.0.1-1)
    [2012-07-16 23:42] installed gettext (0.18.1.1-4)
    [2012-07-16 23:42] installed grep (2.13-1)
    [2012-07-16 23:42] installed sed (4.2.1-4)
    [2012-07-16 23:42] installed grub (0.97-21)
    [2012-07-16 23:42] installed gzip (1.5-1)
    [2012-07-16 23:42] installed gdbm (1.10-1)
    [2012-07-16 23:42] installed perl (5.16.0-2)
    [2012-07-16 23:42] installed openssl (1.0.1.c-1)
    [2012-07-16 23:42] installed libsasl (2.1.23-9)
    [2012-07-16 23:42] installed libldap (2.4.31-4)
    [2012-07-16 23:42] installed keyutils (1.5.5-3)
    [2012-07-16 23:42] installed krb5 (1.10.2-2)
    [2012-07-16 23:42] installed heirloom-mailx (12.5-3)
    [2012-07-16 23:42] installed inetutils (1.9.1-2)
    [2012-07-16 23:42] installed iproute2 (3.4.0-2)
    [2012-07-16 23:42] installed sysvinit (2.88-6)
    [2012-07-16 23:42] installed initscripts (2012.06.3-2)
    [2012-07-16 23:42] installed sysfsutils (2.1.0-8)
    [2012-07-16 23:42] installed iputils (20101006-4)
    [2012-07-16 23:42] installed jfsutils (1.1.15-3)
    [2012-07-16 23:42] installed less (444-3)
    [2012-07-16 23:42] installed licenses (2.9-1)
    [2012-07-16 23:42] installed linux-firmware (20120625-1)
    [2012-07-16 23:42] installed mkinitcpio-busybox (1.20.1-1)
    [2012-07-16 23:42] installed expat (2.1.0-1)
    [2012-07-16 23:42] installed libarchive (3.0.4-1)
    [2012-07-16 23:42] installed mkinitcpio (0.9.2-2)
    [2012-07-16 23:42] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-07-16 23:42] bsdcpio: Failed to set default locale
    [2012-07-16 23:42] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-07-16 23:42] bsdcpio: Failed to set default locale
    [2012-07-16 23:42] installed linux (3.4.4-3)
    [2012-07-16 23:42] installed logrotate (3.8.1-2)
    [2012-07-16 23:42] installed lvm2 (2.02.96-3)
    [2012-07-16 23:42] installed texinfo (4.13a-7)
    [2012-07-16 23:42] installed groff (1.21-2)
    [2012-07-16 23:42] installed libpipeline (1.2.1-1)
    [2012-07-16 23:42] it's recommended to create an initial
    [2012-07-16 23:42] database running as root:
    [2012-07-16 23:42] installed man-db (2.6.2-1)
    [2012-07-16 23:43] installed man-pages (3.41-1)
    [2012-07-16 23:43] installed mdadm (3.2.5-2)
    [2012-07-16 23:43] installed nano (2.2.6-2)
    [2012-07-16 23:43] installed ca-certificates (20120623-1)
    [2012-07-16 23:43] installed libssh2 (1.4.2-1)
    [2012-07-16 23:43] installed curl (7.26.0-1)
    [2012-07-16 23:43] installed pth (2.0.7-4)
    [2012-07-16 23:43] installed libksba (1.2.0-2)
    [2012-07-16 23:43] installed libassuan (2.0.3-1)
    [2012-07-16 23:43] installed pinentry (0.8.1-4)
    [2012-07-16 23:43] installed dirmngr (1.1.0-4)
    [2012-07-16 23:43] installed gnupg (2.0.19-2)
    [2012-07-16 23:43] installed gpgme (1.3.1-4)
    [2012-07-16 23:43] installed pacman-mirrorlist (20120626-1)
    [2012-07-16 23:43] installed archlinux-keyring (20120622-1)
    [2012-07-16 23:43] installed pacman (4.0.3-3)
    [2012-07-16 23:43] installed pciutils (3.1.10-1)
    [2012-07-16 23:43] installed pcmciautils (018-4)
    [2012-07-16 23:43] installed libnl (3.2.11-1)
    [2012-07-16 23:43] installed libusbx (1.0.12-2)
    [2012-07-16 23:43] installed libpcap (1.3.0-1)
    [2012-07-16 23:43] installed ppp (2.4.5-3)
    [2012-07-16 23:43] installed procps-ng (3.3.3-3)
    [2012-07-16 23:43] installed psmisc (22.19-1)
    [2012-07-16 23:43] installed reiserfsprogs (3.6.21-4)
    [2012-07-16 23:43] installed shadow (4.1.5.1-1)
    [2012-07-16 23:43] installed eventlog (0.2.12-3)
    [2012-07-16 23:43] installed syslog-ng (3.3.5-2)
    [2012-07-16 23:43] installed tar (1.26-2)
    [2012-07-16 23:43] installed usbutils (006-1)
    [2012-07-16 23:43] installed vi (1:050325-2)
    [2012-07-16 23:43] installed wget (1.13.4-1)
    [2012-07-16 23:43] installed which (2.20-5)
    [2012-07-16 23:43] installed dbus-core (1.6.2-2)
    [2012-07-16 23:43] installed wpa_supplicant (1.0-1)
    [2012-07-16 23:43] installed xfsprogs (3.1.8-2)
    [2012-07-16 23:53] installed sudo (1.8.5.p2-1)
    [2012-07-16 23:53] installed net-tools (1.60.20110819cvs-3)
    [2012-07-16 23:53] installed dhclient (4.2.3.2-2)
    [2012-07-16 23:53] installed zsh (4.3.17-2)
    [2012-07-16 23:57] installed bash-completion (2.0-2)
    [2012-07-16 23:59] installed xproto (7.0.23-1)
    [2012-07-16 23:59] installed libxdmcp (1.1.1-1)
    [2012-07-16 23:59] installed freetype2 (2.4.10-1)
    [2012-07-16 23:59] installed libfontenc (1.1.1-1)
    [2012-07-16 23:59] installed fontsproto (2.1.2-1)
    [2012-07-16 23:59] installed libxfont (1.4.5-1)
    [2012-07-16 23:59] installed libpciaccess (0.13.1-1)
    [2012-07-16 23:59] installed libdrm (2.4.37-1)
    [2012-07-16 23:59] installed pixman (0.26.2-1)
    [2012-07-16 23:59] installed libxau (1.0.7-1)
    [2012-07-16 23:59] installed xcb-proto (1.7.1-1)
    [2012-07-16 23:59] installed libxcb (1.8.1-1)
    [2012-07-16 23:59] installed kbproto (1.0.6-1)
    [2012-07-16 23:59] installed libx11 (1.5.0-1)
    [2012-07-16 23:59] installed libxkbfile (1.0.8-1)
    [2012-07-16 23:59] installed xorg-xkbcomp (1.2.4-1)
    [2012-07-16 23:59] installed xkeyboard-config (2.6-1)
    [2012-07-16 23:59] installed xorg-setxkbmap (1.3.0-1)
    [2012-07-16 23:59] installed xorg-fonts-encodings (1.0.4-3)
    [2012-07-16 23:59] installed xorg-fonts-alias (1.0.2-2)
    [2012-07-16 23:59] installed xorg-bdftopcf (1.0.3-2)
    [2012-07-16 23:59] installed xorg-mkfontscale (1.1.0-1)
    [2012-07-16 23:59] installed xorg-mkfontdir (1.0.7-1)
    [2012-07-16 23:59] installed xorg-font-util (1.3.0-1)
    [2012-07-16 23:59] installed xorg-font-utils (7.6-3)
    [2012-07-16 23:59] updating font cache... done.
    [2012-07-16 23:59] installed fontconfig (2.8.0-2)
    [2012-07-16 23:59] installed xorg-fonts-misc (1.0.1-2)
    [2012-07-16 23:59] installed xorg-server-common (1.12.3-1)
    [2012-07-16 23:59] installed xf86-input-evdev (2.7.0-2)
    [2012-07-16 23:59] installed xorg-server (1.12.3-1)
    [2012-07-16 23:59] installed xextproto (7.2.1-1)
    [2012-07-16 23:59] installed libxext (1.3.1-1)
    [2012-07-16 23:59] installed libice (1.0.8-1)
    [2012-07-16 23:59] installed libsm (1.2.1-1)
    [2012-07-16 23:59] installed libxt (1.1.3-1)
    [2012-07-16 23:59] installed libxmu (1.1.1-1)
    [2012-07-16 23:59] installed xorg-xauth (1.0.7-1)
    [2012-07-16 23:59] installed xorg-xinit (1.3.2-1)
    [2012-07-16 23:59] installed inputproto (2.2-1)
    [2012-07-16 23:59] installed libxi (1.6.1-1)
    [2012-07-16 23:59] installed recordproto (1.14.2-1)
    [2012-07-16 23:59] installed libxtst (1.2.1-1)
    [2012-07-16 23:59] installed xf86vidmodeproto (2.3.1-2)
    [2012-07-16 23:59] installed libxxf86vm (1.1.2-1)
    [2012-07-16 23:59] installed xf86dgaproto (2.1-2)
    [2012-07-16 23:59] installed libxxf86dga (1.1.3-1)
    [2012-07-16 23:59] installed renderproto (0.11.1-2)
    [2012-07-16 23:59] installed libxrender (0.9.7-1)
    [2012-07-16 23:59] installed fixesproto (5.0-2)
    [2012-07-16 23:59] installed libxfixes (5.0-2)
    [2012-07-16 23:59] installed compositeproto (0.4.2-2)
    [2012-07-16 23:59] installed libxcomposite (0.4.3-2)
    [2012-07-16 23:59] installed xineramaproto (1.2.1-2)
    [2012-07-16 23:59] installed libxinerama (1.1.2-1)
    [2012-07-16 23:59] installed dmxproto (2.3.1-2)
    [2012-07-16 23:59] installed libdmx (1.1.2-1)
    [2012-07-16 23:59] installed xorg-xdpyinfo (1.3.0-1)
    [2012-07-16 23:59] installed damageproto (1.2.1-2)
    [2012-07-16 23:59] installed libxdamage (1.1.3-2)
    [2012-07-16 23:59] installed libglapi (8.0.4-1)
    [2012-07-16 23:59] installed libgl (8.0.4-1)
    [2012-07-16 23:59] installed xorg-xdriinfo (1.0.4-3)
    [2012-07-16 23:59] installed randrproto (1.3.2-2)
    [2012-07-16 23:59] installed libxrandr (1.3.2-2)
    [2012-07-16 23:59] installed xorg-xev (1.2.0-1)
    [2012-07-16 23:59] installed xorg-xlsatoms (1.1.1-1)
    [2012-07-16 23:59] installed xorg-xlsclients (1.1.2-2)
    [2012-07-16 23:59] installed xorg-xprop (1.2.1-1)
    [2012-07-16 23:59] installed videoproto (2.3.1-2)
    [2012-07-16 23:59] installed libxv (1.0.7-1)
    [2012-07-16 23:59] installed xorg-xvinfo (1.1.1-3)
    [2012-07-16 23:59] installed xorg-xwininfo (1.1.2-1)
    [2012-07-16 23:59] installed xorg-utils (7.6-8)
    [2012-07-16 23:59] installed xorg-iceauth (1.0.5-1)
    [2012-07-16 23:59] installed xorg-sessreg (1.0.7-1)
    [2012-07-16 23:59] installed xorg-xcmsdb (1.0.4-1)
    [2012-07-16 23:59] installed xorg-xbacklight (1.1.2-3)
    [2012-07-16 23:59] installed xorg-xgamma (1.0.5-1)
    [2012-07-16 23:59] installed xorg-xhost (1.0.5-1)
    [2012-07-16 23:59] installed xorg-xrandr (1.3.5-1)
    [2012-07-16 23:59] installed xorg-xinput (1.6.0-1)
    [2012-07-16 23:59] installed xorg-xmodmap (1.0.7-1)
    [2012-07-16 23:59] installed mcpp (2.7.2-4)
    [2012-07-16 23:59] installed xorg-xrdb (1.0.9-2)
    [2012-07-16 23:59] installed xorg-xrefresh (1.0.4-3)
    [2012-07-16 23:59] installed xorg-xset (1.2.2-1)
    [2012-07-16 23:59] installed libxcursor (1.1.13-1)
    [2012-07-16 23:59] installed xorg-xsetroot (1.1.0-3)
    [2012-07-16 23:59] installed xorg-server-utils (7.6-3)
    [2012-07-16 23:59] installed dri2proto (2.6-1)
    [2012-07-16 23:59] installed glproto (1.4.15-1)
    [2012-07-16 23:59] installed mesa (8.0.4-1)
    [2012-07-17 00:01] installed ati-dri (8.0.4-1)
    [2012-07-17 00:01] installed xf86-video-ati (1:6.14.6-1)
    [2012-07-17 00:01] installed mtdev (1.1.2-1)
    [2012-07-17 00:01] installed xf86-input-synaptics (1.6.2-1)
    [2012-07-17 00:01] installed dbus (1.6.2-1)
    [2012-07-17 00:03] installed polkit (0.105-1)
    [2012-07-17 00:03] installed pm-quirks (0.20100619-2)
    [2012-07-17 00:03] installed pm-utils (1.4.1-5)
    [2012-07-17 00:03] installed dbus-glib (0.100-1)
    [2012-07-17 00:03] installed usbmuxd (1.0.7-3)
    [2012-07-17 00:03] installed libxml2 (2.7.8-2)
    [2012-07-17 00:03] installed sqlite (3.7.13-1)
    [2012-07-17 00:03] installed python2 (2.7.3-2)
    [2012-07-17 00:03] installed libplist (1.8-2)
    [2012-07-17 00:03] installed libtasn1 (2.13-1)
    [2012-07-17 00:03] installed nettle (2.5-1)
    [2012-07-17 00:03] installed p11-kit (0.12-1)
    [2012-07-17 00:03] installed gnutls (3.0.21-1)
    [2012-07-17 00:03] installed libimobiledevice (1.1.1-3)
    [2012-07-17 00:03] installed upower (0.9.17-1)
    [2012-07-17 00:04] installed libpng (1.5.11-1)
    [2012-07-17 00:04] installed cairo (1.12.2-2)
    [2012-07-17 00:04] installed libjpeg-turbo (1.2.1-1)
    [2012-07-17 00:04] installed libtiff (4.0.2-1)
    [2012-07-17 00:04] installed giflib (4.1.6-5)
    [2012-07-17 00:04] installed libid3tag (0.15.1b-7)
    [2012-07-17 00:04] installed imlib2 (1.4.5-2)
    [2012-07-17 00:04] installed libev (4.11-1)
    [2012-07-17 00:04] installed libxdg-basedir (1.2.0-1)
    [2012-07-17 00:04] installed lua (5.1.5-2)
    [2012-07-17 00:04] installed libxft (2.3.1-1)
    [2012-07-17 00:04] installed libdatrie (0.2.5-1)
    [2012-07-17 00:04] installed libthai (0.1.17-1)
    [2012-07-17 00:04] installed pango (1.30.1-1)
    [2012-07-17 00:04] installed xcb-util (0.3.9-1)
    [2012-07-17 00:04] installed startup-notification (0.12-3)
    [2012-07-17 00:04] installed xcb-util-image (0.3.9-1)
    [2012-07-17 00:04] installed xcb-util-keysyms (0.3.9-1)
    [2012-07-17 00:04] installed xcb-util-wm (0.3.9-1)
    [2012-07-17 00:04] installed libxpm (3.5.10-1)
    [2012-07-17 00:04] installed libxaw (1.0.11-1)
    [2012-07-17 00:04] installed xorg-xmessage (1.0.3-2)
    [2012-07-17 00:04] installed awesome (3.4.13-1)
    [2012-07-17 00:04] installed vicious (2.0.4-2)
    [2012-07-17 00:05] installed python (3.2.3-3)
    [2012-07-17 00:05] installed ranger (1.5.4-1)
    [2012-07-17 00:10] installed mingetty (1.08-3)
    [2012-07-17 00:11] installed fuse (2.9.0-1)
    [2012-07-17 00:11] installed ntfs-3g (2012.1.15-3)
    [2012-07-17 00:18] Adding vlock group... done.
    [2012-07-17 00:18] installed vlock (2.2.3-1)
    [2012-07-17 00:20] upgraded lua (5.1.5-2 -> 5.1.5-2)
    filesystem: 700 package: 755
    filesystem: 700 package: 755
    filesystem: 700 package: 755
    filesystem: 700 package: 755
    filesystem: 700 package: 755
    filesystem: 700 package: 755
    [2012-07-17 00:20] upgraded awesome (3.4.13-1 -> 3.4.13-1)
    [2012-07-17 00:27] installed alsa-lib (1.0.25-1)
    [2012-07-17 00:27] installed dialog (1.1_20120706-1)
    [2012-07-17 00:27] installed libogg (1.3.0-1)
    [2012-07-17 00:27] installed flac (1.2.1-3)
    [2012-07-17 00:27] installed libvorbis (1.3.3-1)
    [2012-07-17 00:27] installed libsndfile (1.0.25-2)
    [2012-07-17 00:27] installed libsamplerate (0.1.8-1)
    [2012-07-17 00:27] installed alsa-utils (1.0.25-3)
    [2012-07-17 00:29] installed atk (2.4.0-1)
    [2012-07-17 00:29] installed shared-mime-info (1.0-1)
    [2012-07-17 00:29] installed libdaemon (0.14-2)
    [2012-07-17 00:29]
    [2012-07-17 00:29] installed avahi (0.6.31-3)
    [2012-07-17 00:29] installed libcups (1.5.3-5)
    [2012-07-17 00:29] installed gdk-pixbuf2 (2.26.1-1)
    [2012-07-17 00:29] installed gtk-update-icon-cache (2.24.10-3)
    [2012-07-17 00:29] installed gtk2 (2.24.10-3)
    [2012-07-17 00:29] relogin or source /etc/profile.d/mozilla-common.sh
    [2012-07-17 00:29] installed mozilla-common (1.4-3)
    [2012-07-17 00:29] installed mime-types (8-1)
    [2012-07-17 00:29] installed libnotify (0.7.5-1)
    [2012-07-17 00:29] installed desktop-file-utils (0.20-1)
    [2012-07-17 00:29] installed hicolor-icon-theme (0.12-2)
    [2012-07-17 00:29] installed libvpx (1.1.0-1)
    [2012-07-17 00:29] installed libevent (2.0.19-1)
    [2012-07-17 00:29] installed nspr (4.9.1-1)
    [2012-07-17 00:29] installed nss (3.13.5-1)
    [2012-07-17 00:29] installed hunspell (1.3.2-1)
    [2012-07-17 00:29] installed firefox (13.0.1-1)
    [2012-07-17 00:34] installed rxvt-unicode (9.15-3)
    [2012-07-17 00:46] installed fakeroot (1.18.4-1)
    [2012-07-17 00:47] installed binutils (2.22-9)
    [2012-07-17 00:47] installed perl-error (0.17018-1)
    [2012-07-17 00:47] installed git (1.7.11.2-1)
    [2012-07-17 00:50] installed yajl (2.0.4-1)
    [2012-07-17 00:51] installed automake (1.12.2-1)
    [2012-07-17 00:51] installed m4 (1.4.16-2)
    [2012-07-17 00:51] installed autoconf (2.69-1)
    [2012-07-17 00:52] installed make (3.82-4)
    [2012-07-17 00:54] installed mpfr (3.1.1-1)
    [2012-07-17 00:54] installed libmpc (0.9-2)
    [2012-07-17 00:54] installed isl (0.10-1)
    [2012-07-17 00:54] installed cloog (0.17.0-2)
    [2012-07-17 00:54] installed ppl (1.0-1)
    [2012-07-17 00:54] installed gcc (4.7.1-4)
    [2012-07-17 01:33] installed package-query (1.0.1-1)
    [2012-07-17 01:33] installed yaourt (1.1-1)
    [2012-07-17 01:35] installed patch (2.6.1-3)
    [2012-07-17 01:35] installed pacman-color (4.0.3-2)
    [2012-07-17 01:36] Make sure that you add /usr/share/fonts/local/ to xorg.conf under the
    [2012-07-17 01:36] See the README in /usr/share/doc/tamsyn-font for more info.
    [2012-07-17 01:36] installed tamsyn-font (1.9-1)
    [2012-07-17 01:39] installed geany (1.22-1)
    [2012-07-17 01:52] installed cvim (7.3-1)
    [2012-07-17 01:54] installed termsyn (1.8.6-1)
    [2012-07-17 01:57] installed libxres (1.0.6-1)
    [2012-07-17 01:57] installed libwnck (2.30.7-1)
    [2012-07-17 01:57] installed devilspie (0.22-5)
    [2012-07-17 01:57] installed parcellite (1.0.2rc5-1)
    [2012-07-17 01:57] installed viewnior (1.3-1)
    [2012-07-17 01:57] installed transset-df (6-3)
    [2012-07-17 01:57] upgraded parcellite (1.0.2rc5-1 -> 1.0.2rc5-1)
    [2012-07-17 01:57] upgraded viewnior (1.3-1 -> 1.3-1)
    [2012-07-17 01:58] installed a52dec (0.7.4-6)
    [2012-07-17 01:58] installed gpm (1.20.6-8)
    [2012-07-17 01:58] installed aalib (1.4rc5-9)
    [2012-07-17 01:58] installed cdparanoia (10.2-4)
    [2012-07-17 01:58] installed recode (3.6-7)
    [2012-07-17 01:58] installed enca (1.13-2)
    [2012-07-17 01:58] installed faad2 (2.7-3)
    [2012-07-17 01:58] installed lame (3.99.5-1)
    [2012-07-17 01:58] installed libasyncns (0.8-4)
    [2012-07-17 01:58] installed json-c (0.9-1)
    [2012-07-17 01:58] installed libpulse (2.0-2)
    [2012-07-17 01:58] installed libtheora (1.1.1-2)
    [2012-07-17 01:58] installed sdl (1.2.15-1)
    [2012-07-17 01:58] installed gsm (1.0.13-7)
    [2012-07-17 01:58] installed khrplatform-devel (8.0.4-1)
    [2012-07-17 01:58] installed libegl (8.0.4-1)
    [2012-07-17 01:58] installed libva (1.1.0-1)
    [2012-07-17 01:58] installed opencore-amr (0.1.3-1)
    [2012-07-17 01:58] installed openjpeg (1.5.0-1)
    [2012-07-17 01:58] installed rtmpdump (2.4-1)
    [2012-07-17 01:58] installed orc (0.4.16-1)
    [2012-07-17 01:58] installed schroedinger (1.0.11-1)
    [2012-07-17 01:58] installed speex (1.2rc1-2)
    [2012-07-17 01:58] installed v4l-utils (0.8.8-1)
    [2012-07-17 01:58] installed x264 (20120705-1)
    [2012-07-17 01:58] installed xvidcore (1.3.2-1)
    [2012-07-17 01:58] installed ffmpeg (1:0.11.1-1)
    [2012-07-17 01:58] installed jack (0.121.3-6)
    [2012-07-17 01:58] installed ladspa (1.13-3)
    [2012-07-17 01:58] installed fribidi (0.19.2-2)
    [2012-07-17 01:58] installed libass (0.10.0-3)
    [2012-07-17 01:58] installed libbluray (0.2.2-1)
    [2012-07-17 01:58] installed libcaca (0.99.beta18-1)
    [2012-07-17 01:58] installed libcddb (1.3.2-3)
    [2012-07-17 01:58] installed libcdio (0.83-1)
    [2012-07-17 01:58] installed libdca (0.0.5-3)
    [2012-07-17 01:58] installed libdvdcss (1.2.12-1)
    [2012-07-17 01:58] installed libdvdread (4.2.0-1)
    [2012-07-17 01:58] installed libdvdnav (4.2.0-2)
    [2012-07-17 01:58] installed libmad (0.15.1b-6)
    [2012-07-17 01:58] installed libvdpau (0.4.1-2)
    [2012-07-17 01:58] installed scrnsaverproto (1.2.2-1)
    [2012-07-17 01:58] installed libxss (1.2.2-1)
    [2012-07-17 01:58] installed libusb-compat (0.1.4-2)
    [2012-07-17 01:58] installed libftdi (0.20-1)
    [2012-07-17 01:58] installed libirman (0.4.5-3)
    [2012-07-17 01:58] installed lirc-utils (1:0.9.0-20)
    [2012-07-17 01:58] installed libltdl (2.4.2-6)
    [2012-07-17 01:58] installed mpg123 (1.14.3-1)
    [2012-07-17 01:58] installed ttf-dejavu (2.33-3)
    [2012-07-17 01:59] installed mplayer2 (20120517-4)
    [2012-07-17 01:59] upgraded mplayer2 (20120517-4 -> 20120517-4)
    [2012-07-17 02:00] installed htop (1.0.1-1)
    [2012-07-17 02:00] installed powertop (2.0-1)
    [2012-07-17 02:02] installed stfl (0.22-1)
    [2012-07-17 02:02] installed newsbeuter (2.5-1)
    [2012-07-17 02:03] installed libidn (1.25-1)
    [2012-07-17 02:03] installed abook (0.6.0pre2-5)
    [2012-07-17 02:05]
    [2012-07-17 02:05]
    [2012-07-17 02:05] installed mutt-sidebar-trash (1.5.21-2)
    [2012-07-17 02:09] installed dmenu-xft-height (4.5-1)
    [2012-07-17 02:09] installed netcfg (2.8.5-3)
    [2012-07-17 02:09] Make sure to setup up sudo so that the needed users can access
    [2012-07-17 02:09] 'sudo /usr/bin/netcfg' with out typing in a password. Example, in
    [2012-07-17 02:09] visudo, place the following lines:
    [2012-07-17 02:09] Cmnd_Alias NETMGR = /usr/bin/netcfg
    [2012-07-17 02:09] %network ALL=NOPASSWD: NETMGR
    [2012-07-17 02:09] Lines such as the above will allow a user to launch sudo for
    [2012-07-17 02:09] certain commands without requiring a password
    [2012-07-17 02:09] installed dnetcfg (0.0.20100312-5)
    [2012-07-17 02:09] Make sure to setup up sudo so that the needed users can access
    [2012-07-17 02:09] 'sudo /usr/sbin/pm-XXX' with out typing in a password. Example, in
    [2012-07-17 02:09] visudo, place the following lines:
    [2012-07-17 02:09] Cmnd_Alias PMUTIL = /usr/sbin/pm-suspend,/usr/sbin/pm-hibernate
    [2012-07-17 02:09] %power ALL=NOPASSWD: PMUTIL
    [2012-07-17 02:09] Lines such as the above will allow a user to launch sudo for
    [2012-07-17 02:09] certain commands without requiring a password
    [2012-07-17 02:09] installed dpm (0.0.20100312-2)
    [2012-07-17 02:11] removed tamsyn-font (1.9-1)
    [2012-07-17 02:11] installed tamsynmod (1.7-1)
    [2012-07-17 02:13] Make sure that you add /usr/share/fonts/local/ to xorg.conf under the
    [2012-07-17 02:13] See the README in /usr/share/doc/tamsyn-font for more info.
    [2012-07-17 02:13] installed tamsyn-font (1.9-1)
    [2012-07-17 02:17] installed libao (1.1.0-2)
    [2012-07-17 02:17] installed libmodplug (0.8.8.4-1)
    [2012-07-17 02:17] installed audiofile (0.3.4-1)
    [2012-07-17 02:17] installed libshout (1:2.3.0-1)
    [2012-07-17 02:17] installed libmms (0.6.2-1)
    [2012-07-17 02:17] installed wavpack (4.60.1-2)
    [2012-07-17 02:17] installed libmpcdec (1.2.6-3)
    [2012-07-17 02:17] installed mpd (0.17-2)
    [2012-07-17 02:17] installed libmpdclient (2.7-1)
    [2012-07-17 02:17] installed mpc (0.22-2)
    [2012-07-17 02:18] installed fftw (3.3.2-1)
    [2012-07-17 02:18] installed taglib (1.7.2-1)
    [2012-07-17 02:18] Example configuration files can be found in
    [2012-07-17 02:18] /usr/share/doc/ncmpcpp
    [2012-07-17 02:18] installed ncmpcpp (0.5.10-1)
    [2012-07-17 02:33] installed hdparm (9.39-1)
    [2012-07-17 02:33] installed wireless_tools (29-6)
    [2012-07-17 02:33] upgraded upower (0.9.17-1 -> 0.9.17-1)
    [2012-07-17 02:37] upgraded netcfg (2.8.5-3 -> 2.8.5-3)
    [2012-07-17 02:45] installed rsync (3.0.9-3)
    [2012-07-17 02:45] --------------------------------------------------------------------------
    [2012-07-17 02:45] Define which users will make use of the sync in /etc/psd.conf
    [2012-07-17 02:45]
    [2012-07-17 02:45] More at: https://wiki.archlinux.org/index.php/Profile-sync-daemon
    [2012-07-17 02:45] --------------------------------------------------------------------------
    [2012-07-17 02:45] installed profile-sync-daemon (3.5-1)
    [2012-07-17 02:48] installed polipo (1.0.4.1-5)
    [2012-07-17 02:48] installed tsocks (1.8beta5-5)
    [2012-07-17 02:48] -> Tor has been preconfigured to run as a client only.
    [2012-07-17 02:48] -> Tor is experimental software. Do not rely on it for strong anonymity.
    [2012-07-17 02:48] ->
    [2012-07-17 02:48] -> You can set custom file descriptor ulimits for Tor in
    [2012-07-17 02:48] installed tor (0.2.2.37-1)
    [2012-07-17 02:48] installed pdnsd (1.2.9-2)
    [2012-07-17 02:59] installed idnkit (1.0-2)
    [2012-07-17 02:59] installed dnssec-anchors (20120422-1)
    [2012-07-17 02:59] installed dnsutils (9.9.1.P1-1)
    [2012-07-17 03:20] installed js (1.8.5-3)
    [2012-07-17 03:20] installed gc (7.2-1)
    [2012-07-17 03:20] installed tre (0.8.0-2)
    [2012-07-17 03:20] installed elinks (0.13-10)
    [2012-07-17 03:22] installed xorg-xkill (1.0.3-3)
    [2012-07-17 03:23] removed fftw (3.3.2-1)
    [2012-07-17 03:30] installed upx (3.08-1)
    [2012-07-17 03:46] removed libgl (8.0.4-1)
    [2012-07-17 03:46] removed xf86-video-ati (1:6.14.6-1)
    [2012-07-17 03:46] removed ati-dri (8.0.4-1)
    [2012-07-17 03:46] installed xinetd (2.3.15-2)
    [2012-07-17 03:46] installed netkit-bsd-finger (0.17-7)
    [2012-07-17 03:46] ----------------------------------------------------------------
    [2012-07-17 03:46] PLEASE NOTE:
    [2012-07-17 03:46] For these drivers to work, you must install kernel modules.
    [2012-07-17 03:46] Depending on your kernel, these module packages are named
    [2012-07-17 03:46] catalyst-$kernel and stock kernel module is catalyst
    [2012-07-17 03:46]
    [2012-07-17 03:46] OR simply use packages that provides auto re-compilation:
    [2012-07-17 03:46] catalyst-hook or catalyst-daemon
    [2012-07-17 03:46]
    [2012-07-17 03:46] OR use catalyst-generator package to generate catalyst-{kernver}
    [2012-07-17 03:46] packages
    [2012-07-17 03:46] ----------------------------------------------------------------
    [2012-07-17 03:46] You can use the tool 'aticonfig' to generate an xorg.conf file.
    [2012-07-17 03:46] --------------------- ^^^^^^^^^ --------------------------------
    [2012-07-17 03:46] Add nomodeset to your kernel line in /boot/grub/menu.lst , ie.:
    [2012-07-17 03:46] kernel /boot/vmlinuz-linux root=/dev/sda1 ro nomodeset
    [2012-07-17 03:46] ----------------------------------------------------------------
    [2012-07-17 03:46] For more info and troubleshooting visit:
    [2012-07-17 03:46] http://wiki.archlinux.org/index.php/ATI_Catalyst
    [2012-07-17 03:46] ----------------------------------------------------------------
    [2012-07-17 03:46] installed catalyst-utils (12.6-1)
    [2012-07-17 03:47] ----------------------------------------------------------------
    [2012-07-17 03:47] For more info and more troubleshooting visit:
    [2012-07-17 03:47] http://wiki.archlinux.org/index.php/ATI_Catalyst
    [2012-07-17 03:47] ----------------------------------------------------------------
    [2012-07-17 03:47]
    [2012-07-17 03:47] catalyst package has been splited between:
    [2012-07-17 03:47] - catalyst (module for stock kernel)
    [2012-07-17 03:47] - catalyst-utils (libs and stuff)
    [2012-07-17 03:47]
    [2012-07-17 03:47] and optional:
    [2012-07-17 03:47] - catalyst-hook (auto rebuilding script and source files)
    [2012-07-17 03:47] - catalyst-daemon (auto rebuilding script and source files)
    [2012-07-17 03:47] - catalyst-generator (generator of catalyst-{kernver} packages)
    [2012-07-17 03:47] ----------------------------------------------------------------
    [2012-07-17 03:47] installed catalyst (12.6-3)
    [2012-07-17 03:55] installed libmng (1.0.10-4)
    [2012-07-17 03:55] installed xdg-utils (1.1.0-2.20120520)
    [2012-07-17 03:55] installed qt (4.8.2-2)
    [2012-07-17 04:00] installed libstatgrab (0.17-2)
    [2012-07-17 04:00] installed cpufrequtils (008-2)
    [2012-07-17 04:00] installed acpi (1.6-1)
    [2012-07-17 04:01] installed lm_sensors (3.3.2-3)
    [2012-07-17 04:01] installed hddtemp (0.3.beta15.46-3)
    [2012-07-17 04:08] installed xorg-util-macros (1.17-1)
    [2012-07-17 04:08] installed libsigc++ (2.2.10-2)
    [2012-07-17 04:08] installed libtorrent (0.13.2-1)
    [2012-07-17 04:08] installed xmlrpc-c (1:1.29.2-2)
    [2012-07-17 04:09] installed xcompmgr (1.1.6-1)
    [2012-07-17 04:09] installed rtorrent (0.9.2-1)
    [2012-07-17 04:10] installed tmux (1.6-2)
    [2012-07-17 04:19] removed xcompmgr (1.1.6-1)
    [2012-07-17 04:19] removed transset-df (6-3)
    [2012-07-17 04:19] removed devilspie (0.22-5)
    [2012-07-17 04:19] removed libwnck (2.30.7-1)
    [2012-07-17 04:19] removed libxres (1.0.6-1)
    [2012-07-17 04:20] installed perl-xml-parser (2.41-3)
    [2012-07-17 04:20] installed intltool (0.50.2-1)
    [2012-07-17 04:20] installed lxappearance (0.5.2-1)
    [2012-07-17 04:25] installed ttf-ubuntu-font-family (0.80-3)
    [2012-07-17 04:25] installed libxkbui (1.0.2-4)
    [2012-07-17 04:25] installed libspiro (20071029-2)
    [2012-07-17 04:25] installed fontforge (20120119-1)
    [2012-07-17 04:28] installed ttf-ms-fonts (2.0-9)
    [2012-07-17 04:36] removed freetype2 (2.4.10-1)
    [2012-07-17 04:36] installed freetype2-infinality (2.4.10-1)
    [2012-07-17 04:36] installed fontconfig-infinality (1-20120615)
    [2012-07-17 04:40] upgraded freetype2-infinality (2.4.10-1 -> 2.4.10-1)
    [2012-07-17 04:41] installed giblib (1.2.4-5)
    [2012-07-17 04:41] installed scrot (0.8-5)
    [2012-07-17 04:46] installed pkg-config (0.27-1)
    [2012-07-17 04:46] installed pianobar-git (20120717-1)
    [2012-07-17 04:55] installed flashplugin (11.2.202.236-1)
    [2012-07-17 05:01] installed lsof (4.86-1)
    [2012-07-17 05:08] ldm expects a config file at /etc/conf.d/ldm containing your user and group id (uid and gid respectively).
    [2012-07-17 05:08] Just add those two lines into it:
    [2012-07-17 05:08] USER_GID=<output of `id -g` ran from your user>
    [2012-07-17 05:08] USER_UID=<output of `id -u` ran from your user>
    [2012-07-17 05:08] installed ldm (0.3-1)
    [2012-07-17 05:12] installed libglade (2.6.4-3)
    [2012-07-17 05:12] installed python2-cairo (1.10.0-1)
    [2012-07-17 05:12] installed pygobject2-devel (2.28.6-6)
    [2012-07-17 05:12] installed python2-gobject2 (2.28.6-6)
    [2012-07-17 05:12] installed pygtk (2.24.0-3)
    [2012-07-17 05:12] installed python2-pyopenssl (0.13-1)
    [2012-07-17 05:12] installed python2-pyasn1 (0.1.3-1)
    [2012-07-17 05:12] installed gajim (0.15-4)
    [2012-07-17 05:18] upgraded elinks (0.13-10 -> 0.13-10)
    [2012-07-17 05:19] installed ttyload (0.5.2-1)
    [2012-07-17 05:20] installed alsi (0.4.3-1)
    [2012-07-17 05:20] installed envee-git (20120717-1)
    [2012-07-17 05:21] installed perl-term-extendedcolor (0.224-1)
    [2012-07-17 05:21] installed screenfo-git (20120717-1)
    [2012-07-17 05:22] removed screenfo-git (20120717-1)
    [2012-07-17 05:22] removed perl-term-extendedcolor (0.224-1)
    [2012-07-17 05:23] installed libexif (0.6.20-2)
    [2012-07-17 05:23] installed feh (2.5-1)
    [2012-07-17 05:24] installed lcms2 (2.3-2)
    [2012-07-17 05:24] installed liblqr (0.4.1-3)
    [2012-07-17 05:24] installed imagemagick (6.7.8.1-1)
    [2012-07-17 05:24] upgraded libxml2 (2.7.8-2 -> 2.7.8-2)
    [2012-07-17 05:24] installed freeglut (2.8.0-1)
    [2012-07-17 05:24] installed jasper (1.900.1-7)
    [2012-07-17 05:24] upgraded libpng (1.5.11-1 -> 1.5.11-1)
    [2012-07-17 05:24] installed lcms (1.19-2)
    [2012-07-17 05:25] installed gsfonts (1.0.7pre44-3)
    [2012-07-17 05:25] installed libwmf (0.2.8.4-9)
    [2012-07-17 05:25] installed libcroco (0.6.5-1)
    [2012-07-17 05:25] installed librsvg (2.36.1-1)
    [2012-07-17 05:25] installed babl (0.1.10-1)
    [2012-07-17 05:25] installed gegl (0.2.0-2)
    [2012-07-17 05:25] installed gimp (2.8.0-2)
    [2012-07-17 05:33] installed weechat (0.3.8-1)
    [2012-07-17 05:34] upgraded perl (5.16.0-2 -> 5.16.0-2)
    [2012-07-17 05:34] installed tcl (8.5.11-1)
    [2012-07-17 05:34] upgraded lua (5.1.5-2 -> 5.1.5-2)
    [2012-07-17 05:34] installed aspell (0.60.6.1-1)
    [2012-07-17 05:34] upgraded python2 (2.7.3-2 -> 2.7.3-2)
    [2012-07-17 05:34] installed libyaml (0.1.4-2)
    [2012-07-17 05:34] The default location of gem installs is $HOME/.gem/ruby
    [2012-07-17 05:34] Add the following line to your PATH if you plan to install using gem
    [2012-07-17 05:34] If you want to install to the system wide location, you must either:
    [2012-07-17 05:34] edit /etc/gemrc or run gem with the --no-user-install flag.
    [2012-07-17 05:34] installed ruby (1.9.3_p194-2)
    [2012-07-17 05:38] removed xorg-util-macros (1.17-1)
    [2012-07-17 05:38] removed pkg-config (0.27-1)
    [2012-07-17 05:38] removed fontforge (20120119-1)
    [2012-07-17 05:38] removed libspiro (20071029-2)
    [2012-07-17 05:38] removed libxkbui (1.0.2-4)
    [2012-07-17 05:39] installed mlocate (0.25-2)
    [2012-07-17 05:40] installed bleachbit (0.9.3-1)
    [2012-07-17 05:46] installed cln (1.3.2-1)
    [2012-07-17 05:46] installed libqalculate (0.9.7-3)
    [2012-07-17 05:46] installed libgusb (0.1.3-1)
    [2012-07-17 05:46] installed gd (2.0.36RC1-5)
    [2012-07-17 05:46] installed libgphoto2 (2.4.14-1)
    [2012-07-17 05:46] installed libieee1284 (0.2.11-4)
    [2012-07-17 05:46] installed net-snmp (5.7.1-3)
    [2012-07-17 05:46] NOTE
    [2012-07-17 05:46] ----
    [2012-07-17 05:46] Add your user to group 'scanner' to use scanner devices.
    [2012-07-17 05:46] installed sane (1.0.22-9)
    [2012-07-17 05:46] installed shared-color-profiles (0.1.5-1)
    [2012-07-17 05:46] installed colord (0.1.21-2)
    [2012-07-17 05:46] installed gtk3 (3.4.3-1)
    [2012-07-17 05:46] installed gconf (3.2.5-2)
    [2012-07-17 05:46] installed libgnome-data (2.32.1-3)
    [2012-07-17 05:46] installed tdb (1.2.9-2)
    [2012-07-17 05:46] installed talloc (2.0.7-1)
    [2012-07-17 05:46] installed libwbclient (3.6.6-1)
    [2012-07-17 05:46] installed libcap-ng (0.6.6-1)
    [2012-07-17 05:46] installed cifs-utils (5.5-1)
    [2012-07-17 05:46] installed smbclient (3.6.6-1)
    [2012-07-17 05:46] installed gnome-mime-data (2.18.0-6)
    [2012-07-17 05:46] installed gnome-vfs (2.24.4-6)
    [2012-07-17 05:46] installed libidl2 (0.8.14-2)
    [2012-07-17 05:46] installed orbit2 (2.14.19-2)
    [2012-07-17 05:46] installed libbonobo (2.32.1-2)
    [2012-07-17 05:46] installed dconf (0.12.1-2)
    [2012-07-17 05:46] installed libproxy (0.4.7-2)
    [2012-07-17 05:46] installed gsettings-desktop-schemas (3.4.2-1)
    [2012-07-17 05:46] installed glib-networking (2.32.3-1)
    [2012-07-17 05:46] installed libsoup (2.38.1-1)
    [2012-07-17 05:46] installed libgnome-keyring (3.4.1-1)
    [2012-07-17 05:46] installed libsoup-gnome (2.38.1-1)
    [2012-07-17 05:46] installed libatasmart (0.18-2)
    [2012-07-17 05:46] installed eject (2.1.5-7)
    [2012-07-17 05:46] installed udisks2 (1.94.0-2)
    [2012-07-17 05:46] installed gvfs (1.12.3-2)
    filesystem: 777 package: 755
    filesystem: 777 package: 755
    filesystem: 777 package: 755
    [2012-07-17 05:46] installed libcanberra (0.28-5)
    [2012-07-17 05:46] installed libgnome (2.32.1-3)
    [2012-07-17 05:46] installed qalculate-gtk (0.9.7-3)
    [2012-07-17 05:47] installed perl-encode-locale (1.03-1)
    [2012-07-17 05:47] installed perl-http-date (6.01-1)
    [2012-07-17 05:47] installed perl-file-listing (6.04-1)
    [2012-07-17 05:47] installed perl-html-tagset (3.20-3)
    [2012-07-17 05:47] installed perl-html-parser (3.69-2)
    [2012-07-17 05:47] installed perl-lwp-mediatypes (6.02-1)
    [2012-07-17 05:47] installed perl-uri (1.59-1)
    [2012-07-17 05:47] installed perl-http-message (6.03-1)
    [2012-07-17 05:47] installed perl-http-cookies (6.01-1)
    [2012-07-17 05:47] installed perl-http-daemon (6.00-1)
    [2012-07-17 05:47] installed perl-http-negotiate (6.01-1)
    [2012-07-17 05:47] installed perl-net-http (6.03-1)
    [2012-07-17 05:47] installed perl-www-robotrules (6.02-1)
    [2012-07-17 05:47] installed perl-libwww (6.04-1)
    [2012-07-17 05:48] installed perl-xml-fast (0.11-2)
    [2012-07-17 05:48] installed youtube-viewer (20120717-1)
    [2012-07-17 05:48] installed perl-net-ssleay (1.48-2)
    [2012-07-17 05:48] installed perl-io-socket-ssl (1.76-1)
    [2012-07-17 05:48] installed perl-mozilla-ca (20120309-1)
    [2012-07-17 05:48] installed perl-lwp-protocol-https (6.03-1)
    [2012-07-17 05:48] installed perl-getopt-argvfile (1.11-6)
    [2012-07-17 05:48] installed libxml-perl (0.08-3)
    [2012-07-17 05:48] installed perl-xml-regexp (0.03-7)
    [2012-07-17 05:49] installed perl-xml-dom (1.44-7)
    [2012-07-17 05:49] installed gcap (0.1.1-1)
    [2012-07-17 05:49] installed perl-term-readline-gnu (1.20-3)
    [2012-07-17 05:51] installed ocaml (3.12.1-3)
    [2012-07-17 05:51] installed unzip (6.0-6)
    [2012-07-17 05:53] installed girara-common (0.1.3-1)
    [2012-07-17 05:53] installed girara-gtk2 (0.1.3-1)
    [2012-07-17 05:53] installed zathura (0.2.0-1)
    [2012-07-17 05:53] installed poppler-data (0.4.5-1)
    [2012-07-17 05:53] installed poppler (0.20.2-1)
    [2012-07-17 05:53] installed poppler-glib (0.20.2-1)
    [2012-07-17 05:53] installed zathura-pdf-poppler (0.2.0-1)
    [2012-07-17 05:53] installed djvulibre (3.5.24-3)
    [2012-07-17 05:53] installed zathura-djvu (0.2.0-1)
    [2012-07-17 05:55] installed llpp (12-1)
    [2012-07-17 05:55] installed zip (3.0-3)
    [2012-07-17 05:55] installed unrar (4.2.4-1)
    [2012-07-17 05:55] upgraded unzip (6.0-6 -> 6.0-6)
    [2012-07-17 05:56] installed rar (4.1.1-1)
    [2012-07-17 06:03] installed libzen (0.4.26-1)
    [2012-07-17 06:03] installed libmediainfo (0.7.58-1)
    [2012-07-17 06:03] installed mediainfo (0.7.58-1)
    [2012-07-17 06:23] installed xcompmgr (1.1.6-1)
    [2012-07-17 06:23] installed transset-df (6-3)
    [2012-07-17 06:24] installed libxres (1.0.6-1)
    [2012-07-17 06:24] installed libwnck (2.30.7-1)
    [2012-07-17 06:24] installed devilspie (0.22-5)
    [2012-07-17 06:55] installed python-dbus-common (1.1.1-1)
    [2012-07-17 06:55] installed python2-dbus (1.1.1-1)
    [2012-07-17 06:55] installed gstreamer0.10 (0.10.36-1)
    [2012-07-17 06:55] installed gstreamer0.10-base (0.10.36-1)
    [2012-07-17 06:56] installed gstreamer0.10-python (0.10.22-1)
    [2012-07-17 06:56] installed python-pycurl (7.19.0-6)
    [2012-07-17 06:56] installed python-configobj (4.7.2-4)
    [2012-07-17 06:56]
    [2012-07-17 06:56]
    [2012-07-17 06:56] installed gsharkdown (0.7.0-1)
    [2012-07-17 07:48] installed qtwebkit (2.2.2-1)
    [2012-07-17 07:48] installed sip (4.13.3-2)
    [2012-07-17 07:48] installed python2-sip (4.13.3-2)
    [2012-07-17 07:48] installed pyqt-common (4.9.4-1)
    [2012-07-17 07:48] installed python2-pyqt (4.9.4-1)
    [2012-07-17 07:49] installed convertall (0.5.2-2)
    [2012-07-17 07:51] installed libxslt (1.1.26-3)
    [2012-07-17 07:51] installed python-lxml (2.3.4-2)
    [2012-07-17 07:51] installed python2-httplib2 (0.7.4-1)
    [2012-07-17 07:52] installed syslinux (4.05-4)
    [2012-07-17 07:52] installed p7zip (9.20.1-6)
    [2012-07-17 07:52] installed mtools (4.0.17-2)
    [2012-07-17 07:52] installed unetbootin (577-1)
    [2012-07-17 07:52] installed torrent-search (0.11.2-1)
    [2012-07-17 08:14] installed xcursor-vanilla-dmz (0.4.3-1)
    [2012-07-17 08:15] installed spacefm (0.7.9-1)
    [2012-07-17 08:16] upgraded wget (1.13.4-1 -> 1.13.4-1)
    [2012-07-17 08:16] installed libgtop (2.28.4-1)
    [2012-07-17 08:16] installed libgksu (2.0.12-5)
    [2012-07-17 08:16] installed gksu (2.0.2-4)
    [2012-07-17 08:16] upgraded lsof (4.86-1 -> 4.86-1)
    [2012-07-17 08:16] upgraded eject (2.1.5-7 -> 2.1.5-7)
    [2012-07-17 08:18] installed pmount (0.9.23-4)
    [2012-07-17 08:24] installed xcursor-vanilla-dmz-aa (0.4.3-1)
    [2012-07-17 08:28] removed xcursor-vanilla-dmz (0.4.3-1)
    [2012-07-17 08:31] installed xorg-xcursorgen (1.0.5-1)
    [2012-07-17 08:31] installed xcursor-mac (1-2)
    [2012-07-17 08:40] removed feh (2.5-1)
    [2012-07-17 08:40] installed glibmm (2.32.0-1)
    [2012-07-17 08:40] installed cairomm (1.10.0-2)
    [2012-07-17 08:40] installed pangomm (2.28.4-1)
    [2012-07-17 08:40] installed atkmm (2.22.6-1)
    [2012-07-17 08:40] installed gtkmm (2.24.2-2)
    [2012-07-17 08:40] installed nitrogen (1.5.2-1)
    [2012-07-17 09:08] upgraded gpm (1.20.6-8 -> 1.20.6-10)
    [2012-07-17 09:08] removed xorg-xcursorgen (1.0.5-1)
    [2012-07-17 09:08] removed unzip (6.0-6)
    [2012-07-17 09:08] removed ocaml (3.12.1-3)
    [2012-07-17 09:10] installed slang (2.2.4-2)
    [2012-07-17 09:10] installed most (5.0.0a-4)
    [2012-07-17 09:35] installed unzip (6.0-6)
    [2012-07-17 09:38] removed rxvt-unicode (9.15-3)
    [2012-07-17 09:38] installed rxvt-unicode-patched (9.15-5)
    [2012-07-17 09:48] installed urxvtcd (2-2)
    [2012-07-17 09:57] removed urxvtcd (2-2)
    [2012-07-17 09:59] installed xorg-xfontsel (1.0.4-1)
    [2012-07-17 10:08] removed rxvt-unicode-patched (9.15-5)
    [2012-07-17 10:08] installed rxvt-unicode (9.15-3)
    [2012-07-17 10:12] removed rxvt-unicode (9.15-3)
    [2012-07-17 10:12] installed rxvt-unicode-patched (9.15-5)
    [2012-07-17 10:12] removed rxvt-unicode-patched (9.15-5)
    [2012-07-17 10:12] installed rxvt-unicode (9.15-3)
    [2012-07-17 10:40] installed ffmpeg-compat (20120509-1)
    [2012-07-17 10:40] installed motion (3.2.12-6)
    [2012-07-17 12:19] removed xcursor-mac (1-2)
    [2012-07-17 16:16] installed cdrkit (1.1.11-2)
    [2012-07-17 16:16] installed dvd+rw-tools (7.1-4)
    [2012-07-17 16:16] installed libvisual (0.4.0-4)
    [2012-07-17 16:16] installed gstreamer0.10-base-plugins (0.10.36-1)
    [2012-07-17 16:16] installed docbook-xml (4.5-5)
    [2012-07-17 16:16] installed docbook-xsl (1.77.1-2)
    [2012-07-17 16:16] installed rarian (0.8.1-2)
    [2012-07-17 16:16] installed gnome-doc-utils (0.20.10-1)
    [2012-07-17 16:16] installed gtk-doc (1.18-1)
    [2012-07-17 16:16] installed cdrdao (1.2.3-6)
    [2012-07-17 16:19] removed gtk-doc (1.18-1)
    [2012-07-17 16:19] removed gstreamer0.10-base-plugins (0.10.36-1)
    [2012-07-17 16:19] removed docbook-xsl (1.77.1-2)
    [2012-07-17 16:19] removed gnome-doc-utils (0.20.10-1)
    [2012-07-17 16:19] removed libvisual (0.4.0-4)
    [2012-07-17 16:19] removed docbook-xml (4.5-5)
    [2012-07-17 16:19] removed rarian (0.8.1-2)
    [2012-07-17 16:19] upgraded cdrkit (1.1.11-2 -> 1.1.11-2)
    [2012-07-17 16:20] upgraded cdrdao (1.2.3-6 -> 1.2.3-6)
    [2012-07-17 16:20] removed cdrkit (1.1.11-2)
    [2012-07-17 16:20] To allow other users than root execute rscsi add an entry
    [2012-07-17 16:20]
    [2012-07-17 16:20] The manual loading (or loading using rc.conf)
    [2012-07-17 16:20] of the 'sg' module is no longer necessary.
    [2012-07-17 16:20] It is automatically loaded during boot by systemd-tools (udev 185).
    [2012-07-17 16:20] installed cdrtools (3.01a07-4)
    [2012-07-17 16:22] removed cdrtools (3.01a07-4)
    [2012-07-17 16:22] installed cdrkit (1.1.11-2)
    [2012-07-17 16:29] upgraded dvd+rw-tools (7.1-4 -> 7.1-4)
    [2012-07-17 16:49] installed sg3_utils (1.33-1)
    [2012-07-17 16:49] installed parted (3.1-1)
    [2012-07-17 16:49] installed udisks (1.0.4-4)
    [2012-07-17 16:49] installed python-notify (0.1.1-11)
    [2012-07-17 16:49] installed python2-udiskie (0.4.1-1)
    [2012-07-17 16:52] removed python2-udiskie (0.4.1-1)
    [2012-07-17 16:52] removed python-notify (0.1.1-11)
    [2012-07-17 16:52] removed udisks (1.0.4-4)
    [2012-07-17 16:52] removed parted (3.1-1)
    [2012-07-17 16:52] removed sg3_utils (1.33-1)
    [2012-07-18 10:10] upgraded lsof (4.86-1 -> 4.86-1)
    [2012-07-18 10:10] installed dropbox (1.4.11-1)
    [2012-07-18 10:21] installed python2-feedparser (5.1.2-1)
    [2012-07-18 10:22] installed djl (1.2.20-2)
    [2012-07-18 10:53] removed djl (1.2.20-2)
    [2012-07-18 10:53] removed python2-feedparser (5.1.2-1)
    [2012-07-18 12:36] upgraded coreutils (8.17-1 -> 8.17-3)
    [2012-07-18 12:36] upgraded firefox (13.0.1-1 -> 14.0.1-1)
    [2012-07-18 12:36] upgraded grep (2.13-1 -> 2.13-2)
    [2012-07-18 12:36] upgraded hddtemp (0.3.beta15.46-3 -> 0.3.beta15.52-1)
    [2012-07-18 12:36] upgraded kbd (1.15.3-2 -> 1.15.3-3)
    [2012-07-18 12:36] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-07-18 12:36] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-07-18 12:37] upgraded linux (3.4.4-3 -> 3.4.5-1)
    [2012-07-18 12:37] upgraded lirc-utils (1:0.9.0-20 -> 1:0.9.0-21)
    [2012-07-18 12:37] upgraded pyqt-common (4.9.4-1 -> 4.9.4-2)
    [2012-07-18 12:37] upgraded python2-pyqt (4.9.4-1 -> 4.9.4-2)
    [2012-07-18 15:25] installed shake (0.999-2)
    [2012-07-18 15:54] installed docbook-xml (4.5-5)
    [2012-07-18 15:54] installed docbook-xsl (1.77.1-2)
    [2012-07-18 15:54] installed rarian (0.8.1-2)
    [2012-07-18 15:54] installed gnome-doc-utils (0.20.10-1)
    [2012-07-18 15:54] installed gtk-doc (1.18-1)
    [2012-07-18 15:54] upgraded gnome-doc-utils (0.20.10-1 -> 0.20.10-1)
    [2012-07-18 16:12] installed zenity (3.4.0-1)
    [2012-07-18 16:14] removed gtk-doc (1.18-1)
    [2012-07-18 16:14] removed docbook-xsl (1.77.1-2)
    [2012-07-18 16:14] removed gnome-doc-utils (0.20.10-1)
    [2012-07-18 16:14] removed docbook-xml (4.5-5)
    [2012-07-18 16:14] removed rarian (0.8.1-2)
    [2012-07-18 17:22] removed powertop (2.0-1)
    [2012-07-18 17:24] installed perl-yaml-syck (1.20-2)
    [2012-07-18 17:24] installed perl-test-pod (1.45-1)
    [2012-07-18 17:24] installed xmlto (0.0.25-2)
    [2012-07-18 17:24] installed docbook-xml (4.5-5)
    [2012-07-18 17:24] installed docbook-xsl (1.77.1-2)
    [2012-07-18 17:25] removed alsa-utils (1.0.25-3)
    [2012-07-18 17:25] installed alsa-utils-transparent (1.0.25-3)
    [2012-07-18 17:25] removed xmlto (0.0.25-2)
    [2012-07-18 17:25] removed docbook-xsl (1.77.1-2)
    [2012-07-18 17:25] removed perl-test-pod (1.45-1)
    [2012-07-18 17:25] removed perl-yaml-syck (1.20-2)
    [2012-07-18 17:25] removed docbook-xml (4.5-5)
    [2012-07-18 17:26] Install /usr/share/mybashburn/etc/mybashburnrc to /root/.mybashburnrc
    [2012-07-18 17:26] installed mybashburn (1.0.2-3)
    [2012-07-18 17:33] installed bashburn (3.1.0-1)
    [2012-07-18 17:34] upgraded flac (1.2.1-3 -> 1.2.1-3)
    [2012-07-18 17:34] upgraded dvd+rw-tools (7.1-4 -> 7.1-4)
    [2012-07-18 17:34] installed vorbis-tools (1.4.0-3)
    [2012-07-18 17:34] upgraded mpg123 (1.14.3-1 -> 1.14.3-1)
    [2012-07-18 17:34] installed normalize (0.7.7-6)
    [2012-07-18 17:34] upgraded cdparanoia (10.2-4 -> 10.2-4)
    [2012-07-18 17:47] installed recorder (1.4.5-2)
    [2012-07-18 17:48] installed vcdimager (0.7.24-2)
    [2012-07-18 17:49] installed sox (14.4.0-3)
    [2012-07-18 17:49] removed recorder (1.4.5-2)
    [2012-07-18 17:49] removed dvd+rw-tools (7.1-4)
    [2012-07-18 17:50] installed pkg-config (0.27-1)
    [2012-07-18 17:50] installed dvd+rw-tools (7.1-4)
    [2012-07-18 17:51] installed graveman (0.3.12.5-5)
    [2012-07-18 17:54] installed libvisual (0.4.0-4)
    [2012-07-18 17:54] installed gstreamer0.10-base-plugins (0.10.36-1)
    [2012-07-18 17:54] installed gmime (2.6.10-1)
    [2012-07-18 17:54] installed libquvi-scripts (0.4.6-1)
    [2012-07-18 17:54] installed libquvi (0.4.1-1)
    [2012-07-18 17:54] installed totem-plparser (3.4.2-1)
    [2012-07-18 17:54] installed icu (49.1.2-1)
    [2012-07-18 17:54] installed libtracker-sparql (0.14.1-1)
    [2012-07-18 17:54] installed brasero (3.4.1-1)
    [2012-07-18 17:54] installed libburn (1.2.2-1)
    [2012-07-18 17:54] installed dvdauthor (0.7.0-4)
    [2012-07-18 17:55] removed brasero (3.4.1-1)
    [2012-07-18 17:55] removed gstreamer0.10-base-plugins (0.10.36-1)
    [2012-07-18 17:55] removed libtracker-sparql (0.14.1-1)
    [2012-07-18 17:55] removed totem-plparser (3.4.2-1)
    [2012-07-18 17:55] removed libvisual (0.4.0-4)
    [2012-07-18 17:55] removed icu (49.1.2-1)
    [2012-07-18 17:55] removed gmime (2.6.10-1)
    [2012-07-18 17:55] removed libquvi (0.4.1-1)
    [2012-07-18 17:55] removed libquvi-scripts (0.4.6-1)
    [2012-07-18 17:55] installed libisofs (1.2.2-1)
    [2012-07-18 17:55] installed libxfce4util (4.10.0-1)
    [2012-07-18 17:55] installed xfconf (4.10.0-2)
    [2012-07-18 17:55] installed libxfcegui4 (4.10.0-1)
    [2012-07-18 17:55] installed libxfce4ui (4.10.0-1)
    [2012-07-18 17:55] installed exo (0.8.0-1)
    [2012-07-18 17:55] installed xfburn (0.4.3-6)
    [2012-07-18 18:00] removed mybashburn (1.0.2-3)
    [2012-07-18 18:00] removed bashburn (3.1.0-1)
    [2012-07-18 18:21] installed feh (2.5-1)
    [2012-07-18 21:30] installed iscan (2.28.1-6)
    [2012-07-18 21:31] installed iscan-data (1.13.0-1)
    [2012-07-19 12:27] removed grub (0.97-21)
    [2012-07-19 12:27] Generating grub.cfg.example config file...
    [2012-07-19 12:27] This may fail on some machines running a custom kernel.
    [2012-07-19 12:27] done.
    [2012-07-19 12:27] installed grub2-common (1:2.00rc1-1)
    [2012-07-19 12:27] installed grub2-bios (1:2.00rc1-1)
    [2012-07-19 12:34] removed grub2-bios (1:2.00rc1-1)
    [2012-07-19 12:34] removed grub2-common (1:2.00rc1-1)
    [2012-07-19 12:34] installed grub (0.97-21)
    [2012-07-19 13:39] upgraded glibmm (2.32.0-1 -> 2.32.1-1)
    [2012-07-19 13:39] upgraded imagemagick (6.7.8.1-1 -> 6.7.8.4-1)
    [2012-07-19 13:39] upgraded unetbootin (577-1 -> 578-1)
    [2012-07-19 13:39] upgraded xmlrpc-c (1:1.29.2-2 -> 1:1.31.02-1)
    [2012-07-19 13:55] installed parted (3.1-1)
    [2012-07-19 13:55] installed gparted (0.13.0-1)
    [2012-07-19 13:56] installed nilfs-utils (2.1.2-1)
    [2012-07-19 13:56] upgraded xfsprogs (3.1.8-2 -> 3.1.8-2)
    [2012-07-19 13:56] upgraded jfsutils (1.1.15-3 -> 1.1.15-3)
    [2012-07-19 13:56] upgraded reiserfsprogs (3.6.21-4 -> 3.6.21-4)
    [2012-07-19 13:56] installed dosfstools (3.0.12-1)
    [2012-07-19 13:56] upgraded mtools (4.0.17-2 -> 4.0.17-2)
    [2012-07-19 13:56] installed gpart (0.1h-5)
    [2012-07-19 13:56] installed ntfsprogs (2012.1.15-3)
    [2012-07-19 14:03] upgraded util-linux (2.21.2-5 -> 2.21.2-5)
    [2012-07-19 14:04] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    [2012-07-19 14:04] -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    [2012-07-19 14:04] upgraded linux (3.4.5-1 -> 3.4.5-1)
    [2012-07-19 14:20] installed vala (0.16.1-1)
    [2012-07-19 14:20] installed libgee (0.6.4-1)
    [2012-07-19 14:22] installed gobject-introspection (1.32.1-2)
    [2012-07-19 14:22] installed libtool (2.4.2-6)
    [2012-07-19 14:23] installed submarine (0.1.3-1)
    [2012-07-19 14:25] removed ncmpcpp (0.5.10-1)
    [2012-07-19 14:25]
    [2012-07-19 14:25] installed ncmpcpp-git (20120719-1)
    [2012-07-19 14:25] upgraded curl (7.26.0-1 -> 7.26.0-1)
    [2012-07-19 14:25] installed fftw (3.3.2-1)
    [2012-07-19 14:25] upgraded taglib (1.7.2-1 -> 1.7.2-1)
    [2012-07-19 14:25] removed vala (0.16.1-1)
    [2012-07-19 14:25] removed taglib (1.7.2-1)
    [2012-07-19 14:25] installed taglib (1.7.2-1)
    [2012-07-19 15:06] installed ca-certificates-java (20120608-1)
    [2012-07-19 15:06] installed java-rhino (1.7R3-3)
    [2012-07-19 15:06] done.
    [2012-07-19 15:06] installed jre7-openjdk-headless (7.u5_2.2.1-1)
    [2012-07-19 15:06] when you use a non-reparenting window manager
    [2012-07-19 15:06] set _JAVA_AWT_WM_NONREPARENTING=1 in
    [2012-07-19 15:06] /etc/profile.d/jre.sh
    [2012-07-19 15:06] installed jre7-openjdk (7.u5_2.2.1-1)
    [2012-07-19 15:06] installed jdk7-openjdk (7.u5_2.2.1-1)
    [2012-07-19 15:06] installed apache-ant (1.8.4-1)
    [2012-07-19 15:06] installed neon (0.29.6-4)
    [2012-07-19 15:06] installed apr (1.4.6-1)
    [2012-07-19 15:06] installed unixodbc (2.3.1-1)
    [2012-07-19 15:06] installed apr-util (1.4.1-1)
    [2012-07-19 15:06] installed subversion (1.7.5-2)
    [2012-07-19 15:10] installed ruby-msgpack (0.4.6-1)
    [2012-07-19 15:10] installed postgresql-libs (9.1.4-1)
    [2012-07-19 15:11] installed ruby-pg (0.13.2-1)
    [2012-07-19 15:20] installed metasploit (4.3.0-2)
    [2012-07-19 15:21]
    [2012-07-19 15:21] Please refer to armitage's documentation for usage informations:
    [2012-07-19 15:21] http://www.fastandeasyhacking.com/manual
    [2012-07-19 15:21]
    [2012-07-19 15:21] installed armitage-svn (850-1)
    [2012-07-19 15:21] removed subversion (1.7.5-2)
    [2012-07-19 15:21] removed apache-ant (1.8.4-1)
    [2012-07-19 15:21] removed apr-util (1.4.1-1)
    [2012-07-19 15:21] removed neon (0.29.6-4)
    [2012-07-19 15:21] removed apr (1.4.6-1)
    [2012-07-19 15:21] removed unixodbc (2.3.1-1)
    [2012-07-19 15:29] removed armitage-svn (850-1)
    [2012-07-19 15:29] removed jdk7-openjdk (7.u5_2.2.1-1)
    [2012-07-19 15:29] removed metasploit (4.3.0-2)
    [2012-07-19 15:29] removed jre7-openjdk (7.u5_2.2.1-1)
    [2012-07-19 15:29] removed ruby-msgpack (0.4.6-1)
    [2012-07-19 15:29] removed ruby-pg (0.13.2-1)
    [2012-07-19 15:29] removed postgresql-libs (9.1.4-1)
    [2012-07-19 17:28] installed atool (0.39.0-1)
    [2012-07-19 17:29] upgraded bzip2 (1.0.6-4 -> 1.0.6-4)
    [2012-07-19 17:29] upgraded xz (5.0.4-1 -> 5.0.4-1)
    [2012-07-19 17:29] upgraded gzip (1.5-1 -> 1.5-1)
    [2012-07-19 17:29] upgraded tar (1.26-2 -> 1.26-2)
    [2012-07-19 17:29] upgraded zip (3.0-3 -> 3.0-3)
    [2012-07-19 17:29] upgraded p7zip (9.20.1-6 -> 9.20.1-6)
    [2012-07-19 17:29] installed lzo2 (2.06-1)
    [2012-07-19 17:29] installed lzop (1.03-2)
    [2012-07-19 17:29] installed cpio (2.11-3)
    [2012-07-19 17:29] upgraded unzip (6.0-6 -> 6.0-6)
    [2012-07-19 17:29]
    [2012-07-19 17:29]
    [2012-07-19 17:29] installed unace (2.5-7)
    [2012-07-19 17:40] installed powertop-git (20120719-1)
    [2012-07-20 07:24] upgraded libpulse (2.0-2 -> 2.1-1)
    [2012-07-20 07:25] installed ocaml (3.12.1-3)
    [2012-07-20 07:27] upgraded llpp (12-1 -> 12-2)
    [2012-07-20 07:29] removed ocaml (3.12.1-3)
    [2012-07-20 16:05] installed libvisual (0.4.0-4)
    [2012-07-20 16:05] installed gstreamer0.10-base-plugins (0.10.36-1)
    [2012-07-20 16:05] installed docbook-xml (4.5-5)
    [2012-07-20 16:05] installed docbook-xsl (1.77.1-2)
    [2012-07-20 16:05] installed rarian (0.8.1-2)
    [2012-07-20 16:05] installed gnome-doc-utils (0.20.10-1)
    [2012-07-20 16:05] installed gtk-doc (1.18-1)
    [2012-07-20 16:10] installed brasero-lite (3.4.1-1)
    [2012-07-20 16:11] installed gstreamer0.10-bad (0.10.23-2)
    [2012-07-20 16:11] installed libraw1394 (2.0.7-2)
    [2012-07-20 16:11] installed libdc1394 (2.1.3-2)
    [2012-07-20 16:11] installed neon (0.29.6-4)
    [2012-07-20 16:11] installed libmp4v2 (2.0.0-1)
    [2012-07-20 16:11] installed faac (1.28-4)
    [2012-07-20 16:11] installed musicbrainz (2.1.5-5)
    [2012-07-20 16:11] installed libcdaudio (0.99.12-6)
    [2012-07-20 16:11] installed libdv (1.0.0-4)
    [2012-07-20 16:11] installed mjpegtools (2.0.0-2)
    [2012-07-20 16:11] installed icu (49.1.2-1)
    [2012-07-20 16:11] installed raptor (2.0.8-1)
    [2012-07-20 16:11] installed liblrdf (0.5.0-1)
    [2012-07-20 16:11] installed libofa (0.9.3-4)
    [2012-07-20 16:11] installed soundtouch (1.6.0-1)
    [2012-07-20 16:11] installed libgme (0.6.0-2)
    [2012-07-20 16:11] installed wildmidi (0.2.3.5-2)
    [2012-07-20 16:11] installed gstreamer0.10-bad-plugins (0.10.23-2)
    [2012-07-20 16:11] upgraded dvdauthor (0.7.0-4 -> 0.7.0-4)
    [2012-07-20 16:12] installed gstreamer0.10-good (0.10.31-1)
    [2012-07-20 16:12] installed libavc1394 (0.5.4-1)
    [2012-07-20 16:12] installed libiec61883 (1.2.0-3)
    [2012-07-20 16:12] installed gstreamer0.10-good-plugins (0.10.31-1)
    [2012-07-20 16:12] installed gstreamer0.10-ugly (0.10.19-2)
    [2012-07-20 16:12] installed libmpeg2 (0.5.1-3)
    [2012-07-20 16:12] installed libsidplay (1.36.59-5)
    [2012-07-20 16:12] installed gstreamer0.10-ugly-plugins (0.10.19-2)
    [2012-07-20 16:12] installed gstreamer0.10-ffmpeg (0.10.13-1)
    [2012-07-20 16:12] removed gtk-doc (1.18-1)
    [2012-07-20 16:12] removed docbook-xsl (1.77.1-2)
    [2012-07-20 16:12] removed gnome-doc-utils (0.20.10-1)
    [2012-07-20 16:12] removed docbook-xml (4.5-5)
    [2012-07-20 16:12] removed rarian (0.8.1-2)
    [2012-07-20 16:13] removed brasero-lite (3.4.1-1)
    [2012-07-20 16:13] removed gstreamer0.10-base-plugins (0.10.36-1)
    [2012-07-20 16:13] removed libvisual (0.4.0-4)
    [2012-07-20 16:13] installed libvisual (0.4.0-4)
    [2012-07-20 16:13] installed gstreamer0.10-base-plugins (0.10.36-1)
    [2012-07-20 16:23] installed strace (4.7-1)
    [2012-07-20 16:23] > For usage, see: /usr/share/gopreload/README.
    [2012-07-20 16:23] installed gopreload (0.5-2)
    [2012-07-20 20:55] installed python-imaging (1.1.7-4)
    [2012-07-20 20:55] installed python2-distribute

  • [Solved] Pacman no longer works at all!!

    Ok, did some searches and found a few hits, but not really sure how to fix this one. Here are 2 links I found.
    links:
    http://unix.stackexchange.com/questions … -libraries
    https://bbs.archlinux.org/viewtopic.php?pid=1232052
    In my case, I dont think any pacman option/command works. Cant run 'pacman' with ANY options or with no options??
    error:
    $ pacman
    pacman: error while loading shared libraries: libcurl.so.4: cannot open shared object file: No such file or directory
    I guess I was updating something using curl libraries, but not sure whats the best way to fix this.
    ldconfig -p | grep curl
    Returns nothing.
    Not sure if this was the right thing to do but I also tried this from the first link.
    echo /usr/local/lib | sudo tee -a /etc/ld.so.conf.d/local.conf
    Here is another one:
    $ sudo ldd $(which pacman)
    linux-vdso.so.1 (0x00007fff4a3ff000)
    libalpm.so.7 => /usr/lib/libalpm.so.7 (0x00007f16be091000)
    libc.so.6 => /usr/lib/libc.so.6 (0x00007f16bdce4000)
    libcurl.so.4 => not found
    libgpgme.so.11 => /usr/lib/libgpgme.so.11 (0x00007f16bdab1000)
    libarchive.so.12 => /usr/lib/libarchive.so.12 (0x00007f16bd81c000)
    libcrypto.so.1.0.0 => /usr/lib/libcrypto.so.1.0.0 (0x00007f16bd412000)
    /lib/ld-linux-x86-64.so.2 (0x00007f16be2bd000)
    libassuan.so.0 => /usr/lib/libassuan.so.0 (0x00007f16bd202000)
    libgpg-error.so.0 => /usr/lib/libgpg-error.so.0 (0x00007f16bcfff000)
    libacl.so.1 => /usr/lib/libacl.so.1 (0x00007f16bcdf6000)
    libattr.so.1 => /usr/lib/libattr.so.1 (0x00007f16bcbf1000)
    libexpat.so.1 => /usr/lib/libexpat.so.1 (0x00007f16bc9c7000)
    liblzma.so.5 => /usr/lib/liblzma.so.5 (0x00007f16bc7a4000)
    libbz2.so.1.0 => /usr/lib/libbz2.so.1.0 (0x00007f16bc594000)
    libz.so.1 => /usr/lib/libz.so.1 (0x00007f16bc37e000)
    libdl.so.2 => /usr/lib/libdl.so.2 (0x00007f16bc17a000)
    libpthread.so.0 => /usr/lib/libpthread.so.0 (0x00007f16bbf5e000)
    So looks like thats the issue .. libcurl.so.4 => not found ...
    I dont have strace installed and not sure if I need it to continue....I did a quick search and dont see a libcurl installed, so either i need to install it or remove that reference too it? LOL
    Any suggestions?
    Last edited by banshee28 (2013-02-19 03:28:09)

    Army wrote:Show us what you did with pacman which caused this = show us your /var/log/pacman.log. Do you use testing repos?
    Never use testing repos.
    I dont see anything for libcurl in that log, but I did see this recently for curl. Perhaps this is the culprit. Pacman -Sc ??
    [2013-02-07 03:05] Running 'pacman -Sc --noconfirm'
    [2013-02-08 03:05] Running 'pacman -Sc --noconfirm'
    [2013-02-08 17:19] Running 'pacman -Sy'
    [2013-02-08 17:19] synchronizing package lists
    [2013-02-08 17:19] starting full system upgrade
    [2013-02-08 17:19] Running 'pacman -S -u'
    [2013-02-08 17:19] starting full system upgrade
    [2013-02-08 17:21] upgraded perl (5.16.2-2 -> 5.16.2-3)
    [2013-02-08 17:21] upgraded openssl (1.0.1.c-1 -> 1.0.1.d-1)
    ***** [2013-02-08 17:21] upgraded curl (7.28.1-1 -> 7.29.0-1) *******
    Full log file:
    [2012-09-22 09:01] installed filesystem (2012.8-1)
    [2013-02-11 20:12] ------------------------------------------------------------------------
    [2013-02-11 20:12] upgraded profile-sync-daemon (5.13-1 -> 5.16-1)
    [2013-02-12 03:05] Running 'pacman -Sc --noconfirm'
    [2013-02-12 18:19] Running 'pacman -Sy'
    [2013-02-12 18:19] synchronizing package lists
    [2013-02-12 18:19] starting full system upgrade
    [2013-02-12 18:19] Running 'pacman -S -u'
    [2013-02-12 18:19] starting full system upgrade
    [2013-02-12 18:20] upgraded device-mapper (2.02.98-1 -> 2.02.98-3)
    [2013-02-12 18:20] upgraded cryptsetup (1.5.1-1 -> 1.6.0-1)
    Last edited by banshee28 (2013-02-19 03:29:37)

  • [Solved] /var/lib/pacman wrap defined in /etc/fstab

    How come is it that the ext2 wrap of /var/lib/pacman won't work?
    See here:
    1.
    /var/lib/pacman.db /var/lib/pacman ext2 loop,defaults 0 0
    [det@myhost ~]$ sudo mount -a
    mount: wrong fs type, bad option, bad superblock on /dev/loop1,
    missing codepage or helper program, or other error
    In some cases useful info is found in syslog - try
    dmesg | tail or so
    [det@myhost ~]$
    2.
    #/var/lib/pacman.db /var/lib/pacman ext2 loop,defaults 0 0
    [det@myhost ~]$ sudo mount -a
    [det@myhost ~]$
    E: dmesg | tail:
    [det@myhost ~]$ dmesg | tail
    VFS: Can't find an ext2 filesystem on dev loop1.
    [det@myhost ~]$
    Last edited by algorythm (2009-09-30 12:35:04)

    Uh.. actually running the pacman cage shell script fixed this.. ^^
    D'oh my brains had probably gone to school.
    Last edited by algorythm (2009-09-18 21:57:48)

  • [SOLVED ]makepkg asking for pacman-color binary

    After upgrading pacman to 4.1 I'm getting this error every time I run makepkg:
    /usr/bin/makepkg -s -i
    ==> ERROR: Cannot find the pacman-color binary required for dependency operations.
    Even if I try to use --nocolor:
    /usr/bin/makepkg --nocolor -s -i
    ==> ERROR: Cannot find the pacman-color binary required for dependency operations.
    I've tried enabling and disabling color options in both makepkg.conf and pacman.conf, and the error is still there.
    Any clue on what could be going on and how to solve it?
    Thank you in advance
    Last edited by ethail (2013-04-01 23:01:32)

    echo $PACMAN
    pacman-color
    I guess I've forgotten to edit some file that I changed when using pacman-color-testing from the AUR.
    EDIT: Indeed, I forgot to edit my .zprofile that used to export PACMAN as pacman-color. Solved now
    Thank you, Allan
    Last edited by ethail (2013-04-01 23:02:14)

  • Using pacman to install packages into a seperate root

    After working with an Arch Linux machine for 1-2 years I switched jobs and was given a Mac, which I've enjoyed so far.
    I would, however, like to switch back to Arch Linux but there's something that I've been able to do on Mac OS X using its unofficial package manager Homebrew (http://mxcl.github.com/homebrew/) which I was wondering if it were possible with pacman.
    Typically you have one installation of Homebrew, at /usr/local, and by running 'brew' (/usr/local/brew) it knows that its root is at /usr/local & looks there for all dependencies & installs packages there. If, however, you install homebrew elsewhere (could be the first or a second installation), for instance ~/sw, then running brew from there will install packages in that root.
    I've found this very useful to install package specific to a project I'm working on (specific vendor & version of DB, specific web server etc) without having to install them globally on my system and at the same time without having to resort to installing everything by hand (including dipendencies).
    Is this possible with Pacman?
    Thanks in advance,
    Dale

    this wiki isn't entirely related, but can be helpful.
    https://wiki.archlinux.org/index.php/Ar … bit_System
    4. Sync pacman:
    pacman --root /opt/arch32 --cachedir /opt/arch32/var/cache/pacman/pkg --config /opt/arch32/pacman.conf -Sy
    5. Install the base and optionally base-devel groups:
    pacman --root /opt/arch32 --cachedir /opt/arch32/var/cache/pacman/pkg --config /opt/arch32/pacman.conf -S base base-devel

Maybe you are looking for

  • Printing problem with sapscripts

    Hi everybody, I have a problem with a sapscript. This is called from a user exit, and take one value to print . I have that value in the sapscript with the same value between &&, but it doesn't print anything, only print the text I have there. Does a

  • Synchronous CacheStore vs BackingMapListener

    For partitioned caches (with backup-count=0), I need to react to cache entries being mutated (or inserted) synchronously (i.e - the mutating call should return after listeners are called). From what I understand, there are 2 mechanisms available to d

  • N97 file corrupted when installing files

    My N97 was working well untill yesterday when I tried to download something from ovi store. It asked if I wanted to install the newest version of the store which I tried to do but it keeps saying 'file corrupted' and cancels the installation. This me

  • Reg: personalinformation workset of ess

    hi all i am  working with personal information work set of ess role .Here my requirement is when i select bank information subfolder and open it we will get a page with payee and bank name but here along with these two fields i want bank account numb

  • Problemas con el licenciemiento del UC560

    INICIALMETE TENIA 22 LICENCIAS PARA LAS EXTENSIONES, ADQUIRI 5 LICENCIAS DE 8 EXTENSIONES CADA UNA, AL MOMENTO DE ACTIVARLAS, ME GENERO UN ARCHIVO  **.lic,     DESPUES DE ESTO APLIQUE EL COMANDO LICENSE INSTALL  PERO AHORA SOLO TENGO 40 LICENCIAS  Y