summaryrefslogtreecommitdiff
path: root/aur
diff options
context:
space:
mode:
Diffstat (limited to 'aur')
-rw-r--r--aur/rkt/.SRCINFO28
-rw-r--r--aur/rkt/PKGBUILD62
-rw-r--r--aur/rkt/rkt.install16
-rw-r--r--aur/rkt/rkt.sysusers1
4 files changed, 0 insertions, 107 deletions
diff --git a/aur/rkt/.SRCINFO b/aur/rkt/.SRCINFO
deleted file mode 100644
index 46b0f43..0000000
--- a/aur/rkt/.SRCINFO
+++ /dev/null
@@ -1,28 +0,0 @@
-# Generated by mksrcinfo v8
-# Mon Apr 18 20:58:05 UTC 2016
-pkgbase = rkt
- pkgdesc = App container runtime
- pkgver = 1.4.0
- pkgrel = 2
- url = https://github.com/coreos/rkt
- install = rkt.install
- arch = x86_64
- license = apache
- makedepends = cpio
- makedepends = git
- makedepends = go
- makedepends = squashfs-tools
- makedepends = wget
- depends = glibc
- depends = openssl
- depends = zlib
- provides = rkt
- conflicts = rocket
- replaces = rocket
- source = https://github.com/coreos/rkt/archive/v1.4.0.tar.gz
- source = rkt.sysusers
- sha256sums = 1ce98ff74aef3dc2c43025f2b458e6dbfeb6c7f756a313f4ecc2827fc84ce031
- sha256sums = 1ad8d343191be731289577d249a2467fbe5a69949117601e760b459f599d311f
-
-pkgname = rkt
-
diff --git a/aur/rkt/PKGBUILD b/aur/rkt/PKGBUILD
deleted file mode 100644
index 783d782..0000000
--- a/aur/rkt/PKGBUILD
+++ /dev/null
@@ -1,62 +0,0 @@
-# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
-# Contributor: Kenny Rasschaert <kenny dot rasschaert at gmail dot com> PGP-Key: 1F70454121E41419
-# Contributor: Adrián Pérez de Castro <adrian at perezdecastro dor org> PGP-Key: 91C559DBE4C9123B
-# Contributor: Carl George <arch at cgtx dot us> PGP-Key: 4BA2F7E101D9F512
-
-pkgname=rkt
-pkgver=1.4.0
-pkgrel=2
-pkgdesc="App container runtime"
-arch=('x86_64')
-url="https://github.com/coreos/rkt"
-license=(apache)
-depends=('glibc' 'openssl' 'zlib')
-makedepends=('cpio' 'git' 'go' 'squashfs-tools' 'wget')
-provides=('rkt')
-replaces=('rocket')
-conflicts=('rocket')
-source=("https://github.com/coreos/rkt/archive/v${pkgver}.tar.gz"
- "rkt.sysusers")
-sha256sums=('1ce98ff74aef3dc2c43025f2b458e6dbfeb6c7f756a313f4ecc2827fc84ce031'
- '1ad8d343191be731289577d249a2467fbe5a69949117601e760b459f599d311f')
-install="${pkgname}.install"
-
-prepare() {
- cd "${pkgname}-${pkgver}"
- ./autogen.sh
-}
-
-build() {
- cd "${pkgname}-${pkgver}"
- ./configure --prefix=/usr \
- --enable-tpm=auto \
- --with-stage1-flavors=coreos \
- --with-stage1-default-location=/usr/lib/rkt/stage1.aci
- make -s
- make -s bash-completion
- make -s manpages
-}
-
-package() {
- cd "${pkgname}-${pkgver}"
- local unit
- for unit in rkt-gc.{timer,service} rkt-metadata.{socket,service}
- do
- install -Dm644 "dist/init/systemd/${unit}" \
- "${pkgdir}/usr/lib/systemd/system/${unit}"
- done
-
- install -Dm644 "dist/init/systemd/tmpfiles.d/rkt.conf" "${pkgdir}/usr/lib/tmpfiles.d/rkt.conf"
- install -Dm644 "${srcdir}/rkt.sysusers" "${pkgdir}/usr/lib/sysusers.d/rkt.conf"
- install -Dm644 "dist/bash_completion/rkt.bash" "${pkgdir}/usr/share/bash-completion/completions/rkt"
-
- for f in $(ls dist/manpages); do
- install -Dm644 "dist/manpages/${f}" "${pkgdir}/usr/share/man/man1/${f}"
- done
-
- cd "build-${pkgname}-${pkgver}"
- install -Dm755 bin/rkt "$pkgdir/usr/bin/rkt"
- install -Dm644 bin/stage1-coreos.aci "$pkgdir/usr/lib/rkt/stage1.aci"
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/aur/rkt/rkt.install b/aur/rkt/rkt.install
deleted file mode 100644
index b223a9a..0000000
--- a/aur/rkt/rkt.install
+++ /dev/null
@@ -1,16 +0,0 @@
-post_install () {
- # Create group
- systemd-sysusers rkt.conf
- systemd-tmpfiles --create rkt.conf
-}
-
-post_upgrade () {
- post_install "$@"
-}
-
-post_remove () {
- getent group rkt &>/dev/null && groupdel rkt &>/dev/null
- true
-}
-
-# vim:ts=2 sw=2 et ft=sh:
diff --git a/aur/rkt/rkt.sysusers b/aur/rkt/rkt.sysusers
deleted file mode 100644
index 670079c..0000000
--- a/aur/rkt/rkt.sysusers
+++ /dev/null
@@ -1 +0,0 @@
-g rkt - -