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 495c8cd
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 0 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

RUN COPY ./rpmlintrc.toml /etc/xdg/rpmlint/
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

RUN COPY ./rpmlintrc.toml /etc/xdg/rpmlint/
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*']
1 change: 1 addition & 0 deletions images/rpmbuild-centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ RUN yum update -y && \
openssl openssl11 pango pango-devel perl-devel python3 qtwebkit rpm-build \
rpmdevtools rpmlint rpm-sign shadow-utils systemd tar unzip

RUN COPY ./rpmlintrc.toml /etc/xdg/rpmlint/
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-centos7/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*']
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

RUN COPY ./rpmlintrc.toml /etc/xdg/rpmlint/
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 495c8cd

Please sign in to comment.