In May a user brought up that the packages of Transmission have been out of date for some time and submitted a new PKGBUILD which concluded in the packages being updated. But since then the packages haven't been updated. So once again these packages have been out of date for some time now. And again updating the version number and md5sums proves to be sufficient: # $Id$ # Maintainer: Alexander Fehr <pizzapunk gmail com> pkgname=transmission-gtk pkgver=1.72 pkgrel=1 pkgdesc="Fast, easy, and free BitTorrent client (GTK+ GUI)" arch=('i686' 'x86_64') url="http://www.transmissionbt.com/" license=('MIT') depends=('curl' 'libnotify' 'desktop-file-utils' 'hicolor-icon-theme') makedepends=('intltool') optdepends=('notification-daemon: Desktop notification support') replaces=('transmission') install=transmission-gtk.install source=(http://mirrors.m0k.org/transmission/files/transmission-$pkgver.tar.bz2) md5sums=('4ebbb9d4c27a019f5aced926818be4fa') build() { cd "$srcdir/transmission-$pkgver" ./configure --prefix=/usr --disable-wx --disable-cli --disable-daemon || return 1 make || return 1 make DESTDIR="$pkgdir" install || return 1 # Remove web client rm -rf "$pkgdir/usr/share/transmission" || return 1 install -D -m644 COPYING "$pkgdir/usr/share/licenses/transmission-gtk/COPYING" || return 1 } # $Id$ # Maintainer: Alexander Fehr <pizzapunk gmail com> pkgname=transmission-cli pkgver=1.72 pkgrel=1 pkgdesc="Fast, easy, and free BitTorrent client (CLI tools, daemon and web client)" arch=('i686' 'x86_64') url="http://www.transmissionbt.com/" license=('MIT') depends=('curl') makedepends=('intltool') replaces=('transmission') backup=('etc/conf.d/transmissiond') install=transmission-cli.install source=(http://mirrors.m0k.org/transmission/files/transmission-$pkgver.tar.bz2 transmissiond transmissiond.conf) md5sums=('4ebbb9d4c27a019f5aced926818be4fa' 'e2326d412e25b4449ff663a5d4015e1a' '7b019a710493ec4f8b54a1f528e1981d') build() { cd "$srcdir/transmission-$pkgver" ./configure --prefix=/usr --disable-gtk --disable-wx || return 1 make || return 1 make DESTDIR="$pkgdir" install || return 1 install -D -m755 "$srcdir/transmissiond" "$pkgdir/etc/rc.d/transmissiond" || return 1 install -D -m644 "$srcdir/transmissiond.conf" "$pkgdir/etc/conf.d/transmissiond" || return 1 install -D -m644 COPYING "$pkgdir/usr/share/licenses/transmission-cli/COPYING" || return 1 } Since an even longer time the rubyripper package hasn't been updated. Therefore I updated the version number and md5sum and additionally removed the oggenc patch since this has been fixed according to the developer: # $Id: PKGBUILD,v 1.6 2008/12/12 00:13:21 pizzapunk Exp $ # Maintainer: Alexander Fehr <pizzapunk gmail com> pkgname=rubyripper pkgver=0.5.5 pkgrel=1 pkgdesc="Secure audiodisc ripper" arch=('i686' 'x86_64') url="http://code.google.com/p/rubyripper/" license=('GPL3') depends=('ruby' 'cdparanoia' 'gtk2' 'hicolor-icon-theme') makedepends=('ruby-gettext') optdepends=('ruby-gettext: Internationalization support' 'ruby-gtk2: GTK+ GUI' 'cd-discid: Freedb support' 'eject: Eject support' 'lame: MP3 encoding support' 'vorbis-tools: Ogg Vorbis encoding support' 'flac: FLAC encoding support' 'wavegain: WAV ReplayGain support' 'mp3gain: MP3 ReplayGain support' 'vorbisgain: Ogg Vorbis ReplayGain support' 'normalize: Normalization support') install=rubyripper.install source=(http://rubyripper.googlecode.com/files/rubyripper-$pkgver.tar.bz2) md5sums=('45d5d85d2b528538b9d50243360f88cd') build() { cd "$srcdir/rubyripper-$pkgver" ./configure --prefix=/usr --enable-gtk2 --enable-cli --enable-lang-all || return 1 make DESTDIR="$pkgdir" install || return 1 }