Compare commits

...

No commits in common. "imports/c8/python-schedutils-0.6-5.el8" and "c8s" have entirely different histories.

7 changed files with 45 additions and 3 deletions

6
.gitignore vendored
View File

@ -1 +1,5 @@
SOURCES/python-schedutils-0.6.tar.xz
python-schedutils-0.2.tar.bz2
/python-schedutils-0.4.tar.bz2
/python-schedutils-0.4.tar.xz
/python-schedutils-0.5.tar.xz
/python-schedutils-0.6.tar.xz

View File

@ -1 +0,0 @@
48777c044a4b30b99bf2c84d3e2d645010a5e9d4 SOURCES/python-schedutils-0.6.tar.xz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

View File

@ -3,7 +3,7 @@
Summary: Linux scheduler python bindings
Name: python-schedutils
Version: 0.6
Release: 5%{?dist}
Release: 6%{?dist}
License: GPLv2
URL: https://git.kernel.org/pub/scm/libs/python/python-schedutils/python-schedutils.git
Source: https://git.kernel.org/pub/scm/libs/python/python-schedutils/python-schedutils.git/snapshot/%{name}-%{version}.tar.xz
@ -53,6 +53,10 @@ rm -rf %{buildroot}
%{python3_sitearch}/*.egg-info
%changelog
* Wed Apr 03 2019 Clark Williams <williams@redhat.com> - 0.6-6
- Added OSCI gating framework
Resolves: rhbz#1682408
* Tue Jul 31 2018 John Kacur <jkacur@redhat.com> - 0.6-5
- Fix upstream URL reference and source
Resolves: rhbz#1596854

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (python-schedutils-0.6.tar.xz) = 1373eb0ae7594aeaf0ffa75abeb89424208531049f93d4bd068b0cedc603380c374361c87c09bb01acd6346dfe0de654a2112321f0b9110ec103d51549b8f4d2

View File

@ -0,0 +1,14 @@
#!/usr/bin/bash
# make sure we have rteval installed
if rpm -q --quiet python3-schedutils; then
:
else
sudo dnf install -y python3-schedutils
if [[ $? != 0 ]]; then
echo "install of python3-schedutils failed!"
exit 1
fi
fi
exit 0

14
tests/tests.yml Normal file
View File

@ -0,0 +1,14 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
tests:
- pchrt:
dir: .
run: pchrt --help
- ptaskset:
dir: .
run: ptaskset --help
required_packages:
- python3-schedutils