2011-07-12 06:12:48 +00:00
|
|
|
#
|
2023-06-01 15:23:48 +00:00
|
|
|
# spec file
|
2011-07-12 06:12:48 +00:00
|
|
|
#
|
2023-01-05 09:10:54 +00:00
|
|
|
# Copyright (c) 2023 SUSE LLC
|
2011-07-12 06:12:48 +00: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.
|
|
|
|
|
2018-09-17 08:23:27 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-07-12 06:12:48 +00:00
|
|
|
#
|
|
|
|
|
2018-09-26 09:08:30 +00:00
|
|
|
|
2021-12-13 10:56:23 +00:00
|
|
|
%if 0%{?rhel} || ( 0%{?suse_version} && 0%{?suse_version} <= 1315 )
|
2019-12-04 15:18:53 +00:00
|
|
|
%bcond_with obs_scm_testsuite
|
|
|
|
%else
|
2018-09-25 06:58:17 +00:00
|
|
|
%bcond_without obs_scm_testsuite
|
2019-12-04 15:18:53 +00:00
|
|
|
%endif
|
2013-10-29 14:07:44 +00:00
|
|
|
%define service set_version
|
|
|
|
|
|
|
|
Name: obs-service-%{service}
|
2023-01-18 13:41:48 +00:00
|
|
|
Version: 0.6.2
|
2013-10-29 14:07:44 +00:00
|
|
|
Release: 0
|
2012-06-26 15:11:38 +00:00
|
|
|
Summary: An OBS source service: Update spec file version
|
2018-09-17 08:23:27 +00:00
|
|
|
License: GPL-2.0-or-later
|
2010-10-18 12:49:16 +00:00
|
|
|
Group: Development/Tools/Building
|
2019-12-04 15:18:53 +00:00
|
|
|
URL: https://github.com/openSUSE/obs-service-%{service}
|
2013-10-29 14:07:44 +00:00
|
|
|
Source: %{name}-%{version}.tar.gz
|
2019-05-16 13:22:57 +00:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
|
|
|
|
2018-09-25 06:58:17 +00:00
|
|
|
%if %{with obs_scm_testsuite}
|
2023-01-05 09:10:54 +00:00
|
|
|
BuildRequires: python3-ddt
|
|
|
|
BuildRequires: python3-flake8
|
|
|
|
BuildRequires: python3-packaging
|
2018-09-25 06:58:17 +00:00
|
|
|
%endif
|
2019-05-16 13:22:57 +00:00
|
|
|
|
2017-10-10 07:40:00 +00:00
|
|
|
%if 0%{?suse_version} > 1315
|
2017-11-06 16:17:00 +00:00
|
|
|
Requires: python3-base
|
2017-10-10 07:40:00 +00:00
|
|
|
%else
|
2023-01-05 09:10:54 +00:00
|
|
|
Requires: python3
|
2017-10-10 07:40:00 +00:00
|
|
|
%endif
|
2023-06-01 15:15:58 +00:00
|
|
|
%if 0%{?suse_version}
|
2023-01-05 09:10:54 +00:00
|
|
|
Recommends: python3-packaging
|
2023-06-01 15:15:58 +00:00
|
|
|
%endif
|
2010-10-18 12:49:16 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
This is a source service for openSUSE Build Service.
|
|
|
|
|
|
|
|
Very simply script to update the version in .spec or .dsc files according to
|
|
|
|
a given version or to the existing files.
|
|
|
|
|
|
|
|
%prep
|
2013-10-29 14:07:44 +00:00
|
|
|
%setup -q
|
2010-10-18 12:49:16 +00:00
|
|
|
|
|
|
|
%build
|
2018-09-25 06:58:17 +00:00
|
|
|
%if %{with obs_scm_testsuite}
|
2018-09-17 09:12:13 +00:00
|
|
|
%check
|
2023-01-05 09:10:54 +00:00
|
|
|
make test PYTHON=python3
|
2018-09-25 06:58:17 +00:00
|
|
|
%endif
|
2018-09-17 09:12:13 +00:00
|
|
|
|
2010-10-18 12:49:16 +00:00
|
|
|
%install
|
2015-07-27 08:48:18 +00:00
|
|
|
mkdir -p %{buildroot}%{_prefix}/lib/obs/service
|
|
|
|
install -m 0755 set_version %{buildroot}%{_prefix}/lib/obs/service
|
|
|
|
install -m 0644 set_version.service %{buildroot}%{_prefix}/lib/obs/service
|
2010-10-18 12:49:16 +00:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2013-10-29 14:07:44 +00:00
|
|
|
%dir %{_prefix}/lib/obs
|
|
|
|
%{_prefix}/lib/obs/service
|
2010-10-18 12:49:16 +00:00
|
|
|
|
2011-07-12 06:12:48 +00:00
|
|
|
%changelog
|