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.
111 lines
4.2 KiB
111 lines
4.2 KiB
## |
|
## strider.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_strider 1.9.6 |
|
%define V_strider_dist 1.9.6 |
|
%define V_strider_snap 20170903 |
|
|
|
# package information |
|
Name: strider |
|
Summary: Continuous Deployment Server |
|
URL: http://strider-cd.github.io/ |
|
Vendor: Strider Project |
|
Packager: OpenPKG Project |
|
Distribution: OpenPKG Community |
|
Class: EVAL |
|
Group: Web |
|
License: BSD |
|
Version: %{V_strider} |
|
Release: 20170903 |
|
|
|
# list of sources |
|
Source0: http://download.openpkg.org/components/versioned/strider/strider-%{V_strider}-%{V_strider_snap}.tar.xz |
|
Source1: strider.sh |
|
Source2: strider.cf |
|
|
|
# build information |
|
BuildPreReq: OpenPKG, openpkg >= 20160101, node-openpkg |
|
PreReq: OpenPKG, openpkg >= 20160101, node |
|
|
|
%description |
|
Strider is an Open Source Continuous Deployment / Continuous |
|
Integration platform. Strider is extremely customizable through |
|
plugins. Plugins can do the following: Add hooks to perform |
|
arbitrary actions during build; Modify the database schema to add |
|
custom fields; Register their own HTTP routes; Subscribe to and emit |
|
socket events; Create or modify user interfaces within Strider. |
|
|
|
%track |
|
prog strider = { |
|
version = %{version} |
|
url = https://github.com/strider/strider/releases |
|
regex = v(\d+\.\d+\.\d+) |
|
} |
|
|
|
%prep |
|
%setup -q -c |
|
|
|
%build |
|
# remove unnecessary files |
|
%{l_prefix}/bin/node-openpkg squeeze |
|
|
|
# remove problematic files |
|
rm -f "./node_modules/strider/_docpress/guides/notifications-slack/Bildschirmfoto 2015-05-02 um 10.45.23.png" |
|
rm -f "./node_modules/strider/_docpress/guides/notifications-slack/Bildschirmfoto 2015-05-02 um 10.40.51.png" |
|
rm -f "./node_modules/strider/_docpress/guides/notifications-slack/Bildschirmfoto 2015-05-02 um 10.44.47.png" |
|
rm -f "./node_modules/strider/_docpress/guides/strider-github/Bildschirmfoto 2015-04-09 um 16.02.35.png" |
|
rm -f "./node_modules/strider/_docpress/guides/strider project email notifications settings.png" |
|
|
|
%install |
|
# create installation hierarchy |
|
%{l_shtool} mkdir -f -p -m 755 \ |
|
$RPM_BUILD_ROOT%{l_prefix}/bin \ |
|
$RPM_BUILD_ROOT%{l_prefix}/etc/strider \ |
|
$RPM_BUILD_ROOT%{l_prefix}/lib/strider \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/strider/log \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/strider/run \ |
|
$RPM_BUILD_ROOT%{l_prefix}/var/strider/repo |
|
|
|
# install program and all of its modules |
|
%{l_prefix}/bin/node-openpkg install \ |
|
%{l_prefix}/lib/strider/ |
|
|
|
# install executable wrapper |
|
%{l_shtool} install -c -m 755 %{l_value -s -a} \ |
|
%{SOURCE strider.sh} $RPM_BUILD_ROOT%{l_prefix}/bin/strider |
|
|
|
# install default configuration |
|
%{l_shtool} install -c -m 644 %{l_value -s -a} \ |
|
%{SOURCE strider.cf} $RPM_BUILD_ROOT%{l_prefix}/etc/strider/ |
|
|
|
# determine installation files |
|
%{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT \ |
|
%{l_files_std} \ |
|
'%config %{l_prefix}/etc/strider/*' \ |
|
'%attr(-,%{l_rusr},%{l_rgrp}) %{l_prefix}/var/strider/*' |
|
|
|
%files -f files |
|
|
|
%clean |
|
|
|
|