Compare commits
47 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e5e6753133 | ||
|
|
757797fe8e | ||
|
|
cd652ba806 | ||
|
|
a1f6ca9794 | ||
|
|
cb51938a80 | ||
|
|
a083f7fd5d | ||
|
|
b27531ea06 | ||
|
|
63818ec5bb | ||
|
|
d28fcc9773 | ||
|
|
a7b8bdaebc | ||
|
|
e79cdbbe88 | ||
|
|
c31b604e14 | ||
|
|
3a9e05ff41 | ||
|
|
9f8bfebfa3 | ||
|
|
3f37d80ff3 | ||
|
|
335e1c8c4c | ||
|
|
ed542baa2a | ||
|
|
79ed785dd3 | ||
|
|
96f6306c4c | ||
|
|
7339f315f0 | ||
|
|
af5ade08a6 | ||
|
|
16b7d86665 | ||
|
|
93d520e6cb | ||
|
|
ea38cec880 | ||
|
|
0ec15fa024 | ||
|
|
733e55fb68 | ||
|
|
7a42f7237e | ||
|
|
c910f7e25e | ||
|
|
d2454a8e06 | ||
|
|
a0305778f6 | ||
|
|
80d812b51c | ||
|
|
e5d16659c1 | ||
|
|
f4aa7d8e66 | ||
|
|
113f2f026e | ||
|
|
0b7b0f9fc7 | ||
|
|
b97e11f081 |
||
|
|
3b767ce3b5 | ||
|
|
63f026e739 | ||
|
|
36594eca49 | ||
|
|
10d301fbfb | ||
|
|
7e96a9eacd |
||
|
|
156192088a |
||
|
|
6c3e0c773d | ||
|
|
f6e42361e0 | ||
|
|
cd0edc3aeb | ||
|
|
6d2e7fab8b | ||
|
|
48f3430394 |
3 changed files with 144 additions and 24 deletions
13
.gitignore
vendored
13
.gitignore
vendored
|
|
@ -16,3 +16,16 @@ results_beaker
|
|||
/beaker-26.3.tar.xz
|
||||
/beaker-26.5.tar.xz
|
||||
/beaker-26.5-49-g97e14daec.tar.gz
|
||||
/beaker-26.6-66-g03e169493.tar.gz
|
||||
/beaker-27.0.tar.xz
|
||||
/beaker-27.1.tar.xz
|
||||
/beaker-27.2.tar.xz
|
||||
/beaker-27.3.tar.xz
|
||||
/beaker-27.4.tar.xz
|
||||
/beaker-28.0.tar.xz
|
||||
/beaker-28.1.tar.xz
|
||||
/beaker-28.2.tar.xz
|
||||
/beaker-28.3.tar.xz
|
||||
/beaker-29.0.tar.xz
|
||||
/beaker-29.1.tar.xz
|
||||
/beaker-29.2.tar.xz
|
||||
|
|
|
|||
153
beaker.spec
153
beaker.spec
|
|
@ -1,26 +1,23 @@
|
|||
%global upstream_name beaker
|
||||
%global with_docs 1
|
||||
%global git_version 26.5-49-g97e14daec
|
||||
# No sphinxcontrib-httpdomain rpm on EPEL10
|
||||
%bcond docs %[ 0%{?fedora} || 0%{?rhel} < 10 ]
|
||||
|
||||
Name: %{upstream_name}
|
||||
Version: 26.5
|
||||
Release: 1.git.49.g87e14daec%{?dist}
|
||||
Version: 29.2
|
||||
Release: 4%{?dist}
|
||||
Summary: Full-stack software and hardware integration testing system
|
||||
License: GPLv2+ and BSD
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://beaker-project.org/
|
||||
|
||||
# To generate git snapshot, see beaker-snapshot.sh
|
||||
Source0: %{upstream_name}-%{git_version}.tar.gz
|
||||
#Source0: https://beaker-project.org/releases/%{upstream_name}-%{version}.tar.xz
|
||||
Source0: https://beaker-project.org/releases/%{upstream_name}-%{version}.tar.xz
|
||||
|
||||
BuildArch: noarch
|
||||
BuildRequires: python3-setuptools
|
||||
BuildRequires: python3-nose
|
||||
BuildRequires: python3-unittest2
|
||||
BuildRequires: python3-mock
|
||||
BuildRequires: python3-pytest
|
||||
BuildRequires: python3-devel
|
||||
%if %{with docs}
|
||||
BuildRequires: python3-docutils
|
||||
%if 0%{with_docs}
|
||||
BuildRequires: python3-sphinx
|
||||
BuildRequires: python3-sphinxcontrib-httpdomain
|
||||
%endif
|
||||
|
|
@ -38,6 +35,7 @@ BuildRequires: python3-gssapi
|
|||
BuildRequires: python3-lxml
|
||||
BuildRequires: python3-prettytable
|
||||
BuildRequires: python3-libxml2
|
||||
BuildRequires: make
|
||||
Requires: python3-six
|
||||
Requires: python3-setuptools
|
||||
Requires: python3-gssapi
|
||||
|
|
@ -61,9 +59,10 @@ The bkr client is a command-line tool for interacting with Beaker servers. You
|
|||
can use it to submit Beaker jobs, fetch results, and perform many other tasks.
|
||||
|
||||
%prep
|
||||
%setup -q -n %{upstream_name}-%{git_version}
|
||||
%if !0%{with_docs}
|
||||
%setup -q -n %{upstream_name}-%{version}
|
||||
%if %{without docs}
|
||||
rm -rf documentation
|
||||
sed -i '/SUBDIRS.*:=/s/\s*documentation\s*/ /g' Makefile
|
||||
%endif
|
||||
# The server relies on a great many packages which are intended to be bundled
|
||||
# source, and its documentation greatly inflates the number of BR packages
|
||||
|
|
@ -76,11 +75,6 @@ export BKR_PY3=1
|
|||
make
|
||||
|
||||
%install
|
||||
# RHEL 8 python3-nose removed unversioned executables
|
||||
%if 0%{?rhel} >= 8
|
||||
ln -sf %{_bindir}/nosetests-%{python3_version} %{buildroot}/nosetests-3
|
||||
%endif
|
||||
|
||||
export BKR_PY3=1
|
||||
DESTDIR=%{buildroot} make install
|
||||
|
||||
|
|
@ -92,7 +86,7 @@ rm -rf %{buildroot}%{_mandir}/man8/
|
|||
|
||||
%check
|
||||
export BKR_PY3=1
|
||||
make check
|
||||
#make check
|
||||
# Running the checks generates some .pyc files - burn them!
|
||||
find %{buildroot} -name '__pycache__' | xargs rm -rf
|
||||
|
||||
|
|
@ -103,17 +97,17 @@ find %{buildroot} -name '__pycache__' | xargs rm -rf
|
|||
%{python3_sitelib}/bkr/__init__.py*
|
||||
%{python3_sitelib}/bkr/common/
|
||||
%{python3_sitelib}/bkr/log.py*
|
||||
%{python3_sitelib}/%{name}_common-%{version}-py?.?.egg-info/
|
||||
%{python3_sitelib}/%{name}_common-%{version}-py%{python3_version}.egg-info/
|
||||
|
||||
%files client
|
||||
%dir %{_sysconfdir}/%{name}
|
||||
%doc Client/client.conf.example
|
||||
%{python3_sitelib}/bkr/client/
|
||||
%{python3_sitelib}/%{name}_client-%{version}-py?.?-nspkg.pth
|
||||
%{python3_sitelib}/%{name}_client-%{version}-py?.?.egg-info/
|
||||
%{python3_sitelib}/%{name}_client-%{version}-py%{python3_version}-nspkg.pth
|
||||
%{python3_sitelib}/%{name}_client-%{version}-py%{python3_version}.egg-info/
|
||||
%{_bindir}/%{name}-wizard
|
||||
%{_bindir}/bkr
|
||||
%if 0%{with_docs}
|
||||
%if %{with docs}
|
||||
%{_mandir}/man1/beaker-wizard.1.gz
|
||||
%{_mandir}/man1/bkr.1.gz
|
||||
%{_mandir}/man1/bkr-*.1.gz
|
||||
|
|
@ -121,6 +115,119 @@ find %{buildroot} -name '__pycache__' | xargs rm -rf
|
|||
%{_datadir}/bash-completion
|
||||
|
||||
%changelog
|
||||
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 29.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Tue Jun 03 2025 Python Maint <python-maint@redhat.com> - 29.2-3
|
||||
- Rebuilt for Python 3.14
|
||||
|
||||
* Mon May 26 2025 Martin Styk <mart.styk@gmail.com> - 29.2-2
|
||||
- Drop BSD license reference from License tag
|
||||
The file LabController/src/bkr/labcontroller/tback.py, originally from Django
|
||||
and licensed under the 3-clause BSD license, was removed. This file is no longer
|
||||
part of the LabController source tree.
|
||||
|
||||
* Mon May 26 2025 Martin Styk <mart.styk@gmail.com> - 29.2-1
|
||||
- Release 29.2 (#2368611)
|
||||
|
||||
* Thu Jan 16 2025 Fedora Release Engineering <releng@fedoraproject.org> - 29.1-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Wed Aug 28 2024 Miroslav Suchý <msuchy@redhat.com> - 29.1-4
|
||||
- convert license to SPDX
|
||||
|
||||
* Wed Jul 17 2024 Fedora Release Engineering <releng@fedoraproject.org> - 29.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Fri Jun 07 2024 Python Maint <python-maint@redhat.com> - 29.1-2
|
||||
- Rebuilt for Python 3.13
|
||||
|
||||
* Sun Feb 11 2024 Martin Styk <mart.styk@gmail.com> - 29.1-1
|
||||
- Update to 29.1 (#2263782)
|
||||
|
||||
* Tue Jan 23 2024 Fedora Release Engineering <releng@fedoraproject.org> - 29.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Fri Jan 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 29.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Thu Jan 18 2024 Martin Styk <mart.styk@gmail.com> - 29.0-1
|
||||
- Update to 29.0 (#2258990)
|
||||
|
||||
* Fri Nov 17 2023 Martin Styk <mart.styk@gmail.com> - 28.3-8
|
||||
- Backport patch to fix SSL usage on Python 3.12
|
||||
|
||||
* Wed Jul 26 2023 Martin Styk <mart.styk@gmail.com> - 28.3-7
|
||||
- Disable tests
|
||||
- Fix incompatibility with Sphinx 6+
|
||||
|
||||
* Wed Jul 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 28.3-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Wed Jun 14 2023 Python Maint <python-maint@redhat.com> - 28.3-5
|
||||
- Rebuilt for Python 3.12
|
||||
|
||||
* Wed Jan 18 2023 Fedora Release Engineering <releng@fedoraproject.org> - 28.3-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Wed Jul 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 28.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 28.3-2
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Sat May 21 2022 Martin Styk <mart.styk@gmail.com> - 28.3-1
|
||||
- Update to 28.3 (#2088909)
|
||||
|
||||
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 28.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Wed Jul 21 2021 Fedora Release Engineering <releng@fedoraproject.org> - 28.2-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 28.2-2
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Wed Feb 17 2021 Martin Styk <martstyk@gmail.com> - 28.2-1
|
||||
- Update to 28.2 (#1929311)
|
||||
|
||||
* Thu Jan 28 2021 Martin Styk <martstyk@gmail.com> - 28.1-1
|
||||
- Update to 28.1 (#1901445)
|
||||
|
||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 28.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Aug 25 2020 Martin Styk <mart.styk@gmail.com> - 28.0-1
|
||||
- Update to 28.0 (#1871982)
|
||||
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 27.4-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 27.4-2
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Mon Mar 30 2020 Martin Styk <mastyk@redhat.com> - 27.4-1:
|
||||
- Update to 27.4 (#1818717)
|
||||
|
||||
* Wed Mar 18 2020 Martin Styk <mastyk@redhat.com> - 27.3-1:
|
||||
- Update to 27.3 (#1814828)
|
||||
|
||||
* Thu Feb 27 2020 Martin Styk <mastyk@redhat.com> - 27.2-1
|
||||
- Update to 27.2 (#1808021)
|
||||
|
||||
* Wed Jan 29 2020 Martin Styk <mastyk@redhat.com> - 27.1-1
|
||||
- Update to 27.1 (#1795942)
|
||||
|
||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 27.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Thu Jan 09 2020 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 27.0-2
|
||||
- Remove dependency on unittest2 (#1789200)
|
||||
|
||||
* Thu Dec 19 2019 Greg Hellings <greg.hellings@gmail.com> - 27.0-1
|
||||
- Upstream release 27.0
|
||||
- Drop git chasing
|
||||
- Python 3 support at last?
|
||||
|
||||
* Thu Sep 26 2019 Greg Hellings <greg.hellings@gmail.com> - 26.5-49-g97e14daec
|
||||
- Upstream unrelased version
|
||||
- Updated spec file to match new deps
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (beaker-26.5-49-g97e14daec.tar.gz) = 4abe92c6ea74a2c93c8bc721ebff00fe6b186fff11eadc42da916b88bb9384cd3e27db84f665ceedf273344f9983a65c00ae5b3b69ecc5e83e6c3fb0d482bc60
|
||||
SHA512 (beaker-29.2.tar.xz) = a004ab1cb3fe2f9ceb370bb8f307a4afdd972e0715cf81cf7832860721c834bfe2d9b1bc26ae4c3d58ef6506afd176779a166774fbd311b0354444a9f0b8c3f9
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue