You are not logged in.
Hi,
I made a package the patched-anthy defined pkgrel=101 (anthy-9100h-101).
But pacman is gonig to upgrade my anthy-9100h-101 to repo's anthy-9100h-1 when doing pacman -Syu even pkgrel isn't higher.
Is this error of me or pacman?
This is my PKGBUILD. I applied patches by myself so PKGBUILD is modified just only pkgrel and run makepkg -e.
# $Id: PKGBUILD 28115 2009-02-27 23:59:50Z eric $
# Maintainer: damir <damir@archlinux.org>
pkgname=anthy
pkgver=9100h
_filecode=37536
pkgrel=101
pkgdesc="Hiragana text to Kana Kanji mixed text Japanese input method"
arch=("i686" "x86_64")
url="http://sourceforge.jp/projects/anthy/"
license=('LGPL' 'GPL')
depends=('glibc')
options=('!libtool' 'force')
source=("http://downloads.sourceforge.jp/anthy/${_filecode}/$pkgname-$pkgver.tar.gz")
md5sums=('1f558ff7ed296787b55bb1c6cf131108')
build() {
cd $srcdir/$pkgname-$pkgver
./configure --prefix=/usr --sysconfdir=/etc || return 1
make EMACS=emacs sysconfdir=/etc || return 1
make EMACS=emacs DESTDIR=$pkgdir install || return 1
}This is result of pacman -Qi anthy
$ pacman -Qi anthy
Name : anthy
Version : 9100h-101
URL : http://sourceforge.jp/projects/anthy/
Licenses : LGPL GPL
Groups : None
Provides : None
Depends On : glibc
Optional Deps : None
Required By : kasumi m17n-lib
Conflicts With : None
Replaces : None
Installed Size : 28164.00 K
Packager : MH <top@secret>
Architecture : x86_64
Build Date : 2009年08月16日 15時31分23秒
Install Date : 2009年08月16日 15時31分50秒
Install Reason : Installed as a dependency for another package
Install Script : No
Description : Hiragana text to Kana Kanji mixed text Japanese input methodOffline
pacman is doing that because the package in the repo use the force option. Add
IgnorePkg = anthy
to your pacman.conf to make pacman ignore the package in the repo
Offline
Hmm, why pkgrel is ignored?
Offline
Hmm, why pkgrel is ignored?
Read what Snowman said
pacman is doing that because the package in the repo use the force option.
Offline