aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorThomas Liske <thomas@fiasko-nw.net>2020-04-07 23:22:42 +0200
committerTBK <tbk@jjtc.eu>2020-04-08 10:36:47 +0000
commit0c9c03a355345d87bc5d26ff0d1c75aee181e47a (patch)
treead24dbee214cc0874ed415eda24848681fe11853 /testing
parentea2bb75d3208ad4ca85fabc2a1872f0b1044d3f2 (diff)
downloadaports-0c9c03a355345d87bc5d26ff0d1c75aee181e47a.tar.bz2
aports-0c9c03a355345d87bc5d26ff0d1c75aee181e47a.tar.xz
community/dpns: move from testing
Diffstat (limited to 'testing')
-rw-r--r--testing/dpns/APKBUILD22
-rwxr-xr-xtesting/dpns/dpns.initd13
2 files changed, 0 insertions, 35 deletions
diff --git a/testing/dpns/APKBUILD b/testing/dpns/APKBUILD
deleted file mode 100644
index 602e2a6b87..0000000000
--- a/testing/dpns/APKBUILD
+++ /dev/null
@@ -1,22 +0,0 @@
-# Maintainer: Thomas Liske <thomas@fiasko-nw.net>
-pkgname=dpns
-pkgver=0.4
-pkgrel=0
-pkgdesc="docker pull & save"
-url="https://github.com/liske/dpns"
-arch="noarch"
-license="GPL-2.0-or-later"
-depends="bash docker docker-compose"
-subpackages="$pkgname-openrc"
-source="$pkgname-$pkgver.tar.gz::https://github.com/liske/dpns/archive/$pkgver.tar.gz
- dpns.initd
- "
-options="!check" # only three small shell scripts w/o testing capability
-
-package() {
- make DESTDIR="$pkgdir" install
- install -Dm755 "$srcdir"/dpns.initd "$pkgdir"/etc/init.d/dpns
-}
-
-sha512sums="a86b228f33a699cb47fb2bdc3090272add394f2288bf7b6ac4ef3be99d49517bcafc8d1124d0743e0108419de0206161af69a02e5eeb518da0f34d221e2be2c7 dpns-0.4.tar.gz
-baa68b6ffd6d452a72230904636cb0a230d30313379196b925e8acaab089ffb50598ba1cd8d416699b4f93caedfd5f2bba17c6aa2a2b6cf2b1c983b784d7b1c3 dpns.initd"
diff --git a/testing/dpns/dpns.initd b/testing/dpns/dpns.initd
deleted file mode 100755
index cdd6b1156a..0000000000
--- a/testing/dpns/dpns.initd
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/sbin/openrc-run
-
-description="Docker Pull & Save"
-
-depend() {
- need docker localmount net
-}
-
-start() {
- ebegin "Loading docker images"
- dpns-run
- eend $?
-}