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.
243 lines
8.6 KiB
243 lines
8.6 KiB
## |
|
## gnats.spec -- OpenPKG RPM Package Specification |
|
## Copyright (c) 2000-2022 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 version |
|
%define V_gnats 4.1.0 |
|
%define V_gnatsweb 4.00 |
|
%define V_gnatsperl 0.06 |
|
|
|
# package information |
|
Name: gnats |
|
Summary: GNU Bug Tracking System |
|
URL: http://www.gnu.org/software/gnats/ |
|
Vendor: GNU |
|
Packager: OpenPKG Project |
|
Distribution: OpenPKG Community |
|
Class: EVAL |
|
Group: Ticketing |
|
License: GPL |
|
Version: %{V_gnats} |
|
Release: 20080101 |
|
|
|
# package options |
|
%option with_fsl yes |
|
|
|
# list of sources |
|
Source0: http://ftp.gnu.org/gnu/gnats/gnats-%{V_gnats}.tar.gz |
|
Source1: http://ftp.gnu.org/gnu/gnatsweb/gnatsweb-%{V_gnatsweb}.tar.gz |
|
Source2: http://download.sourceforge.net/gnatsperl/Net-Gnats-%{V_gnatsperl}.tgz |
|
Source3: gnatsdd.tar.gz |
|
Source4: rc.gnats |
|
Source5: fsl.gnats |
|
Patch0: gnats.patch |
|
|
|
# build information |
|
BuildPreReq: OpenPKG, openpkg >= 20160101, make |
|
PreReq: OpenPKG, openpkg >= 20160101, MTA |
|
%if "%{with_fsl}" == "yes" |
|
BuildPreReq: fsl |
|
PreReq: fsl |
|
%endif |
|
BuildPreReq: perl, perl-openpkg |
|
PreReq: perl |
|
|
|
%description |
|
GNU GNATS is a set of tools for tracking bugs reported by users to a |
|
central site. It allows problem report management and communication |
|
with users via various means. GNATS stores all the information about |
|
problem reports in its databases and provides tools for querying, |
|
editing, and maintenance of the databases. |
|
|
|
%track |
|
prog gnats = { |
|
version = %{V_gnats} |
|
url = http://ftp.gnu.org/gnu/gnats/ |
|
regex = gnats-(__VER__)\.tar\.gz |
|
} |
|
prog gnats:gnatsweb = { |
|
version = %{V_gnatsweb} |
|
url = http://ftp.gnu.org/gnu/gnatsweb/ |
|
regex = gnatsweb-(__VER__)\.tar\.gz |
|
} |
|
prog gnats:gnatsperl = { |
|
version = %{V_gnatsperl} |
|
url = http://sourceforge.net/projects/gnatsperl/files/ |
|
regex = Net-Gnats-(__VER__)\.tgz |
|
} |
|
|
|
%prep |
|
%setup -q -c |
|
%setup -q -D -T -a1 |
|
%setup -q -D -T -a2 |
|
%setup -q -D -T -a3 |
|
%patch -p0 |
|
|
|
%build |
|
# build toolkit |
|
( cd gnats-%{V_gnats} |
|
CC="%{l_cc}" \ |
|
CFLAGS="%{l_cflags -O}" \ |
|
CPPFLAGS="%{l_cppflags}" \ |
|
LDFLAGS="%{l_ldflags} %{l_fsl_ldflags}" \ |
|
LIBS="%{l_fsl_libs}" \ |
|
./configure \ |
|
--prefix=%{l_prefix} \ |
|
--sharedstatedir=%{l_prefix}/var/gnats/db \ |
|
--with-lispdir=%{l_prefix}/share/gnats \ |
|
--with-gnats-default-db=%{l_prefix}/var/gnats/db \ |
|
--with-gnats-user=%{l_rusr} |
|
%{l_make} %{l_mflags -O} |
|
) || exit $? |
|
|
|
# build stand-alone daemon wrapper |
|
( cd gnatsdd |
|
CC="%{l_cc}" \ |
|
CFLAGS="%{l_cflags -O}" \ |
|
./configure |
|
%{l_make} %{l_mflags} |
|
) || exit $? |
|
|
|
# build Perl API |
|
%{l_prefix}/bin/perl-openpkg prepare |
|
%{l_prefix}/bin/perl-openpkg -d Net-Gnats-%{V_gnatsperl} configure build |
|
|
|
%install |
|
# install toolkit |
|
( cd gnats-%{V_gnats} |
|
%{l_make} %{l_mflags} install DESTDIR=$RPM_BUILD_ROOT |
|
) || exit $? |
|
|
|
# install stand-alone daemon wrapper |
|
%{l_shtool} install -c -s -m 755 \ |
|
gnatsdd/gnatsdd $RPM_BUILD_ROOT%{l_prefix}/libexec/gnats/ |
|
|
|
# install web user interface |
|
%{l_shtool} mkdir -f -p -m 755 \ |
|
$RPM_BUILD_ROOT%{l_prefix}/cgi |
|
%{l_shtool} install -c -m 755 \ |
|
-e 's;/usr/bin/perl;%{l_prefix}/bin/perl;' \ |
|
-e 's;\./gnats-site\.pl;%{l_prefix}/etc/gnats/gnatsweb.conf;g' \ |
|
-e 's;\./gnatsweb\.html;%{l_prefix}/share/gnats/gnatsweb.html;g' \ |
|
gnatsweb-%{V_gnatsweb}/gnatsweb.pl $RPM_BUILD_ROOT%{l_prefix}/cgi/gnatsweb |
|
%{l_shtool} install -c -m 644 \ |
|
gnatsweb-%{V_gnatsweb}/gnatsweb.html $RPM_BUILD_ROOT%{l_prefix}/share/gnats/ |
|
%{l_shtool} install -c -m 644 \ |
|
gnatsweb-%{V_gnatsweb}/gnatsweb-site.pl $RPM_BUILD_ROOT%{l_prefix}/etc/gnats/gnatsweb.conf |
|
|
|
# install Perl API |
|
%{l_prefix}/bin/perl-openpkg -d Net-Gnats-%{V_gnatsperl} install |
|
%{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup |
|
|
|
# strip down and post-adjust installation |
|
strip $RPM_BUILD_ROOT%{l_prefix}/bin/* >/dev/null 2>&1 || true |
|
rm -f $RPM_BUILD_ROOT%{l_prefix}/info/dir |
|
|
|
# adjust default-configuration |
|
%{l_shtool} subst \ |
|
-e 's;^#\(DEFAULT_ORGANIZATION\)=.*;\1="Example Corporation";' \ |
|
-e 's;^#\(GNATS_SITE\)=.*;\1="gnats.example.com";' \ |
|
-e 's;^#\(SUBMITTER\)=.*;\1="gnats-example";' \ |
|
-e 's;^#\(MAILPROG\)=.*;#\1="%{l_prefix}/sbin/sendmail -oi -t";' \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/gnats/send-pr.conf |
|
|
|
# install run-command script |
|
%{l_shtool} mkdir -f -p -m 755 \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/rc.d |
|
%{l_shtool} install -c -m 755 %{l_value -s -a} \ |
|
%{SOURCE rc.gnats} $RPM_BUILD_ROOT%{l_prefix}/etc/rc.d/ |
|
|
|
# install OSSP fsl configuration |
|
%{l_shtool} mkdir -f -p -m 755 \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/fsl |
|
%{l_shtool} install -c -m 644 %{l_value -s -a} \ |
|
%{SOURCE fsl.gnats} $RPM_BUILD_ROOT%{l_prefix}/etc/fsl/ |
|
|
|
# create run-time directory |
|
%{l_shtool} mkdir -f -p -m 755 \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/gnats |
|
|
|
# determine installation files |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ |
|
%{l_files_std} `cat perl-openpkg-files` \ |
|
'%config %{l_prefix}/etc/fsl/fsl.gnats' \ |
|
'%config %{l_prefix}/etc/gnats/*' \ |
|
'%attr(600,%{l_musr},%{l_mgrp}) %{l_prefix}/etc/gnats/gnatsd.host_access' \ |
|
'%attr(4555,%{l_rusr},%{l_mgrp}) %{l_prefix}/libexec/gnats/queue-pr' \ |
|
'%attr(4555,%{l_rusr},%{l_mgrp}) %{l_prefix}/libexec/gnats/pr-edit' \ |
|
'%attr(4555,%{l_rusr},%{l_mgrp}) %{l_prefix}/libexec/gnats/gen-index' \ |
|
'%attr(-,%{l_rusr},%{l_rgrp}) %{l_prefix}/var/gnats' |
|
|
|
%files -f files |
|
|
|
%clean |
|
|
|
%post |
|
if [ $1 -eq 1 ]; then |
|
# initially, create database |
|
su - %{l_rusr} -c \ |
|
"$RPM_INSTALL_PREFIX/libexec/gnats/mkdb default" |
|
|
|
# initially, activate in MTA configuration |
|
aliases_file=`$RPM_INSTALL_PREFIX/bin/openpkg rc --query MTA_aliases_file` |
|
aliases_update=`$RPM_INSTALL_PREFIX/bin/openpkg rc --query MTA_aliases_update` |
|
if [ ".$aliases_file" != . ]; then |
|
( echo "gnats-admin: postmaster" |
|
echo "gnats-queue: \"|$RPM_INSTALL_PREFIX/libexec/gnats/queue-pr -q\"" |
|
echo "gnats-query: \"|$RPM_INSTALL_PREFIX/libexec/gnats/mail-query\"" |
|
echo "gnats: gnats-queue" |
|
echo "send-pr: gnats-queue" |
|
echo "query-pr: gnats-query" |
|
) | %{l_rpmtool} config -a -i "$RPM_INSTALL_PREFIX:gnats" $aliases_file |
|
fi |
|
if [ ".$aliases_update" != . ]; then |
|
eval $aliases_update >/dev/null 2>&1 || true |
|
fi |
|
fi |
|
|
|
if [ $1 -eq 2 ]; then |
|
# after upgrade, restart service |
|
eval `%{l_rc} gnats status 2>/dev/null` |
|
[ ".$gnats_active" = .yes ] && %{l_rc} gnats restart |
|
fi |
|
exit 0 |
|
|
|
%preun |
|
if [ $1 -eq 0 ]; then |
|
# stop perhaps still running server |
|
%{l_rc} gnats stop 2>/dev/null |
|
|
|
# deactivate in MTA configuration |
|
aliases_file=`$RPM_INSTALL_PREFIX/bin/openpkg rc --query MTA_aliases_file` |
|
aliases_update=`$RPM_INSTALL_PREFIX/bin/openpkg rc --query MTA_aliases_update` |
|
if [ ".$aliases_file" != . ]; then |
|
%{l_rpmtool} config -r -i "$RPM_INSTALL_PREFIX:gnats" $aliases_file |
|
fi |
|
if [ ".$aliases_update" != . ]; then |
|
eval $aliases_update >/dev/null 2>&1 || true |
|
fi |
|
|
|
# remove database |
|
rm -rf $RPM_INSTALL_PREFIX/var/gnats/db >/dev/null 2>&1 || true |
|
fi |
|
exit 0 |
|
|
|
|