summaryrefslogtreecommitdiff
path: root/community/glusterfs
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/glusterfs
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/glusterfs')
-rw-r--r--community/glusterfs/PKGBUILD62
-rw-r--r--community/glusterfs/glusterd.service10
2 files changed, 0 insertions, 72 deletions
diff --git a/community/glusterfs/PKGBUILD b/community/glusterfs/PKGBUILD
deleted file mode 100644
index 71e6e5072..000000000
--- a/community/glusterfs/PKGBUILD
+++ /dev/null
@@ -1,62 +0,0 @@
-# $Id: PKGBUILD 94386 2013-07-22 14:09:30Z spupykin $
-# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
-# Contributors:
-# Andrei Antoukh - niwi@niwi.be - http://www.niwi.be
-# henning mueller <henning@orgizm.net>
-
-pkgname=glusterfs
-pkgver=3.4.0
-_basever=`echo $pkgver | cut -f1-2 -d.`
-pkgrel=1
-pkgdesc='Is a cluster file-system capable of scaling to several peta-bytes.'
-arch=(i686 x86_64)
-url='http://www.gluster.org/'
-license=(GPL2 LGPL3)
-depends=(fuse python2 libxml2)
-makedepends=(flex bison)
-options=(!libtool)
-source=(http://download.gluster.org/pub/gluster/glusterfs/$_basever/$pkgver/glusterfs-$pkgver.tar.gz
- glusterd.service)
-sha256sums=('2a2a43fb52a7f6b8b00331acc5ea2c86a067a2f2901cca886a2348e919c0cbd8'
- '18e6c3bcca396a4524d866977d3fa86135377d7bf5d28a130e697ae2e85f043b')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
-
- ./configure \
- --prefix=/usr \
- --sbindir=/usr/bin \
- --with-mountutildir=/usr/bin \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/share/man \
- --libexecdir=/usr/lib/$pkgname \
- PYTHON=python2
-
- make
-
- sed -i s:env\ python:env\ python2: \
- xlators/features/marker/utils/syncdaemon/gsyncd.py
- sed -i s:/usr/bin/python:/usr/bin/python2: \
- contrib/ipaddr-py/ipaddr.py
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
-
- make -j1 DESTDIR=$pkgdir install
-
- install -D -m 644 \
- $srcdir/$pkgname-$pkgver/{README,INSTALL,COPYING*} \
- $pkgdir/usr/share/doc/glusterfs/
-
- install -D -m 644 \
- $srcdir/glusterd.service \
- $pkgdir/usr/lib/systemd/system/glusterd.service
-
- cp -rf \
- $srcdir/$pkgname-$pkgver/doc/* \
- $pkgdir/usr/share/doc/glusterfs/
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/glusterfs/glusterd.service b/community/glusterfs/glusterd.service
deleted file mode 100644
index b1dd5c18d..000000000
--- a/community/glusterfs/glusterd.service
+++ /dev/null
@@ -1,10 +0,0 @@
-[Unit]
-Description=Distributed filesystem daemon
-After=network.target
-
-[Service]
-Type=forking
-ExecStart=/usr/bin/glusterd
-
-[Install]
-WantedBy=multi-user.target