From 4964136ab32f684c4c58fc0fa28405ca718c8dac Mon Sep 17 00:00:00 2001 From: Christof Schulze Date: Wed, 18 May 2022 12:50:31 +0200 Subject: [PATCH] rebuild for Fedora 36, remove %clean section, added CI basics --- .gitlab-ci.yml | 15 +++++++++++++++ ww8-bash.spec | 9 +++++---- 2 files changed, 20 insertions(+), 4 deletions(-) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..32dcb3c --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +image: registry.fedoraproject.org/fedora:36 + + +before_script: + - dnf -y install rpmlint rpm-build + + +stages: + - Static Analysis + +rpmlint: + stage: Static Analysis + script: + - rpmlint --version + - rpmlint *.spec diff --git a/ww8-bash.spec b/ww8-bash.spec index b50a62c..e68f4bf 100644 --- a/ww8-bash.spec +++ b/ww8-bash.spec @@ -1,6 +1,6 @@ Name: ww8-bash -Version: 1.0.5 +Version: 1.0.6 Release: 1%{?dist} License: MIT Summary: Environment settings @@ -70,12 +70,13 @@ rm -rf %{buildroot} %files tools -%clean -rm -rf %{buildroot} - %changelog +* Wed May 18 2022 Christof Schulze - 1.0.6-1 + - rebuild for Fedora 36 + - remove %clean section + - added CI basics * Tue Feb 8 2022 Christof Schulze - 1.0.5-1 - fixing mkl_fix * Thu Dec 2 2021 Christof Schulze - 1.0.4-1 -- GitLab