Compare commits

...

No commits in common. "c8" and "c9s" have entirely different histories.
c8 ... c9s

8 changed files with 90 additions and 3 deletions

5
.gitignore vendored
View File

@ -1 +1,4 @@
SOURCES/lohit-odia-2.91.2.tar.gz
/lohit-odia-2.5.5.tar.gz
/lohit-odia-2.91.0.tar.gz
/lohit-odia-2.91.1.tar.gz
/lohit-odia-2.91.2.tar.gz

View File

@ -1 +0,0 @@
0ccf7f9ab246062c00c52d86f922bbd1ae6bf6d3 SOURCES/lohit-odia-2.91.2.tar.gz

6
gating.yaml Normal file
View File

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

View File

@ -6,7 +6,7 @@
Name: %{fontname}-fonts
Version: 2.91.2
Release: 3%{?dist}
Release: 13%{?dist}
Summary: Free truetype font for Odia language
License: OFL
@ -17,6 +17,7 @@ BuildArch: noarch
BuildRequires: fontforge >= 20080429
BuildRequires: fontpackages-devel
BuildRequires: python3-devel
BuildRequires: make
Requires: fontpackages-filesystem
Provides: lohit-oriya-fonts = %{version}-%{release}
Obsoletes: lohit-oriya-fonts < 2.5.4.1-4
@ -62,6 +63,37 @@ install -Dm 0644 -p %{metainfo}.xml \
%{_datadir}/metainfo/%{metainfo}.xml
%changelog
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.91.2-13
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
Related: rhbz#1991688
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.91.2-12
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.2-11
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.2-10
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.2-9
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.2-8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
* Tue Jul 16 2019 Vishal Vijayraghavan <vvijayra AT redhat DOT com> - 2.91.2-7
- Added CI tests
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.2-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.2-5
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 2.91.2-4
- Rebuilt for Python 3.7
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.91.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (lohit-odia-2.91.2.tar.gz) = 5177888997b541dc6223eb31c7ac961f242231ce033a79df2870789ab53f390d551ea6d6b9aff50a3074cd867795841f1f9eff711e5bb41013835b741259e50e

View File

@ -0,0 +1,45 @@
- hosts: localhost
vars:
config:
fontname: lohit-odia
lang: ["or"]
testgiturl: https://pagure.io/font_ci_testing.git
testgitclonepath: fonttest
testfilename: fonttest.py
testfilepath: /usr/local/bin
logfilepath: /tmp/test.log
artifacts: "{{ lookup('env', 'TEST_ARTIFACTS')|default('./artifacts', true) }}"
tags:
- classic
remote_user: root
tasks:
- name: Install required package
dnf:
name:
- git
- "{{ config.fontname }}-fonts"
- python3
- fontconfig
- name: git clone the tests
git:
repo: "{{ config.testgiturl }}"
dest: "{{ config.testgitclonepath }}"
force: yes
- name: Test Execution
block:
- name: Execute the tests
command: python3 {{ config.testgitclonepath }}/tests/{{ config.testfilename }} "{{ config }}"
always:
- name: Pull out the artifacts
fetch:
dest: "{{ config.artifacts }}/"
src: "{{ item }}"
flat: yes
with_items:
- "{{ config.logfilepath }}"

1
tests/tests.yml Normal file
View File

@ -0,0 +1 @@
- import_playbook: fonttest_playbook.yml