Compare commits
1 commit
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
71a68b28f7 |
3 changed files with 21 additions and 6 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -21,3 +21,4 @@
|
|||
/waiverdb-1.1.7.tar.gz
|
||||
/waiverdb-1.2.0.tar.gz
|
||||
/waiverdb-1.3.0.tar.gz
|
||||
/waiverdb-1.4.0.tar.gz
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (waiverdb-1.3.0.tar.gz) = f95ec68ca39ae3ee446f1cf368d605aec3b8eb9fb797073c56fa3ea33faccaf0c5db0f7a10fa8f58c4668e14c6f4cf1b2c738f8764abfc7d2225f0ae2e3af5ee
|
||||
SHA512 (waiverdb-1.4.0.tar.gz) = 294674044b528847c501e3336a98be41b7e470eea7bf704326b0a6dfc87acdf5002afb3597060c0d1f7121fcdd17ce3cf5719f021e47ff74bdfc47fed8661578
|
||||
|
|
|
|||
|
|
@ -9,8 +9,8 @@
|
|||
%endif
|
||||
|
||||
Name: waiverdb
|
||||
Version: 1.3.0
|
||||
Release: 3%{?dist}
|
||||
Version: 1.4.0
|
||||
Release: 1%{?dist}
|
||||
Summary: Service for waiving results in ResultsDB
|
||||
License: GPLv2+
|
||||
URL: https://pagure.io/waiverdb
|
||||
|
|
@ -64,11 +64,11 @@ WaiverDB is a companion service to ResultsDB, for recording waivers
|
|||
against test results.
|
||||
|
||||
%package common
|
||||
Summary: Common resources for WaiverDB subpackages.
|
||||
Summary: Common resources for WaiverDB sub-packages
|
||||
|
||||
%description common
|
||||
This package is not useful on its own. It contains common filesystem resources
|
||||
for other WaiverDB subpackages.
|
||||
for other WaiverDB sub-packages.
|
||||
|
||||
%package cli
|
||||
Summary: A CLI tool for interacting with waiverdb
|
||||
|
|
@ -82,7 +82,7 @@ Requires: waiverdb-common = %{version}-%{release}
|
|||
%description cli
|
||||
This package contains a CLI tool for interacting with waiverdb.
|
||||
|
||||
Primarily, submitting new waiverdbs.
|
||||
Primarily, submitting new waivers.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
|
@ -98,6 +98,7 @@ sed -i 's/\.stg\.fedoraproject\.org/.fedoraproject.org/g' conf/client.conf.examp
|
|||
%py3_build
|
||||
%if %{with docs}
|
||||
make -C docs html man text
|
||||
rm -rf docs/_build/html/.buildinfo
|
||||
%endif
|
||||
|
||||
%install
|
||||
|
|
@ -119,6 +120,10 @@ install -D -m0644 \
|
|||
docs/_build/man/waiverdb-cli.1 \
|
||||
%{buildroot}%{_mandir}/man1/waiverdb-cli.1
|
||||
|
||||
install -D -m0644 \
|
||||
docs/_build/man/waiverdb.1 \
|
||||
%{buildroot}%{_mandir}/man1/waiverdb.1
|
||||
|
||||
install -D -m0644 \
|
||||
docs/_build/man/client.conf.5 \
|
||||
%{buildroot}%{_mandir}/man5/waiverdb-client.conf.5
|
||||
|
|
@ -141,6 +146,10 @@ install -D -m0644 \
|
|||
%exclude %{python3_sitelib}/%{name}/cli.py
|
||||
%exclude %{python3_sitelib}/%{name}/__pycache__/cli.*.pyc
|
||||
%attr(755,root,root) %{_bindir}/waiverdb
|
||||
|
||||
%if %{with docs}
|
||||
%{_mandir}/man1/waiverdb.1*
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%files common
|
||||
|
|
@ -169,6 +178,11 @@ install -D -m0644 \
|
|||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Nov 10 2021 Lukas Holecek <hluk@email.cz> - 1.4.0-1
|
||||
- On an authentication error, waiverdb-cli will now print the actual error
|
||||
message instead of a JSONDecodeError exception.
|
||||
- Documentation has been updated and moved to: https://waiverdb.readthedocs.io
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue