aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2016-08-25 07:52:52 +0000
committerFrancesco Colista <fcolista@alpinelinux.org>2016-08-25 07:55:48 +0000
commitbe96b6bf8a3c73b9972a3a5bedf15b303ac05d93 (patch)
tree8ba945b5d77a348821f7599de76d4a802368bef3 /testing
parent3f23a4137b928c5ea363afd39af52af49eacb5ce (diff)
downloadaports-be96b6bf8a3c73b9972a3a5bedf15b303ac05d93.tar.bz2
aports-be96b6bf8a3c73b9972a3a5bedf15b303ac05d93.tar.xz
community/cachefilesd: moved from testing, upgrade to 0.10.9
Diffstat (limited to 'testing')
-rw-r--r--testing/cachefilesd/APKBUILD47
-rw-r--r--testing/cachefilesd/cachefilesd.initd53
2 files changed, 0 insertions, 100 deletions
diff --git a/testing/cachefilesd/APKBUILD b/testing/cachefilesd/APKBUILD
deleted file mode 100644
index c9d081fe9c..0000000000
--- a/testing/cachefilesd/APKBUILD
+++ /dev/null
@@ -1,47 +0,0 @@
-# Contributor: Francesco Colista <fcolista@alpinelinux.org>
-# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
-pkgname=cachefilesd
-pkgver=0.10
-pkgrel=0
-pkgdesc="Userspace daemon acting as a backend for FS-Cache"
-url="http://people.redhat.com/~dhowells/fscache/"
-arch="all"
-license="GPL"
-depends="attr"
-depends_dev=""
-makedepends="$depends_dev rpm"
-install=""
-subpackages="$pkgname-doc"
-source="http://people.redhat.com/~dhowells/cachefs/$pkgname-$pkgver.tar
- $pkgname.initd"
-
-_builddir="$srcdir"/$pkgname-$pkgver
-prepare() {
- local i
- cd "$_builddir"
- for i in $source; do
- case $i in
- *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
- esac
- done
-}
-
-build() {
- cd "$_builddir"
- sed -i "s#/sbin/#/usr/bin/#g" cachefilesd.{c,service}
- make CFLAGS="$CFLAGS"
-}
-
-package() {
- cd "$_builddir"
- make DESTDIR="$pkgdir" SBINDIR=/usr/bin install
- mkdir -p "$pkgdir"/var/cache/fscache
- install -D -m 755 "$srcdir/$pkgname.initd" "$pkgdir/etc/init.d/$pkgname"
-}
-
-md5sums="ba27ed4b5e8165c46175501bf703ac08 cachefilesd-0.10.tar
-169c25fecb2c64e531e00daa90fb24ba cachefilesd.initd"
-sha256sums="ec1c2311aeeeb9246549d7efdc6ad464d3eda768d1883a22ecf40c2ea2354fd7 cachefilesd-0.10.tar
-cb4e68f31cd97c07850634fefa23f4169dc937c6a8864f507e90ac183b640213 cachefilesd.initd"
-sha512sums="2988f9ba7ed5dcefee689801fa6ba0d966fb98560aa33ce67c5f182e14505f0c7350f70b81d5969009c121c20caa59ca86993d9fe661ef251f18f47725710522 cachefilesd-0.10.tar
-854b66470ace24caf24e979de3c1c12a426972bc745823b3a0f47ac80811ac5da4fa6a249e65386acdec2e7561178bb1d2c4b301a2178458f10496bb8eac5b2f cachefilesd.initd"
diff --git a/testing/cachefilesd/cachefilesd.initd b/testing/cachefilesd/cachefilesd.initd
deleted file mode 100644
index 589faa7d57..0000000000
--- a/testing/cachefilesd/cachefilesd.initd
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/cachefilesd/files/cachefilesd.init,v 1.2 2010/09/20 08:45:22 jlec Exp $
-
-depend() {
- need localmount
- use logger
- before nfsmount
-}
-
-checkxattr() {
- local testpath testfile ret
- testpath=$(awk '/^[[:space:]]*dir/ {print $2}' /etc/cachefilesd.conf)
- testfile="${testpath}/.tmp-xattr-test.cachefilesd"
- touch "${testfile}"
- # creates a file in the testpath and tries to set an attribute on it to check
- # if the support is available
- attr -s test -V xattr "${testfile}" 2>&1 > /dev/null
- ret=$?
- rm -f "${testfile}"
- [ ${ret} -ne 0 ] && eerror "xattr support missing on the ${testpath} filesystem"
- return ${ret}
-}
-
-start() {
- ebegin "Starting cachefilesd"
- checkxattr || return $?
- # check if the cachefiles modules is loaded (or builtin)
- if [ ! -c /dev/cachefiles ] ; then
- local ret
- einfo "/dev/cachefiles doesn't exist, trying to modprobe cachefiles"
- modprobe cachefiles
- ret=$?
- if [ $ret -ne 0 ] ; then
- eerror "cachefiles modules cannot be loaded so cachefilesd "
- eerror "cannot be started, aborting. Did you build fscache in your "
- eerror "kernel? Note that you need a 2.6.30 or better kernel"
- return $ret
- fi
- fi
- start-stop-daemon --start --pidfile /var/run/cachefilesd.pid --exec /usr/bin/cachefilesd -- ${OPTIONS}
- eend $? "Failed to start cachefilesd. Check the system log to see the error"
-
-}
-
-stop() {
- ebegin "Stopping cachefilesd"
- start-stop-daemon --stop --exec /usr/bin/cachefilesd --pidfile /var/run/cachefilesd.pid
- eend $? "Failed to stop cachefilesd"
-}
-
-