Skip to content

Commit

Permalink
fix: suppress warnings for invalid url source
Browse files Browse the repository at this point in the history
suppress warnings for invalid url source
  • Loading branch information
raki-git committed Aug 21, 2024
1 parent 318c6b1 commit 3a7f7ca
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 19 deletions.
1 change: 1 addition & 0 deletions images/rpmbuild-almalinux8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ RUN dnf update -y && \
rpm-build rpmdevtools rpm-sign rpmlint shadow-utils systemd unzip \
python3.11-devel python3.11

COPY rpmlintrc.toml /etc/xdg/rpmlint/rpmlintrc.toml
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && unzip awscliv2.zip
RUN ./aws/install
3 changes: 3 additions & 0 deletions images/rpmbuild-almalinux8/rpmlintrc.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#suppress warnings for invalid-url Source0

Filters = ['W: invalid-url Source*']
1 change: 1 addition & 0 deletions images/rpmbuild-centos-stream9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ RUN dnf module enable -y nodejs:20 && \
openssl pango pango-devel perl-devel python3.11 qt5-qtbase \
rpm-build rpmdevtools rpm-sign rpmlint shadow-utils systemd unzip

COPY rpmlintrc.toml /etc/xdg/rpmlint/rpmlintrc.toml
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
RUN unzip awscliv2.zip
RUN ./aws/install
3 changes: 3 additions & 0 deletions images/rpmbuild-centos-stream9/rpmlintrc.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#suppress warnings for invalid-url Source0

Filters = ['W: invalid-url Source*']
19 changes: 0 additions & 19 deletions images/rpmbuild-centos7/Dockerfile

This file was deleted.

2 changes: 2 additions & 0 deletions images/rpmbuild-fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ RUN dnf update -y && \
dnf install -y \
rpm-build rpmdevtools rpm-sign rpmlint git dnf-plugins-core nodejs npm make automake gcc \
gcc-c++ kernel-devel python3 glibc systemd openssl fontconfig-devel freetype freetype-devel boost awscli

COPY rpmlintrc.toml /etc/xdg/rpmlint/rpmlintrc.toml
3 changes: 3 additions & 0 deletions images/rpmbuild-fedora/rpmlintrc.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#suppress warnings for invalid-url Source0

Filters = ['W: invalid-url Source*']

0 comments on commit 3a7f7ca

Please sign in to comment.