2019-01-09 11:39:18 +01:00
|
|
|
#
|
|
|
|
# spec file for package obs-service-kiwi_metainfo_helper
|
|
|
|
#
|
2022-01-14 16:12:10 +01:00
|
|
|
# Copyright (c) 2022 SUSE LLC
|
2019-01-09 11:39:18 +01:00
|
|
|
#
|
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2020-05-04 15:50:36 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2019-01-09 11:39:18 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: obs-service-kiwi_metainfo_helper
|
2022-03-16 10:26:39 +01:00
|
|
|
Version: 0.6
|
2019-01-09 11:39:18 +01:00
|
|
|
Release: 0
|
2020-08-27 09:14:20 +02:00
|
|
|
Summary: Service for substituting various variables in build recipes
|
2019-01-10 09:06:22 +01:00
|
|
|
License: GPL-2.0-or-later
|
2019-01-09 11:39:18 +01:00
|
|
|
Group: Development/Tools/Building
|
2020-05-04 15:50:36 +02:00
|
|
|
URL: https://build.opensuse.org
|
2019-01-09 11:39:18 +01:00
|
|
|
Source0: kiwi_metainfo_helper.service
|
|
|
|
Source1: kiwi_metainfo_helper
|
|
|
|
Source2: README
|
2022-01-17 11:06:25 +01:00
|
|
|
# For %%check
|
|
|
|
Source3: test.sh
|
|
|
|
Source4: sles-release-15.4-150400.32.2.x86_64.rpm
|
|
|
|
BuildRequires: diffutils
|
2021-01-27 16:16:08 +01:00
|
|
|
Requires: /usr/bin/find
|
|
|
|
Requires: /usr/bin/grep
|
|
|
|
Requires: /usr/bin/sed
|
2019-01-09 11:39:18 +01:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
This service can be used during buildtime to gain access to various variables
|
2020-08-27 09:14:20 +02:00
|
|
|
in build recipes.
|
2019-01-09 11:39:18 +01:00
|
|
|
|
|
|
|
%prep
|
2019-01-10 09:06:22 +01:00
|
|
|
%setup -q -D -T -n .
|
2019-01-09 11:39:18 +01:00
|
|
|
cp %{SOURCE2} .
|
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
2022-01-17 11:06:25 +01:00
|
|
|
mkdir -p %{buildroot}%{_prefix}/lib/obs/service/
|
|
|
|
install -m 0644 %{SOURCE0} %{buildroot}%{_prefix}/lib/obs/service/
|
|
|
|
install -m 0755 %{SOURCE1} %{buildroot}%{_prefix}/lib/obs/service/
|
2019-01-09 11:39:18 +01:00
|
|
|
|
2022-01-17 11:06:25 +01:00
|
|
|
%check
|
|
|
|
sh %{SOURCE3}
|
2019-01-09 11:39:18 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%doc README
|
|
|
|
%dir %{_prefix}/lib/obs
|
|
|
|
%{_prefix}/lib/obs/service
|
|
|
|
|
|
|
|
%changelog
|