You are not logged in.
I just enabled the unstable repo on my Arch64 box and tried to install gimp-devel. It tried to remove gimp, as expected, but it then wanted to install gimpshop...not expected.
I also got the PKGBUILD from ABS and it looks fine.
Anyone else get this?
~B
Offline
There was an error when gimp-devel was added to the repo (i686 doesn't have this problem). When the community repo is commented out, I get a
$ sudo pacman -S gimp-devel
error: 'gimp-devel': not found in sync db
It tries to install gimpshop because it has gimp-devel in the provides array. I'll fix it tomorrow.
Offline
Still getting the same problem with freshly synced repos.
Offline
It works here. What mirror are you using? Can you post your pacman.conf?
Offline
Pretty standard pacman.conf with extra, community, and unstable enabled.
#
# /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
IgnorePkg = kernel26 ardour flac
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
HoldPkg = pacman glibc
#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/x86_64
[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
Offline
To enable the unstable repo, you also need to remove the # in front of [unstable] to have a section like this in pacman.conf
[unstable]
# Add your preferred servers here, they will be used first
Include = /etc/pacman.d/unstable
After fixing your pacman.conf, run
# pacman -Sy gimp-devel
to get the unstable db and install gimp-devel.
Offline
ahh...missed that. My bad...
Offline