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 aa507a9
Show file tree
Hide file tree
Showing 8 changed files with 16 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 @@ -6,6 +6,7 @@ RUN dnf module enable -y nodejs:20 \
# Update system
RUN dnf update -y && \
dnf install -y boost automake boost-filesystem boost-iostreams \
cp rpmlintrc.toml /etc/xdg/rpmlint/ \
boost-program-options boost-regex boost-signals boost-system \
boost-thread cairo cairo-devel dnf-plugins-core fontconfig \
fontconfig-devel freetype freetype-devel gcc gcc-c++ git glibc \
Expand Down
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 @@ -4,6 +4,7 @@ FROM ghcr.io/geonet/base-images/centos:stream9
RUN dnf module enable -y nodejs:20 && \
dnf update -y && \
dnf install -y \
cp rpmlintrc.toml /etc/xdg/rpmlint/ \
boost automake boost-filesystem boost-iostreams \
boost-program-options boost-regex boost-system \
boost-thread cairo cairo-devel dnf-plugins-core fontconfig \
Expand Down
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 @@ -7,6 +7,7 @@ RUN curl -O https://nodejs.org/dist/latest-v20.x/node-v20.14.0-linux-x64.tar.xz
# Update system
RUN yum update -y && \
yum install -y autoconf automake boost boost-filesystem boost-iostreams \
cp rpmlintrc.toml /etc/xdg/rpmlint/ \
boost-program-options boost-regex boost-signals boost-system boost-thread \
cairo cairo-devel createrepo dnf dnf-plugins-core fontconfig fontconfig-devel \
freetype freetype-devel gcc gcc-c++ git libdbi libdbi-devel libgfortran \
Expand Down
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*']
1 change: 1 addition & 0 deletions images/rpmbuild-fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ FROM ghcr.io/geonet/base-images/fedora:40
# Installing tools needed for rpmbuild
RUN dnf update -y && \
dnf install -y \
cp rpmlintrc.toml /etc/xdg/rpmlint/ \
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
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 aa507a9

Please sign in to comment.