Arch Linux

Please read this before reporting a bug:
https://wiki.archlinux.org/title/Bug_reporting_guidelines

Do NOT report bugs when a package is just outdated, or it is in the AUR. Use the 'flag out of date' link on the package page, or the Mailing List.

REPEAT: Do NOT report bugs for outdated packages!
Tasklist

FS#5051 - mutt not installable

Attached to Project: Arch Linux
Opened by Daniel (danst0) - Saturday, 15 July 2006, 18:21 GMT
Last edited by Simo Leone (neotuli) - Sunday, 13 August 2006, 01:07 GMT
Task Type Bug Report
Category Backend
Status Closed
Assigned To No-one
Architecture All
Severity Medium
Priority Normal
Reported Version 1.2.9
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

This is the error

[danst@laptop]$ sudo pacman -S mutt

checking package integrity... done.
loading package data... done.
checking for file conflicts...
error: the following file conflicts were found:
mutt: /etc/mime.types: exists in filesystem
errors occurred, no packages were upgraded.


Thank you,

Daniel
This task depends upon

Closed by  Simo Leone (neotuli)
Sunday, 15 October 2006, 21:06 GMT
Reason for closing:  None
Additional comments about closing:  mime.types isnt actually owned by any package, so it's a file that must have been generated or added by you (possibly it was generated by one of the java packages, though not owned by them as far as pacman's concerned)

This is one issue we're trying to address, files that many packages need to add a little bit of data to. There's no standard way to handle this right now :-/
Comment by Daniel (danst0) - Saturday, 15 July 2006, 18:29 GMT
With this PKGBUILD it works, but i dont know if it'll fail sometime..
# $Id: PKGBUILD,v 1.23 2006/05/29 10:08:36 tpowa Exp $
# Maintainer: dorphell <dorphell@archlinux.org>
pkgname=mutt
pkgver=1.5.10
pkgrel=2
pkgdesc="A small but very powerful text-based mail client"
arch=(x86_64)
url="http://www.mutt.org/"
depends=('ncurses' 'openssl')
makedepends=('gnupg')
source=(ftp://ftp.mutt.org/mutt/devel/$pkgname-${pkgver}i.tar.gz)
url="http://www.mutt.org/"
md5sums=('59400d12c6b5b3d122531000e53d1914')

build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc \
--enable-pop --enable-imap --with-ssl --enable-pgp --without-idn
make || return 1
make DESTDIR=$startdir/pkg install
rm -f $startdir/pkg/usr/bin/{flea,muttbug}
rm -f $startdir/pkg/etc/mime.types
}

Loading...