Marcus Rueckert
ca7a5a1963
1. package is no longer noarch 2. added go-build.patch 3. add BR for golang tools OBS-URL: https://build.opensuse.org/package/show/server:database/percona-toolkit?expand=0&rev=79
98 lines
3.2 KiB
RPMSpec
98 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package percona-toolkit
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
%define revision 6917c5d
|
|
|
|
Name: percona-toolkit
|
|
Version: 3.3.1
|
|
Release: 0
|
|
Summary: Advanced MySQL and system command-line tools
|
|
License: GPL-2.0-only
|
|
Group: Productivity/Databases/Tools
|
|
URL: https://www.percona.com/software/percona-toolkit/
|
|
Source: https://www.percona.com/downloads/%{name}/%{version}/source/tarball/%{name}-%{version}.tar.gz
|
|
Source1: vendor.tar.xz
|
|
Source2: %{name}.conf
|
|
Source9: series
|
|
Patch1: go-build.patch
|
|
Requires: perl(DBD::mysql) >= 1.0
|
|
Requires: perl(DBI) >= 1.13
|
|
Requires: perl(IO::Socket::SSL)
|
|
Requires: perl(Term::ReadKey) >= 2.10
|
|
Requires: perl(Time::HiRes)
|
|
Provides: maatkit = 7410.%{version}
|
|
Obsoletes: maatkit < 7410
|
|
BuildRequires: golang-packaging
|
|
BuildRequires: golang(API)
|
|
%{perl_requires}
|
|
%{go_nostrip}
|
|
|
|
%description
|
|
Percona Toolkit is a collection of advanced command-line tools used by
|
|
Percona (http://www.percona.com/) support staff to perform a variety of
|
|
MySQL and system tasks that are too difficult or complex to perform manually.
|
|
|
|
These tools are ideal alternatives to private or "one-off" scripts because
|
|
they are professionally developed, formally tested, and fully documented.
|
|
They are also fully self-contained, so installation is quick and easy and
|
|
no libraries are installed.
|
|
|
|
Percona Toolkit is developed and supported by Percona Inc. For more
|
|
information and other free, open-source software developed by Percona,
|
|
visit http://www.percona.com/software/.
|
|
|
|
This collection was formerly known as Maatkit.
|
|
|
|
%prep
|
|
%autosetup -p1 -a 1
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor < /dev/null
|
|
sed -i 's|%{_bindir}/env perl|%{_bindir}/perl|' bin/*
|
|
sed -i 's|%{_bindir}/env bash|%{_bindir}/bash|' bin/*
|
|
%make_build
|
|
pushd src/go
|
|
make linux \
|
|
TOP_DIR=../../ \
|
|
BIN_DIR=../../bingo/ \
|
|
VERSION=%{version} \
|
|
BUILD=$(date -u '+%FT%T%z' -d @${SOURCE_DATE_EPOCH}) \
|
|
COMMIT=%{revision}
|
|
popd
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
rm -rf %{buildroot}%{_prefix}/lib
|
|
rm -rf %{buildroot}/lib
|
|
rm -rf %{buildroot}/%{perl_vendorarch}/auto/%{name}
|
|
rm -rf %{buildroot}%{_localstatedir}/adm/perl-modules/%{name}
|
|
# a blank configuration file
|
|
mkdir -p %{buildroot}%{_sysconfdir}/%{name}
|
|
cp %{SOURCE2} %{buildroot}%{_sysconfdir}/%{name}/
|
|
cp -a bingo/* %{buildroot}%{_bindir}/
|
|
|
|
%files
|
|
%license COPYING
|
|
%doc README.md Changelog
|
|
%dir %{_sysconfdir}/%{name}
|
|
%{_bindir}/*
|
|
%{_mandir}/man1/*.1p.gz
|
|
%config %{_sysconfdir}/%{name}/%{name}.conf
|
|
|
|
%changelog
|