2011-07-12 06:12:48 +00:00
|
|
|
#
|
|
|
|
# spec file for package obs-service-set_version
|
|
|
|
#
|
2018-09-17 08:23:27 +00:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
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
|
|
|
|
2018-11-26 17:05:11 +00:00
|
|
|
%if 0%{?suse_version} > 1315
|
2018-09-25 06:58:17 +00:00
|
|
|
%bcond_without obs_scm_testsuite
|
2018-11-26 17:05:11 +00:00
|
|
|
%else
|
|
|
|
%bcond_with obs_scm_testsuite
|
|
|
|
%endif
|
2013-10-29 14:07:44 +00:00
|
|
|
%define service set_version
|
|
|
|
|
|
|
|
Name: obs-service-%{service}
|
2018-11-16 18:10:34 +00:00
|
|
|
Version: 0.5.11
|
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
|
2013-10-29 14:07:44 +00:00
|
|
|
Url: https://github.com/openSUSE/obs-service-%{service}
|
|
|
|
Source: %{name}-%{version}.tar.gz
|
2018-09-25 06:58:17 +00:00
|
|
|
%if %{with obs_scm_testsuite}
|
2018-09-17 09:12:13 +00:00
|
|
|
BuildRequires: python3-ddt
|
|
|
|
BuildRequires: python3-flake8
|
2018-09-25 06:58:17 +00:00
|
|
|
%endif
|
2015-09-03 07:38:58 +00:00
|
|
|
%if 0%{?suse_version}
|
2017-10-10 07:40:00 +00:00
|
|
|
%if 0%{?suse_version} > 1315
|
|
|
|
Recommends: python3-packaging
|
2017-11-06 16:17:00 +00:00
|
|
|
Requires: python3-base
|
2017-10-10 07:40:00 +00:00
|
|
|
%else
|
2015-07-28 06:18:59 +00:00
|
|
|
Recommends: python-packaging
|
2015-09-03 07:38:58 +00:00
|
|
|
%endif
|
2017-10-10 07:40:00 +00:00
|
|
|
%endif
|
2010-10-18 12:49:16 +00:00
|
|
|
Requires: sed
|
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%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
|
2017-10-10 07:40:00 +00:00
|
|
|
%if 0%{?suse_version} > 1315
|
|
|
|
sed -i -e "1 s,#!/usr/bin/python$,#!/usr/bin/python3," set_version
|
|
|
|
%endif
|
2010-10-18 12:49:16 +00:00
|
|
|
|
2018-09-25 06:58:17 +00:00
|
|
|
%if %{with obs_scm_testsuite}
|
2018-09-17 09:12:13 +00:00
|
|
|
%check
|
|
|
|
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
|