Compare commits
No commits in common. "c8-stream-rhel8" and "c10s" have entirely different histories.
c8-stream-
...
c10s
17
.copr/Makefile
Normal file
17
.copr/Makefile
Normal file
@ -0,0 +1,17 @@
|
||||
# See https://docs.pagure.org/copr.copr/user_documentation.html#make-srpm
|
||||
# See for the --setopt option in the enabling of copr repo see:
|
||||
# https://pagure.io/copr/copr/issue/184
|
||||
|
||||
COPR_USERNAME=$(shell rpm --eval %copr_username)
|
||||
COPR_PROJECT=$(shell rpm --eval %copr_projectname)
|
||||
|
||||
.PHONY: srpm
|
||||
srpm:
|
||||
dnf install -y dnf-plugins-core fedora-packager
|
||||
dnf copr enable -y --setopt=reposdir=/tmp/yum.repos.d $(COPR_USERNAME)/$(COPR_PROJECT)
|
||||
dnf install -y --setopt=reposdir=/tmp/yum.repos.d llvm-snapshot-builder
|
||||
rpmbuild \
|
||||
--define "_srcrpmdir $(outdir)" \
|
||||
--define "_sourcedir $(shell pwd)" \
|
||||
--define "_disable_source_fetch 0" \
|
||||
-bs $(spec)
|
1
.fmf/version
Normal file
1
.fmf/version
Normal file
@ -0,0 +1 @@
|
||||
1
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -1 +1,3 @@
|
||||
SOURCES/lit-18.1.8.tar.gz
|
||||
/lit-*.tar.gz
|
||||
/python-lit-*.src.rpm
|
||||
/LICENSE.TXT
|
||||
|
@ -1 +0,0 @@
|
||||
ce25d4b0b089e4751192d20c2e94421f1cd6ccd0 SOURCES/lit-18.1.8.tar.gz
|
@ -1,198 +0,0 @@
|
||||
%bcond_with snapshot_build
|
||||
|
||||
%if %{with snapshot_build}
|
||||
# Unlock LLVM Snapshot LUA functions
|
||||
%{llvm_sb_verbose}
|
||||
%{llvm_sb}
|
||||
%endif
|
||||
|
||||
%global lit_version 18.1.8
|
||||
#global rc_ver 4
|
||||
#global post_ver 0
|
||||
|
||||
%global python_lit_srcdir %{srcname}-%{version}%{?rc_ver:rc%{rc_ver}}%{?post_ver:.post%{post_ver}}
|
||||
|
||||
%if %{with snapshot_build}
|
||||
%undefine rc_ver
|
||||
%global lit_version %{llvm_snapshot_version}
|
||||
%global python_lit_srcdir llvm-%{lit_version}.src/utils/lit
|
||||
%endif
|
||||
|
||||
%bcond_without check
|
||||
|
||||
Name: python-lit
|
||||
Version: %{lit_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
||||
Release: 1%{?dist}
|
||||
BuildArch: noarch
|
||||
|
||||
License: NCSA
|
||||
Summary: Tool for executing llvm test suites
|
||||
URL: https://pypi.python.org/pypi/lit
|
||||
%if %{without snapshot_build}
|
||||
Source0: %{pypi_source lit %{lit_version}%{?rc_ver:rc%{rc_ver}}%{?post_ver:.post%{post_ver}}}
|
||||
%else
|
||||
Source0: %{llvm_snapshot_source_prefix}llvm-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
||||
%{llvm_snapshot_extra_source_tags}
|
||||
%endif
|
||||
|
||||
# for file check
|
||||
%if %{with check}
|
||||
BuildRequires: llvm-test
|
||||
%endif
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
%description
|
||||
lit is a tool used by the LLVM project for executing its test suites.
|
||||
|
||||
%package -n python3-lit
|
||||
Summary: LLVM lit test runner for Python 3
|
||||
|
||||
Requires: python3-setuptools
|
||||
Recommends: python3-psutil
|
||||
|
||||
%description -n python3-lit
|
||||
lit is a tool used by the LLVM project for executing its test suites.
|
||||
|
||||
%prep
|
||||
%if %{with snapshot_build}
|
||||
%autosetup -n %{python_lit_srcdir} -p4
|
||||
%else
|
||||
%autosetup -n lit-%{lit_version}%{?rc_ver:rc%{rc_ver}}%{?post_ver:.post%{post_ver}} -p4
|
||||
%endif
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
# Strip out #!/usr/bin/env python
|
||||
sed -i -e '1{\@^#!/usr/bin/env python@d}' %{buildroot}%{python3_sitelib}/lit/*.py
|
||||
|
||||
%if %{with check} && %{without snapshot_build}
|
||||
%check
|
||||
%{__python3} lit.py -v tests
|
||||
%endif
|
||||
|
||||
%files -n python3-lit
|
||||
%license LICENSE.TXT
|
||||
%doc README.rst
|
||||
%{python3_sitelib}/*
|
||||
%{_bindir}/lit
|
||||
|
||||
%changelog
|
||||
* Tue Jul 09 2024 Tom Stellard <tstellar@redhat.com> - 18.1.8-1
|
||||
- 18.1.8 Release
|
||||
|
||||
* Thu Mar 21 2024 Tom Stellard <tstellar@redhat.com> - 18.1.2-1
|
||||
- 18.1.2 Release
|
||||
|
||||
* Wed Nov 29 2023 Nikita Popov <npopov@redhat.com> - 17.0.6-1
|
||||
- Update to LLVM 17.0.6
|
||||
|
||||
* Wed Oct 04 2023 Nikita Popov <npopov@redhat.com> - 17.0.2-1
|
||||
- Update to LLVM 17.0.2
|
||||
|
||||
* Sat Jun 17 2023 Tom Stellard <tstellar@redhat.com> - 16.0.6-1
|
||||
- 16.0.6 Release
|
||||
|
||||
* Thu Apr 27 2023 Tom Stellard <tstellar@redhat.com> - 16.0.0-1
|
||||
- 16.0.0 Release
|
||||
|
||||
* Thu Jan 19 2023 Tom Stellard <tstellar@redhat.com> - 15.0.7-1
|
||||
- Update to lit 15.0.7
|
||||
|
||||
* Tue Sep 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-1
|
||||
- Update to lit 15.0.0
|
||||
|
||||
* Mon Jun 27 2022 Tom Stellard <tstellar@redhat.com> - 14.0.6-1
|
||||
- Update to 14.0.6
|
||||
|
||||
* Thu Apr 07 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
|
||||
- Update to 14.0.0
|
||||
|
||||
* Wed Feb 02 2022 Tom Stellard <tstellar@redhat.com> - 13.0.1-1
|
||||
- 13.0.1 Release
|
||||
|
||||
* Fri Oct 15 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
||||
- 13.0.0 Release
|
||||
|
||||
* Fri Jul 16 2021 sguelton@redhat.com - 12.0.1-1
|
||||
- 12.0.1 release
|
||||
|
||||
* Thu May 6 2021 sguelton@redhat.com - 12.0.0-1
|
||||
- 12.0.0 release
|
||||
|
||||
* Thu Oct 29 2020 sguelton@redhat.com - 0.11.0-1
|
||||
- 0.11.0 final release
|
||||
|
||||
* Thu Sep 17 2020 sguelton@redhat.com - 0.11.0-0.1.rc1
|
||||
- 0.11.0 rc1 Release
|
||||
|
||||
* Thu Apr 9 2020 sguelton@redhat.com - 0.10.0-1
|
||||
- 0.10.0 final release
|
||||
|
||||
* Fri Sep 27 2019 Tom Stellard <tstellar@redhat.com> - 0.9.0-1
|
||||
- 0.9.0 Release
|
||||
|
||||
* Wed Apr 17 2019 sguelton@redhat.com - 0.8.0-1
|
||||
- 0.8.0 Release
|
||||
|
||||
* Fri Dec 14 2018 Tom Stellard <tstellar@redhat.com> - 0.7.1-1
|
||||
- 0.7.1 Release
|
||||
|
||||
* Tue Nov 27 2018 Tom Stellard <tstellar@redhat.com> - 0.7.0-1
|
||||
- 0.7.0 Release
|
||||
|
||||
* Fri Nov 16 2018 Lumír Balhar <lbalhar@redhat.com> - 0.6.0-6
|
||||
- Require platform-python-setuptools instead of python3-setuptools
|
||||
- Resolves: rhbz#1650540
|
||||
|
||||
* Mon Oct 01 2018 Tom Stellard <tstellar@redhat.com> - 0.6.0-5
|
||||
- Drop SCL macros
|
||||
|
||||
* Wed Sep 12 2018 Tom Stellard <tstellar@redhat.com> - 0.6.0-4
|
||||
- Use versioned python dependencies (python3)
|
||||
|
||||
* Mon Aug 27 2018 Tom Stellard <tstellar@redhat.com> - 0.6.0-3
|
||||
- Fix python3 install
|
||||
|
||||
* Mon Aug 27 2018 Tom Stellard <tstellar@redhat.com> - 0.6.0-2
|
||||
- Enable python3
|
||||
|
||||
* Tue Jul 10 2018 Tom Stellrad <tstellar@redhat.com> - 0.6.0-1
|
||||
- 0.6.0 Release
|
||||
|
||||
* Mon Jul 02 2018 Tom Stellard <tstellar@redhat.com> - 0.5.1-4
|
||||
- Drop python2
|
||||
|
||||
* Tue Jun 12 2018 Tom Stellard <tstellar@redhat.com> - 0.5.1-3
|
||||
- Add BuildRequires: scl-utils-build
|
||||
|
||||
* Thu Jan 11 2018 Tom Stellard - 0.5.1-2
|
||||
- Fix build on RHEL8
|
||||
|
||||
* Tue Jan 09 2018 Tom Stellard <tstellar@redhat.com> - 0.5.1-1
|
||||
- Rebase to 0.5.1
|
||||
|
||||
* Thu Jun 08 2017 Tom Stellard <tstellar@redhat.com> - 0.5.0-7
|
||||
- Build for llvm-toolset-7 rename
|
||||
|
||||
* Thu May 18 2017 Tom Stellard <tstellar@redhat.com> - 0.5.0-6
|
||||
- Fix package names
|
||||
|
||||
* Wed May 10 2017 Tilmann Scheller <tschelle@redhat.com> - 0.5.0-5
|
||||
- Next attempt to add runtime dependency on python-setuptools
|
||||
|
||||
* Tue May 09 2017 Tilmann Scheller <tschelle@redhat.com> - 0.5.0-4
|
||||
- Properly add missing runtime dependency to python-setuptools
|
||||
|
||||
* Tue May 09 2017 Tilmann Scheller <tschelle@redhat.com> - 0.5.0-3
|
||||
- Add missing runtime dependency to python-setuptools
|
||||
|
||||
* Fri Apr 28 2017 Tom Stellard <tstellar@redhat.com> - 0.5.0-2
|
||||
- Add llvm-toolset-4 scl support
|
||||
|
||||
* Thu Mar 09 2017 Tom Stellard <tstellar@redhat.com> - 0.5.0-1
|
||||
- Initial version
|
16
gating.yaml
Normal file
16
gating.yaml
Normal file
@ -0,0 +1,16 @@
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- fedora-*
|
||||
decision_contexts:
|
||||
- bodhi_update_push_testing
|
||||
- bodhi_update_push_stable
|
||||
subject_type: koji_build
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: fedora-ci.koji-build.tier0.functional}
|
||||
--- !Policy
|
||||
product_versions:
|
||||
- rhel-10
|
||||
decision_context: osci_compose_gate
|
||||
rules:
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier0-tmt-x86_64-aarch64.functional}
|
||||
- !PassingTestCaseRule {test_case_name: baseos-ci.brew-build.tier0-tmt-s390x-ppc64le.functional}
|
370
python-lit.spec
Normal file
370
python-lit.spec
Normal file
@ -0,0 +1,370 @@
|
||||
%bcond_with snapshot_build
|
||||
|
||||
%if %{with snapshot_build}
|
||||
# Unlock LLVM Snapshot LUA functions
|
||||
%{llvm_sb_verbose}
|
||||
%{llvm_sb}
|
||||
%endif
|
||||
|
||||
%global lit_version 18.1.8
|
||||
#global rc_ver 4
|
||||
#global post_ver 0
|
||||
|
||||
%global python_lit_srcdir %{srcname}-%{version}%{?rc_ver:rc%{rc_ver}}%{?post_ver:.post%{post_ver}}
|
||||
|
||||
%if %{with snapshot_build}
|
||||
%undefine rc_ver
|
||||
%global lit_version %{llvm_snapshot_version}
|
||||
%global python_lit_srcdir llvm-%{lit_version}.src/utils/lit
|
||||
%endif
|
||||
|
||||
%bcond_without check
|
||||
|
||||
Name: python-lit
|
||||
Version: %{lit_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}}
|
||||
Release: 1%{?dist}
|
||||
BuildArch: noarch
|
||||
|
||||
License: Apache-2.0 WITH LLVM-exception OR NCSA
|
||||
Summary: Tool for executing llvm test suites
|
||||
URL: https://pypi.python.org/pypi/lit
|
||||
%if %{without snapshot_build}
|
||||
Source0: %{pypi_source lit %{lit_version}%{?rc_ver:rc%{rc_ver}}%{?post_ver:.post%{post_ver}}}
|
||||
%else
|
||||
Source0: %{llvm_snapshot_source_prefix}llvm-%{llvm_snapshot_yyyymmdd}.src.tar.xz
|
||||
%{llvm_snapshot_extra_source_tags}
|
||||
%endif
|
||||
|
||||
# for file check
|
||||
%if %{with check}
|
||||
BuildRequires: llvm-test
|
||||
%endif
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
|
||||
%description
|
||||
lit is a tool used by the LLVM project for executing its test suites.
|
||||
|
||||
%package -n python3-lit
|
||||
Summary: LLVM lit test runner for Python 3
|
||||
|
||||
Requires: python3-setuptools
|
||||
Recommends: python3-psutil
|
||||
|
||||
%description -n python3-lit
|
||||
lit is a tool used by the LLVM project for executing its test suites.
|
||||
|
||||
%prep
|
||||
%if %{with snapshot_build}
|
||||
%autosetup -n %{python_lit_srcdir} -p4
|
||||
%else
|
||||
%autosetup -n lit-%{lit_version}%{?rc_ver:rc%{rc_ver}}%{?post_ver:.post%{post_ver}} -p4
|
||||
%endif
|
||||
|
||||
%build
|
||||
%py3_build
|
||||
|
||||
%install
|
||||
%py3_install
|
||||
|
||||
# Strip out #!/usr/bin/env python
|
||||
sed -i -e '1{\@^#!/usr/bin/env python@d}' %{buildroot}%{python3_sitelib}/lit/*.py
|
||||
|
||||
%if %{with check} && %{without snapshot_build}
|
||||
%check
|
||||
%{__python3} lit.py -v tests
|
||||
%endif
|
||||
|
||||
%files -n python3-lit
|
||||
%license LICENSE.TXT
|
||||
%doc README.rst
|
||||
%{python3_sitelib}/*
|
||||
%{_bindir}/lit
|
||||
|
||||
%changelog
|
||||
* Mon Jul 22 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.8-1
|
||||
- Update to LLVM 18.1.2 (RHEL-28056)
|
||||
|
||||
* Mon Jun 24 2024 Troy Dawson <tdawson@redhat.com> - 18.1.2-3
|
||||
- Bump release for June 2024 mass rebuild
|
||||
|
||||
* Mon Apr 08 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.2-2
|
||||
- Rebuild LLVM 18.1.2 (RHEL-27724)
|
||||
|
||||
* Tue Mar 26 2024 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 18.1.2-1
|
||||
- Update to LLVM 18.1.2 (RHEL-27724)
|
||||
|
||||
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 17.0.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
%{?llvm_snapshot_changelog_entry}
|
||||
|
||||
* Tue Nov 28 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.6-1
|
||||
- Update to LLVM 17.0.6
|
||||
|
||||
* Tue Nov 14 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.5-1
|
||||
- Update to LLVM 17.0.5
|
||||
|
||||
* Tue Oct 31 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.4-1
|
||||
- Update to LLVM 17.0.4
|
||||
|
||||
* Tue Oct 17 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.3-1
|
||||
- Update to LLVM 17.0.3
|
||||
|
||||
* Mon Oct 09 2023 Tom Stellard <tstellar@redhat.com> - 17.0.2-2
|
||||
- Update license
|
||||
|
||||
* Tue Oct 03 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.2-1
|
||||
- Update to LLVM 17.0.2
|
||||
|
||||
* Mon Sep 25 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.1-1
|
||||
- Update to LLVM 17.0.1
|
||||
|
||||
* Tue Sep 05 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc4-1
|
||||
- Update to LLVM 17.0.0 RC4
|
||||
|
||||
* Tue Aug 22 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc3-1
|
||||
- Update to LLVM 17.0.0 RC3
|
||||
|
||||
* Thu Aug 10 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc2-1
|
||||
- Update to LLVM 17.0.0 RC2
|
||||
|
||||
* Mon Jul 31 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 17.0.0~rc1-1
|
||||
- Update to LLVM 17.0.0 RC1
|
||||
|
||||
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 16.0.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Thu Jul 06 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.6-2
|
||||
- Rebuilt for Python 3.12 again
|
||||
|
||||
* Wed Jun 14 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.6-1
|
||||
- Update to LLVM 16.0.6
|
||||
|
||||
* Tue Jun 13 2023 Python Maint <python-maint@redhat.com> - 16.0.5.post0-2
|
||||
- Rebuilt for Python 3.12
|
||||
|
||||
* Fri Jun 02 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.5.post0-1
|
||||
- Update to LLVM 16.0.5.post0
|
||||
|
||||
* Thu May 18 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.4-1
|
||||
- Update to LLVM 16.0.4
|
||||
|
||||
* Mon May 15 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.3-2
|
||||
- Add a patch that accepts ppc64le as a valid triple
|
||||
|
||||
* Tue May 09 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.3-1
|
||||
- Update to LLVM 16.0.3
|
||||
|
||||
* Tue Apr 25 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.2-1
|
||||
- Update to LLVM 16.0.2
|
||||
|
||||
* Mon Apr 10 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.1-1
|
||||
- Update to LLVM 16.0.1
|
||||
|
||||
* Mon Mar 20 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0-1
|
||||
- Update to LLVM 16.0.0
|
||||
|
||||
* Tue Mar 14 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc4-1
|
||||
- Update to LLVM 16.0.0 RC4
|
||||
|
||||
* Wed Feb 22 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc3-1
|
||||
- Update to LLVM 16.0.0 RC3
|
||||
|
||||
* Wed Feb 01 2023 Tulio Magno Quites Machado Filho <tuliom@redhat.com> - 16.0.0~rc1-1
|
||||
- Update to LLVM 16.0.0 RC1
|
||||
|
||||
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 15.0.7-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Tue Jan 17 2023 Nikita Popov <npopov@redhat.com> - 15.0.7-2
|
||||
- Update to LLVM 15.0.7
|
||||
|
||||
* Tue Dec 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.6-1
|
||||
- Update to LLVM 15.0.6
|
||||
|
||||
* Thu Nov 03 2022 Nikita Popov <npopov@redhat.com> - 15.0.1-1
|
||||
- Update to lit 15.0.1
|
||||
|
||||
* Fri Oct 21 2022 Serge Guelton <serge.guelton@telecom-bretagne.eu> - 15.0.0-2
|
||||
- Add python3-psutil recommends to avoid runtime warning
|
||||
|
||||
* Tue Sep 06 2022 Nikita Popov <npopov@redhat.com> - 15.0.0-1
|
||||
- Update to lit 15.0.0
|
||||
|
||||
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 14.0.3-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 14.0.3-2
|
||||
- Rebuilt for Python 3.11
|
||||
|
||||
* Wed May 18 2022 Tom Stellard <tstellar@redhat.com> - 14.0.3-1
|
||||
- 14.0.3 Release
|
||||
|
||||
* Wed Mar 02 2022 Timm Bäder <tbaeder@redhat.com> - 14.0.0-1
|
||||
- Update to 14.0.0
|
||||
|
||||
* Fri Feb 04 2022 Nikita Popov <npopov@redhat.com> - 13.0.1-1
|
||||
- Update to LLVM 13.0.1
|
||||
|
||||
* Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 13.0.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Tue Jan 11 2022 Nikita Popov <npopov@redhat.com> - 13.0.0-3
|
||||
- Backport patch 46c947af7 for build reproducibility
|
||||
|
||||
* Thu Oct 21 2021 Konrad Kleine <kkleine@redhat.com> - 13.0.0-2
|
||||
- Remove python 2 support
|
||||
|
||||
* Tue Oct 05 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0-1
|
||||
- 13.0.0 Release
|
||||
|
||||
* Mon Aug 09 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-2
|
||||
- Add missing dist tag to release
|
||||
|
||||
* Fri Aug 06 2021 Tom Stellard <tstellar@redhat.com> - 13.0.0~rc1-1
|
||||
- 13.0.0-rc1 Release
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 12.0.1-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Wed Jul 14 2021 Tom Stellard <tstellar@redhat.com> - 12.0.1-1
|
||||
- 12.0.1 Release
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 12.0.0-3
|
||||
- Rebuilt for Python 3.10
|
||||
|
||||
* Fri Jun 04 2021 Python Maint <python-maint@redhat.com> - 12.0.0-2
|
||||
- Bootstrap for Python 3.10
|
||||
|
||||
* Thu May 06 2021 sguelton@redhat.com - 12.0.0-1
|
||||
- 12.0.0 final release
|
||||
|
||||
* Tue Feb 23 2021 Pete Walter <pwalter@fedoraproject.org> - 12.0.0-0.2.rc1
|
||||
- rebuilt
|
||||
|
||||
* Wed Feb 03 2021 sguelton@redhat.com - 12.0.0-0.1.rc1
|
||||
- 12.0.0 rc1 Release
|
||||
|
||||
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.11.1-3.rc2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
* Tue Jan 05 2021 sguelton@redhat.com - 0.11.1-2.rc2
|
||||
- 0.11.1 rc2 Release
|
||||
|
||||
* Wed Dec 02 2020 sguelton@redhat.com - 0.11.1-1.rc1
|
||||
- 0.11.1 rc1 Release
|
||||
|
||||
* Sun Oct 25 2020 sguelton@redhat.com - 0.11.0-1
|
||||
- llvm 11.0.0 - final release
|
||||
|
||||
* Fri Oct 09 2020 sguelton@redhat.com - 0.11.0-0.2.rc1
|
||||
- Correctly ship license
|
||||
|
||||
* Fri Aug 07 2020 Tom Stellard <tstellar@redhat.com> - 0.11.0-0.1.rc1
|
||||
- 0.11.0 rc1 Release
|
||||
|
||||
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.10.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||
|
||||
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-3
|
||||
- Rebuilt for Python 3.9
|
||||
|
||||
* Mon May 25 2020 Miro Hrončok <mhroncok@redhat.com> - 0.10.0-2
|
||||
- Bootstrap for Python 3.9
|
||||
|
||||
* Thu Apr 9 2020 sguelton@redhat.com - 0.10.0-1
|
||||
- 0.10.0 final release
|
||||
|
||||
* Tue Feb 11 2020 sguelton@redhat.com - 0.10.0-0.1.rc1
|
||||
- 0.10.0 rc1 Release
|
||||
|
||||
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.9.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||
|
||||
* Fri Sep 20 2019 Tom Stellard <tstellar@redhat.com> - 0.9.0-3
|
||||
- Re-enable tests
|
||||
|
||||
* Fri Sep 20 2019 Tom Stellard <tstellar@redhat.com> - 0.9.0-2
|
||||
- Disable check to avoid circular dependency with llvm-test
|
||||
|
||||
* Fri Sep 20 2019 Tom Stellard <tstellar@redhat.com> - 0.9.0-1
|
||||
- 0.9.0 Release
|
||||
|
||||
* Thu Aug 22 2019 Tom Stellard <tstellar@redhat.com> - 0.9.0-0.1.rc4
|
||||
- 0.9.0 rc4 Release
|
||||
|
||||
* Tue Aug 20 2019 sguelton@redhat.com - 8.0.0-7
|
||||
- Rebuild for Python 3.8 with test, preparatory work for rhbz#1715016
|
||||
|
||||
* Tue Aug 20 2019 sguelton@redhat.com - 8.0.0-6
|
||||
- Rebuild for Python 3.8 without test, preparatory work for rhbz#1715016
|
||||
|
||||
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.8.0-5
|
||||
- Rebuilt for Python 3.8
|
||||
|
||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||
|
||||
* Tue Jul 16 2019 sguelton@redhat.com - 8.0.0-3
|
||||
- Fix rhbz#1728067
|
||||
|
||||
* Fri Jun 28 2019 sguelton@redhat.com - 8.0.0-2
|
||||
- Fix rhbz#1725155
|
||||
|
||||
* Thu Mar 21 2019 sguelton@redhat.com - 8.0.0-1
|
||||
- 0.8.0 Release
|
||||
|
||||
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.7.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||
|
||||
* Mon Dec 17 2018 sguelton@redhat.com - 0.7.1-1
|
||||
- 7.0.1 Release
|
||||
|
||||
* Tue Sep 25 2018 Tom Stellard <tstellar@redhat.com> - 0.7.0-2
|
||||
- Add missing dist to release tag
|
||||
|
||||
* Fri Sep 21 2018 Tom Stellard <tstellar@redhat.com> - 0.7.0-1
|
||||
- 0.7.0 Release
|
||||
|
||||
* Fri Aug 31 2018 Tom Stellard <tstellar@redhat.com> - 0.7.0-0.2.rc1
|
||||
- Add Requires: python[23]-setuptools
|
||||
|
||||
* Mon Aug 13 2018 Tom Stellard <tstellar@redhat.com> - 0.7.0-0.1.rc1
|
||||
- 0.7.0 rc1
|
||||
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.6.0-2
|
||||
- Rebuilt for Python 3.7
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-1
|
||||
- 0.6.0 Release
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.0-0.2.rc1
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Tue Jan 23 2018 Tom Stellard <tstellar@redhat.com> - 0.6.0-0.1.rc1
|
||||
- 0.6.0 rc1
|
||||
|
||||
* Tue Jan 23 2018 John Dulaney <jdulaney@fedoraproject.org> - 0.5.1-4
|
||||
- Add a missed python3 conditional around a sed operation
|
||||
|
||||
* Mon Jan 15 2018 Merlin Mathesius <mmathesi@redhat.com> - 0.5.1-3
|
||||
- Cleanup spec file conditionals
|
||||
|
||||
* Wed Dec 06 2017 Tom Stellard <tstellar@redhat.com> - 0.5.1-2
|
||||
- Fix python prefix in BuildRequires
|
||||
|
||||
* Tue Oct 03 2017 Tom Stellard <tstellar@redhat.com> - 0.5.1-1
|
||||
- Rebase to 0.5.1
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.5.0-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Thu Mar 09 2017 Tom Stellard <tstellar@redhat.com> - 0.5.0-1
|
||||
- Initial version
|
1
sources
Normal file
1
sources
Normal file
@ -0,0 +1 @@
|
||||
SHA512 (lit-18.1.8.tar.gz) = 769c569b6382b0e0643a2bea7b498216f848d621f8124fbbe69354bdef17a74e5a4f7198facb0df0703fa1f2b4b3b62682ecdc673282a82643a090d920caaae9
|
6
tests/README.md
Normal file
6
tests/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
# Gating testplans for python-lit
|
||||
|
||||
The tests for python-lit are in a separate repo: https://src.fedoraproject.org/tests/python-lit
|
||||
This directory should contain only fmf plans (such as build-gating.fmf) which import
|
||||
the tests from the tests repo. This can be done using the "url" parameter of the
|
||||
plan's "discover" step. Reference: https://tmt.readthedocs.io/en/stable/spec/plans.html#fmf
|
73
tests/build-gating.fmf
Normal file
73
tests/build-gating.fmf
Normal file
@ -0,0 +1,73 @@
|
||||
#
|
||||
# Build/PR gating tests for *LLVM 13*
|
||||
#
|
||||
# Compatible with various LLVM 13 distributions:
|
||||
#
|
||||
# * Fedora (ursine packages)
|
||||
# * Centos 9 stream (ursine packages)
|
||||
# * RHEL-9 (ursine packages)
|
||||
# * RHEL-8 (Red Hat module)
|
||||
# * RHEL-7 (software collection)
|
||||
#
|
||||
|
||||
summary: python-lit tests for build/PR gating
|
||||
adjust:
|
||||
- because: "Plan to be ran when either executed locally, or executed by CI system to gate a build or PR."
|
||||
when: >-
|
||||
trigger is defined
|
||||
and trigger != commit
|
||||
and trigger != build
|
||||
enabled: false
|
||||
|
||||
- because: "When testing SCL-ized LLVM, the collection must be enabled first"
|
||||
environment+:
|
||||
WITH_SCL: "scl enable llvm-toolset-13.0"
|
||||
when: "collection == llvm-toolset-13.0"
|
||||
- because: "When testing SCL-ized LLVM, the collection must be enabled first"
|
||||
environment+:
|
||||
WITH_SCL: "scl enable llvm-toolset-14.0"
|
||||
when: "collection == llvm-toolset-14.0"
|
||||
|
||||
# Unfortunately, TMT does not support more declarative approach, we need to run commands on our own.
|
||||
- because: "On RHEL, CRB must be enabled to provide rarer packages"
|
||||
when: >-
|
||||
distro == rhel-9
|
||||
or distro == rhel-8
|
||||
prepare+:
|
||||
- name: Enable CRB
|
||||
how: shell
|
||||
script: dnf config-manager --set-enabled rhel-CRB
|
||||
|
||||
- because: "On CentOS, CRB must be enabled to provide rarer packages"
|
||||
when: >-
|
||||
distro == centos
|
||||
prepare+:
|
||||
- name: Enable CRB
|
||||
how: shell
|
||||
script: dnf config-manager --set-enabled crb
|
||||
|
||||
# Unfortunately, TMT does not support more declarative approach, we need to run commands on our own.
|
||||
- because: "On RHEL-7, EPEL must be enabled to provided rarer packages"
|
||||
prepare+:
|
||||
- name: Enable EPEL
|
||||
how: shell
|
||||
script: |
|
||||
rpm -q epel-release || yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
|
||||
yum-config-manager --enable epel
|
||||
when: distro == rhel-7
|
||||
|
||||
discover:
|
||||
- name: python-lit-tests
|
||||
how: fmf
|
||||
url: https://src.fedoraproject.org/tests/python-lit.git
|
||||
ref: main
|
||||
- name: upstream-llvm-integration-testsuite
|
||||
how: fmf
|
||||
url: https://src.fedoraproject.org/tests/llvm.git
|
||||
ref: main
|
||||
test: integration-test-suite
|
||||
execute:
|
||||
how: tmt
|
||||
provision:
|
||||
hardware:
|
||||
memory: ">= 4 GiB"
|
Loading…
Reference in New Issue
Block a user