2011-07-12 08:12:48 +02:00
|
|
|
#
|
|
|
|
# spec file for package obs-service-set_version
|
|
|
|
#
|
2018-09-17 10:23:27 +02:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2011-07-12 08:12:48 +02: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 10:23:27 +02:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-07-12 08:12:48 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2013-10-29 15:07:44 +01:00
|
|
|
%define service set_version
|
|
|
|
|
|
|
|
Name: obs-service-%{service}
|
2018-09-19 08:30:01 +02:00
|
|
|
Version: 0.5.10
|
2013-10-29 15:07:44 +01:00
|
|
|
Release: 0
|
2012-06-26 17:11:38 +02:00
|
|
|
Summary: An OBS source service: Update spec file version
|
2018-09-17 10:23:27 +02:00
|
|
|
License: GPL-2.0-or-later
|
2010-10-18 14:49:16 +02:00
|
|
|
Group: Development/Tools/Building
|
2013-10-29 15:07:44 +01:00
|
|
|
Url: https://github.com/openSUSE/obs-service-%{service}
|
|
|
|
Source: %{name}-%{version}.tar.gz
|
2018-09-17 11:12:13 +02:00
|
|
|
BuildRequires: python3-ddt
|
|
|
|
BuildRequires: python3-flake8
|
2018-09-17 11:22:50 +02:00
|
|
|
BuildRequires: python3-packaging
|
2015-09-03 09:38:58 +02:00
|
|
|
%if 0%{?suse_version}
|
2017-10-10 09:40:00 +02:00
|
|
|
%if 0%{?suse_version} > 1315
|
|
|
|
Recommends: python3-packaging
|
2017-11-06 17:17:00 +01:00
|
|
|
Requires: python3-base
|
2017-10-10 09:40:00 +02:00
|
|
|
%else
|
2015-07-28 08:18:59 +02:00
|
|
|
Recommends: python-packaging
|
2015-09-03 09:38:58 +02:00
|
|
|
%endif
|
2017-10-10 09:40:00 +02:00
|
|
|
%endif
|
2010-10-18 14:49:16 +02: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 15:07:44 +01:00
|
|
|
%setup -q
|
2010-10-18 14:49:16 +02:00
|
|
|
|
|
|
|
%build
|
2017-10-10 09:40:00 +02:00
|
|
|
%if 0%{?suse_version} > 1315
|
|
|
|
sed -i -e "1 s,#!/usr/bin/python$,#!/usr/bin/python3," set_version
|
|
|
|
%endif
|
2010-10-18 14:49:16 +02:00
|
|
|
|
2018-09-17 11:12:13 +02:00
|
|
|
%check
|
|
|
|
make test PYTHON=python3
|
|
|
|
|
2010-10-18 14:49:16 +02:00
|
|
|
%install
|
2015-07-27 10:48:18 +02: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 14:49:16 +02:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2013-10-29 15:07:44 +01:00
|
|
|
%dir %{_prefix}/lib/obs
|
|
|
|
%{_prefix}/lib/obs/service
|
2010-10-18 14:49:16 +02:00
|
|
|
|
2011-07-12 08:12:48 +02:00
|
|
|
%changelog
|