You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
145 lines
4.8 KiB
145 lines
4.8 KiB
## |
|
## glusterfs.spec -- OpenPKG RPM Package Specification |
|
## Copyright (c) 2000-2021 OpenPKG Project <http://openpkg.org/> |
|
## |
|
## Permission to use, copy, modify, and distribute this software for |
|
## any purpose with or without fee is hereby granted, provided that |
|
## the above copyright notice and this permission notice appear in all |
|
## copies. |
|
## |
|
## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED |
|
## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
|
## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR |
|
## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
|
## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
|
## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
|
## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
|
## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
|
## SUCH DAMAGE. |
|
## |
|
|
|
# package information |
|
Name: glusterfs |
|
Summary: Cluster Filesystem (in User Space) |
|
URL: http://www.gluster.org/ |
|
Vendor: Red Hat, Inc. |
|
Packager: OpenPKG Project |
|
Distribution: OpenPKG Community |
|
Class: EVAL |
|
Group: Filesystem |
|
License: GPL |
|
Version: 6.5 |
|
Release: 20190813 |
|
|
|
# package options |
|
%option with_fuse yes |
|
|
|
# list of sources |
|
Source0: http://download.gluster.org/pub/gluster/glusterfs/LATEST/glusterfs-%{version}.tar.gz |
|
Source1: rc.glusterfs |
|
Patch0: glusterfs.patch |
|
|
|
# build information |
|
BuildPreReq: OpenPKG, openpkg >= 20160101, gcc, bison, flex, pkgconfig, autoconf, automake, libtool |
|
PreReq: OpenPKG, openpkg >= 20160101 |
|
BuildPreReq: liburcu, libuuid, openssl, argp, readline, ncurses, sqlite, zlib, libexecinfo |
|
PreReq: liburcu, libuuid, openssl, argp, readline, ncurses, sqlite, zlib, libexecinfo |
|
BuildPreReq: python |
|
PreReq: python |
|
|
|
%description |
|
GlusterFS is a scalable network filesystem. Using common |
|
off-the-shelf hardware, you can create large, distributed storage |
|
solutions for media streaming, data analysis, and other data- |
|
and bandwidth-intensive tasks. GlusterFS is free and open source |
|
software. |
|
|
|
%track |
|
prog glusterfs = { |
|
version = %{version} |
|
url = http://download.gluster.org/pub/gluster/glusterfs/LATEST/ |
|
regex = glusterfs-(__VER__)\.tar\.gz |
|
} |
|
|
|
%prep |
|
%setup -q |
|
%patch -p0 |
|
|
|
%build |
|
# configure program |
|
sh autogen.sh |
|
inc="-I`pwd`/libglusterfs/src" |
|
inc="$inc %{l_cppflags e2fs e2fs/uuid .}" |
|
CC="%{l_cc} $inc" \ |
|
CFLAGS="%{l_cflags -O}" \ |
|
CPPFLAGS="$inc" \ |
|
LDFLAGS="%{l_ldflags e2fs .}" \ |
|
LIBS="-largp -lreadline -lncurses -lexecinfo" \ |
|
PYTHON="python" \ |
|
./configure \ |
|
--prefix=%{l_prefix} \ |
|
--mandir=%{l_prefix}/man \ |
|
--sysconfdir=%{l_prefix}/etc \ |
|
--localstatedir=%{l_prefix}/var/glusterfs \ |
|
--datadir=%{l_prefix}/share \ |
|
%if "%{with_fuse}" == "yes" |
|
--enable-fuse-client \ |
|
%else |
|
--disable-fuse-client \ |
|
%endif |
|
--disable-shared \ |
|
--disable-glupy |
|
|
|
# build program |
|
%{l_make} %{l_mflags -O} |
|
|
|
%install |
|
# create directory hierarchy |
|
%{l_shtool} mkdir -f -p -m 755 \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/rc.d \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/glusterfs/run \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/glusterfs/log |
|
|
|
# install program |
|
%{l_make} %{l_mflags} install AM_MAKEFLAGS="DESTDIR=$RPM_BUILD_ROOT" |
|
|
|
# post-adjust installation |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/share/doc |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/lib/glusterfs |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/lib/ocf |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/libexec/ganesha |
|
rm -rf $RPM_BUILD_ROOT%{l_prefix}/etc/ganesha |
|
strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true |
|
|
|
# install run-command script |
|
%{l_shtool} install -c -m 755 %{l_value -s -a} \ |
|
%{SOURCE rc.glusterfs} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/ |
|
|
|
# determine installation files |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ |
|
%{l_files_std} \ |
|
'%config %{l_prefix}/etc/glusterfs/*' \ |
|
'%attr(-,%{l_rusr},%{l_rgrp}) %{l_prefix}/var/glusterfs/*' |
|
|
|
%files -f files |
|
|
|
%clean |
|
|
|
%post |
|
# after upgrade, restart service |
|
[ $1 -eq 2 ] || exit 0 |
|
eval `%{l_rc} glusterfs status 2>/dev/null` |
|
[ ".$glusterfs_active" = .yes ] && %{l_rc} glusterfs restart |
|
exit 0 |
|
|
|
%preun |
|
# before erase, stop service and remove log files |
|
[ $1 -eq 0 ] || exit 0 |
|
%{l_rc} glusterfs stop 2>/dev/null |
|
rm -f $RPM_INSTALL_PREFIX/var/glusterfs/log/* >/dev/null 2>&1 || true |
|
rm -f $RPM_INSTALL_PREFIX/var/glusterfs/run/* >/dev/null 2>&1 || true |
|
exit 0 |
|
|
|
|