Date: Tuesday, October 4, 2011 @ 19:59:49 Author: dreisner Revision: 139815
upgpkg: mkinitcpio 0.7.3-1 PKGBUILD related: - remove dependency on 'which' (FS#25994) Dave Reisner (29): mkinitcpio: add --quiet to bsdcpio without -v functions: restore verbose feedback to add_module autodetect: add verbose feedback on autodetect success mkinitcpio: reference -h on failed option parsing install/consolefont: cleanup and refactor keymap/consolefont: source rc.conf properly from $BASEDIR (FS#24685) keymap: simplify unicode detection cleanup and bashify install hooks base: remove superfluous leading / functions: allow ignoring errors on module addition (FS#25096) functions: refactor get_{base,dir}name functions: perform path lookup for binaries if needed functions: specify the delimiter to xargs (FS#25450) ensure local scoping of variables mkinitcpio: simplify setting of SKIPHOOKS mkinitcpio: fix whitespace errors in error messages mkinitcpio: explicitly create $BUILDROOT mkinitcpio: keep going even when a hook isn't found mkinitcpio: insist that /dev and /proc be mounted init: support breaks before and after mounting root init: allow /run to be mounted with exec perms lsinitcpio: disable color when stdout isn't a tty lsinitcpio: follow symlinks only when necessary functions: fix output order in _add_symlink use correct variable to reference compression method init_functions: use constants on LHS of tests (FS#26119) remove duplicate "error" in error message example.preset: update for newer style syntax mkinitcpio: avoid creating savelist in main loop Florian Pritz (2): generate VERSION only for the tarball harden version generation Sebastien Luttringer (1): Add a virtio hook Modified: mkinitcpio/trunk/PKGBUILD ----------+ PKGBUILD | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2011-10-04 23:59:31 UTC (rev 139814) +++ PKGBUILD 2011-10-04 23:59:49 UTC (rev 139815) @@ -1,16 +1,16 @@ # $Id$ +# Maintainer: Dave Reisner <dreis...@archlinux.org> # Maintainer: Thomas Bächler <tho...@archlinux.org> pkgname=mkinitcpio -pkgver=0.7.2 +pkgver=0.7.3 pkgrel=1 pkgdesc="Modular initramfs image creation utility" -arch=(any) +arch=('any') url="http://www.archlinux.org/" license=('GPL') depends=('mkinitcpio-busybox>=1.16.1-2' 'module-init-tools' 'util-linux>=2.19' 'libarchive' 'coreutils' - 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2009.01-2' 'udev>=171-2' 'file' 'gzip' - 'which') + 'bash' 'findutils' 'sed' 'grep' 'filesystem>=2009.01-2' 'udev>=171-2' 'file' 'gzip') optdepends=('xz: Use lzma or xz compression for the initramfs image' 'bzip2: Use bzip2 compression for the initramfs image' 'lzop: Use lzo compression for the initramfs image' @@ -19,9 +19,10 @@ 'klibc-module-init-tools' 'klibc-udev') source=(ftp://ftp.archlinux.org/other/${pkgname}/${pkgname}-${pkgver}.tar.gz) backup=(etc/mkinitcpio.conf) -sha256sums=('b7282c78ef3144f5547a4012f334b0beb575b7108a5f6a006289a1e78aa9823d') +sha256sums=('678b0d29cbcdd266b522e1c056dcbf7002e6819404a2ea8bc958a9e94cd96571') package() { - cd $srcdir/${pkgname}-${pkgver} - make DESTDIR="${pkgdir}" install + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install }