Package Details: rkt-git 0.16.0.r92.gfedaf31-1

Git Clone URL: https://aur.archlinux.org/rkt-git.git (read-only, click to copy)
Package Base: rkt-git
Description: App container runtime
Upstream URL: https://github.com/coreos/rkt
Licenses: Apache
Conflicts: rkt, rocket
Provides: rkt
Replaces: rkt, rocket
Submitter: yuvadm
Maintainer: yuvadm
Last Packager: yuvadm
Votes: 2
Popularity: 0.000000
First Submitted: 2015-04-03 15:12 (UTC)
Last Updated: 2016-02-01 22:46 (UTC)

Dependencies (7)

Required by (0)

Sources (1)

Latest Comments

bins commented on 2015-10-30 09:09 (UTC)

also needs 'bc' in 'makedepends': MANIFEST coreos ACTOOL /tmp/yaourt-tmp-binet/aur-rkt-git/bin/stage1-coreos.aci UNSQUASHFS /tmp/yaourt-tmp-binet/aur-rkt-git/tmp/coreos-common/usr.squashfs => /tmp/yaourt-tmp-binet/aur-rkt-git/tmp/usr_from_kvm/cbu/rootfs/usr WGET https://www.kernel.org/pub/linux/kernel/v4.x/linux-4.1.3.tar.xz => /tmp/yaourt-tmp-binet/aur-rkt-git/tmp/usr_from_kvm/kernel/linux-4.1.3.tar.xz UNTAR /tmp/yaourt-tmp-binet/aur-rkt-git/tmp/usr_from_kvm/kernel/linux-4.1.3.tar.xz => /tmp/yaourt-tmp-binet/aur-rkt-git/tmp/usr_from_kvm/kernel BUILD EXT bzImage /bin/sh: bc: command not found make[4]: *** [kernel/time/timeconst.h] Error 127

<deleted-account> commented on 2015-08-10 08:14 (UTC)

rkt requires wget for building: checking for wget... no configure: error: *** wget not found Please add to makedepends

aperez commented on 2015-07-16 16:33 (UTC)

The build system has changed and the PKGBUILD does not work anymore. For an updated PKGBUILD use: https://github.com/aperezdc/archlinux-packages/blob/rkt-fixes/aur/rkt-git/PKGBUILD @yuvadm: I have also made a pull request in GitHub, it would be great if you could upload the PKGBUILD with the changes.

kenny_r commented on 2015-04-03 13:37 (UTC)

Project was renamed to "rkt" upstream: https://coreos.com/blog/announcing-rkt-0.5/

yuvadm commented on 2015-03-12 09:38 (UTC)

@Boohbah - please update this package to install stage1.aci

kenny_r commented on 2015-02-19 12:24 (UTC)

Gah, sorry, made a mistake in my last comment, stage1.aci doesn't need 755 permissions, 644 is fine. So: install -Dm644 bin/stage1.aci "$pkgdir/usr/lib/rkt/stage1.aci"

kenny_r commented on 2015-02-13 13:10 (UTC)

Update: The Rocket build script now allows you to set the default location of the stage1.aci file. Use the following build() and package() functions in PKGBUILD. build() { cd "$pkgname" RKT_STAGE1_IMAGE=/usr/lib/rkt/stage1.aci ./build } package() { cd "$pkgname" install -Dm755 bin/rkt "$pkgdir/usr/bin/rkt" install -Dm755 bin/stage1.aci "$pkgdir/usr/lib/rkt/stage1.aci" }

kenny_r commented on 2015-02-11 19:28 (UTC)

The package() function in PKGBUILD needs an extra line in order for the rkt run command to work: install -Dm644 bin/stage1.aci "$pkgdir/usr/bin/stage1.aci" See: https://github.com/coreos/rocket/issues/457#issuecomment-73936693