2011-08-26 09:54:59 +02:00
|
|
|
#
|
|
|
|
# spec file for package obs-service-recompress
|
|
|
|
#
|
2020-07-27 08:28:50 +02:00
|
|
|
# Copyright (c) 2020 SUSE LLC
|
2011-08-26 09:54:59 +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.
|
|
|
|
|
2020-01-23 13:12:00 +01:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2011-08-26 09:54:59 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
|
2013-10-29 15:09:13 +01:00
|
|
|
%define service recompress
|
2010-10-18 14:49:13 +02:00
|
|
|
|
2013-10-29 15:09:13 +01:00
|
|
|
Name: obs-service-%{service}
|
2020-08-03 07:26:24 +02:00
|
|
|
Version: 0.5.1
|
2013-10-29 15:09:13 +01:00
|
|
|
Release: 0
|
|
|
|
Summary: An OBS source service: Recompress files
|
2020-01-23 13:12:00 +01:00
|
|
|
License: GPL-2.0-or-later
|
2010-10-18 14:49:13 +02:00
|
|
|
Group: Development/Tools/Building
|
2020-07-27 08:28:50 +02:00
|
|
|
URL: https://github.com/openSUSE/obs-service-%{service}
|
2013-10-29 15:09:13 +01:00
|
|
|
Source: %{name}-%{version}.tar.gz
|
2020-07-27 08:56:08 +02:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
2020-07-27 08:31:10 +02:00
|
|
|
BuildRequires: perl(Test::More)
|
|
|
|
|
2020-01-23 13:12:00 +01:00
|
|
|
BuildRequires: bzip2
|
|
|
|
BuildRequires: gzip
|
|
|
|
BuildRequires: xz
|
2013-10-29 15:09:13 +01:00
|
|
|
Requires: bzip2
|
|
|
|
Requires: gzip
|
|
|
|
Requires: xz
|
2020-07-27 08:46:57 +02:00
|
|
|
|
|
|
|
%if (0%{?suse_version} <= 1500 && 0%{?sle_version} <= 150000) || 0%{?fedora_version} < 25 || 0%{?rhel_version} < 6
|
|
|
|
# noop
|
|
|
|
%else
|
|
|
|
BuildRequires: zstd
|
2020-01-23 13:12:00 +01:00
|
|
|
Requires: zstd
|
2020-07-27 08:46:57 +02:00
|
|
|
%endif
|
2020-07-27 08:31:10 +02:00
|
|
|
|
2010-10-18 14:49:13 +02:00
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
%description
|
|
|
|
This is a source service for openSUSE Build Service.
|
|
|
|
|
|
|
|
It supports to compress, uncompress or recompress files from or to
|
|
|
|
|
|
|
|
none : No Compression
|
|
|
|
gz : Gzip Compression
|
|
|
|
bz2 : Bzip2 Compression
|
|
|
|
xz : XZ Compression
|
2020-01-23 13:12:00 +01:00
|
|
|
zstd : Zstd Compression
|
|
|
|
|
2010-10-18 14:49:13 +02:00
|
|
|
|
|
|
|
%prep
|
2013-10-29 15:09:13 +01:00
|
|
|
%setup -q
|
2010-10-18 14:49:13 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
|
|
|
|
%install
|
2020-07-27 08:54:52 +02:00
|
|
|
make DESTDIR=%buildroot install
|
2010-10-18 14:49:13 +02:00
|
|
|
|
2020-01-23 13:12:00 +01:00
|
|
|
%check
|
|
|
|
make test
|
|
|
|
|
2010-10-18 14:49:13 +02:00
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2013-10-29 15:09:13 +01:00
|
|
|
%dir %{_prefix}/lib/obs
|
|
|
|
%{_prefix}/lib/obs/service
|
2010-10-18 14:49:13 +02:00
|
|
|
|
2011-08-26 09:54:59 +02:00
|
|
|
%changelog
|